/* .NOTE */
.note {
    color: greenyellow;
}

/* END OF NOTE */

/* NO CAPS - Maintain as is written */
.no-caps {
    text-transform: none;
}
/* END NO CAPS */

/* ALL CAPS - ALL LETTERS CAPITALIZED */
.all-caps {
    text-transform: uppercase;
}
/* END ALL CAPS */

/* COPY */
.copy-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 2px 6px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 4px;
}
.copy-btn:hover {
    background-color: #d4edda;
}
/* END OF COPY */

/* DROPDOWN */

.dropdown {
    position: relative;
    height: fit-content;
}

.dropdown button {
    border: none;
}

.dropdown ul.more {
    z-index: 10;
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: black;
    padding: 0;
    height: fit-content !important;
    a,
    li {
        margin: 0;
    }
}

/* END DROPDOWN */

/* SLIDESHOW */
.slideshow {
    width: 100%;
    padding-bottom: 35px;
}

.slideshow .slides img {
    min-width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
}

.slideshow .slides img:not(:first-child) {
    display: none;
}

@media screen and (max-width: 990px) {
    .slideshow {
        width: 100%;
        padding-bottom: 35px;
        display: none;
    }
}
/* END OF SLIDESHOW */

/* BUTTON */
a {
    text-transform: uppercase;
    color: inherit;
    outline: none;
    text-decoration: none;
    transition: all 0.3sease 0s;
}

.button {
    display: flex;
    align-items: center;
    gap: 0.1em;
    width: fit-content;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
    padding: 10px;
    /* padding: 0.3em;
    padding-left: 0.5em; */
    line-height: 1.4;
    font-size: 19px;
    /* font-size: 1.1em; */
    font-weight: 400;
    font-family: Courier New;
    background: none;
    transition: transform 0.3s;
    transform-origin: center;
    justify-content: center;
    text-transform: uppercase;
}

.button svg.icon {
    fill: rgba(255, 255, 255, 0.8);
    transform: scale(0.5);
}

.no-fill {
    fill: transparent !important;
}

.text-center {
    text-align: center;
}

.cta {
    color: greenyellow;
    fill: greenyellow;
    border-color: greenyellow;
}

.cta.white {
    color: black;
    fill: black;
    border-color: white;
    background-color: white;
}

.button.cta svg.icon {
    fill: greenyellow;
}

.w-full {
    width: 100%;
}
/* END OF BUTTON */

/* AVATAR */

.avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* END OF AVATAR */

/* BADGE */

.badge {
    width: fit-content;
    height: fit-content;
    background-color: white;
    padding: 4px 8px;
    border-radius: 30px;
    font-size: 0.8em;
    color: rgb(58, 58, 58);
    text-align: center;
}

/* END OF BADGE */

/* LAYOUTS */

.two-responsive-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* END OF LAYOUTS */

/* FORM */

form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

input,
select {
    display: flex;
    align-items: center;
    gap: 0.1em;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
    padding: 10px;
    /* padding: 0.3em;
    padding-left: 0.5em; */
    line-height: 1.4;
    font-size: 19px;
    /* font-size: 1.1em; */
    font-weight: 400;
    font-family: Courier New;
    background: none;
    transition: transform 0.3s;
    transform-origin: center;
    justify-content: flex-start;
    /* text-transform: uppercase; */
    /* width: calc(100% - 20px); */
    color-scheme: dark;
}

input[type="radio"] {
    width: fit-content;
    display: inline;
}

select {
    width: 100%;
}
option {
    color: black;
}
textarea {
    background-color: transparent;
    color: white;
    font-size: 18px;
}

form input.inline {
    display: inline;
    width: fit-content;
}
form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    height: fit-content;
}

form .form-group .required {
    color: red;
}

/* END OF FORM */

/* TABLE */

table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    border-bottom: 1px solid white;
}

thead tr {
    border-bottom: 2px solid white;
}

th,
td {
    padding: 10px 0;
    text-align: left;
}

/* END OF TABLE */

/* FOOTER */
footer {
    width: 100%;
    text-align: center;
    position: relative;
    bottom: 0;
}

footer ul.socials {
    list-style: none;
}

ul.socials li {
    display: inline-block;
}

.footer-device-mobile {
    display: none;
}

a.backtotop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    line-height: 50px;
    font-size: 20px;
    background-color: green;
    position: fixed;
    bottom: 65px;
    right: 25px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999;
    overflow: hidden;
    border-radius: 50%;
}
a.backtotop:not(.active) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
a.backtotop svg {
    fill: #fff;
    transform: scale(0.5);
}
a.backtotop::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-45deg);
    -moz-transform: skewX(-45deg);
    -o-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}
