/* Styles Home */
.logo-header {
    max-width: 300px;
}

body {
    scroll-behavior: smooth;
}

.container {
    max-width: 90%;
}

.banner-container {
    position: relative;
    background: linear-gradient(to bottom, #E67300 65%, #ffffff 35%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}

.export-style .banner img {
    aspect-ratio: auto;
}

.banner img {
    aspect-ratio: 44 / 41;
}

@media(min-width:768px) {
    .banner {
        position: relative;
        width: 100%;
    }

    .banner img {
        aspect-ratio: 1384 / 500;
    }

    .banner.full img {
        aspect-ratio: 1435 / 712;
    }
}

@media(max-width:768px) {
    .banner {
        min-height: 90vw;
    }

    .export-style .banner {
        min-height: auto;
    }
}

.banner img {
    width: 100%;
    max-width: 95vw;
    margin: auto;
    height: auto;
    display: block;
}



@media (max-width: 768px) {
    .banner img {
        content: url('./images/banner-home-mobile.svg');
    }

    .export-style .banner img {
        content: url('./images/banner-no-comenzo.svg');
    }
    .export-style .banner, .export-style .banner img{
        min-width: 100%;
    }

    .banner-container {
        padding-top: 30px;
        background: linear-gradient(to bottom, #E67300 75%, #ffffff 25%);
    }

    .banner a {
        top: -30px;
    }

    .btn-volver-mobile {
        margin-bottom: -20px;
    }

    .btn-volver-gskpro {
        margin-right: 0px !important;
    }
}

@media (min-width:1020px) {
    .btns-header {
        justify-content: end;
    }
}

.btn-volver-gskpro {
    color: var(--color-fondo);
    font-weight: bold;
}

@media (min-width:1030px) {
    .btn-volver-gskpro {
        position: absolute;
        top: 50px;
        z-index: 1;
    }
}

@media (min-width:769px) and (max-width:1030px) {
    .btn-volver-home {
        position: relative;
        top: 30px;
    }

    .banner {
        padding-top: 10px;
    }
}

.progreso-tratamiento {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}

.paso {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1.5px solid #506D85;
    border-radius: 30px;
    color: #506D85;
    position: relative;
    background-color: white;
}

.paso.activo {
    background-color: #506D85;
    color: white;
    font-weight: bold;
    border-color: #506D85;
}

.circulo-numero {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: white;
    color: #506D85;
    font-weight: bold;
    border: 1.5px solid #506D85;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 25px;
    transform: translateX(-50%);
}


.paso:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15%;
    top: 50%;
    width: 50px;
    height: 1.5px;
    background-color: #506D85;
    z-index: -1;
}


.btn-orange2 {
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    cursor: pointer;
    width: 100%;
    min-height: 45px;
}

@media (max-width:768px) {

    .progreso-tratamiento {
        flex-direction: column;
        align-items: normal;
        gap: 20px;
    }

    .paso:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 103%;
        left: 50%;
        height: 20px;
        width: 1.5px;
        background-color: #506D85;
        z-index: -1;
    }

    .link-volver-atras {
        display: none !important;
    }

    .fs-13-mb {
        font-size: 13px;
    }

    .container-btns {
        min-width: 100% !important;
        gap: 10px;
    }


    .volver-gskpro {
        display: block;
    }
}

/* Accordion */
.accordion {
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border: 1px solid #BBB9B3;
    align-items: center;
}

.arrow-accordion.rotate-arrow-down {
    width: 15px;
    height: 15px;
    background-image: url(/images/+.svg);
    background-size: cover;
    background-position: center;
    transform: rotate(90deg) !important;
    color: transparent !important;
    margin: 1px 0px;
}

.arrow-accordion.rotate-arrow-up {
    width: 1px;
    height: 20px;
    background-image: url(/images/linea-acc.svg);
    transform: rotate(90deg) !important;
    color: transparent !important;
    margin: 0px 5px;
}




.active,
.accordion:hover {
    background-color: white;
}

.panel {
    height: fit-content;
    background-color: transparent;
    opacity: 0;
    overflow: hidden;
}

.display-none {
    display: none;
}

.rotate-arrow-up {
    animation: arrowrotateup 300ms both;
    transition: 400ms;
}

.rotate-arrow-down {
    animation: arrowrotatedown 300ms both;
}

.accordion-disappear {
    animation: disappear 300ms both;
}

.accordion-appear {
    animation: appear 400ms both;
}

@keyframes appear {
    0% {
        display: none;
        opacity: 0;
        transform: translateY(-18px);
    }

    100% {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes disappear {
    0% {
        display: flex;
        opacity: 1;
        transform: translateY(0px);
        height: fit-content;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        display: none;
        opacity: 0;
        transform: translateY(-18px);
    }
}

@keyframes arrowrotateup {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes arrowrotatedown {
    0% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* Fin Accordion */

.bullet-orange {
    list-style: none;
    padding: 0;
    margin: 10px 15px;
}

.bullet-orange li {
    position: relative;
    padding-left: 12px;
    padding-top: 5px;
}

.bullet-orange li::before {
    content: '•';
    color: #E67300;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */


.footer {
    background-color: #F0EFED;
    padding: 30px 150px;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-left {
    width: 40%;
}

.footer-button {
    background-color: #15717E;
    color: white;
    border: 2px solid #15717E;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}


.footer-links {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #15717E;
    font-weight: bold;
}

.footer-bottom-mobile {
    display: none;
}

.footer-bottom {
    margin-top: 40px
}

@media (max-width:768px) {
    .footer {
        padding: 0px;

    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .footer-left {
        width: 100%;
    }


    .footer-links {
        display: flex;
        justify-content: center;
        width: 100%;
        flex-direction: row;
        gap: 30px;
    }



    .footer-links ul {
        margin: 0px;
    }

    .footer-bottom-mobile {
        display: block;
        margin-top: 50px;

    }

    .footer-bottom {
        display: none;
    }

    .p-20 {
        padding: 20px;
    }
}

@media (min-width:768px) and (max-width:1023px) {

    .footer {
        padding: 20px 30px;
    }

    .link-volver-atras {
        visibility: hidden;
    }

}


@media (max-width:768px) {
    .txt-planificador {
        margin-top: 40px;
    }

    .w-100-mb {
        width: 100%;
    }
}


.footer-button:hover {
    background-color: white;
    color: #15717E;
    border: 2px solid #15717E;
    border-radius: 30px;
}

.links-external li a::before {
    content: url('/images/external-link.webp');
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-button a {
    color: white;
    text-decoration: none;
}

.footer-button a:hover {
    color: #15717E;
}


@media (max-width: 1030px) {


    .modal-mobile .modal-contenido {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .modal-mobile .cerrar {
        top: 0px;
        right: 10px;
    }
}

.contenedor-columnas {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.columna {
    flex: 1;
}

.columna-question {
    min-height: 180px;
}

@media (max-width:768px) {
    .contenedor-columnas {
        display: flex;
        flex-direction: column;
        gap: 0px !important;
    }

    /* .bullet-orange{
        margin: 0px;
    } */
}

@media (min-width:768px) and (max-width:1030px) {
    .columna-question {
        min-height: 220px !important;
    }
}

.btn-volver {
    background-color: #506D85;
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
    width: 225px;
    margin: auto;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.container-inyeccion {
    background-image: url(/images/inyeccion-bg.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* .container {
    max-width: 1100px;
} */

/*Estilos modal*/


/* Modal */
.modal {
    /*display: none;*/
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-contenido {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

#disclaimer .modal-contenido {
    max-width: 90%;
}

.cerrar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #aaa;
    cursor: pointer;
}

.cerrar:hover {
    color: #000;
}


.d-none {
    display: none;
}

.no-scroll {
    overflow: hidden;
}



@media (min-width:768px) {
    .paso:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        width: 100%;
        height: 2px;
        background-color: #506D85;
        transform: translateY(-50%);
        z-index: 0;
    }

}

@media (min-width: 768px) and (max-width: 1000px) {
    .progreso-tratamiento {
        gap: 10px;
    }

    .circulo-numero {

        width: 20px;
        height: 20px;
        top: 12px;
        left: 19px;
    }
}

/* .columna>div {
    min-height: 220px;
} */

@media (min-width:768px) and (max-width:1030px) {
    .columna>div {
        min-height: 285px;
    }
}

.link-volver-atras {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
    position: relative;
}

.link-volver-atras::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background-image: url('/images/corner-up-left.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.link-volver-atras-mb {
    display: none;
}

@media (max-width:1025px) {
    .link-volver-atras-mb {
        display: block !important;
        margin-right: auto;
        position: relative;
    }

    .link-volver-atras-mb::before {
        background-image: url(/images/corner-up-left-mb.svg);
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        margin-right: 8px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

/*Ajustes disclaimer*/

.hr-gsk {
    border: 1px solid var(--color-texto3);
}

.btn-gsk {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.shadow-btn:hover {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.container-inyeccion-move {
    background-size: 35%;
    background-position: 0px 90px;
}

.container-btns {
    min-width: 600px;
    margin: auto;
}

.container-btns button {
    min-height: 45px;
}


.siguientes-turnos {
    list-style: none;
    padding: 0;
    margin: 0;
}

.siguientes-turnos li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FBFBFB;
    border: 1px solid #BBB9B3B3;
    border-radius: 18px;
    padding: 12px 16px;
    margin-bottom: 10px;
    transition: box-shadow 0.2s ease;
}

.modal-turnos .cerrar {
    position: absolute;
    top: -20px;
    right: -15px;
    font-size: 26px;
    color: #6D6D6D;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    width: 50PX;
    height: 50PX;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D3D3D3;
}

.text-left {
    text-align: left;
}

/*Modal Cambiar Turno*/

.modal-cambiar-turno {
    max-width: 650px !important;
    width: 100%;
}

.modal-cambiar-turno p {
    margin-bottom: 0px;
}

.modal-cambiar-turno .textos-edicion-fecha {
    text-align: left;
}

.modal-cambiar-turno #rango.calendario {
    width: 100%;
}

.modal-cambiar-turno .dias-semana div,
.modal-cambiar-turno .dias div {
    font-size: 13px;
}

.modal-cambiar-turno .mes-actual {
    margin-top: 0px;
    margin-bottom: 0px;
}

.modal-cambiar-turno .btns-cambiar-turno button {
    padding: 8px;
    border-radius: 30px;
    border: none;
    width: 230px;
    min-height: 45px;
}


@media (max-width: 768px) {
    .modal-cambiar-turno {
        max-height: fit-content;
        margin: 20px;
    }

    .modal-cambiar-turno .btns-cambiar-turno button {
        width: 100%;
        margin: 6px 0;
        padding: 10px;
    }

    .modal-cambiar-turno .btns-cambiar-turno {
        gap: 0px;
    }

    #inyecciones .modal.modal-change-date {
        align-items: baseline;
    }

    .btns-cambiar-turno {
        flex-direction: column-reverse;
    }


}

@media (min-width:1200px) {
    .container-inyeccion-move {
        background-position: 0px;
    }
}

.puente-oral .bullet-orange li::before {
    top: -5px;
}

#dosificacion .active,
.accordion:hover {
    background-color: #F0EFED;
}

#dosificacion .accordiones .accordion {
    border: none;
}

#dosificacion .bullet-orange li {
    padding-top: 0px;
}

.container-pills {
    background-image: url(/images/pills.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.cerrar img {
    width: 15px;
    height: 15px;
}

.icon-general {
    width: 45px;
    height: 45px;
}

@media (max-width: 768px) {
    .contenedor-calendario-edicion {
        position: relative;
        margin: 0;
        padding: 0;
        width: calc(100% + 40px);
        left: -20px;
        background-color: #506D85;
    }

    .contenedor-calendario-edicion .calendario {
        border: none;
    }

    .contenedor-calendario-edicion .dias div {
        border: 1px solid white;
        margin-top: 5px !important;
    }

    .contenedor-calendario-edicion .dias {
        padding: 3px;
    }

    .dias div {
        padding: 1px !important;
    }

    .inyeccion-confirmacion {
        background-size: 70% !important;
    }
}

.inyeccion-confirmacion {
    background-image: url(/images/inyeccion-bg.svg);
    background-size: 30%;
    background-position: top left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}


/*Alert Modal*/
#alert-modal {
    display: none;
}

#alert-modal.visible {
    display: block;
}

#alert-modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

body {
    position: relative;
}

#alert-popup {
    width: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#alert-popup p {
    font-size: 18px;
    color: black;
    margin-top: 0px;
    margin-bottom: 10px;
}

#alert-popup button {
    background-color: var(--color-primario);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 10px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px
}

/*Fin Alert Modal*/

.circle {
    box-shadow: 0px 0px 1px 1px #0000001a;
    border-radius: 100%;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(146, 90, 34, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 153, 51, 0);
    }
}