/* FONT FAMILY */

@font-face {
    font-family: 'Linkco-light';
    font-weight: 400;
    src: url('/linko_website/static/fonts/LynkcoType-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Linkco-regular';
    font-weight: 500;
    src: url('/linko_website/static/fonts/LynkcoType-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Linkco-medium';
    font-weight: 700;
    src: url('/linko_website/static/fonts/LynkcoType-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Linkco-bold';
    font-weight: 800;
    src: url('/linko_website/static/fonts/LynkcoType-Bold.ttf') format('truetype');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Linkco-regular', sans-serif;
    background-color: #000;
    color: #FFF;
}

/* CONTAINER */

.header-container,
.agenda-cita-taller-container,
.portal-home-banner-container,
.container{
    width: 1300px;
    margin: 0 auto;
}

@media only screen and (max-width: 1400px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 1100px !important;
    }
}

@media only screen and (max-width: 1200px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 850px !important;
    }
}

@media only screen and (max-width: 1000px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 700px !important;
    }
}

@media only screen and (max-width: 800px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 500px !important;
    }
}

@media only screen and (max-width: 600px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 450px !important;
    }
}

@media only screen and (max-width: 500px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 400px !important;
    }
}

@media only screen and (max-width: 420px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 90% !important;
    }
}

/* HEADER */

header{
    height: 100px;
    display: flex;
    align-items: center;
}

.header-container{
    justify-content: space-between;
    display: flex;
}

.header-container > figure{
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container > figure img{
    width: 100%;
}

header .usuario{
    display: flex;
    align-items: center;
    gap: 20px;
}

header .usuario .usuario-nombre{
    text-align: right;
    color: #FFF;
    text-transform: capitalize;
}

header .usuario .usuario-nombre p{
    font-weight: 700;
    font-size: 18px;   
}

header .usuario .usuario-nombre span{
    font-weight: 400;
    font-size: 14px;
}

header .usuario .usuario-foto{
    height: 50px;
}

header .usuario .usuario-foto img{
    width: 51px;
    height: 50px;
    border-radius: 70px;
}

.header-container .menu-logo{
    display: none;
    width: 30px;
    height: 30px;
}

@media only screen and (max-width: 1400px){
    .header-container > figure{
        width: 200px;
    }
}

@media only screen and (max-width: 1200px){
    .header-container > figure{
        width: 180px;
    }
}

@media only screen and (max-width: 800px){
    header .usuario .usuario-nombre p{
        font-size: 16px;
    }

    header .usuario{
        display: none;
    }

    .header-container .menu-logo {
        display: flex;
    }
}

@media only screen and (max-width: 600px){
    
    .header-container > figure{
        width: 150px;
    }
}

/* BANNER PRINCIPAL HOME */

.portal-home-banner{
    height: 350px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.portal-home-banner .capa{
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0.5) 60%);
}

.portal-home-banner .portal-home-banner-container{
    display: flex;
    align-items: center;
    height: 100%;
}

.portal-home-banner .portal-home-banner-container h2{
    font-family: 'Linkco-medium';
    text-transform: uppercase;
    font-size: 60px;
    color: #FFF;
    position: relative;
    z-index: 5;
}

@media only screen and (max-width: 1200px){
    .portal-home-banner .portal-home-banner-container h2{
        font-size: 50px;
        line-height: 60px;
    }
}

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

    .portal-home-banner{
        height: 200px;
    }

    .portal-home-banner .portal-home-banner-container h2{
        font-size: 40px;
        line-height: 50px;
    }
}

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

    .portal-home-banner{
        background-size: cover;
    }

    .portal-home-banner .portal-home-banner-container h2 {
        line-height: 45px;
        width: 100%;
        text-align: center;
    }

    .portal-home-banner .capa{ 
        background: none;
        background-color: rgba(0, 0, 0, 0.6);
    }
}

@media only screen and (max-width: 600px){
    .portal-home-banner .portal-home-banner-container h2{
        font-size: 30px;
        line-height: 35px;
    }
}

/* PORTAL BOTONES */

.portal-home-buttons{
    margin: 3% 0;
}

.portal-home-buttons .portal-home-buttons-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
}

.portal-home-buttons .portal-home-buttons-container a{
    font-family: 'Linkco-medium';
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #1ef1c6;
    text-transform: uppercase;
    border: 3px solid #1ef1c6;
    height: 125px;
    border-radius: 0 0 0 20px;
    padding: 0 2%;
    text-decoration: none;
}

