@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,100;1,300;1,400&display=swap);
:root {
    --navbar-height: 4rem;
    --light-color: #fbfbfb;
    --dark-color: #111111;
    --gray-color: #888888;
    --secondary-dark-color: #c08a2c;
    --secondary-dark-color-2: #dfa136;
    --secondary-color: #fad541;
    --dark-translucid: rgba(17, 17, 17, 0.05);
}

* {
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    margin: 0;
}

ul {
    padding-left: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    min-height: 100vh;
}

main {
    min-height: calc(100vh - 175px);
}

.main-booking {
    background-color: #eee;
}

.main-booking {
    position: relative;
}

.app {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.nav-item.logo {
    max-height: inherit;
    -ms-grid-row-align: center;
    align-self: center;
    height: 100%;
}

.navbar a.logo {
    display: block;
    font-size: initial;
    line-height: initial;
    border-bottom: initial;
    min-width: initial;
    margin: 0;
    height: 100%;
    box-sizing: border-box;
}

.navbar a.logo:hover {
    border: 0;
}

#logo {
    max-height: 75px;
    filter: invert(100%) sepia(0%) saturate(23%) hue-rotate(51deg) brightness(105%) contrast(97%);
}

.navbar {
    /* display: flex;
    justify-content: space-between; */
    background-color: #333;
    /* color: white;
    text-decoration: none;
    overflow: hidden; */
}

.navbar nav ul {
    display: flex;
    margin-right: 1rem;
}

nav li {
    display: inline;
    color: inherit;
    text-decoration: inherit;
    text-align: center;
}

.navbar ul a {
    display: block;
    color: inherit;
    text-decoration: inherit;
    text-align: center;
    font-size: 16px;
    border-bottom: 5px solid transparent;
    min-width: 50px;
    margin-left: 0.1rem;
    margin-right: 1rem;
}

.navbar a:hover {
    border-bottom: 5px solid var(--secondary-color);
}

.nav-container {
    padding-right: 2rem;
}

h2 {
    font-weight: 400;
}

button {
    border: 0;
}

section {
    min-height: unset;
}

section#services,
section#calendar {
    min-height: unset;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 50vh;
}

section#contacto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #3f3f3f;
    /* background-image: url(./); */
}

.contact-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section#contacto .contact-grid>div,
section#contacto .contact-grid>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem 0;
    background-color: #f5f5f5cc;
    padding: 1.5rem;
    text-decoration: none;
    color: black;
}

section#contacto h1 {
    color: whitesmoke;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 3rem;
}

section#contacto h2 {
    display: inline;
    margin-left: 1rem;
}

.contactoImage {
    width: 40px;
}

h1 {
    font-weight: 400;
}

#reservas {
    position: relative;
    text-align: center;
    background-color: var(--light-color);
}

.reservas-sub {
    position: relative;
    height: 100vh;
}

.reservas-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 0.5rem;
    background-color: #222;
    color: wheat;
}

section.landing {
    min-height: 100vh;
    overflow: hidden;
}

.portada {
    position: relative;
    text-align: center;
    height: 100vh;
    width: 100%;
    background-color: #111111;
    overflow: hidden;
}

.portada-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(0.2) blur(4px);
    height: 100%;
}

.portada-title {
    position: absolute;
    line-height: 4rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111;
    font-size: 2.5rem;
    width: 95%;
}

.different {
    display: inline;
    color: #111;
    background-color: transparent;
    padding: 0.3rem;
    -webkit-animation-name: appear;
    animation-name: appear;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes appear {
    from {
        color: #111;
    }

    to {
        background-color: #111;
        color: #f3c77b;
    }
}

@keyframes appear {
    from {
        color: #111;
    }

    to {
        background-color: #111;
        color: #f3c77b;
    }
}

.map-container {
    width: 100%;
    position: relative;
}

.map {
    max-width: 100%;
    width: 100%;
    min-height: 300px;
    height: 250px;
}

.h-100vh {
    height: 100vh;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
    margin: 0 auto;
}

.center-vertically {
    top: 50%;
}

.margin-navbar {
    margin-top: 10px;
}

.next-btn-container,
.selectedDayHour-container,
#hour-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    margin-left: auto;
    margin-right: auto;
    font-size: larger;
    width: 200px;
}

