#pricing-settings {
    display: flex;
    justify-content: space-between;
}

#pricing-settings > div {
    margin-bottom: 15px;
    width: 32%;
    color: #838D9D;
    font-size: .85em;
}

#pricing-settings > div * {
    display: block;
    width: 100%;
    margin: 5px 0;
}

#pricing-settings > div select {
    color: #475467;
    font-size: 1em;
}

@media (max-width: 480px) {
    #pricing-settings {
        flex-direction: column;
    }

    #pricing-settings > div {
        width: auto;
    }
}

/* 
=============================
    Pricing Alert
=============================
*/

#pricing-alert {
    display: flex;
    justify-content: center;
    padding: 0 2%;
}

#pricing-alert p {
    color: #980000;
    background-color: #98000014;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    border: 1px solid #980000;
    border-radius: 40px;
    padding: 7px 21px;
    text-align: center;
}

/* 
=============================
    Pricing Cards
=============================
*/

#pricing-cards {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    gap: 2rem;
}

#pricing-cards .card {
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    padding: 20px;
    font-size: 16px;
    flex: 1;
}

#pricing-cards .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #980000;
    margin-top: 0;
    margin-bottom: 15px;
}

#pricing-cards .card-price {
    margin-bottom: 12px;
}

#pricing-cards .price-amount {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

#pricing-cards .price-unit {
    margin-bottom: 0;
    margin-top: 8px;
    font-weight: 700;
    color: #000;
}

#pricing-cards .card-desc {
    color: #00000099;
    font-weight: 500;
    line-height: 22px;
}

#pricing-cards .card-features {
    font-weight: 500;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 25px;
}

#pricing-cards .card-features li {
    margin-bottom: 10px;
    display: flex;
    margin-left: 0;
}

#pricing-cards .card-features li::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background-image: url("../img/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    flex-shrink: 0;
}

#pricing-cards .card-features li span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

@media (max-width: 1024px) {
    #pricing-cards {
        flex-direction: column;
    }

    #pricing-cards .card {
        width: auto;
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    #pricing-cards .card:last-child {
        margin-bottom: 0;
    }

    #pricing-cards .card > * {
        width: 48%;
    }
}

@media (max-width: 480px) {

    #pricing-cards .card {
        flex-direction: column;
        margin-bottom: 20px;
    }

    #pricing-cards .card > * {
        width: auto
    }
}

/* 
=============================
    Pricing Calculator
=============================
*/

#pricing-calculator-link-container {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

#pricing-calculator-link-container > div {
    background-color: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 10px 25px;
    margin: auto;
    text-align: center;
}

#pricing-calculator-link {
    font-weight: 600;
    color: #000;
}

#pricing-calculator-link::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    background-image: url("../img/arrow-right.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 5px;
}

/* 
=============================
    Pricing Notices
=============================
*/

#pricing-notices {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

#pricing-notices h5 {
    margin-top: 0;
}

#pricing-notices > div {
    width: 48%;
    color: #000000CC;
    line-height: 24px;
}

.pricing-warning-title:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background-image: url("../img/warning.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
}

@media (max-width: 1024px) {
    #pricing-notices {
        flex-direction: column;
    }

    #pricing-notices > div {
        width: auto;
    }
}

/* 
=============================
    Select2 field
=============================
*/

.select2-container span.select2-selection--single,
.select2-container--default span.select2-selection--single {
    height: auto;
    border-radius: 6px;
}

.select2-container--default .select2-selection--single span.select2-selection__rendered {
    color: #444;
    line-height: normal;
    padding: 1.4rem 4rem 1.4rem 1.8rem;
    background-image: url("../img/expand.svg");
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: right 1.4rem center;
}

.select2-results li {
    margin: 0;
    line-height: normal;
}