.portal-home-buttons .portal-home-buttons-container a p{
    font-size: 20px;
}

@media only screen and (max-width: 1200px){
    .portal-home-buttons .portal-home-buttons-container a p{
        font-size: 18px;
    }

    .portal-home-buttons .portal-home-buttons-container{
        justify-content: space-between;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        width: 28%;
        height: 120px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img{
        width: 65px;
    }
}

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

    .portal-home-buttons .portal-home-buttons-container{
        gap: 0;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        width: 32%;
        height: 110px;
        gap: 15px;
    }
}

@media only screen and (max-width: 800px){
    .portal-home-buttons .portal-home-buttons-container a{
        flex-direction: column;
        height: 170px;
        gap: 10px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img{
        width: 60px;
    }

    .portal-home-buttons .portal-home-buttons-container a p{
        height: 45px;
        text-align: center;
    }
}

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

    .portal-home-buttons{
        margin: 5% 0;
    }

    .portal-home-buttons .portal-home-buttons-container{
        flex-direction: column;
        gap: 20px;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        width: 100%;
        flex-direction: row;
        height: 70px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img{
        width: 40px;
    }

    .portal-home-buttons .portal-home-buttons-container a p{
        height: auto;
    }
}

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

    .portal-home-buttons .portal-home-buttons-container{
        gap: 15px;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        height: 60px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img {
        width: 30px;
    }
}

/* AGENDA CITA TALLER */

.agenda-cita-taller-container{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* MENSAJE DE CONFIRMACION */

.agenda-cita-alerta svg{
    background-color: #E12826;
    width: 35px;
    height: 35px;
    padding: 3px;
    border-radius: 40px;
}

.agenda-cita-alerta{
    background-color: #231F20;
    color: #FFF;
    border-radius: 12px;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.agenda-cita-alerta a{
    color: #FFF;
    text-decoration: none;
}

@media only screen and (max-width: 1000px){
    .agenda-cita-alerta{
        gap: 10px;
        font-size: 16px;
    }

    .agenda-cita-alerta svg{
        width: 30px;
        height: 30px;
    }

    .agenda-cita-alerta p{
        text-align: center;
    }

    .agenda-cita-alerta a{
        position: relative;
        top: -25px;
        right: -15px;
    }
}

@media only screen and (max-width: 800px){
    .agenda-cita-alerta svg {
        width: 40px;
        height: 30px;
    }
}

@media only screen and (max-width: 600px){
    .agenda-cita-alerta{
        flex-direction: column;
        height: auto;
        position: relative;
        padding: 5%;
        gap: 15px;
        font-size: 14px;
        line-height: 20px;
    }

    .agenda-cita-alerta svg {
        width: 30px;
        height: 30px;
    }

    .agenda-cita-alerta a{
        position: absolute;
        top: 10px;
        right: 12px;
    }

}

/* CARDS */

.agenda-cita-taller-form{
    margin: 0 3%;
}

.agenda-cita-taller-form .card-titulo > h4{
    text-transform: uppercase;
    color: #1ef1c6;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    gap: 10px;
}

.agenda-cita-taller-form h4 svg{
    width: 18px;
    height: 18px;
}

.card-titulo{
    border-bottom: 1px solid #7E8492;
    padding: 0 15px 15px 15px;
    display: flex;
    justify-content: left;
    align-items: center;
}

/* APPOINTMENT */

.appointment{
    display: flex;
    flex-direction: column;
    gap: 2%;
}

.appointment .appointment-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
}

.appointment .appointment-container .appointment-data{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 5%;
}

.appointment .appointment-container .appointment-data .appointment-form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.appointment .appointment-container .appointment-data .appointment-form,
.appointment .appointment-container .appointment-data .schedule-form
{
    flex: 1;
}

.appointment .appointment-container .appointment-data .schedule-form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.appointment .appointment-container .appointment-data h4{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.appointment .appointment-container .appointment-data form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 3%;
}

.appointment .appointment-container .appointment-data .appointment-form label{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.appointment .appointment-container .appointment-data form div input.style,
.appointment .appointment-container .appointment-data form div select.style{
    background-color: transparent;
    color: gray;
    border: 1px solid gray;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    outline: none;
    border-radius: 0 0 0 20px;
}

.appointment .appointment-container .appointment-data form div textarea{
    font-family: 'Linkco-regular', sans-serif;
    background-color: #000;
    border-radius: 0 0 0 20px;
    padding:10px;
}

/* SCHEDULE */

.schedule-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 65px;
}

#appointment-schedule{
    width: 100%;
    display: none;
}

#appointment-hours{
    width: 100%;
}

