@charset "utf-8";
/* CSS Document */

.btn-wrapper {
    display: inline-flex;

    border-radius: 4px;
}

.btn-wrapper a, .btn-wrapper button {
    display: block;

    z-index: 20;

    border-radius: 2px;
    border: none;

    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: 0.2s;
    transition-delay: 0.1s;
}

.btn-wrapper a:before, .btn-wrapper button:before {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;
    z-index: -1;

    border-radius: 0;

    width: 100%;
    height: 100%;

    transition: 0.2s;
}

.btn-wrapper a:before, .btn-wrapper button:before {
    transition-delay: 0.1s;
}

.btn-wrapper a:hover, .btn-wrapper button:hover {
    color: #fff;
    transition-delay: 0.1s;

    border-radius: 2px;
}

.btn-wrapper a:hover:before, .btn-wrapper button:hover:before {
    top: 0;
}

/* Button Size */
.btn-small a, .btn-small button {
    font-size: 14px !important;
    font-weight: 600 !important;

    padding: 8px 12px !important;
}
.btn-medium a, .btn-medium button {
    font-size: 16px !important;
    font-weight: 600 !important;

    padding: 12px 26px !important;
}
.btn-large a, .btn-large button {
    font-size: 18px !important;
    font-weight: 700 !important;

    padding: 18px 30px !important;
}
.btn-xlarge a, .btn-xlarge button {
    font-size: 20px !important;
    font-weight: 700 !important;

    padding: 22px 42px !important;
}

/* Green Button */
.btn-blue.btn-wrapper a, .btn-blue.btn-wrapper button {
    background: #27639f;

    color: #fff;
}
.btn-blue.btn-wrapper a:hover, .btn-blue.btn-wrapper button:hover {
    color: #fff;
}
.btn-blue.btn-wrapper a:before, .btn-blue.btn-wrapper button:before {
    background: #082e50;

    color: #fff;
}

.btn-blue-outline {
    outline: 1px solid #27639f;
    outline-offset: -1px;
}
    .btn-blue-outline.btn-wrapper a, .btn-blue-outline.btn-wrapper button {
        background: #fff;

        color: #27639f;
    }
    .btn-blue-outline.btn-wrapper a:hover, .btn-blue-outline.btn-wrapper button:hover {
        color: #fff;
    }
    .btn-blue-outline.btn-wrapper a:before, .btn-blue-outline.btn-wrapper button:before {
        background: #27639f;

        color: #fff;
    }

/* Blue Button */
.btn-white.btn-wrapper a, .btn-white.btn-wrapper button {
    background: transparent;

    outline: 1px solid #fff;
    outline-offset: -1px;

    color: #fff;
}
.btn-white.btn-wrapper a:hover, .btn-white.btn-wrapper button:hover {
    color: #082e50;
}
.btn-white.btn-wrapper a:before, .btn-white.btn-wrapper button:before {
    background: #fff;

    color: #082e50;
}

/* Sweet Alert Button */
.swal-button-container button {
    border-radius: 4px;

    font-size: 16px;
    font-weight: 500;

    padding: 6px 18px;
}

.swal-button-container .btn-blue {
    background: #27639f;
    border: none;

    color: #fff;
}
    .swal-button-container .btn-blue:hover {
        background: #27639f !important;

        color: #fff;
    }