.selectedDayHour-container {
    width: initial;
}

#nextBtn {
    width: 100%;
    height: 3rem;
    background-color: #3f3f3f;
    color: #6b6b6b;
    border: 0;
    border-radius: 1.5rem;
    transition: 0.5s;
    font-size: larger;
}

#nextBtn.active {
    background-color: #c08a2c;
    color: #222;
    transition: 0.75s;
}

#nextBtn.active:hover {
    cursor: pointer;
}

.calendar-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: #c08a2c;
    transform: translate(-50%, -50%);
    -webkit-animation: loading 4s linear infinite,
        colorLight 1s ease-in-out infinite alternate;
    animation: loading 4s linear infinite,
        colorLight 1s ease-in-out infinite alternate;
    transform-origin: top left;
    border-radius: 10%;
    z-index: 100;
}

@-webkit-keyframes loading {
    from {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    to {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

@keyframes loading {
    from {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    to {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

@-webkit-keyframes colorLight {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@keyframes colorLight {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.pointBtn {
    position: absolute;
    display: inline-block;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    white-space: nowrap;
    width: 200px;
    line-height: 60px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    border: 1px solid var(--secondary-dark-color-2);
    background-color: #f5f5f5ee;
    box-shadow: 0 5px 5px #0003;
}

.pointBtn:hover {
    transition: color 0.25s;
}

.pointBtn-container {
    position: relative;
    display: inline-block;
    width: 10rem;
    height: 3rem;
    background-color: inherit;
}

.pointBtn-dot {
    display: inline-block;
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-dark-color);
}

.pointBtn:hover~.pointBtn-dot,
.pointBtn:focus~.pointBtn-dot {
    -webkit-animation-name: dot-appear;
    animation-name: dot-appear;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes dot-appear {
    from {
        background-color: var(--secondary-dark-color);
    }

    to {
        background-color: var(--dark-color);
    }
}

@keyframes dot-appear {
    from {
        background-color: var(--secondary-dark-color);
    }

    to {
        background-color: var(--dark-color);
    }
}

.pointBtn-hide-rect {
    position: absolute;
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: inherit;
    top: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.pointBtn-grow-rect {
    position: absolute;
    display: inline-block;
    height: 5px;
    width: 0%;
    top: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.pointBtn:hover~.pointBtn-grow-rect,
.pointBtn:focus~.pointBtn-grow-rect {
    background-color: var(--dark-color);
    width: 100%;
    transition: 0.25s ease-out;
    transition-delay: 0.2s;
}

/* .pointBtn:hover ~ .pointBtn-hide-rect {
    background-color: inherit;
} */

#calendar table tbody td.unavailable {
    color: #6b6b6b;
    background-color: #464646;
    border-color: #333;
    cursor: unset;
    border-radius: unset;
}

#calendar table tr {
    height: 50px;
    margin: 5px;
}

#month-nav {
    display: flex;
    height: 50px;
    max-width: 360px;
    align-items: stretch;
    justify-content: space-between;
    margin: auto;
    margin-top: 1rem;
}

#month-nav>div {
    display: flex;
    align-items: center;
}

#month-nav>div span {
    margin-left: 0.5rem;
}

#month-nav .nav-text {
    font-size: 1.4rem;
    word-spacing: 1.2rem;
    min-width: 200px;
}

#month-nav .nav-buttons {
    border-radius: 40px;
    overflow: hidden;
    height: inherit;
}

#month-nav .nav-buttons * {
    height: inherit;
}

#month-nav .nav-buttons .month-nav-btn {
    display: inline-block;
    text-align: center;
    background-color: #3f3f3f;
    color: lightgray;
    text-decoration: none;
    transition: 0.25s;
}

#month-nav .nav-buttons .month-nav-btn:hover img {
    filter: invert(49%) sepia(74%) saturate(442%) hue-rotate(359deg) brightness(101%) contrast(87%);
}

