/* ===================================
    Button
====================================== */

/*
 * Button Circle
 */

.custom-btn-circle {
    padding: 0;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    font-size: 12px;
    line-height: 12px;
}
.custom-btn-circle i , .btn-icon i{
    position: static;
    margin-left: 0;
}

.custom-btn-circle.custom-btn-lg {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    line-height: 16px;
}

.custom-btn-circle.custom-btn-xl {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 24px;
}

.custom-btn-outline {
    border: 1px solid rgba(0,0,0, 0.3);
    background-color: rgba(0,0,0,0);
    color: rgba(0,0,0, 0.6);;
}

.custom-btn-outline:hover {
    border: 1px solid #12988b;
    background-color: #12988b;
    color: white;
}

.custom-btn-outline-2:hover {
    border: 1px solid #312828;
    background-color: #312828;
    color: white;
}

.custom-btn-outline-3:hover {
    border: 1px solid #127b98;
    background-color: #127b98;
    color: white;
}

.custom-btn-outline-4:hover {
    border: 1px solid #e48049;
    background-color: #e48049;
    color: white;
}

.custom-btn {
    border: 1px solid rgba(0,0,0, 0);
    color: white;
}

.custom-btn:hover {
    border: 1px solid rgba(0,0,0, 0.3);
    background-color: rgba(0,0,0,0);
    color: rgba(0,0,0, 0.6);;
}

.btn-icon-left i {
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.btn-icon-small {
    font-size: 2rem;
    color: rgba(0,0,0, 0.6);;
}

.btn-icon-medium {
    font-size: 3rem;
    color: rgba(0,0,0, 0.6);;
}

.btn-icon-large {
    font-size: 4rem;
    color: rgba(0,0,0, 0.6);
}

.btn-icon i {
    vertical-align: middle;
}

/* Link Button Styles*/
.btn-custom, .btn-custom:link, .btn-custom:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
    position: relative;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

    .btn-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    }

    .btn-custom:active {
        transform: translateY(-1px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    }

    .btn-custom::after {
        content: "";
        display: inline-block;
        height: 100%;
        width: 100%;
        border-radius: 100px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: all .4s;
        background-color: inherit;
    }

    .btn-custom:hover::after {
        transform: scaleX(1.4) scaleY(1.6);
        opacity: 0;
    }

/* Backgrounds */
.bg-black {
    background-color: #000 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-primary1 {
    background-color: var(--color-primary1) !important;
}

.bg-primary2 {
    background-color: var(--color-primary2) !important;
}

.bg-primary3 {
    background-color: var(--color-primary3) !important;
}

.bg-secondary1 {
    background-color: var(--color-secondary1) !important;
}

.bg-secondary2 {
    background-color: var(--color-secondary2) !important;
}

.bg-secondary3 {
    background-color: var(--color-secondary3) !important;
}

/* Text Colors */
.txt-black {
    color: #000 !important;
}

.txt-white {
    color: #fff !important;
}

.txt-primary1 {
    color: var(--color-primary1) !important;
}

.txt-primary2 {
    color: var(--color-primary2) !important;
}

.txt-primary3 {
    color: var(--color-primary3) !important;
}

.txt-secondary1 {
    color: var(--color-secondary1) !important;
}

.txt-secondary2 {
    color: var(--color-secondary2) !important;
}

.txt-secondary3 {
    color: var(--color-secondary3) !important;
}

/* Default round in .btn-custom is (border-radius: 100px) */

.corner-semi {
    border-radius: 12px !important;
}

    .corner-semi::after {
        border-radius: 12px !important;
    }

.corner-square {
    border-radius: 0px !important;
}

    .corner-square::after {
        border-radius: 0px !important;
    }