<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #1A1D21;
    color: white;
    font-family: Roboto;
}

.btn-primary {
    --bs-btn-color: black;
    --bs-btn-bg: #fcc500;
    --bs-btn-border-color: #fcc500;
    --bs-btn-hover-color: black;
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: white;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: black;
    --bs-btn-active-bg: white;
    --bs-btn-active-border-color: white;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #af9c56;
    --bs-btn-disabled-border-color: #af9c56;
}

.btn-primary-variation {
    --bs-btn-color: black;
    --bs-btn-bg: #a3845b;
    --bs-btn-border-color: #a3845b;
    --bs-btn-hover-color: black;
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: white;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: black;
    --bs-btn-active-bg: white;
    --bs-btn-active-border-color: white;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #af9c56;
    --bs-btn-disabled-border-color: #af9c56;
}

.wapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: transform 0.25s, opacity 0.25s;
}

.wapp-floating:hover {
    opacity: 0.8;
    transform: translateY(-4px) scale(105%);
}

header {
    position: relative;
    height: 105px;
    z-index: 2;
}

header.main-page {
    margin-top: 150px;
}

.btn-sidebar {
    display: none;
}

@media (max-width: 767px) {
    header {
        margin-top: 0;
    }

    .btn-sidebar {
        display: block;
    }
}

.header-logo {
    position: absolute;
    top: 0;
    left: 50%;
    /* background-color: rgba(0, 0, 0, 0.25);
    border-radius: 0 0 50% 50%; */
    transform: translateX(-50%);
}

.header-logo img {
    margin-left: 6px;
}

.index-section {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-section .row, .index-section div[class*=col] {
    margin: 0;
    padding: 0;
}

.btn-cta, .btn-split {
    --btn-padding: 16px;
    display: flex;
    position: relative;
    background: linear-gradient(to right, #ffd84a, #fcc500 75%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    width: 500px;
    margin-top: 32px;
    padding: var(--btn-padding);
    height: 64px;
    border: none;
    z-index: 1;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-cta:not(.btn-split)::before, .btn-split &gt; *::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    border-radius: 32px;
    z-index: -1;
    transition: opacity 0.25s;
}

.btn-cta:not(.btn-split):hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.5);
}

.btn-cta:not(.btn-split):hover::before, .btn-split &gt; *:hover::before {
    opacity: 1;
}

.btn-split {
    overflow: hidden;
}

.btn-split &gt; * {
    color: inherit;
    text-decoration: none;
    position: relative;
    flex: 1;
    height: calc(var(--btn-padding) * 2 + 100%);
    transform: skew(-20deg);
}

.btn-split &gt; *::before {
    
}

.btn-split &gt; * &gt; * {
    transform: skew(20deg);
}

.btn-split &gt; *:first-child {
    margin-left: calc(var(--btn-padding) * -1);
    border-radius: 32px 0 0 32px;
    border-right: 3px solid black;
}

.btn-split &gt; *:first-child::before {
    border-radius: 0;
    margin-left: -8px;
    width: calc(100% + 8px);
}

.btn-split &gt; *:last-child {
    margin-right: calc(var(--btn-padding) * -1);
    border-radius: 0 32px 32px 0;
    border-left: 3px solid black;
}

.btn-split &gt; *:last-child::before {
    border-radius: 0;
    width: 105%;
}

.index-section-column {
    height: 100%;
    background: linear-gradient(to left, #d1a400, #fcc500);
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5); */
    border-radius: 32px;
    z-index: 0;
}

.index-section-column::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.25s;
    border-radius: 32px;
}

.index-section-column p {
    text-shadow: rgba(0, 0, 0, 0.7) 0 0 8px;
    transition: transform 0.25s, text-shadow 0.25s;
}

.index-section-column:hover::before {
    opacity: 1;
}

.index-section-column:hover p {
    text-shadow: none;
    transform: translateY(-16px);
}

.barber-card {
    display: flex;
    color: white;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    transition: transform 0.25s;
}

.barber-card:hover {
    transform: scale(105%);
}

.barber-card img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    transition: opacity 0.25s;
}

.barber-card:hover img {
    opacity: 0.8;
}

.barber-card-name {
    font-size: 22px;
    margin-bottom: 0;
}

.barber-card-time {
    font-size: 20px;
}

.barber-calendar {
    width: 100%;
    background-color: #debe8a;
    border-radius: 16px;
    overflow: hidden;
}

.barber-calendar, .barber-calendar * {
    touch-action: manipulation;
}

.barber-calendar-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-color: #a3875b;
    padding: 8px 32px;
}

.barber-calendar-header button {
    background-color: transparent;
    border: none;
}

.barber-calendar-header p {
    position: sticky;
    font-size: 24px;
    margin: 0;
    cursor: pointer;
}

.barber-calendar-datepicker-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
}

.barber-calendar-datepicker-input {
    width: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    border: none;
}