#month-nav .nav-buttons .unavailable img,
#month-nav .nav-buttons .unavailable:hover img {
    filter: invert(58%) sepia(94%) saturate(0%) hue-rotate(213deg) brightness(79%) contrast(68%);
}

#month-nav #monthName {
    min-width: 10ch;
}

.selectedDayHour-container {
    font-size: larger;
    background-color: #0001;
    height: 3rem;
    border-radius: 5px;
    padding: 0 1rem;
}

#display-selectedDay {
    flex-grow: 2;
    text-align: left;
    padding: 0 0.5rem;
    box-sizing: border-box;
    border-right: 3px solid #fbfbfb;
    min-width: 10ch;
}

#display-selectedHour {
    flex-grow: 1;
    text-align: right;
    padding: 0 0.5rem;
    box-sizing: border-box;
    min-width: 5ch;
}

.hour-selector-container {
    position: relative;
    min-height: 100px;
}

#hour-selector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 3rem;
    width: 150px;
    text-align: center;
    color: #fbfbfb;
    background-color: #3f3f3f;
    border-style: solid;
    border-color: transparent;
    border-radius: 5px;
}

#hour-selector>option {
    text-align: center;
}

.options-container {
    display: flex;
    flex-direction: column;
    width: 95vw;
    max-width: 500px;
    background-color: #292929;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 1rem;
    color: #fbfbfb;
    font-size: 18px;
    box-shadow: 0px 2px 5px 2px #2222;
    overflow: hidden;
    min-height: 450px;
    justify-content: center;
}

.options-container .options-inner-container {
    margin: 1.5rem;
}

.option-item-container {
    background-color: #555;
    border-radius: 5px;
    padding: 1rem 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0.2rem 0;
    transition: background-color 0.15s;
}

.option-item-container>p {
    display: inline-block;
    font-size: 20px;
}

.bullet {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    transition: 0.2s all linear;
    background-color: #333;
    margin: auto 0.5rem;
}

.selected>.bullet {
    background-color: #c08a2c;
}

.option-item-container:hover {
    background-color: #777;
    cursor: pointer;
}

.serviceDescription {
    max-height: 0px;
    opacity: 0;
    transition: 0.5s;
    overflow: hidden;
}

.serviceDescription ul {
    list-style-type: none;
    border-left: 2px solid #c08a2c;
    padding-left: 0.5rem;
    margin-left: 35px;
    font-size: 0.9rem;
}

.serviceDescription ul li {
    display: block;
}

.serviceDescription.active {
    opacity: 1;
    max-height: 360px;
}

.grid-extras {
    display: flex;
    margin-right: 0;
    align-items: center;
    text-align: center;
    border-top: 1px solid #555;
    margin-top: 2px;
}

.grid-extras .extra-item-container {
    display: flex;
    font-size: 14px;
    width: 100%;
    height: 100%;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.grid-extras .extra-item-container>.bullet {
    height: 16px;
    width: 16px;
}

.grid-extras .extra-item-container>span {
    display: inline;
    margin: 0 0.5rem;
    margin-left: auto;
}

.grid-extras .extra-item-container:hover {
    cursor: pointer;
}

.grid-extras .extras-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    border: 0;
    margin-left: 0;
}

/*-Display Component - reserve view*/

.display-service-component {
    border-radius: 10px;
    margin: auto;
    width: 95vw;
    max-width: 500px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    padding: 0.5rem;
    background-color: #292929;
    color: whitesmoke;
}

.display {
    margin: 0.25rem;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
}

.display #chosenService {
    white-space: initial;
    margin-left: 2px;
    text-align: right;
}

.display.total {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #c08a2c;
}

.display.total>#totalPrice {
    font-weight: bold;
}

.position-mark-container {
    position: relative;
    height: 70px;
    width: 90vw;
    max-width: 500px;
    margin: auto;
}

