@font-face {
    font-family: 'Lineca';
    src: url('../fonts/F37Lineca-Bold/F37Lineca-Bold.otf') format('opentype'), url('../fonts/F37Lineca-Bold/F37Lineca-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Lineca';
    src: url('../fonts/F37Lineca-Book/F37Lineca-Book.otf') format('opentype'), url('../fonts/F37Lineca-Book/F37Lineca-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lineca';
    src: url('../fonts/F37Lineca-Light/F37Lineca-Light.otf') format('opentype'), url('../fonts/F37Lineca-Light/F37Lineca-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}


:root {
    --AbbVie-Dark-Blue: #071D49;
    --AbbVie-Medium-Blue: #A6B5E0;
    --AbbVie-Light-Blue: #f2f2f2;
    --AbbVie-Withe: #FFFFFF;
    --Global-Dark-Green: #338700;
    --Curious-Cobalt-Dark: #0066F5;
    --Curious-Light-Cobalt: #00A1FF;
    --Global-Light-Green: #338700;
    --Remarkable-Dark-: #CF451C;
    --Remarkable-Light-Red: #F7634F;
    --Color-Text-Gray: #363636;
    --Purposeful-Dark-Purple: #8A2ECC;
    --Color-Input: #F0F2F5;
    --Color-BackgroudApp: #D1D1D1;
    --Color-PlaceholderInput: #C0CCDC;
    --Color-Facebook: #3b5998;
    --Color-Salesforce: #1798c1;
    --Color-Google: #4285F4;
    --Color-TextLabel: rgb(62,65,75);
}


* {
    margin: 0;
    padding: 0;
    font-family: 'Lineca', sans-serif;
  
}

.hidden {
    display: none;
}


/*Animaciones*/
.animationIn {
    position: relative;
    animation: slideFromRight 0.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animationInOO {
    position: relative;
    animation: slideFromRight 0.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animationOut {
    animation: slideToLeft 1s ease-in-out forwards;
}

@keyframes slideToLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.spin {
    animation: spinAnimation 0.6s linear forwards;
}

@keyframes spinAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.zoomIn {
    animation: zoomInAnimation 0.4s ease-in-out forwards;
    transform: scale(0);
}

@keyframes zoomInAnimation {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.zoomIn6s {
    animation: zoomInAnimation6s 0.6s ease-in-out forwards;
    transform: scale(0);
}

@keyframes zoomInAnimation6s {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.zoomOut {
    animation: zoomInAnimation 0.4s ease-in-out forwards;
    transform: scale(0);
}

@keyframes zoomInAnimation {
    100% {
        transform: scale(1);
    }

    0% {
        transform: scale(0);
    }
}


.bounce {
    animation: bounceAnimation 0.4s ease-in-out infinite alternate;
}

@keyframes bounceAnimation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}


.colorChange {
    animation: colorChangeAnimation 2s ease-in-out infinite alternate;
}

@keyframes colorChangeAnimation {
    0% {
        background-color: red;
    }

    50% {
        background-color: blue;
    }

    100% {
        background-color: green;
    }
}

.fadeIn {
    animation: fadeInAnimation 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes flipIn {
    from {
        transform: rotateY(90deg);
        opacity: 0;
    }

    to {
        transform: rotateY(0);
        opacity: 1;
    }
}

.flip-in {
    animation: flipIn 2s ease;
}


.tracking-in-expand {
    animation: tracking-in-expand 0.5s linear both
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -.2em;
        opacity: 0
    }

    40% {
        opacity: .6
    }

    100% {
        opacity: 1
    }
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.glow-effect {

    animation: borderGlow 2s ease-in-out; /* Animación infinita */
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.1); /* Sombra negra tenue inicial */
    border: 1px solid rgba(200, 200, 200, 0.2); /* Borde tenue */
    transition: transform 3s ease-in-out; /* Añadir una transición suave para el zoom */
}

@keyframes borderGlow {
    0% {
        box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.1); /* Sombra inicial tenue */
        transform: scale(1); /* Sin zoom al inicio */
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2); /* Sombra negra más difusa */
        transform: scale(1.02); /* Aumenta el tamaño a 110% para el zoom */
    }

    100% {
        box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.1); /* Vuelta a la sombra inicial */
        transform: scale(1); /* Volver al tamaño normal */
    }
}


.font-bold{
    font-weight:bold;
    color: var(--Global-Dark-Green);
}

.wrapper {
    border: 1px solid var(--AbbVie-Dark-Blue);
    padding: 4px;
    width: 270px;
    height: 16px;
}

.space {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loading {
    position: absolute;
    background-color: var(--AbbVie-Dark-Blue);
    width: 100%;
    height: 100%;
    animation: loading 5s steps(40) infinite;
}


/*Fin de animaciones*/


/* App */
span{
    color: var(--Remarkable-Dark-);
}

.Back {
    display: none;
}

.Front {
    display: inline-block;
}


.Navbar_StudiesLab_Container {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    background-color: var(--AbbVie-Dark-Blue);
    color: var(--AbbVie-Withe);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
}

.Navbar_StudiesLab {
    width: 90%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.WhatsApp_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight:bold;
}

.Navbar_Arrow_iconNav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

    .Navbar_Arrow_iconNav i {
        color: var(--AbbVie-Dark-Blue);
        font-size: 19px;
    }

.WhatsApp_icon i {
    font-size: 25px;
    color: var(--AbbVie-Dark-Blue);
}

.Navbar-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--AbbVie-Dark-Blue);
}

.logout_Button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
}

    .logout_Button:hover {

        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }


.logout_Button img {
    width: 30px;
    height: 30px;
}

.Help_WhatsApp_button {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--AbbVie-Withe);
    color: var(--AbbVie-Dark-Blue);
}

.Help_WhatsApp_content {
    width: 80%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}
    .Help_WhatsApp_content p:hover {
        text-shadow: 0 0 10px var(--AbbVie-Medium-Blue); 
        font-weight:400;
    }

.Help_WhatsApp_content img{
    width: 30px;
    height:30px;
    
}

.Home_icon {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
    .Home_icon:hover {
        transform: scale(1.04);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }


.Container_App {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: start;
    background-color: var(--AbbVie-Withe);
}

.App {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: var(--AbbVie-Withe);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); */
    padding-bottom: 2rem;

    margin-bottom: 1rem;
}

button, input[type="checkbox"] {
    cursor: pointer;
}

/* Image */
.Container_img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 1rem;
}

    .Container_img img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }

