/* ******************* */
/* HEADER */
/* ******************* */

.header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 73px;
    padding: 10px 12px;
    /* box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.2); */
}

.header img {
    width: 50px;
    height: 50px;
}

.header .btn-primary {
    min-width: 130px;
}

.header .menu {
    flex: 1 0;
}

.header a,
.header-on-page a {
    text-decoration: none;
}

.header-on-page {
    height: 60px;
}

.header-on-page img {
    width: 40px;
    height: 40px;
}

/* ******************* */
/* FOOTER */
/* ******************* */

.footer {
    min-height: 500px;
    background-color: #73caef;
}

.footer .input-group [type="email"] {
    background-color: transparent;
    border: 1px solid white;
    box-shadow: none;
}

.footer .input-group .btn {
    border: 1px solid white;
    padding: 12px 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* ******************* */
/* CONTENT */
/* ******************* */

.container-content {
    min-height: 400px;
}

/* ******************* */
/* FORM FACTORY */
/* ******************* */

form.step {
    background-color: white;
    border-radius: 20px;
}

form.step .col-sm-6:nth-child(odd) {
    padding-right: 4px !important;
}

form.step .col-sm-6:nth-child(even) {
    padding-left: 4px !important;
}

form.step label[for="agreement*"] {
    font-size: 11px;
    margin-left: 8px !important;
}

form.step label {
    margin-bottom: 8px;
}


/* ******************* */
/* PLANS FEATURES */
/* ******************* */
.container-section-header {
    border-bottom: 1px solid #ececec;
}

.container-section.open .nb-of-features {
    display: none;
}

.container-section .fa-angle-down {
    transition: transform 0.25s ease-in-out;
    cursor: pointer;
}

.container-section.open .fa-angle-down {
    transform: rotate(180deg);
}

.container-section.open .container-section-body {
    display: block !important;
}

.container-section.open .sticky-section-header {
    position: sticky;
    top: 73px;
    background-color: #fff;
    z-index: 10;
    /* background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5.8px);
    -webkit-backdrop-filter: blur(5.8px);
    border-bottom: 1px solid white; */
}

.package-name {
    display: none;
}

.container-section.open .package-name {
    display: block;
}



/* ******************* */
/* BOOTSTRAP OVERRIDES */
/* ******************* */

.pill-button {
    flex: 1;
    text-align: center;
    padding: 2px 10px;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color .3s;
    position: relative;
    z-index: 2;
}

.pill-slider {
    position: absolute;
    top: 2px;
    left: 5px;
    height: 31px;
    border-radius: 8px;
    transition: left .3s ease-in-out;
}

.pill-slider {
    background-color: var(--blue-3);
}

.pill-group {
    display: flex;
    position: relative;
    border-radius: 8px;
    padding: 5px;
    width: 250px;
}

.pill-group {
    background-color: white;
}

.card {
    border-radius: 20px;
}

.cursor-pointer {
    cursor: pointer;
}

.tooltip-inner {
    padding: 8px !important;
}

body {
    height: 100vh !important;
}

.progress-bar {
    width: 0;
}

.btn {
    border-radius: 8px;
}

.btn:hover {
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

.container-fluid {
    padding: 0;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: none !important;
}

.toast {
    max-width: 300px;
}

.dot {
    border-radius: 100px;
    text-align: center;
    position: relative;
    width: 80px;
    height: 80px;
    font-size: 30px !important;
    line-height: 80px;
}



.logo-bg {
    margin-top: -100px;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background-color: #73caef;
    overflow: hidden;
}

.progress {
    max-width: 160px;
    margin: auto;
}

.cloud {
    width: 150px;
    animation: jack-in-the-box 10s infinite cubic-bezier(0.3, 1.5, 0.5, 1.2);
}

@keyframes jack-in-the-box {

    0%,
    100% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.4);
        /* Big pop */
    }

    30% {
        transform: scale(0.8);
        /* Quickly shrink */
    }

    50% {
        transform: scale(1.2);
        /* Smaller pop */
    }

    70% {
        transform: scale(0.9);
        /* Settle slightly */
    }

    85% {
        transform: scale(1.05);
        /* Gentle overshoot */
    }
}