.position-mark {
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.position-square {
    height: 25px;
    width: 25px;
    transform: rotate(45deg);
    background-color: #3f3f3f;
    -webkit-animation-name: rot;
    animation-name: rot;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.position-line {
    height: 5px;
    width: 33.3%;
    background-color: #3f3f3f;
    margin-left: 5px;
    margin-right: 5px;
}

.bg-secondary-dark-color-2 {
    background-color: #dfa136;
}

#booking-main .options-inner-container {
    height: 100%;
}

#booking-main .options-inner-container form {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#booking-main .options-inner-container form input {
    margin-top: 2rem;
    border-radius: 5px;
    height: 40px;
    border: 2px solid #555;
    font-size: 1.2rem;
    text-align: center;
}

#booking-main .options-inner-container form input:focus {
    outline: 2px solid #c08a2c;
}

#booking-main .options-inner-container form input.wrong {
    outline: 2px solid #f66;
}

.arrow1 {
    transform: translateX(-120px);
}

.arrow2 {
    transform: rotate(180deg) translateX(-120px);
}

.arrow1 {
    -webkit-animation-name: horizontalMovement1;
            animation-name: horizontalMovement1;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
}

.arrow2 {
    -webkit-animation-name: horizontalMovement2;
            animation-name: horizontalMovement2;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
}

@-webkit-keyframes horizontalMovement1 {
    from {
        transform: translateX(-110px);
    }

    to {
        transform: translateX(-130px);
    }
}

@keyframes horizontalMovement1 {
    from {
        transform: translateX(-110px);
    }

    to {
        transform: translateX(-130px);
    }
}

@-webkit-keyframes horizontalMovement2 {
    from {
        transform: rotate(180deg) translateX(-110px);
    }

    to {
        transform: rotate(180deg) translateX(-130px);
    }
}

@keyframes horizontalMovement2 {
    from {
        transform: rotate(180deg) translateX(-110px);
    }

    to {
        transform: rotate(180deg) translateX(-130px);
    }
}

form {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form input {
    margin-top: 2rem;
    border-radius: 5px;
    height: 40px;
    border: 2px solid #555;
    font-size: 1.2rem;
    text-align: center;
}

form input:focus {
    outline: 2px solid #c08a2c;
}

form input.wrong {
    outline: 2px solid #f66;
}

form .auth-form-label {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

form .auth-form-input {
    margin: 0;
}

.general-form {
    gap: 1rem;
}

.general-form input {
    margin: 0;
}

.calendar-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-dark-color);
    transform: translate(-50%, -50%);
    -webkit-animation: loading 4s linear infinite,
        colorLight 1s ease-in-out infinite alternate;
            animation: loading 4s linear infinite,
        colorLight 1s ease-in-out infinite alternate;
    transform-origin: top left;
    border-radius: 10%;
}

@keyframes loading {
    from {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    to {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

@keyframes colorLight {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.hidden {
    display: hidden;
}

.calendar-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    margin: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    flex-wrap: wrap;
}

.calendar-body {
    display: flex;
    flex-wrap: wrap;
}

.calendar-day {
    background-color: #333;
    outline: 1px solid whitesmoke;
    flex-basis: 14.285%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: whitesmoke;
    font-size: large;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    height: 50px;
}

.unavailable {
    background-color: #777;
    color: #555;
}

.calendar-day.available {
    background-color: #333;
    transition: 0.15s all;
}

.calendar-day.available:hover {
    background-color: #111;
}

.calendar-day.selected,
.calendar-day.available.selected:hover {
    background-color: var(--secondary-dark-color);
    color: #222;
}

.calendar-day.header-day {
    background-color: #222;
}

.screen-hide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fbfbfb;
    z-index: 1;
}

.checkout-resume-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: whitesmoke;
}

.pill-btn {
    width: 200px;
    height: 3rem;
    background-color: var(--secondary-dark-color);
    color: whitesmoke;
    border: 0;
    border-radius: 1.5rem;
    transition: 0.1s;
    font-size: larger;
    margin: 1rem;
    line-height: 3rem;
    text-decoration: none;
}

.pill-btn:hover {
    background-color: var(--secondary-dark-color-2);
    color: whitesmoke;
}

.pill-btn-outline {
    background-color: transparent;
    color: var(--secondary-dark-color);
    outline: 2px solid var(--secondary-dark-color);
}

.pill-btn-outline:hover {
    background-color: var(--secondary-dark-color-2);
    outline: 2px solid transparent;
    color: whitesmoke;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.generalBtn {
    padding: 0.7rem;
}

.generalBtn.admin-nav-button.active {
    background-color: var(--secondary-dark-color);
}

.day-pick-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
}

.day-pick-form input {
    margin: 0;
}

.input-medium {
    width: 15ch;
}

.input-small {
    width: 7ch;
}

table.list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

table.list tbody,
table.list thead {
    display: flex;
    flex-direction: column;
}

table.list tr {
    display: flex;
}

table.list td,
table.list th {
    width: 16.66%;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid black;
}

table.list tr:nth-child(even) {
    background-color: red;
}

.ses-container {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    justify-content: center;
}

.ses-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    width: 200px;
    overflow: hidden;
    margin: 5px;
    padding: 1rem;
    height: 100px;
    text-align: center;
    box-shadow: 0px 3px 3px 1px #0005;
    border-radius: 10px;
}

