/*********************** Pricing ************************/
.pricing_opening {
    margin: 60px auto 50px auto;
}

.pricing_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 60px;
}

.pricing_wrapper h3 {
    color: var(--light-blue);
    margin-top: -5px;
}

.price_card {
    width: 400px;
    position: sticky;
    top: 150px;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 0 0 35px;
    margin-right: 75px;
}

.price_card .price {
    width: 100%;
    padding: 30px 10px;
    box-sizing: border-box;
    margin-bottom: 35px;
    color: var(--white);
    border-radius: 10px 10px 0 0;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price_card .price h3 {
    color: var(--white);
    margin: 0;
    margin-right: 10px;
    display: none;
}

.price_card .price .visible_price {
    display: block;
}

.price_card .price h4 {
    margin: 0;
}

.price_text {
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0;
}

.price_text p {
    line-height: 2rem;
}

.price_card .button {
    margin: 35px 35px 0;
}

/*********************** Currency Toggle ************************/
.currency_toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.currency_switch {
    background-color: transparent;
    color: var(--light-blue);
    border: 2px solid var(--light-blue);
    box-sizing: border-box;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 25px 0 0;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

.currency_switch:last-of-type {
    margin-right: 0;
}

.chosen,
.currency_switch:hover {
    color: var(--white);
    background-color: var(--light-blue);
}

.currency_switch:active {
    transform: scale(0.96);
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

/*********************** Checklist ************************/
.checklist {
    width: 400px;
}

.check {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.check:last-of-type {
    margin-bottom: 0;
}

.check p {
    width: calc(100% - 71px);
    margin: 0;
}

.check i {
    background-color: var(--yellow);
    color: var(--dark-blue);
    width: 46px;
    height: 46px;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.mobile_only {
    display: none;
}

.cta {
    margin: 60px auto 0;
    text-align: center;
}

.cta .button {
    width: max-content;
    margin: 0 auto;
}

@media (max-width: 950px) {
    .pricing_wrapper {
        flex-direction: column;
        align-items: stretch;
        margin: 0 auto;
        margin-bottom: 60px;
    }

    .included {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
    }

    .price_card,
    .checklist {
        width: 450px;
        margin: 0 auto;
    }

    .price_card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .cta .button {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .price_card,
    .checklist {
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    .mobile_only {
        display: block;
    }
}