/* #cardPayment, 
#paypal-button {
    opacity: .5;
    pointer-events: none;
} */
section.checkout {
    height: auto;
    background: var(--gm-pastelpink);
}

.checkout-wrapper {
    display: grid;

}

.checkout-banner-pl {
    padding-left: unset;
    padding-right: unset;
}

.checkout-banner-content {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

img.checkout-banner {
    width: 100%;
    height: auto;
    max-height: unset;
}

.form-content {
    padding: 40px 12px;
}

.lbl-step {
    font-family: 'cerapro-bold';
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.lbl-step>span {
    color: var(--gm-pink);
}

.plan-card,
.payment-method-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 15px 25px;
    border-radius: var(--gm-radius);
    background: var(--gm-white);
    /* box-shadow: 0px 18px 6px -10px rgba(0,0,0,0.15); */
    box-shadow: 0px 18px 6px -10px rgba(var(--gm-purple-rgb), 0.15);
}

.plan-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1, 1fr) .5fr;
}

.plan-details {
    grid-row: 1/1;
    grid-column: 1/2;
    padding: 0;
}

.price-details {
    grid-row: 2/3;
    grid-column: 1/2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.plan-card>.plan-details>span {
    font-weight: 800;
    font-size: 32px;
    color: var(--gm-pink);
}

.plan-card>.plan-details>p {
    margin: 12px 0 0 0;
    line-height: var(--gm-line-height);
    text-align: justify;
}

.price-plan {
    font-size: 36px;
    font-family: cerapro-bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-details .details {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.discount-plan {
    margin: auto 0;
    font-size: 18px;
    line-height: 1;
    padding: 0 0 0 5px;
}

.discount-plan>span {
    display: block;
    color: var(--gm-pink);
    font-family: cerapro-bold;
}

.payment-method-card,
.gm-input-group-button {
    width: 100%;
    grid-template-columns: unset;
    grid-template-rows: unset;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
}
.gm-input-group-button {
    min-height: unset;
}

.payment-method-desc {
    width: 100%;
    margin: 0;
    font-family: cerapro-bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    line-height: var(--gm-line-height);
    font-size: 14px;
}

.card-pink-icon {
    width: auto;
    height: 30px;
    margin: 0 15px 0 0;
}

.checkout-paypal-logo {
    width: auto;
    height: 30px;
}

/* Modal - lista de planes --------------- */
.modal.list-glowme-plans .modal-content .modal-header {
    flex-direction: column;
    align-items: center;
    margin: 0;
}
.modal.list-glowme-plans .modal-content .modal-header>*{
    margin: 0;
    line-height: 1.2;
}
.modal.list-glowme-plans .modal-header>i.gm-sync-icon {
    width: 35px;
    height: 35px;
    margin: 0;
}

.list-plans-title {
    color: var(--gm-purple);
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.list-plans {
    position: relative;
    width: 100%;
    height: 100%;
}

.item-plan>* {
    margin: 0;
    display: none;
}
.item-plan .gm-custom-consult {
    display: block;
    margin: 12px 0 0 0;
    grid-column: 1/4;
    grid-row: 2/3;
}
.item-plan .gm-custom-consult .gm-inbound  {
    margin: 0;
}
.item-plan a.btn.gm-btn-pink.gm-btn-consult,
.item-plan .gm-custom-consult .gm-inbound  {
    width: 100%;
}
.gm-custom-consult .gm-flex {
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.item-plan .gm-custom-consult .gm-inbound label.form-check-label {
    font-size: 12px;
    padding: 12px 12px 12px 36px;
}
.item-plan .gm-custom-consult input.form-check-input {
    left: 36px;
}
.item-plan:has(.gm-inbound .form-check-input:checked[type=checkbox]) .gm-btn-consult {
    display: none;
}
.item-plan:has(.gm-inbound .form-check-input:checked[type=checkbox]) .gm-benefits-content {
    display: block;
}

.item-plan {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    position: relative;
    margin: 0 0 35px 0;
    padding: 16px 14px;
    border: 1px solid rgba(var(--gm-purple-rgb), .75);
    border-radius: 12px;
    cursor: pointer;
    transform: translateY(0);
    transition: all .3s ease-in-out;
}
.item-plan:hover {
    transform: translateY(-3px);
    box-shadow: rgba(var(--gm-purple-rgb), .45) 0px 3px 8px;
}
.item-plan.active {
    transform: translateY(-3px);
    background-color: rgba(var(--gm-purple-rgb), .20);
    box-shadow: rgba(var(--gm-purple-rgb), .45) 0px 3px 8px;
}


.item-plan-title {
    grid-column: 1/3;
    grid-row: 1/2;
}

.item-plan-title,
.item-plan-price {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    line-height: var(--gm-line-height);
}

.item-plan-title>:nth-child(2),
.item-plan-price>:nth-child(2) {
    margin: 0;
    color: var(--gm-dark);
    line-height: var(--gm-line-height);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.item-plan-title>:first-child {
    color: var(--gm-pink);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.item-discount-plan {
    display: block;
    position: absolute;
    top: -20px;
    left: 12px;
    color: var(--gm-white);
    font-size: 14px;
    border-radius: 20px;
    padding: 4px 14px;
    background: var(--gm-purple);
}

.item-plan-price {
    grid-column: 3/4;
    grid-row: 1/2;
    align-items: end;
}

.item-plan-price>:first-child {
    color: var(--gm-dark);
    font-family: cerapro-bold;
    font-size: 28px;
    position: relative;
    padding: 0 0 0 14px;
    line-height: 1;
}

.item-plan-price>:first-child::before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    background-image: var(--gm-dollar-icon);
    transform: translateY(-50%);
}

.item-plan-price>:nth-child(2) {
    text-align: right;
    line-height: 1;
    letter-spacing: -1px;
    padding: unset;
    font-size: 14px;
    margin: 3px 0;
}
.gm-promotion-code {
    width: 100%;
}
.gm-promotion-code #code {
    margin: 0 0 0 12px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}
.gm-promotion-code label {
    font-weight: 600!important;
}
.gm-promotion-code .form-control.gm-input {
    
    margin: 12px 0 0 0;
    width: 100%;
    border: 1px solid pink;
    height: 38px;
}
.gm-input-code {
    position: relative;
    display: none;
}
.gm-input-code.active {
    display: block;
}
.gm-input-code a {
    position: absolute;
    top: calc(38px / 2);
    right: 0;
    transform: translateY(-50%);
    font-size: 14px;
    padding: 12px;
    font-weight: 600;
    color: var(--gm-pink);
    text-decoration: none;
    transition: all .3s ease;
}
.gm-input-code a:active, .gm-input-code a:focus{
    
    color: var(--gm-purple);
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .gm-promotion-code .form-control.gm-input {
        width: 316px;
    }

    .gm-promotion-code {
        width: auto;
    }
    
    .plan-details {
        padding: 0 15px 0 0;
    }
    
    .price-details {
        width: 100%;
        flex-direction: row;
    }
    .checkout-banner-content {
        height: 100%;
    }

    img.checkout-banner {
        width: auto;
        height: 100%;
        max-height: 1362px;
    }

    

    .item-plan-price>:nth-child(2) {
        padding: 0 0 0 50px;
    }

    .item-plan-title>:first-child {
        font-size: 24px;
    }
    .item-plan-price>:first-child {
        font-size: 28px;
    }
    .payment-method-desc {
        width: auto;
    }

    .gm-input-group-button {
        width: 100%;
        align-items: start;
        justify-content: space-between;
    }

}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .discount-plan {
        font-size: 14px;
    }
    img.checkout-banner {
        max-height: 1405px;
    }
    .item-plan-title>:first-child {
        font-size: 26px;
    }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .gm-custom-consult .gm-flex {
        flex-direction: row;
        gap: 0;
    }
    .item-plan a.btn.gm-btn-pink.gm-btn-consult,
    .item-plan .gm-custom-consult .gm-inbound  {
        width: auto;
    }
    .gm-input-group-button {
        flex-direction: row;
        gap: unset;
    }
    .gm-promotion-code .form-control.gm-input {
        width: 346px;
    }
    .payment-method-desc {
        width: auto;
    }
    .payment-method-desc {
        font-size: 16px;
    }
    
    .price-details .details {
        gap: unset;
    }
    .modal.list-glowme-plans .modal-header>i.gm-sync-icon {
        margin: 10px 0;
    }
    .form-content {
        padding: 80px 45px 0;
    }

    .plan-card {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }

    .plan-details {
        grid-row: 1/1;
        grid-column: 1/4;
        padding: 0 15px 0 0;
    }

    .price-details {
        grid-row: 1/1;
        grid-column: 3/4;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        gap: 12px;
    }
    
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

    img.checkout-banner {
        width: 100%;
        max-height: 1343px;
    }
}

@media (min-width: 2000px) {
    img.checkout-banner {
        width: auto;
    }

    .item-plan-title>:first-child,
    .item-plan-price>:first-child {
        font-size: 32px;
    }
}