.ses-card div {
    overflow: hidden;
    margin: auto;
    width: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.ses-card:hover {
    background-color: #eee;
    outline: 3px solid gray;
}

.ses-card div.ses-paid {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: yellowgreen;
    top: -25px;
    right: -25px;
    transform: rotate(45deg);
}

.ses-card div.ses-unpaid {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: lightcoral;
    top: -25px;
    right: -25px;
    transform: rotate(45deg);
}

.ses-search-btn {
    background-color: #333;
    color: whitesmoke;
    border-radius: 5px;
    margin: 0 5px;
}

.ses-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fffffffa;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    font-size: 1.2rem;
}

.ses-modal-close {
    width: 50px;
    height: 50px;
    box-shadow: 0px 0px 10px #5555;
    align-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 2rem;
}

.ses-modal-close:hover {
    background-color: #eee;
}

.ses-modal-title {
    background-color: #1111;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
}

.ses-modal-delete {
    background-color: whitesmoke;
    color: crimson;
    border-radius: 5px;
    border: 2px solid crimson;
}

.ses-modal-delete:hover,
.ses-modal-delete:focus {
    background-color: crimson;
    color: whitesmoke;
}

#reserved-sessions-view {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #333;
}

.admin-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 5px;
}

.admin-nav-button {
    flex-grow: 1;
    background-color: #333;
    color: whitesmoke;
    font-size: 18px;
    border-radius: 5px;
    flex-grow: 4;
}

.logout-btn {
    color: var(--secondary-dark-color);
    background-color: transparent;
    border: 2px solid var(--secondary-dark-color);
    border-radius: 5px;
    flex-grow: 1;
}

.logout-btn:hover {
    background-color: var(--secondary-dark-color);
    color: whitesmoke;
}

.settings-btn {
    flex-grow: 1;
    max-height: 100%;
}

.errors {
    color: crimson;
}

#unavailable-dates-view {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #333;
}

#unavailable-dates-view h2,
#reserved-sessions-view h2 {
    margin: 1rem 0;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.summary-list ul {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
}

.summary-list li {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
}

hr.basic-hr {
    width: 100px;
    margin: 10px 0px;
    border-radius: 10px;
    border: 2px solid whitesmoke;
}

.check-circle-icon {
    filter: invert(53%) sepia(67%) saturate(7133%) hue-rotate(137deg) brightness(83%) contrast(80%);
    width: 100px;
    height: 100px;
}

.cross-circle-icon {
    filter: invert(31%) sepia(77%) saturate(3908%) hue-rotate(337deg) brightness(91%) contrast(89%);
    width: 100px;
    height: 100px;
}

.info-icon {
    height: 2rem;
    width: 2rem;
}

.container-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.container-flex.info {
    padding: 1rem;
    border-radius: 5px;
    background-color: #333;
    width: 85%;
    box-shadow: 1px 1px 5px #0005;
    flex-direction: row;
}