#appointment-hours > p{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

#appointment-hours > select{
    width: 100%;
    margin-top: 10px;
}

.flatpickr-calendar.inline{
    background-color: #000;
    box-shadow: none;
}

.flatpickr-calendar.hasTime .flatpickr-time{
    border-top: 1px solid gray !important;
    display: none;
}

.flatpickr-innerContainer{
    justify-content: center;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-time input.flatpickr-hour,
.flatpickr-time .flatpickr-am-pm,
.flatpickr-time input,
.flatpickr-time .flatpickr-time-separator,
span.flatpickr-weekday,
.flatpickr-day{
    fill: #FFF !important;
    color: #FFF !important;
    font-family: 'Linkco-regular', sans-serif !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay{
    border-radius: inherit;
    background: #fff !important;
    color: #000 !important;
    border-color: #FFF !important;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
    background: gray !important;
}

.flatpickr-day.today{
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #1ef1c6;   
    border-color: #1ef1c6 !important;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
    background: #FFF !important;
    border-color: #FFF !important;
    color: #000 !important;
    border-radius: 0;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg{
    fill: #1ef1c6 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{
    background-color: #000 !important;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
    color: rgba(57, 57, 57, 1) !important;
    background: transparent !important;
    border-color: transparent !important;
    cursor: default !important;
}

.red-border{
    border-color: red;
}

.green-border{
    border-color: green;
}

.appointment .appointment-container .appointment-separator{
    width: 3px;
    height: 500px;
    margin: auto 0;
    background-color: #1ef1c6;
}

.appointment .appointment-container .appointment-date{
    flex: 1;
    padding: 0 0 0 2%;
    margin-top: 1%;
}

.appointment .appointment-container .appointment-date h4{
    font-size: 35px;
    font-weight: 500;
}

.appointment .appointment-container .appointment-date p{
    font-size: 18px;
    margin-top: 1%;
}

.appointment .confirm-btn{
    width: 170px;
    height: 45px;
    position: relative;
    border: 4px solid transparent;
    border-radius: 40px;
    background: #000;
    background-clip: padding-box;
    margin: 0 auto;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.appointment .confirm-btn::after{
    position: absolute;
    top: -4px; bottom: -4px;
    left: -4px; right: -4px;
    background: linear-gradient(to right, #1ef1c6, #00d4ec, #00b0ff, #0082ff, #5634ed);
    content: '';
    z-index: -1;
    border-radius: 40px;
}


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

    #appointment-hours .hours{
        gap: 2px;
    }

    #appointment-hours .appointment-hours-selects{
        gap: 15px;
    }

    .appointment .appointment-container .appointment-data form div > input.style, .appointment .appointment-container .appointment-data form div > select.style{
        height: 40px;
        padding: 0 8px;
    }
}

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

    .appointment .appointment-container .appointment-data .schedule-form > p{
        font-size: 16px;
    }

    #appointment-hours{
        width: 305px;
    }
}

@media only screen and (max-width: 1000px){
    .appointment .appointment-container .appointment-data{
        gap: 0;
    }

    .appointment .appointment-container .appointment-separator{
        margin: auto 18px;
    }
}

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

    .agenda-cita-taller-form{
        margin: 0;
    }

    .appointment > .appointment-container{
        margin-bottom: 5%;
    }

    .appointment .appointment-container .appointment-data{
        flex-direction: column;
    }

    .appointment .appointment-container .appointment-data .schedule-form{
        width: 100% !important;
    }

    .appointment .appointment-container .appointment-separator{
        width: 100%;
        height: 3px;
        margin: 30px 0;
    }

    .flatpickr-calendar.inline{
        width: 100%;
    }

    #appointment-hours {
        width: 100%;
    }

    .schedule-container{
        gap: 40px;
    }

}

@media only screen and (max-width: 600px){
    .agenda-cita-taller-form .card-titulo > h4{
        font-size: 18px;
    }

    .appointment .appointment-container .appointment-data form{
        margin-top: 5%;
    }
}

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

    .appointment .appointment-container .appointment-data .appointment-form label,
    .appointment .appointment-container .appointment-data h4,
    #appointment-hours > p{
        font-size: 16px;
    }

}