/*Menu imagen*/
.Container_img_Menu {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
}

    .Container_img_Menu img {
        width: auto;
        height: 75%;
        object-fit: contain;
    }


/*login-ConfirmAccount*/

.login-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
}


/* Input Email*/

.Input_email_container {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.Container_title {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:1rem 0 1rem 0;
}

.Container_title_RequestVoucher{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text_Login {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text_Login p{
    width: 80%;
    height:auto;
    font-size:20px;
}

.title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: var(--AbbVie-Dark-Blue);
}

.Diagnosis-Title {
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--AbbVie-Dark-Blue);
    font-weight: 600;
    padding-left: 10px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background-color: #C6D1F0;
    width: 93.5%;
    height: 40px;
    transform: translateY(10px);
}
    .Diagnosis-Title:hover {
        background-color: #D1DBF5;
    }

.Diagnosis-Group {
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--Color-BackgroudApp);
    border-right: 2px solid var(--Color-BackgroudApp);
    border-bottom: 2px solid var(--Color-BackgroudApp);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 0; /* Esconder inicialmente */
    opacity: 0; /* Transparencia inicial */
    overflow: hidden; /* Ocultar el contenido mientras está colapsado */
    transition: max-height 0.5s ease, opacity 0.5s ease; /* Animación suave */
}

    .Diagnosis-Group.show {
        max-height: 900px; /* Ajusta según el contenido máximo esperado */
        padding-bottom:10px;
        opacity: 1; /* Totalmente visible */
    }

    .Diagnosis-Group.hide {
        max-height: 0; /* Contrae */
        opacity: 0; /* Se desvanece */
    }




.Container_inputs {
    width: 100%;
    height: auto;
    border: 2px solid #443c3c00;
}

.Input_email {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: start;
}

.content_textemail {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 14px;
    color: var(--Color-Text-Gray);
}