.text-size-m {
    font-size: 1.5rem;
}

.text-size-s {
    font-size: 1.2rem;
}

.text-s {
    text-align: start;
}

.margin-x-m {
    margin: 1rem 0;
}

.margin-b-05 {
    margin-bottom: 0.5rem;
}

/* barber-selector -------- */

.barber-selector {
    display: flex;
    width: 95vw;
    max-width: 500px;
    margin: 0.5rem auto;
    margin-top: 0;
    justify-content: space-around;
    border-radius: 10px;
    height: 50px;
    align-items: center;
    color: whitesmoke;
    text-align: center;
}

.barber-selector button {
    width: 50%;
    height: 100%;
    background-color: #444;
}

.barber-selector button>img {
    filter: invert(100%) sepia(22%) saturate(62%) hue-rotate(254deg) brightness(112%) contrast(92%);
    height: 100%;
}

.barber-selector button:hover {
    cursor: pointer;
    background-color: #595959;
}

.barber-selector .barber-name-container {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #292929;
    justify-content: center;
    align-items: center;
    font-size: larger;
}

.barber-selector #prev {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.barber-selector #next {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.barber-selector-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.barber-selector-title {
    text-align: center;
}

/* barber-selector ---------*/

/* form-status-displayer*/

.form-status-displayer-container {
    position: relative;
    margin: 6px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95vw;
    max-width: 500px;
    height: 50px;
    overflow: hidden;
}

.lines-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
    z-index: 1;
}

.lines-container .status-displayer-line {
    height: 6px;
    width: 100%;
    background-color: #333;
}

.lines-container .status-displayer-line.active {
    background-color: var(--secondary-dark-color);
}

.squares-container {
    position: absolute;
    display: flex;
    width: 90%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.squares-container .status-displayer-square {
    background-color: #333;
    height: 30px;
    width: 30px;
    transform: rotate(45deg);
}

.squares-container .status-displayer-square.active {
    background-color: var(--secondary-dark-color);
}

.padding-m {
    padding: 1rem;
}

.reserva-abandonada {
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.reserva-abandonada-modal {
    height: 30px;
}

.red-filter {
    filter: invert(14%) sepia(99%) saturate(3566%) hue-rotate(338deg) brightness(96%) contrast(97%);
}

/* General Styles */

.worker-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center; /* Center items horizontally */
}

.worker {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally within the worker block */
}

/* Input and Button Styles */

.form-worker input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Updated button styles */

.worker-button {
    height: 40px;
    border-radius: 10px;
    background-color: #333;
    color: whitesmoke;
    font-weight: 100;
    font-size: 1.2rem;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.worker-button:hover {
    background-color: #555; /* Lighter shade for hover effect */
}

/* Modal Styles */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure modal is above other content */
}

.modal-content {
    background-color: white; /* White background for the modal content */
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    position: relative; /* Ensure that close button is positioned correctly */
}

/* Close Button Styles (if you have one) */

.modal-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Worker Selector Styles */

.worker-selector-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 400px;
}

.worker-selector-wrapper label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.worker-select-dropdown {
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-height: 44px;
}

.worker-select-dropdown:hover {
    border-color: #999;
}

.worker-select-dropdown:focus {
    outline: none;
    border-color: var(--secondary-dark-color);
    box-shadow: 0 0 0 3px rgba(192, 138, 44, 0.1);
}

/* Responsive Styles */