.barber-calendar-title-bar {
    color: white;
    background-color: #a3875b;
    padding: 8px;
    margin-left: calc(var(--barber-calendar-padding-x) * -1);
    margin-right: calc(var(--barber-calendar-padding-x) * -1);
}

.barber-calendar-list {
    --barber-calendar-padding-x: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px var(--barber-calendar-padding-x);
    gap: 8px;
}

.barber-calendar-item {
    display: flex;
    color: #3a3a3a;
    min-width: calc(12.5% - 8px);
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.barber-calendar-item img {
    width: 100%;
}

.barber-calendar-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.barber-calendar-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.barber-calendar-prev-icon, .barber-calendar-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.barber-calendar-hours {
    width: 100%;
}

.btn-hour {
    width: 100%;
    color: white;
    background: #66b55e;
    font-size: 18px;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.25s;
}

.btn-hour:hover, input:checked + .btn-hour {
    background: white;
    color: #66b55e;
}

.checkbox-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.25s, transform 0.25s;
}

input:checked + .checkbox-label {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
    transform: scale(103%);
}

.back-button::after {
    content: " Înapoi";
}

.account-button::after {
    content: " Intră în cont";
}

.account-button.logged-in::after {
    content: " Detalii cont";
}

.logout-button::after {
    content: " Deconectare";
}

.link-text {
    text-decoration: none;
    color: white;
}

.link-text:hover {
    text-decoration: underline;
}

.confirm-popup-button {
    font-size: 30px;
    padding: 24px 48px;
    background-color: #64d664;
}

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

.account-tabs {
    flex-wrap: nowrap;
}

.account-tabs .nav-link {
    color: black;
    background-color: #fcc500;
}

.account-tabs .nav-link.active {
    margin-top: -8px;
    height: calc(100% + 8px);
}

.account-tab-content &gt; .tab-pane {
    border: 1px solid white;
    border-top: none;
    padding: 16px;
    border-radius: 0 0 8px 8px;
    overflow-x: auto;
}

.account-table {
    margin: 0;
}

.account-table td, .account-table th {
    vertical-align: middle;
}

.btn-unstyled {
    border: none;
    background: none;
}

.was-validated .form-control.no-validate:valid {
    border-color: var(--bs-border-color);
    padding: .375rem .75rem;
    background: var(--bs-body-bg);
}

.was-validated .form-check-input.no-validate:valid {
    border-color: var(--bs-border-color);
}

.was-validated .form-check-input.no-validate:valid:checked {
    background-color: #0d6efd;
}

.was-validated .form-check-input.no-validate:valid~.form-check-label {
    color: white;
}

.swal-wide {
    width: 750px;
}

.popup-services-container &gt; * label {
    border-radius: 8px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.25s, opacity 0.25s;
}

.popup-services-container &gt; * label:hover {
    opacity: 0.9;
}

.popup-services-container &gt; * input:checked + label::before {
    content: "✔";
    color: greenyellow;
    font-size: 34px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-services-container &gt; * input:checked + label {
    transform: scale(1.02);
}

.text-primary {
    --bs-primary-rgb: 252, 197, 0;
}

.offcanvas {
    font-weight: bold;
}

@media (max-width: 767px) {
    .back-button {
        padding: 0.2rem 1rem;
        font-size: 1.7rem;
        line-height: 1.7rem;
    }

    .back-button::after {
        content: "";
    }
    
    .account-button::after {
        content: "";
    }

    .account-button.logged-in::after {
        content: "";
    }

    .logout-button {
        display: none;
    }

    .account-tabs {
        overflow-x: auto;
    }

    .account-tabs .nav-link.active {
        margin-top: 0;
        height: auto;
    }

    /* .tabs-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .account-tabs {
        flex-direction: column;
        flex: 1;
        border-bottom: none;
    }

    .account-tabs .nav-link {
        width: 100%;
        border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
    }

    .account-tabs .nav-link.active {
        margin-top: 0;
        height: 100%;
    }

    .account-tab-content {
        align-self: stretch;
        flex: 4;
    }

    .account-tab-content .tab-pane {
        max-width: 100%;
        min-height: 100%;
        border-top: 1px solid white;
        border-radius: 0 8px 8px 0;
    } */

    .swal-wide {
        width: 100%;
    }
}

@media (max-width: 577px) {
    .barber-calendar-header p {
        font-size: 20px;
    }

    .barber-calendar-prev-icon, .barber-calendar-next-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .swal2-container .swal2-popup.swal-wide .swal2-icon {
        font-size: 0.8rem;
    }

    .swal2-container .swal2-popup.swal-wide .swal2-title {
        font-size: 1.5rem;
    }

    .swal2-container .swal2-popup.swal-wide .swal2-html-container {
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .barber-calendar-header p {
        font-size: 18px;
    }
}</pre></body></html>