.content_inputEmail {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Form_HCP {
    width: 100%;
    height: auto;
    margin-top:1.5rem;
}

.MessageUser_HCP{
    font-size:13px;
    text-align:center;
    width:100%;
}

.Container_btnHCP {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.button_HCPRsgister {
    width: 85%;
    height: 50px;
    border-radius: 10px;
    border: none;
    color: var(--AbbVie-Withe);
    font-size: 14px;
    margin-top: 1.5rem;
}

.Container_FormHCP {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.Content_FormHCP {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Input_FormHCP {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

    .Input_FormHCP input, .Input_FormHCP select {
        width: 80%;
        height: 40px;
        border: none;
        border-radius: 5px;
        background-color: var(--AbbVie-Withe);
        border: 1px solid rgba(0, 0, 0, 0.5);
        padding-left: 15px;
        color: var(--AbbVie-Dark-Blue);
        font-size: 14px;
        margin-bottom: 0.5rem;
    }    
    
    .Input_FormHCP select {
        width: 83%;
    }

        .Input_FormHCP input:focus {
            outline: none;
            border: 1px solid var(--AbbVie-Dark-Blue);
            box-shadow: 0 0 5px var(--Curious-Cobalt-Dark);
        }
.Title_FormHCP {
    width: 82%;
    height: auto;
}

.Title_FormHCP label {
    font-size:15px;
}

.MainTitle_FormHCP {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .MainTitle_FormHCP p {
        width: 80%;
        height: auto;
        text-align:center;
        margin-top:1.5rem;
        font-size:18px;
        font-weight:bold;
    }



.content_inputEmail input {
    width: 78%;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: var(--AbbVie-Withe);
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 15px;
    color: var(--AbbVie-Dark-Blue);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

        .content_inputEmail input:focus {
            outline: none;
            border: 1px solid var(--AbbVie-Dark-Blue);
            box-shadow: 0 0 5px var(--Curious-Cobalt-Dark);
        }

        .content_inputEmail input::placeholder {
            color: #9e9e9e;
            font-size: 14px;
        }
#errorSpan{
    font-size:13px;
    color:var(--Remarkable-Dark-);
}
/* Input Consent*/
.Input_consent_container, .Input_consent_container2 {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.Input_consent, .Input_consent2 {
    width: 80%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}




/* Estilo para las etiquetas de los checkboxes */
.checkbox,
.checkbox2{
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
}
    .checkbox input,
    .checkbox2 input
   {
        width: 17px;
        height: 17px;
        border-color: var(--Color-PlaceholderInput);
        background-color: aqua;
    }

    .checkbox input::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px; 
        background-color: violet;
        border-radius: 3px; 
    }

.checkboxText p,
.checkboxText2 p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}



/*User Messages*/

.Container_UserMessages {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .Container_UserMessages p {
        color: var(--AbbVie-Dark-Blue);
    }

.Text_otherOptions {
    color: #636363;
    font-size: 14px;
}

/*Bottons*/

.Buttons_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: 1rem;
}

.buttons {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    color: var(--AbbVie-Withe);
    font-size: 14px;
}

.Btn_Login:disabled{
    background:var(--Color-BackgroudApp);
}

.button_color {
    background-color: var(--AbbVie-Dark-Blue);
}

.buttonReport {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    color: var(--AbbVie-Withe);
    font-size: 14px;
}
    .buttonReport:hover {
        transform: scale(1.03);
        font-size: 13px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

.Iniciar {
    border-radius: 10px;
    font-size: 14px;
}

.buttons:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.buttons:active {
    transform: scale(0.95);
}


.button_Facebook, .button_Google, .button_Salesforce {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button_Salesforce_content, .button_Facebook_content, .button_Google_content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button_Salesforce img, .button_Facebook img, .button_Google img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.button_Salesforce img {
    width: 45px;
}

.button_Google {
    margin-bottom: 1rem;
}

.button_ {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.button_text {
    width: 100%;
}

.button_Facebook_img_container, .button_Facebook_img_container, .button_Salesforce_img_container {
    width: 30%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff86;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


.button_Email {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

    .button_Email button {
        background-color: var(--AbbVie-Dark-Blue);
        width: 80%;
    }

.Messages_User{
   width:70%;
   margin-bottom:10px;
}
.MessagesPIN_User {
    margin-top:1rem;
    width: 70%;
    text-align:center;
    color:var(--Curious-Cobalt-Dark);
}

.ConfirmAccount_Container{
    height:auto;
}

.button_Salesforce button {
    background-color: var(--Color-Salesforce );
}

.button_Facebook button {
    background-color: var(--Color-Facebook);
}

.button_Google button {
    background-color: var(--Color-Google);
}


@media screen and (min-width: 600px) {
    .App {
        width: 500px;
      
        border-radius: 10px;
    }
}




/*login-ConfirmAccount*/

.ConfirmAccount-card {
    width: 100%;
    height: auto;
}
/**/

.Container_UserMessages {
    height: auto;
    margin-bottom:5px;
}

/**/
.Emailprop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--AbbVie-Medium-Blue);
}
/**/
.Inputs_phone {
    display: none;
    width: 100%;
    height: 8rem;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

    .Inputs_phone input {
        width: 10%;
        height: 50%;
        outline: none;
        font-size: 30px;
        color: var(--Color-Text-Gray);
        text-align: center;
        border: none;
        border: 2px solid var(--AbbVie-Medium-Blue);
        border-radius: 5px;
        
    }

        .Inputs_phone input:focus,
        .Inputs_phone input.input-filled {
            border: 2px solid var(--Global-Light-Green);
        }

.input-filled {
    border: 2px solid var(--Global-Light-Green);
}

.Container_ConfirmCode {
    display: none;
    width: 100%;
    height: 35px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.button_ConfirmCode {
    width: 80%;
}

    .button_ConfirmCode button {
        width: 100%;
        background-color: var(--AbbVie-Dark-Blue);
        color: var(--AbbVie-Withe);
        height: 50px;
        border-radius: 10px;
        border:none;
    }

.efect:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.Email_SMS_Container {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Container_buttonsSMSEmail {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
}

.button_SendSMS, .button_SendEmail {
    width: 80%;
    height: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .button_SendSMS img, .button_SendEmail img {
        margin-right: 0.5rem;
        width: 30px;
    }

    .button_SendSMS button {
        background-color: var(--Curious-Cobalt-Dark);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
    }

    .button_SendEmail button {
        background-color: var(--AbbVie-Dark-Blue);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
    }
.button_SendPIN {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}
    .button_SendPIN button {
        justify-content: center;
        align-items: center;
        background-color: var(--Curious-Cobalt-Dark);
        border: none;
        color: var(--AbbVie-Withe);
        width: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 45px;
        border-radius: 5px;
        margin-top: 2rem;
    }  
    .button_SendPIN button:disabled {

        background-color: var(--Color-Input);

    }
    .button_SendPIN img{
        width:30px;
        height:30px;
        margin-right:10px;
    }

/* */


.titleMenu {
    font-size: 16px;
    color: var(--Color-TextLabel);
}

.Menu-card {
    width: 100%;
    height: auto;
}

.Container_buttons {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-content:center;
    gap: 20px;
}

.container_buttonMenu{
    display:flex;
    justify-content:center;
    width:100%;
}

.text-button {
    text-align: start;
    font-size: 15px;
    width: 70%;
    padding-left: 30px;
    font-weight: 400;
    color: var(--AbbVie-Withe);
}
.text-BackAdminSistem{
    color:var(--AbbVie-Dark-Blue);
}


.buttonsMenu, .BackAdminSistem_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 75px;
    border-radius: 10px;
    border: none;
}

.BackAdminSistem_button {
    margin-top: 1rem;
    gap: 1rem;
    height: 55px;
}

    .BackAdminSistem_button:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .buttonsMenu:hover {
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
.iconbutton img{
    width:30px;
}

.LaboratoryStudies-button {
    background-color: var(--AbbVie-Dark-Blue);
    height: 80px;
}

    .LaboratoryStudies-button.text {
        background-color: var(--AbbVie-Dark-Blue);
        height: 80px;
    }


.Gitf-button {
    background-color: var(--Curious-Cobalt-Dark);
}

.gift-icon {
    background-size: cover;
    width: 35px;
    height: auto;
}

.ResquestHistory-button {
    background-color: var(--AbbVie-Dark-Blue);
}

.MyInformation-button {
    background-color: var(--AbbVie-Dark-Blue);
}


/*Estudios de Laboratorio*/


.MessagesUserStudies {
    width: 70%;
    font-size: 15px;
    margin-top: 20px;
}

.Navbar_Container_Studies {
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(254,254,246);
}

.Navbar_title_StudiesLab {
    font-size: 16px;
    font-weight: 800;
    color: var(--AbbVie-Dark-Blue);
}

.Arrow-iconNav {
    width: auto;
    height: auto;
}

    .Arrow-iconNav i, .WhatsApp-icon {
        font-size: 30px;
        color: var(--AbbVie-Dark-Blue);
    }

.WhatsApp-icon {
    font-size: 35px;
}
.imgTestTubes_Studies_Container{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.imgTestTubes_Studies {
    width: 10rem;
    height: 9.5rem;
}

.Scroll-block {
    width: 100%;
    height: auto;
    background-color: rgb(255,255,255);
}

.LaboratoryStudies-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.LaboratoySet {
    margin-top: 20px;
    width: 89%;
    height: auto;
    border-radius: 5px;
    background-color: rgb(251,251,251);
    border: 2px solid var(--Color-BackgroudApp);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Set-Container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    border-radius: 5px;
}

.Set-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--AbbVie-Dark-Blue);
}
.Title_RequestVoucher, .subtitle_RequestVoucher {
    width: 100%;
    margin-top: 1rem;
    font-size: 15px;
    display: flex;
    align-items: start;
    justify-content: center;
}
.subtitle_InitialTreatment {
    width: 90%;
    margin-top: 2rem;
    
    font-size: 15px;
    display: flex;
    align-items: start;
    justify-content: start;
}

.subtitle_RequestVoucher p{
    margin-bottom: 2rem;

}

    .Title_RequestVoucher p {
        width: 87%;
        margin-top: 0.5rem;
        font-size: 15px;
    }

.buttonCoupon_RequestVoucher {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.buttonCoupon_RequestVoucher button{
    margin-top: 1rem;
    width: 90%;
    height: 50px;
    border-radius: 10px;
    border: none;
    color: var(--AbbVie-Withe);
    background-color: var(--AbbVie-Dark-Blue);
    font-size: 14px;
}

    .buttonCoupon_RequestVoucher button:hover {
        transform: scale(1.03);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }



.Modal_Img_Studies {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .Modal_Img_Studies img {
        width: 200px;
        height: 200px;
    }

.Studies-name {
    font-size: 14px;
    color: var(--Color-TextLabel);
}

.Diagnosis-name {
    font-size: 14px;
    color: var(--Color-TextLabel);
    width: 100%;
    height: 15px;
    margin-bottom:3px;
}


.Set-title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--AbbVie-Dark-Blue);
    font-weight: 600;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background-color: var(--AbbVie-Medium-Blue);
    width: 100%;
    height: 40px;
}


.Modal_InfoDoctor_Cotainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

    .Modal_InfoDoctor_Cotainer button {
        width: 90%;
        height: 40px;
        border: 2px solid var(--AbbVie-Medium-Blue);
        color: var(--AbbVie-Dark-Blue);
        font-size: 13px;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
        margin-top:1rem;
    }

        .Modal_InfoDoctor_Cotainer button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }




/* CSS para las flechas */
.Arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .Arrow-icon i {
        margin-left: 5px;
    }

.rotate {
    transform: rotate(180deg);
}


.Number-set {
    color: var(--AbbVie-Dark-Blue);
    font-size:14px;
}

.coupons_available {
    color: var(--AbbVie-Dark-Blue);
    font-weight: bold;
}

.Studies-container {
    display:flex;
    align-items: start;
    flex-direction: column;
    margin-bottom:1rem;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    margin-left:1rem;
}


    .Studies-container.show {
        animation: slideDown 1.5s forwards;
        animation-delay: 0.4s; /* Añade el retardo que desees, en este caso 0.5s */
    }

    .Studies-container.hide {
        animation: slideUp 0.4s forwards;
    }


@keyframes slideDown {
    from {
        max-height: 0;
    }

    to {
        max-height: 500px; /* Ajusta este valor según sea necesario */
    }
}

@keyframes slideUp {
    from {
        max-height: 500px; /* Ajusta este valor según sea necesario */
    }

    to {
        max-height: 0;
    }
}

.hidden {
    display: none;
}

.Studies-options {
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    width: 90%;
}
    .Studies-options label {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: start;
    }


.Radio-button {
    width:19px;
    height:19px;
}

.Radio-button-Diagnosis {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    margin-top:10px;
    margin-bottom:10px;
}

.Check-Studies:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid #007bff;
    transform: translateY(5px);
    border-radius: 50%;
    cursor: pointer;
}


.Studies {
    cursor: pointer;
}

.Radio-button:checked + .Check-Studies .Studies {
    font-weight: bold;
    color: #007bff;
}

.Name-studies {
    width: 260px;
}

.customCheckboxLabel {
    border: 3px solid var(--AbbVie-Dark-Blue);
}


/*Doctor card information*/

.Doctor-information-container {
    width: 100%;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    
}

.Doctor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--Color-Input);
    margin-top: 20px;
    width: 80%;
    height: auto;
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
    background-color: rgb(251,251,251);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), -2px -2px 6px rgba(0, 0, 0, 0.1);
}


}

.Close_Modal_Help {
    width: 100%;
    height:auto;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
}
.close_button {
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

    .close_button:hover,
    .close_button:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 1rem;
    border: 1px solid #888;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.card_Contorno {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    gap: 10px;
    background-color: rgb(251,251,251);
    border: 2px solid var(--AbbVie-Medium-Blue);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}
.card_Contorno_information {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    gap: 10px;
    background-color: rgb(251,251,251);
    border: 2px solid var(--AbbVie-Medium-Blue);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.card_exit_contorno {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    gap: 10px;
    background-color: rgb(251,251,251);
    border: 2px solid var(--AbbVie-Medium-Blue);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.Doctor_tag {
    color: var(--Color-Text-Gray);
    font-size:20px;
    font-weight:800;
   
}
.Doctor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--AbbVie-Dark-Blue);
    height: 80px;
    width: 80px;
    border-radius: 50px;
}

    .Doctor-icon img {
        width: 80%;
        height: 80%;
    }

.IconDoctor_Container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.card_Content{
    width:100%;
}

.BntDateError_Container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.Bnt_BackMenu {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .Bnt_BackMenu button{
        background-color: var(--AbbVie-Medium-Blue);
        color: var(--AbbVie-Dark-Blue);
        font-weight:bold;
    }

    .style_logout, .style_cancel {
        width: 100%;
        height: 50px;
        border-radius: 10px;
        border: none;
    }
.style_cancel {
    background-color: var(--AbbVie-Light-Blue);
    color: var(--AbbVie-Withe);
}


.style_logout {
    background-color: var(--AbbVie-Medium-Blue);
    color: var(--AbbVie-Dark-Blue);
    font-weight: bold;
}



.MessageUserTerms {
    text-align: start;
    width: 80%;
    font-size: 15px;
}


.Title_OOTerms {
    color: var(--AbbVie-Dark-Blue);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.logout_message {
    color: var(--AbbVie-Dark-Blue);
    font-size: 15px;
    text-align: center;
}

.Name-doctor, .Name-VirtualRep {
    color: var(--AbbVie-Dark-Blue);
    font-weight: 600;
    text-align: center;
    margin-bottom:5px;
    font-size:18px;
}
.Position-VirtualRep {
    color: var(--AbbVie-Dark-Blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 15px;
}

.logout_message {
    color: var(--AbbVie-Dark-Blue);
    font-size: 15px;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}


.Data-doctor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.Conset_Doctor {
    height: 250px;
    overflow-y: scroll;
    border-radius:10px;
    padding:15px;
    font-size:14px;
    margin-bottom:2rem;
}

    .Conset_Doctor p{
        margin-bottom: 1rem;
        text-align: justify;
    }

    .Conset_Doctor p .Tab {
        margin-left: 1rem;
        text-align: justify;
    }
    .Conset_Doctor img {
        width:18rem;
    }

.View_Reminder{
    color: var(--Global-Light-Green);
    display:none;
    justify-content:center;
    text-align:center;
}
.Title_Cosnet {
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.Paragraph_Conset {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.Data-doctor_helpservice {
    margin-top: 0rem;
}



.EmailVirtualRep {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.Data-doctor_helpservice p {
    width: 50%;
    height: auto;
}

.Data-doctor label {
    color: var(--Global-Light-Green);
    display: block;
    font-weight: 600;
}

    .Data-doctor span {
        color: var(--Color-Text-Gray);
        display: block;
    }

.buttons {
    width: 300px;
    height: 50px;
}

    .buttons i {
        margin-left: 10px;
    }

.Container_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-info-doctor{
    width: 138px;
    height:50px;
    font-size: 14px;
    background-color: var(--AbbVie-Dark-Blue);
}
.style_btnemail {
    width: 100%;
    height: 50px;
    font-size: 14px;
    background-color: var(--AbbVie-Dark-Blue);
    color: var(--AbbVie-Withe);
}

.style_btnemail {
    width: 70%;
    height: 50px;
    font-size: 14px;
    background-color: var(--AbbVie-Dark-Blue);
    color: var(--AbbVie-Withe);
}


.style_btnCall {
    width: 70%;
    height: 50px;
    font-size: 14px;
    background-color: var(--AbbVie-Dark-Blue);
    color:var(--AbbVie-Withe);
}
.style_btnCancel {
    width: 100%;
    height: 50px;
    font-size: 14px;
    background-color: var(--AbbVie-Medium-Blue);
    color: var(--AbbVie-Dark-Blue);
}

.logout_button_cancel{
    background-color:var(--AbbVie-Dark-Blue);
}

.Modify_btn_info_doctor {
    background-color: var(--Curious-Cobalt-Dark);
}

.MessagesUser_Studies {
    width: 80%;
    margin-top: 1.5rem;
    font-size: 13px;
}

#laboratory-sets-container{
   width:100%;
   display:flex;
   flex-direction:column;
   justify-content:center;
   align-items:center;
}



.Container_buttonHistory {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 20px;
}

/*Modal de estudios selecciondos*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 2rem;
    backdrop-filter: blur(2px);
}




.Modalimg_Container{
    display:flex;
    align-items:start;
    justify-content:start;
}

.Modalimg_Container img{
    width:20%;
}

.modal-title {
    font-size: 18px;
    text-align: center;
    font-weight:bold;
    color: var(--AbbVie-Dark-Blue);
}

.Center_Prop{
    display:flex;
    align-items:center;
    justify-content:center;
}

.modal-body {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    background-color: var(--Color-Input);
    margin-bottom: 2rem;
}
.Body_OO {
    margin-bottom: 0rem;
}
.modal-body ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    width: 80%;
}
    .modal-body li {
        font-size:14px;
        
    }

.NameDoctor_Container {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    width:100%;
    font-size:15px;
}

.NameDoctor_label {
    font-weight:600;
}

.NameDoctor{
    color:var(--Global-Dark-Green);
}

.ModalCategory {
    display: inline-block;
    color: var(--Curious-Cobalt-Dark);
    margin-left: 1rem;
    margin-bottom: 3px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction:row;
    gap:1rem;
}


.btnModalStudies_Confirm {
    width: 8rem;
    height: 45px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight:100;
}

.cancelBtn {
    background-color: var(--AbbVie-Medium-Blue);
    color: var(--AbbVie-Dark-Blue);
    font-weight:bold;
    
}

    .cancelBtn:hover {
        transform: scale(1.03);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

.confirmBtn {
    background-color: var(--AbbVie-Dark-Blue);
    color: var(--AbbVie-Withe);
}

    .confirmBtn:hover {
        transform: scale(1.03);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }




.errorMessage_GenerateCoupon, .ShareEmail_error {
    display: none;
    color: var(--Remarkable-Dark-);
    width:85%;
    margin:8px;
}


/*Detalles del Voucher generado*/


.LaboratoySet_Details {
    margin-top: 20px;
    width: 85%;
    height: 100%;
    border-radius: 5px;
    padding: 15px;
    padding-bottom: 0;
    background-color: rgb(250,250,250);
    border: 2px solid rgb(227,234,231);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Sombra oscura */
}

.Sets_Container_Details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height:10rem;
    width:100%;
}

.Set_title_Details {
    display: flex;
    justify-content: space-between;
    color: var(--Global-Dark-Green);
    font-weight: 600;
    border-radius: 20px;
}


.Set_name_Details{
    font-size: 15px;
    font-weight: bold;
    color: var(--Global-Dark-Green);
}

.Set_date_Details span {
    color: var(--Curious-Cobalt-Dark);
    font-size: 14px;
}

.Studies_container_Details {
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 10px;
    height: 8rem;
    padding-bottom:0.5rem;
}

.LaboratoryStudies_card_Details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:auto;
}

.StudieLabel_Details{
    color: var(--Color-TextLabel);
    font-size:14px;
    width:100%;
}

.StudieLabel_Details span{

    width: 80%;
}
.NameStudy_Details, .KeyStudy_Details, .DateStudy_Details{
    color: var(--Color-TextLabel);
    font-weight: bold;
  
}

.Share_buttons {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:center;
    gap: 1rem;
    width:80%;
    margin-top:2rem;
}

.buttons_DetailsVoucher {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    width:200px;
    background-color: var(--Global-Light-Green);
    height: 50px;
    border-radius: 10px;
    color: var(--AbbVie-Withe);
    border: none;
    font-size: 15px;
    gap:5px;
}

.buttons_DetailsVoucher img{
    width: 30px;
    height: 30px;
}



.BtnShare_Details {
    background-color: var(--AbbVie-Dark-Blue);
    color: var(--AbbVie-Withe);
}

.BtnDownload_Details {
    background-color: var(--AbbVie-Dark-Blue);
    border: 3px solid var(--AbbVie-Medium-Blue);
    color: var(--AbbVie-Withe);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
   
}


.Studies {
    display: flex;
    flex-direction: column;
}

    .Studies span {
        font-weight: 500;
    }


    /*Estilos de Historial de Cupones*/

.LaboratoySet_Menu {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
    border-radius: 5px;
    border: 2px solid var(--Color-BackgroudApp);
    box-shadow: 2px 2px 10px 1px rgba(20, 20, 20, 0.1);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    gap: 1rem;
}

.container_globalVoucher {
    display: flex;
    flex-direction: row;
    height:auto;
    width:100%;
   

}

.container_stateVoucher {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
    transform: translateY(-3px);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.container_stateVoucherTag {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    font-size: 14px;
    background-color: var(--AbbVie-Medium-Blue);
    color: var(--AbbVie-Dark-Blue);
    padding:0 25px 0 25px;
    gap: 1rem;
    font-weight:bold;
}

.container_stateVoucherTag p{
    width:auto;
   
}

.State_Cupon {
    display: flex;
    justify-content: end;
    width: 100%;
    width: auto;
    text-align: center;
    padding: 7px;
    border-radius: 2px;
    color: var(--AbbVie-Withe);
    background-color: var(--Curious-Cobalt-Dark);
    font-weight:400;
}


.Sets_Container_Menu {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
}

.Set_title_Menu {
    display: flex;
    width:100%;
    height: auto;
    justify-content: center;
    color: var(--AbbVie-Dark-Blue);
    font-weight: 600;
    border-radius: 20px;
}

.Set_name_Menu {
    font-size: 15px;
    font-weight: 800;
    color: var(--Global-Light-Green);
}

.Set_name_History {
    width:80%;
    display: flex;
    flex-direction:row;
    align-items:center;
    justify-content:start;
    font-size: 16px;
    font-weight: 900;
    color: var(--Global-Dark-Green);
}


.BtnHistory_Details_a {
    color: var(--AbbVie-Withe);
    text-decoration: none;
}

.button_selectHCP {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    padding-left: 10px;
    padding-right: 10px;
    width: 80%;
    height: 100%;
    gap: 10px;
    font-weight: bold;
}

    .button_selectHCP button {
        width: 223px;
        height: 45px;
        border-radius: 5px;
        border: none;
        font-size: 12px;
        background-color: var(--AbbVie-Dark-Blue);
        color: var(--AbbVie-Withe);
        
    }
        .button_selectHCP button:hover {
            transform: scale(1.02);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

    .Set_buttonDetails_History {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
        width: 95%;
        height: 100%;
        gap: 10px;
        font-weight: bold;
    }

    .Set_buttonDetails_History button {
        width: 100%;
        height: 35px;
        border-radius: 5px;
        border: none;
        font-size:12px;
    }

.BtnHistory_Share{
    background-color: var(--AbbVie-Dark-Blue);
    color:var(--AbbVie-Dark-Blue);
}

.BtnHistory_Download {
    background-color: var(--Curious-Cobalt-Dark);
}

.BtnHistory_Download a{
    color: var(--AbbVie-Withe);
    font-weight:bold;
}

.BtnHistory_Details {
    background-color: var(--Color-BackgroudApp);
    color: var(--AbbVie-Dark-Blue);
    font-weight:bold;
}
.BtnHistory_Details a{
    color: var(--AbbVie-Dark-Blue);
}

.Studies_container_Menu {
    display: flex;
    align-items: start;
    flex-direction: column;
    height: auto;
}

.LaboratoryStudies_card_Menu {
    width: 100%;
    height:auto;
    display: flex;
    gap:2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom:1rem;


}

.CreationDate_Container{
    text-align:center;
    width:100%;
    border-bottom:2px solid var(--Color-BackgroudApp);
}

.StudieLabel_Menu {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    color: var(--Color-TextLabel);
    font-size: 12px;
    margin-bottom:5px;
    width:100%;
    height:auto;
}

.Container_DateOfCreation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--Color-TextLabel);
    font-size: 15px;
    margin-top: 3rem;
    margin-bottom: 5px;
    width: 100%;
    font-weight:bold;
    height: auto;
    color:var(--AbbVie-Dark-Blue);
}

.NameStudy_Menu, .KeyStudy_Menu, .DateStudy_Menu, DateOfCreation_text {
    color: var(--Color-TextLabel);
    font-weight: bold;
}



.Container_buttons_VouccherDetails {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-content: center;
}

.Share_buttons {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:center;
    gap: 1rem;
    width: 87%;
    margin-top: 2rem;
}

.buttons_MenuVoucher {
    width: 90%;
    background-color: var(--AbbVie-Dark-Blue);
    height: 50px;
    border-radius: 10px;
    color: var(--AbbVie-Withe);
    border: none;
    font-size: 15px;
}

    .buttons_MenuVoucher i {
        margin-left: 0.3rem;
    }

.BtnShare_Menu {
    background-color: var(--AbbVie-Dark-Blue);
}

.BtnDownload_Menu {
    background-color: var(--Global-Light-Green);
    box-shadow: 0 4px 8px rgba(51, 135, 0, 0.3);
}



.BtnMenu_History {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
}

.Title_Voucherhistory .Title_VoucherRequest {
    width: 100%;
    height: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight:bold;
}


.Title_Voucherhistory p, .Title_VoucherRequest p {
    text-align: center;
    color: var(--AbbVie-Dark-Blue);
    width: 100%;
    height: auto;
    font-size: 18px;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0rem;
}

.marginbottom{
    margin-bottom:2rem;
}

/*Modal de Voucher Details Compartir por Correo*/
.modal_VoucherDetails, .Modal_LoadingAnimation {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.Content_HelpServiceCard{
    width:100%;
}


.Modal_HelpService {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    height:30rem;
    justify-content: center;
}

.Modal_exit_ {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    justify-content: center;
    background-color: aquamarine;
}

.modal-content_VoucherDetails, .Modal_Content_LoadingAnimation {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #888;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
}
.modal-content_VoucherDetails{

    padding: 1rem;

}


.Modal_Img_VoucherDetails {
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Modal_Img_VoucherDetails img {
    width: 200px;
    height: 200px;
}

.Container_title_VoucherDetails {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.modal-title_VoucherDetails {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: var(--AbbVie-Dark-Blue);
}

.modal-footer_VoucherDetails {
    width: 100%;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.modal-footer_VoucherDetails button {
    margin-top:1rem;
    width: 100%;
    height:40px;
    border-radius:5px;
    border:none;
  

}

.cancelBtn_VoucherDetails {
    background-color: var(--AbbVie-Medium-Blue);
    border: 3px solid var(--AbbVie-Medium-Blue);
    color: var(--AbbVie-Dark-Blue);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.confirmBtn_VoucherDetails {
    background-color: var(--AbbVie-Dark-Blue);
    color: var(--AbbVie-Withe);
}

.content_inputEmail_VoucherDetails {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .content_inputEmail_VoucherDetails select:focus {
        outline: none;
    }



.content_inputEmail_VoucherDetails input, .content_SelectHCPs select {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: var(--AbbVie-Withe);
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 15px;
    color: var(--AbbVie-Dark-Blue);
    font-size: 14px;
    margin-bottom: 0.5rem;
}
    .content_inputEmail_VoucherDetails select {
        width: 100%;
        height: 40px;
        border: none;
        border-radius: 5px;
        background-color: var(--AbbVie-Withe);
        border: 1px solid rgba(0, 0, 0, 0.5);
        padding-left: 15px;
        color: var(--AbbVie-Dark-Blue);
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
        .content_inputEmail_VoucherDetails select:focus {
            box-shadow: 0 0 5px var(--Curious-Cobalt-Dark);
        }
    .content_SelectHCPs select {
        width: 270px;
        height: 40px;
        border: none;
        border-radius: 5px;
        background-color: var(--AbbVie-Withe);
        border: 1px solid rgba(0, 0, 0, 0.5);
        padding-left: 15px;
        color: var(--AbbVie-Dark-Blue);
        font-size: 14px;
        margin-bottom: 0.5rem;
    }



.content_inputEmail_VoucherDetails input:focus, .content_SelectHCPs select:focus {
    box-shadow: 0 0 5px var(--Curious-Cobalt-Dark);
    outline: none;
}


    .content_inputEmail_VoucherDetails input::placeholder {
        color: #9e9e9e;
        font-size: 14px;
    }



.Input_email_VoucherDetails {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: start;
}

.content_textemail_VoucherDetails {
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 14px;
    color: var(--Color-Text-Gray);
}

.conten_DataDoctor {
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 14px;
    gap:10px;
}


.SelectHCPs{
    margin-bottom:10px;
}
.SelectHCP {
    flex-direction: column;
}

#doctorSearch {
    width: 95%;
}
/* Original de Obsequio Terminos y Condiciones*/
.Terms_button {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}


    .Terms_button button {
        background-color: var(--AbbVie-Dark-Blue);
        width: 85%;
    }

.Terms_Checkbox_Container {
    display: flex;
    width:100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.Terms_Checkbox_Content {
    display: flex;
    width: 80%;
    flex-direction: row;

}

    Terms_Checkbox_Content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

.Terms_Checkbox_Check {
    display:flex;
    width:7%;
   
}

.Terms_Checkbox_Check input{
    width: 17px;
    height:17px;
}

.checkboxText {
    width: 90%;  
    display: flex;
}

/*Card Success*/

.Success_card_Container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Centra verticalmente en toda la pantalla */
}

.Success_card {
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-icon {
    width: 100px; /* Ajusta el tamaño de la imagen */
    height: 100px; /* Ajusta el tamaño de la imagen */
    animation: bounce 3s forwards;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.Inscription_Patient{
    display:flex;
    width:75%;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.Inscription_Patient img{
    width:100%;
}

.Inscription_Patient_Check input {
    width: 18px;
    height: 18px;
    border-color: var(--Color-PlaceholderInput);
}

.Inscription_Patient_Check{
    display:flex;
    width:100%;
    height:auto;
    margin-top:1rem;
    margin-bottom:2rem;


}

.Check_Yes_Container, .Check_No_Container {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    width:50%;
    gap:0.2rem;
    font-size:20px;
}

/*Modal HelpService*/

.modal_HelpService_Container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente */
    padding-top: 60px;
    backdrop-filter: blur(2px);
    z-index: 1000;
    overflow: auto;
}


.modal_HelpService_Content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 1rem;
    border: 1px solid #888;
    height: auto;
    border-radius: 10px;
    max-width: 400px;
    padding-bottom: 10px;
    margin-bottom: 10rem;
}

.modal_generate_coupon {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 1rem;
    border: 1px solid #888;
    height: 45rem;
    padding-bottom: 2rem;
    border-radius: 10px;
    max-width: 400px;
    padding-bottom: 10px;
    margin-bottom: 10rem;
    overflow: auto;
}

.modal_exit_content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 1rem;
    border: 1px solid #888;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    max-width: 400px;
    margin-bottom: 2rem;
}

.container_Options {
    width: 100%;
    display:flex;
    flex-direction:row;
    align-items:center
}

.Subscribe_container {
    width: 100%;
}
.Subscribe_title {
    width: 100%;
}

.container_Options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:40px;
    margin-top:1rem;
    margin-bottom:2rem;
}

.Radio_Option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.Radio_Option input {
    width:20px;
    height:20px;
}

.Radio_Option span {
    font-size: 16px;
    color: var(--AbbVie-Dark-Blue);
}

.Menssage_UserSubscribe{
    color: var(--Remarkable-Light-Red);
    font-size:14px;
}

/* Diseño de la tabla del medico*/
.conten_DataDoctorVoucher {
    display: table;
    width: 80%;
    margin-bottom: 15px;
    border-spacing: 0;
    margin-top: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .conten_DataDoctorVoucher div {
        display: table-row;
    }

        .conten_DataDoctorVoucher div:nth-child(odd) {
            background-color: #f9f9f9;
        }

    .conten_DataDoctorVoucher span,
    .conten_DataDoctorVoucher p {
        display: table-cell;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .conten_DataDoctorVoucher span {
        font-weight: bold;
        background-color: var(--AbbVie-Light-Blue);
        color: var(--AbbVie-Dark-Blue);
        font-size: 14px;
    }

    .conten_DataDoctorVoucher p {
        color: var(--Color-Text-Gray);
        font-size: 14px;
    }

.ContainerMessagesPIN_User{
    display:flex;
    justify-content:center;
    width:100%;
}

.timer-container {
    display: none;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    margin-top: 1rem;
}

.timer {
    display: none;
    justify-content: center;
    position: relative;
    width: 200px;
    height: 200px;
}

    .timer svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .timer .time {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        font-weight: bold;
        color: #4b5563;
    }

.circle-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 10;
}

.circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

.Contaner_StudiesLab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 1rem 0 1rem 0;
    margin-top: 1rem;
    background-color: var(--AbbVie-Light-Blue);
    font-weight: 100;
}

    .Contaner_StudiesLab ul {
        display: flex;
        width: 65%;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        
    }
    
    .Contaner_StudiesLab li{
        font-weight:100;
    }

.Container_Dates {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    margin-top: 10px;
}

.term_link{
    color: var(--Curious-Cobalt-Dark);
    font-weight: 500;
}