.div-my_account {
    position: absolute;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    top: 50px;
    right: 0;
    width: 250px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px 0px 0px 9px;
    background: rgba(0, 0, 0, 0.50);
    padding-left: 25px;
    z-index: 1
}

.my_account-text {
    color: #FFF;
    font-size: 30px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    line-height: 123%;
    letter-spacing: -1.65px;
}

.div-discount {
    position: absolute;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    top: 150px;
    right: 0;
    width: 130px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px 0px 0px 9px;
    background: rgba(0, 0, 0, 0.50);
    padding-left: 25px;
    z-index: 1
}

.discount-text {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 123%;
    letter-spacing: -1.65px;
}

.div-social-networks {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    top: 400px;
    right: 0;
    width: 60px;
    height: 125px;
    flex-shrink: 0;
    border-radius: 8px 0px 0px 9px;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1
}

.social_networks-text {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 123%;
    letter-spacing: -1.65px;
}

.return__home {
    position: absolute;
    top: 50px;
    right: 290px;
    z-index: 1;
}

.return__home-img {
        height: 60px;
    }

/* ESTILOS PARA EL DROPDOWN CON SELECION PARCIAL */
.select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.select-btn {  
    width: 100%;
    display: flex;      
    background: none;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    height: 33px !important;
}

.select-div {
    position: absolute;
    right: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top:0.25rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    border-color: #C8C8C8; 
    background-color: white;
    z-index: 1;
    max-height: 10rem;
    overflow-y: auto;
}

.select-item {
    font-size: 18px;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;/* 12px*/;
    padding-left: 1rem/* 16px */;
    padding-right: 1rem/* 16px */;
    /* padding-top: 0.5rem;
    padding-bottom: 0.5rem; */
    white-space: nowrap;
    background: none;
    border-bottom: 1px solid !important;
    border-color: #C8C8C8 !important; 
    /* border-color: #FD0068 !important;  */
    text-transform:capitalize;
}

.hidden {
    display: none !important;
}

.visibility-hidden {
    visibility: hidden;
}

/* ESTILOS PARA EL PLACEHOLDER DE LOS INPUTS */

.input-wrapper {
    position: relative;
    width: 100%;
    /* padding-left: 0.5rem; */
}
  
.input-wrapper label {
    position: absolute;
    top: 0;
    /* left: 0; */
    color: #FFF;
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 22px;
    font-weight: 300;
}
  
.input-wrapper.has-value label {
    display: none;
}

.input-wrapper span {
    color: red;
    margin-left: 2px;
}

/* ESTILOS DEL INPUT DIVIDIDO y DEL CHECKBOX CUSTOM */
.select-dividido {
    width: 100%;
    display: grid;
    grid-template-columns: 65% 30%;
    column-gap: 5%;
    margin-left: -20px;
}
.div-pre-cot-cellphone{
    grid-template-columns: 30% 65% !important;
}
@media (max-width: 768px) {
    .div-pre-cot-cellphone{
        grid-template-columns: 30% 60% !important;
        gap: 10% !important;
    }
}

.column-70 .input-field, .column-30 .input-field {
    width: 100% !important;
}



.custom-disabled, .custom-disabled label, .custom-disabled span {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
}

.custom-checkbox {
    position: relative;
    display: inline-flex;
    padding-left: 25px;
    cursor: pointer;
    font-size: 16px;
    gap: 16px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #999;
    margin-left: 0px !important;
    margin-top: 5px;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 1px;
    top: -10px;
    width: 8px;
    height: 15px;
    border: solid green;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* BOTONES DEL POPUP WHATSAPP Y EMAIL */ 
.div-description-button{
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom:20px
}

.button-compare-text {
    color: #FFF;
    font-size: 30px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    line-height: 123%;
    letter-spacing: -1.65px;
}

.button-view-compare-text {
    color: #FFF;
    font-size: 24px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    line-height: 123%;
    letter-spacing: -1.65px;
    text-align: center;
}

.number-card-checked {
    margin-left: 15px;
}

.cancel-view-compare-text {
    color: #FFF;
    font-size: 20px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    line-height: 123%;
    letter-spacing: -1.65px;
}

.error-custom-date {
    margin: 0;
}

.icons-fill-color {
    fill: #000;
    opacity:0.3;
}

.svg-height {
    height: 18px;
}

.div-tarjeta-verificar {
    column-gap: 8.5% !important;
}

@media only screen and (max-width: 600px) { 
    .custom-checkbox {
        font-size: 12px;
    }

    .checkmark {
        margin-top: 4%;
    }

    .select-div {
        position: relative;
        width: 15rem;
    }

    .select-dividido {
        width: 80%;
        grid-template-columns: 55% 32%;
        column-gap: 10%;
    }

    .div-social-networks {
        display: none;
    }

    .discount-text {
        font-size: 20px;
    }

    .div-discount {
        top: 80px;
        width: 85px;
        height: 35px;
    }
    .my_account-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%; /* 17.22px */
        letter-spacing: -0.77px;
    }

    .my_account-img {
        width: 20px;
    }

    .div-my_account {
        top: 35px;
        width: 115px;
        height: 31px;
    }

    .return__home {
        top: 35px;
        right: 150px;
    }

    .return__home-img {
        position: relative;
        top: 0px;
        height: 31px;
    }

    .input-wrapper label {
        top: 5px;
        font-size: 13px;
    }

    .input-common-mt {
        margin-top: 3px;
    }

    .select-item {
        font-size: 16px;
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .button-compare-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }

    .button-view-compare-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }

    .cancel-view-compare-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }

    .svg-height {
        height: 14px;
    }

    .div-tarjeta-verificar {
        column-gap: 20% !important;
    }
}

@media only screen and (max-width: 391px) { 

    .return__home-grid {
        right: 85%;
        top: 4.3rem;
    }

    .div-tarjeta-verificar {
        column-gap: 20% !important;
    }
}

@media only screen and (max-width: 1366px) and (min-width: 601px) {

    .custom-checkbox {
        font-size: 12px;
    }

    .checkmark {
        margin-top: 2px;
    }
    .select-dividido {
        grid-template-columns: 63.5% 30%;
        column-gap: 30px;
    }

    .select-btn {
        height: 25px !important;
    }

    .my_account-text {
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }

    .my_account-img {
        width: 30px;
    }

    .div-my_account {
        top: 35px;
        width: 150px;
        height: 40px;
    }

    .div-social-networks {
        gap: 10px;
        top: 300px;
        width: 50px;
        height: 105px;
    }

    .social_networks-img {
        width: 35px;
    }
    
    .return__home {
        top: 35px;
        right: 185px;
    }
    .return__home-img {
        top: 20px;
        height: 40px;
    }

    .input-wrapper label {
        font-size: 15px;
    }
    .input-field p {
        font-size: 14px;
    }

    .select-item {
        font-size: 15px;
    }
    
    .input-common-mt {
        font-size: 15px;
    }

    .div-discount {
        top: 120px;
        width: 100px;
        height: 40px;
    }

    .discount-text {
        font-size: 22px;
    }

    .button-compare-text {
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }

    .button-view-compare-text {
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }
   
    .cancel-view-compare-text {
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 123%;
        letter-spacing: -0.77px;
    }
}