@media (max-width: 768px) {
    .worker-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
    }

    .worker {
        width: 100%; /* Make each worker take full width */
        max-width: none; /* Remove the max-width for smaller screens */
    }

    /* Admin Navigation Mobile */
    .admin-nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
    }

    .admin-nav-button {
        font-size: 14px;
        padding: 10px 8px;
        min-height: 40px;
        flex-basis: calc(50% - 4px);
        flex-grow: 0;
    }

    .logout-btn {
        flex-basis: 100%;
        margin-top: 5px;
    }

    .settings-btn {
        flex-basis: calc(25% - 4px);
    }

    /* Worker Schedules View Mobile */
    .worker-schedules-container {
        padding: 10px !important;
    }

    .worker-selector-wrapper {
        max-width: 100%;
    }

    .worker-select-dropdown {
        width: 100%;
        font-size: 16px;
    }

    .day-schedule {
        padding: 12px !important;
    }

    .day-schedule h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .day-schedule label {
        font-size: 14px;
    }

    .day-schedule input[type="time"] {
        width: 100%;
        max-width: 150px;
    }

    /* Exception Form Mobile */
    .exception-item {
        padding: 12px !important;
    }

    .exception-item h4 {
        font-size: 1rem;
    }

    /* Reserved Sessions Mobile */
    .ses-container {
        padding: 10px;
    }

    .ses-card {
        width: calc(50% - 12px);
        min-width: 140px;
        height: 90px;
        padding: 8px;
        font-size: 14px;
    }

    /* Modal Mobile */
    .ses-modal {
        padding: 10px;
        font-size: 1rem;
    }

    .ses-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* Forms Mobile */
    .day-pick-form {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .day-pick-form input {
        width: 100%;
        max-width: 250px;
    }

    /* Products View Mobile */
    #cards {
        padding: 10px;
    }

    .p-card {
        width: 100%;
    }

    /* General Button Mobile */
    .worker-button {
        font-size: 1rem;
        padding: 10px 12px;
        height: auto;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .admin-nav-button {
        font-size: 12px;
        padding: 8px 6px;
    }

    .ses-card {
        width: 100%;
        max-width: 300px;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .day-schedule label {
        display: block !important;
        width: 100% !important;
        margin-bottom: 5px;
    }

    .day-schedule input[type="time"] {
        max-width: 100%;
    }
}

.container-decor {
    position: absolute;
    height: 30vw;
    min-height: 200px;
    overflow: hidden;
}

.decor-img {
    opacity: 0;
    height: 30vw;
    min-height: 200px;
    max-height: 600px;
    filter: blur(1px);
}

.anim-apear-left {
    -webkit-animation: apear-left 1s ease-out 0s 1 normal both;
            animation: apear-left 1s ease-out 0s 1 normal both;
}

.anim-apear-right {
    -webkit-animation: apear-right 1s ease-out 0s 1 normal both;
            animation: apear-right 1s ease-out 0s 1 normal both;
}

@-webkit-keyframes apear-left {
    0% {
        opacity: 0;
        transform: translateX(-5%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes apear-left {
    0% {
        opacity: 0;
        transform: translateX(-5%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes apear-right {
    0% {
        opacity: 0;
        transform: translateX(5%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes apear-right {
    0% {
        opacity: 0;
        transform: translateX(5%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

#cards .p-card.p-component:hover .bullet, #cards .p-card.p-component.selected .bullet  {
    background-color: var(--secondary-dark-color-2);
}

#cards .p-card .p-card-title {
    font-size: 1.2rem;
}

#cards .p-card .p-card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#cards .card-button{
    background-color: #333;
    border: none;
    border-color: var(--secondary-dark-color-2);
}

#cards .card-button:hover, #cards .card-button.selected {
    background-color: var(--secondary-dark-color-2);
}

/* selected card product */

.p-card.p-component {
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.p-card.p-component.selected {
	border-color: #333;
	border-width: 1px;
	border-style: solid;
	box-shadow: none;
}

/* TODO: end of general rules*/

/* media sm medium width screen */

@media screen and (min-width: 540px) {

    .display.chosen,
    .display.total {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    nav a {
        min-width: 100px;
    }

    .navbar nav ul {
        display: flex;
        margin-right: 2rem;
    }

    #logo {
        margin-left: 2rem;
    }
}

/* media md medium width screen */

@media screen and (min-width: 800px) {
    .portada-img {
        transform: translate(-50%, -50%);
        width: 100%;
        height: initial;
    }

    .portada-title {
        font-size: 3rem;
        line-height: 4rem;
    }
}

/* media lg large width screen */

@media screen and (min-width: 1200px) {}