a.backtotop:hover::before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}
@media (max-width: 767px) {
    a.backtotop {
        display: none;
    }
    footer {
        display: none;
    }
    .footer-device-mobile {
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 10px 0;
        margin-top: 100px;
        display: flex;
        justify-content: space-between;
        backdrop-filter: blur(6px);
    }
    .footer-device-mobile-item {
        width: 20%;
    }
    .footer-device-mobile-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* END OF FOOTER */

/* PRODUCT SECTION */
.products {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 150px;
}
.products h4 {
    margin-bottom: 1.6em;
    font-size: 1.3125em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding: 0 0 0px;
    margin-bottom: 10px;
}

.products .items {
    width: 100%;
    margin-bottom: 1.6em;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25em;
    justify-content: space-between;
}

.products .item {
    width: 20%;
    height: auto;
    text-align: center;
}

.products .item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.products .item img:first-child {
    display: block;
}
.products .item img:last-child {
    display: none;
}

/* .products .item:hover img:first-child {
    display: none;
} */
/* .products .item:hover img:last-child {
    display: block;
} */

.products .item-info {
    text-align: center;
}

.products .item-info h5 {
    margin: 1.25em 0 0.375em;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.125em;
    line-height: 0.85;
}

.products .item-name {
    font-family: Courier New;
    font-weight: 400;
    font-size: 1em;
    color: #fff;
}

.single-product {
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
    /* max-height: 80vh; */
    /* overflow: auto; */
}

.single-product .single-left {
    width: 40%;
    height: 100%;
    /* overflow-y: auto; */
}

.single-product .single-right {
    position: sticky;
    top: 30vh;
    flex: 1;
    padding: 40px 0 100px 100px;
    max-width: 30%;
    height: fit-content;
    text-align: center;
}

.product-desc h5 {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 21px;
    width: fit-content;
    margin: auto;
}

.product-desc p {
    font-family: Courier New;
    text-align: center;
    color: #fff;
    font-weight: 400;
    margin-bottom: 30px;
}

.product-desc p .price {
    margin-bottom: 20px;
    font-size: 40px;
    font-family: Courier New;
    font-weight: 400;
    font-size: 24px;
}

.stock {
    font-size: 10px;
    position: absolute;
    top: -28px;
    right: -45px;
    background: gray;
    padding: 4px;
    padding-top: 6px;
    border-radius: 10px;
}

.stock.in-stock {
    background: green;
}

.stock.out-of-stock {
    background: red;
}

.product-meta {
    margin-top: 10px;
}

.product-meta .categories {
    display: inline-block;
    width: 100%;
    font-style: italic;
    text-align: right;
}

.product-meta .categories a {
    text-transform: lowercase;
}

.hide {
    display: none;
}

.single-right form.cart,
.single-right .product-meta {
    width: 60%;
    margin: auto;
}

@media screen and (max-width: 720px) {
    .products .item {
        width: 45%;
    }

    .single-product {
        flex-wrap: wrap;
    }

    .single-product .single-left,
    .single-product .single-right {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 0;
    }

    .single-product .single-left {
        display: flex;
        overflow-x: auto;
    }

    .single-left img {
        width: 300px;
        aspect-ratio: 1/1;
        object-fit: contain;
        padding: 0 20px;
    }

    .single-product .single-right {
        margin-top: 30px;
    }
}

/* END OF PRODUCT SECTION */

/* BOOKINGS */

.bookings {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.bookings h1 {
    width: 100%;
}

.bookings h2 {
    line-height: normal;
    height: 25px;
}

.session-scheduler {
    width: 30%;
    max-height: 60vh;
    overflow-y: auto;
    /* background-color: rgba(0, 0, 0, 0.8); */
    /* border: 1px solid rgba(255, 255, 255, 0.288); */
    padding: 20px;
    margin-bottom: 20px;
}

.session-scheduler .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.session-scheduler .header select {
    width: fit-content;
}

.session-scheduler ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.session-scheduler ul li {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid white;
}

.session-scheduler ul li .date-time,
.session-scheduler ul li .calendar-icon {
    color: greenyellow;
    stroke: greenyellow;
}

.session-scheduler p {
    padding: 0;
    margin: 0;
}

.session-scheduler .calendar-icon {
    width: 15px;
    height: 15px;
}

.session-scheduler .chevron-icon {
    width: 20px;
    height: 20px;
}

.bookings form {
    width: 40%;
    height: fit-content;
}

/* .form-group.time-slot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
} */

/* .form-group.time-slot > div {
    width: 45%;
} */

@media screen and (max-width: 990px) {
    .session-scheduler {
        width: calc(100% - 40px);
    }
    .session-scheduler .header {
        flex-direction: column-reverse;
        gap: 20px;
        margin-bottom: 10px;
    }
    .bookings form {
        width: calc(100% - 40px);
        height: fit-content;
    }
}

/* END OF BOOKINGS */

/* CART */

.cart {
    max-width: 1200px;
    margin: 0 auto;
    /* display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px; */
}

.cart p {
    text-align: center;
}

.cart form .remove {
    font-size: 20px;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 10px;
}

.cart form .product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart form .product img {
    width: auto;
    height: 80px;
}

.cart form .product .product-details p {
    margin: 0;
    text-align: left;
}

.cart form .product-quantity input {
    width: 60px;
}

.cart .cart-collaterals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart .cart-collaterals .totals {
    margin-top: 50px;
    text-align: right;
    font-size: 20px;
}

.cart .cart-collaterals .terms-conditions {
    max-width: 600px;
    margin-bottom: 0;
    padding: 10px 0;
    text-align: right;
    font-style: italic;
    font-size: 0.875em;
}

.cart .cart-collaterals .actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 5px;
}

.cart .cart-collaterals .actions .checkout-button {
    background-color: white;
    color: black;
}
/* 
.cart .cart-responsive {
    display: none;
} */

@media screen and (max-width: 768px) {
    .cart form .product {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 491px) {
    .cart table {
        /* display: flex; */
    }

    .cart table tbody {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .cart table thead {
        display: none;
    }

    .cart table tr {
        display: flex;
        flex-direction: column;
        width: 100%;
        border: 1px solid #f0f0f0;
        padding: 20px;
    }

    .cart form .remove {
        float: right;
    }

    .cart form .product {
        flex-direction: row;
        align-items: center;
    }

    /* .cart .cart-responsive {
        display: block;
    } */
}

/* END OF CART */

/* CHECKOUT */

.checkout {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout h3 {
    margin: 30px 0 15px 0;
    font-size: 1.5rem;
}

.checkout .order-form {
    display: flex;
    justify-content: space-between;
}

.checkout .order-form .customer-details {
    width: 40%;
}

.checkout .order-form .order-review {
    width: 50%;
}

.checkout .payment-methods {
    margin-bottom: 20px;
}

.cart .cart-collaterals .terms-conditions {
    max-width: 600px;
    margin-bottom: 0;
    padding: 10px 0;
    text-align: right;
    font-style: italic;
    font-size: 0.875em;
}

@media screen and (max-width: 500px) {
    .checkout .order-form .customer-details {
        width: calc(100% - 20px);
    }

    .checkout .order-form .order-review {
        width: calc(100% - 20px);
    }
}

/* END OF CHECKOUT */

/*  ORDER CONFIRMATION */

.order-confirmation.title {
    text-align: center;
    margin: auto;
    padding: 20px;
}

.order-confirmation .shop_table,
.order-confirmation > div {
    width: 50%;
    margin: auto;
}

@media screen and (max-width: 425px) {
    .order-confirmation .shop_table,
    .order-confirmation > div {
        width: 100%;
    }
}

/* END OF ORDER CONFIRMATION */

/* ORDERS */

.orders,
.order {
    width: 50%;
    margin: auto;
}

.order img {
    object-fit: contain;
}

@media screen and (max-width: 425px) {
    .orders,
    .order {
        width: 100%;
    }
}

/* END OF ORDERS */

/* FLASH MESSAGES */

.flash_messages {
    width: 100vw;
}

.alert {
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;

    button {
        /* color: white; */
        background-color: transparent;
        color: inherit;
        position: absolute;
        top: 0px;
        right: 20px;
        border: none;
        font-size: 26px;
    }
}

.alert.alert-success {
    background-color: green;
}

.alert.alert-danger {
    background-color: rgb(151, 5, 5);
}

.alert.alert-info {
    background-color: blue;
    color: black;
}

.alert.alert-warning {
    background-color: yellow;
    color: black;
}

/* END OF FLASH MESSAGES */

/* ACCOUNT */

.account {
    max-width: 1200px;
    margin: 0 auto;
}

.account .auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.account .auth h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
}

.account .auth form {
    flex-direction: column;
}

@media screen and (max-width: 425px) {
    .account .auth {
        display: grid;
        grid-template-columns: auto;
        gap: 50px;
    }

    .account .auth form button[type="submit"] {
        width: 100%;
    }
}

/* END OF ACCOUNT */
