html {
    height: 100%;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

@media only screen and (min-width: 992px) {
    p, label, .form-control {
        font-size: 21.2px;
    }
    .text-small {
        font-size: 1.2rem !important;
    }
    .accordion .card-header h4, h4.head-settings {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}

.navbar {
    background-color: #1e2355;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------MAIN PAGE COMPONENTS---------------------------------- */

.field-set {
    padding: 1rem;
    border-radius: 7px;
    border: 1px solid lightgray;
    margin-top: 1.5rem;
    background-color: #f4f4f4;
}

.field-row {
    margin-top: 0.25rem;
    align-items: center;
}

.field-row p, .field-set p, .field-set label {
    color: #212121;
}

.field-row p, .field-set .row p {
    margin-bottom: 0;
}

.field-set .form-check-inline {
    width: 45%;
}

.btn-previous {
    margin-left: 15px;
    align-items: center;
    cursor: pointer;
}

.btn-previous i {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.btn-previous p {
    margin-bottom: 0;
    margin-left: 0.75rem;
    display: inline-block;
    color: #212121;
    font-size: 16px;
}

.btn-previous p span {
    font-size: 14px;
    color: #6c757d;
}

.contact-bar p {
    font-size: 16px;
    margin-bottom: 0;
}

.contact-bar .btn-cta {
    font-size: 1rem;
}

.contact-bar span {
    cursor: pointer;
    text-decoration: underline;
}

.info-badge {
    background-color: #21f999;
    color: #212121;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    float: right;
}

.info-badge::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f129";
}

.badge.info-badge:empty {
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    .field-row {
        margin-top: 1rem;
    }
    .btn-previous p {
        font-size: 1.1rem;
    }
    .contact-bar .btn-cta {
        font-size: 1.1rem;
    }
    .info-badge {
        float: unset;
    }
}

/* ----------------------------------PROGRESS BAR---------------------------------- */

.progress {
    margin-bottom: 1rem;
    height: 30px;
    border-radius: 50rem;
    position: relative;
    font-size: 0.9rem;
}

.progress span {
    font-size: 0.9rem;
    position: absolute;
    font-family: GingerBold;
    color: #1e2355;
    right: 12.5px;
    top: 15px;
}

.progress-bar {
    background-color: #21f999;
    font-family: GingerBold;
    color: #1e2355;
    border-radius: 50rem;
    text-align: left;
    padding-left: 0.5rem;
}

@media only screen and (min-width: 768px) {
    .progress {
        height: 40px;
        font-size: 1.1rem;
    }
    .progress span {
        font-size: 1.1rem;
        right: 20px;
        top: 20px;
    }
    .progress-bar {
        padding-left: 1rem;
    }
}

/* ----------------------------------RADIO BUTTON WITH IMAGE---------------------------------- */

.radio-img {
    width: 100%;
}

.radio-img input {
    opacity: 0;
    height: 0;
    padding: 0;
    display: none;
}

.radio-img-div {
    background-color: #ffffff;
    cursor: pointer;
    border: 3px solid lightgray;
    text-align: center;
    width: 100%;
    border-radius: 7px;
    padding: 1rem;
}

.radio-img input:checked~.radio-img-div {
    border-color: #21f999;
    background-color: #f5fffb;
}

.radio-img-div img {
    height: 60px;
}

.radio-img-div p, .radio-img-div h1 {
    display: inline-block;
    vertical-align: middle;
}

.radio-img-div p {
    margin-left: 0.5rem;
}

.radio-img-div h1 {
    font-size: 3.15rem;
    margin-bottom: 0;
}

.radio-img.error .radio-img-div {
    border-color: #C31D28;
}

.nav.nav-pills {
    border-radius: 7px;
    background-color: #f4f4f4;
}

.nav.nav-pills .nav-item {
    margin-bottom: 0;
}

.nav.nav-pills .nav-item .nav-link {
    background-color: transparent;
    border: 1px solid lightgray;
    color: #212529 !important;
    text-decoration: none !important;
}

.nav.nav-pills .nav-item .nav-link.active {
    background-color: #21f999 !important;
    border-color: #21f999 !important;
}

.modal .btn {
    text-transform: unset;
}

@media only screen and (min-width: 768px) {
    .radio-img-div p {
        margin-left: 1rem;
    }
}

/* ------------------------RESULTS EXCITEMENT------------------------- */

.result-excitement {
    box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.result-excitement * {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.res-ex-images {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    min-height: 150px;
    cursor: not-allowed;
}

.res-ex-images::-webkit-scrollbar {
    display: none;
}

.res-ex-images>.col-md-4 {
    width: 100%;
    text-align: center;
}

.res-ex-img img {
    width: 125px;
    transition: all ease-in-out 0.2s;
}

.res-ex-img.active img {
    width: 200px;
}

.card-header .form-check {
    padding-bottom: 1.25rem;
}

.card-header p, .card-header h4 {
    margin-bottom: 0;
}

.h-coll {
    cursor: pointer;
}

.h-coll:after {
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    float: right;
    font-weight: 900;
}

.h-coll.collapsed:after {
    content: "\f078";
}

@media only screen and (min-width: 768px) {
    .res-ex-images>.col-md-4 {
        flex: 0 0 auto;
        text-align: center;
        padding: 25px 0;
        min-height: 150px;
    }
}

/* ------------------------TABLE------------------------- */

.table, .table td {
    border-right-color: transparent !important;
    border-left-color: transparent !important;
}

.table th {
    border-color: transparent !important;
}

/* ------------------------ORDERED COLUMN------------------------- */

@media (min-width: 768px) {
    .ordered-column div {
        position: relative;
        padding-right: 0;
    }
    .ordered-column div::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f054";
        float: right;
        margin-top: 0.5rem;
        padding-right: 20px;
        font-size: 1.5rem;
        color: #21f999;
    }
    .ordered-column div:last-child::before {
        content: none;
    }
    .ordered-column div p {
        margin-bottom: 0;
    }
}

.main-content, .compare-why-us-1, .compare-why-us-2, .compare-why-us-3 {
    display: none;
}

.ce-pb {
    padding-bottom: 10rem;
}

.card-slider {
    scroll-snap-type: x mandatory;
}

.plan-card {
    scroll-snap-align: center;
}

.plan-card:not(.d-none):first-child, .plan-card.d-none+.plan-card:not(.d-none) {
    margin-left: 1.5rem !important;
}

.plan-card:last-of-type {
    margin-right: 1.5rem !important;
}

.footer-saving {
    font-size: 30px !important;
    width: 70px;
    display: inline-block;
    vertical-align: sub;
}

@media (min-width: 768px) {
    .plan-card:not(.d-none):first-child, .plan-card.d-none+.plan-card:not(.d-none) {
        margin-left: 0 !important;
    }
    .plan-card:last-of-type {
        margin-right: 0 !important;
    }
    .ce-pb {
        padding-bottom: 8rem;
    }
}

.compare-results-mobile {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.26, 0, 0, 1);
    -moz-transition: -moz-transform 0.6s cubic-bezier(0.26, 0, 0, 1);
    transition: transform ease-in-out 0.6s cubic-bezier(0.26, 0, 0, 1);
}

.compare-results-mobile * {
    opacity: 1;
}

.compare-results-mobile.hidden {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.compare-results-mobile.hidden * {
    opacity: 0;
}

.btn-group-sm>.btn, .btn-sm {
    font-size: 0.875rem;
    padding-top: 0.30rem;
}