@media only screen and (max-width: 400px){
    .appointment .appointment-container .appointment-data h4{
        font-size: 22px;
    }

    .appointment .appointment-container .appointment-data form input, .appointment .appointment-container .appointment-data form select{
        font-size: 16px;
    }
}

/* FOOTER */

footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #131313;
    padding: 2% 0;
}

footer .footer-border{
    width: 1500px;
    height: 1px;
    background-color: gray;
    margin: 0 auto;
}

footer .footer-container{
    display: flex;
    flex-direction: column;
}

footer .footer-container .footer-top{
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

    position: relative;
}

footer .footer-container .footer-top nav{
    display: flex;
    gap: 80px;
    margin-bottom: 4%;
}

footer .footer-container .footer-top nav ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer-container .footer-top nav ul li{
    list-style: none;
}

footer .footer-container .footer-top nav ul li a{
    text-decoration: none;
    color: gray;
    font-size: 18px;
}

footer .footer-container .footer-top nav ul li h3{
    font-size: 18px;
}

footer .footer-container .footer-top .footer-social-media{
    display: flex;
    gap: 8px;
}

footer .footer-container .footer-top .footer-social-media a{
    background-color: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 70px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container .footer-top .footer-social-media a svg{
    width: 20px;
    height: 20px;
}

footer .footer-container .footer-top .arrow-up{
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    right: 0;
    bottom: 50px;
}

footer .footer-container .footer-top .arrow-up a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container .footer-top .arrow-up a figure{
    width: 100%;
}

footer .footer-container .footer-top .arrow-up .icon-arrow-up{
    width: 100%;
}

footer .footer-container .footer-top .arrow-up .icon-arrow-up img{
    width: 100%;
}

footer .footer-container .footer-bottom{
    width: 1300px;
    margin: 0 auto;
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-container .footer-bottom .footer-logos{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-container .footer-bottom .footer-logos .logos{
    display: flex;
    align-items: center;
    gap: 10px
}

footer .footer-container .footer-bottom .footer-logos .logos figure{
    height: 30px;
}

footer .footer-container .footer-bottom .footer-logos .logos figure img{
    height: 100%;
}

footer .footer-container .footer-bottom > p{
    font-size: 18px;
    color: gray;
    text-align: center;
}

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

    footer .footer-border{
        width: 1300px;
    }
}

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

    footer .footer-border{
        width: 1200px;
    }

    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 1100px;
    }
}

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

    footer .footer-border{
        width: 1100px;
    }
}

@media only screen and (max-width: 1200px){
    footer .footer-border{
        width: 850px;
    }

    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 850px;
    }

    footer .footer-container .footer-top .arrow-up{
        width: 50px;
        height: 50px;
    }

    footer .footer-container .footer-bottom .footer-logos .logos figure{
        height: 20px;
    }

}

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

    footer .footer-border,
    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 700px;
    }

    footer{
        padding: 5% 0;
    }
}

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

    footer .footer-border,
    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 500px;
    }

    footer .footer-container .footer-top,
    footer .footer-container .footer-top nav{
        flex-direction: column;
    }

    footer .footer-container .footer-top{
        padding-bottom: 30px;
    }

    footer .footer-container .footer-top nav{
        gap: 30px;
        margin-bottom: 30px;
    }

    footer .footer-container .footer-top .arrow-up{
        bottom: 30px;
        width: 40px;
        height: 40px;
    }


    footer .footer-container .footer-bottom .footer-logos .logos figure{
        height: 15px;
    }
}

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

    footer .footer-border{
        display: none;
    }

    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 450px;
    }

    footer .footer-container .footer-top nav ul li{
        text-align: center;
    }

    footer .footer-container .footer-top .footer-social-media{
        gap: 10px;
    }

    footer .footer-container .footer-bottom{
        flex-direction: column;
        gap: 10px;
    }

    footer .footer-container .footer-top,
    footer .footer-container .footer-bottom{
        align-items: center;
    }

    footer .footer-container .footer-bottom .footer-logos .logos figure{
        margin-bottom: 5%;
    }
    
}

@media only screen and (max-width: 500px){
    footer .footer-border,
    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 90%;
    }

    footer .footer-container .footer-top .arrow-up{
        right: -90px;
        bottom: -80px;    
    }
}

@media only screen and (max-width: 400px){
    footer .footer-container .footer-top .arrow-up{
        display: none; 
    }
}