@import 'Web.Public.Client.m6am5tqn99.bundle.scp.css';
@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.25o87uqmvr.bundle.scp.css';

/* _content/Web.Public/Components/DesginComponents/AdminServiceCard.razor.rz.scp.css */
.s-cards[b-s3lustrwzy] {
    display: flex;
    flex-direction: column;
}

.s-card[b-s3lustrwzy] {
    background-color: #f6f6f6;
    color: #4d4d4d;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    max-width: 600px;
    min-width: 350px;
}

.s-card-title[b-s3lustrwzy] {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .2rem;
}

.title-time[b-s3lustrwzy] {
    margin: 0 0 0 auto;
}

.s-card-profile[b-s3lustrwzy] {
    display: flex;
    gap: .5rem;
}

.s-card-body[b-s3lustrwzy] {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.s-card-serv-item[b-s3lustrwzy] {
    padding-left: .3rem;
    display: flex;
    width: 100%;
    gap: .4rem;
    align-items: baseline;
}

.dot-item[b-s3lustrwzy] {
    width: 5px;
    height: 5px;
    background-color: #4d4d4d;
    border-radius: 50%;
}

.s-card-amount[b-s3lustrwzy] {
    margin: auto;
    display: flex;
    gap: .3rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 700;
    border-bottom: 1px solid #808080;
}

.s-card-footer[b-s3lustrwzy] {
    margin: auto;
    display: flex;
    border-top: 1px solid #808080;
    gap: .3rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 700;
    padding-top: .7rem;
}

.s-card-footer-item[b-s3lustrwzy] {
    padding: 0 1.5rem;
}

/*.s-card-footer img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
}*/

.btn-order[b-s3lustrwzy] {
    padding: .5rem;
    border-radius: 7px;
    border: 1px solid;
}


.dropdown-menu[b-s3lustrwzy] {
    display: none;
    position: absolute;
    /*right: 0;
    top: 100%;*/
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /*min-width: 180px;*/
    z-index: 1001;
    display: none;
}

.dropdown-menu.active[b-s3lustrwzy] {
    display: block;
}


.overlay-stat[b-s3lustrwzy] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.overlay-stat.active[b-s3lustrwzy] {
    opacity: 1;
    visibility: visible;
}
/* _content/Web.Public/Components/DesginComponents/Calendar.razor.rz.scp.css */
.custom-calendar[b-jfzfxkg8ge] {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    font-size: 16px;
}

.calendar-header[b-jfzfxkg8ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #4285f4;
    color: white;
}

.calendar-header button[b-jfzfxkg8ge] {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 15px;
    min-width: 44px; 
    min-height: 44px;
}

.calendar-header button:hover[b-jfzfxkg8ge] {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.calendar-grid[b-jfzfxkg8ge] {
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: white;
}

.calendar-weekdays[b-jfzfxkg8ge] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.calendar-days[b-jfzfxkg8ge] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 1fr;
    min-height: 300px;
}

.calendar-day[b-jfzfxkg8ge] {
    padding: 5px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: background-color 0.2s;
    touch-action: manipulation; /* Улучшает отзывчивость на тач-устройствах */
    user-select: none; /* Предотвращает выделение текста при тапе */
}

.calendar-day:hover[b-jfzfxkg8ge] {
    background-color: #f5f5f5;
}

.other-month[b-jfzfxkg8ge] {
    color: #aaa;
    background-color: #f9f9f9;
}

.today[b-jfzfxkg8ge] {
    background-color: #e8f4fe;
    font-weight: bold;
}

.has-event .day-number[b-jfzfxkg8ge] {
    position: relative;
}

/*.event-marker {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4285f4;
    margin-top: 2px;
}*/

.day-number[b-jfzfxkg8ge] {
    margin-bottom: 2px;
}

.event-markers[b-jfzfxkg8ge] {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2px;
}

.event-marker[b-jfzfxkg8ge] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.event-marker-more[b-jfzfxkg8ge] {
    font-size: 0.7rem;
    color: #666;
    line-height: 1;
}

/* Для планшетов */
@media (max-width: 768px) {
    .custom-calendar[b-jfzfxkg8ge] {
        font-size: 14px;
    }

    .calendar-day[b-jfzfxkg8ge] {
        min-height: 40px;
    }
}

/* Для мобильных телефонов */
@media (max-width: 480px) {
    .custom-calendar[b-jfzfxkg8ge] {
        font-size: 12px;
    }

    .calendar-header[b-jfzfxkg8ge] {
        /*flex-direction: column;*/
        padding: 8px;
    }

    .calendar-header h3[b-jfzfxkg8ge] {
        margin: 5px 0;
        font-size: 1.1rem;
    }

    .calendar-weekday[b-jfzfxkg8ge] {
        font-size: 0.7rem;
    }

    .calendar-day[b-jfzfxkg8ge] {
        min-height: 30px;
        padding: 2px;
    }

    .day-number[b-jfzfxkg8ge] {
        font-size: 0.8rem;
    }

    .event-marker[b-jfzfxkg8ge] {
        width: 6px;
        height: 6px;
    }
}

.event-details[b-jfzfxkg8ge] {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.events-list[b-jfzfxkg8ge] {
    margin: 15px 0;
}

.event-item[b-jfzfxkg8ge] {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.event-time[b-jfzfxkg8ge] {
    font-weight: bold;
    min-width: 60px;
    color: #555;
}

.event-title[b-jfzfxkg8ge] {
    flex-grow: 1;
    padding-left: 10px;
}

.events-count[b-jfzfxkg8ge] {
    font-size: 0.9em;
    color: #666;
    text-align: right;
    margin-top: 10px;
}
/* _content/Web.Public/Components/DesginComponents/Carousel.razor.rz.scp.css */
.carousel-container[b-zwmcu69e9r] {
    --slide-width: 100%;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 7px;
    touch-action: pan-y; /* Важно для touch-устройств */
    cursor: grab;
    user-select: none;
}

@media (max-width: 767px) {
    .carousel-container[b-zwmcu69e9r] {
        height: 200px;
    }
}

.carousel-container:active[b-zwmcu69e9r] {
    cursor: grabbing;
}

.carousel[b-zwmcu69e9r] {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    /*height: 400px; /* или любая другая фиксированная высота */
    will-change: transform; /* Оптимизация анимации */
    transform: translateX(calc(-100% * var(--current-index, 0) + var(--offset, 0%)));
    transition: var(--transition, transform 0.3s ease);
}

.slide[b-zwmcu69e9r] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    min-width: 100%;
    flex-shrink: 0;
    flex: 0 0 var(--slide-width);
    user-select: none;
    flex: 0 0 100%;
    min-width: 100%;
    transform: translateZ(0); /* Аппаратное ускорение */
    backface-visibility: hidden;
}

.slide.active[b-zwmcu69e9r] {
    opacity: 1;
    pointer-events: auto;
}

.slide img[b-zwmcu69e9r] {
    width: 100%;
    height: 100%;
    object-fit: cover; /* или contain, в зависимости от потребностей */
    display: block;
    pointer-events: none; /* Чтобы не мешали drag-событиям */
}

.nav-button[b-zwmcu69e9r] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.nav-button.prev[b-zwmcu69e9r] {
    left: 10px;
}

.nav-button.next[b-zwmcu69e9r] {
    right: 10px;
}

.indicators[b-zwmcu69e9r] {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;

}

.indicator[b-zwmcu69e9r] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.indicator.active[b-zwmcu69e9r] {
    background: white;
}
/* _content/Web.Public/Components/DesginComponents/UserServiceCard.razor.rz.scp.css */
.s-cards[b-8y9yyqyq4g] {
    display: flex;
    flex-direction: column;
}

.s-card[b-8y9yyqyq4g] {
    background-color: #f6f6f6;
    color: #4d4d4d;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    max-width: 600px;
    min-width: 350px;
}

.s-card-title[b-8y9yyqyq4g] {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .2rem;
}

.title-time[b-8y9yyqyq4g] {
    margin: 0 0 0 auto;
}

.s-card-profile[b-8y9yyqyq4g] {
    display: flex;
    gap: .5rem;
}

.s-card-body[b-8y9yyqyq4g] {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.s-card-serv-item[b-8y9yyqyq4g] {
    padding-left: .3rem;
    display: flex;
    width: 100%;
    gap: .4rem;
    align-items: baseline;
}

.dot-item[b-8y9yyqyq4g] {
    width: 5px;
    height: 5px;
    background-color: #4d4d4d;
    border-radius: 50%;
}

.s-card-amount[b-8y9yyqyq4g] {
    margin: auto;
    display: flex;
    gap: .3rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 700;
    border-bottom: 1px solid #808080;
}

.s-card-footer[b-8y9yyqyq4g] {
    margin: auto;
    display: flex;
    border-top: 1px solid #808080;
    gap: .3rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 700;
    padding-top: .7rem;
}

.s-card-footer-item[b-8y9yyqyq4g] {
    padding: 0 1.5rem;
}

/*.s-card-footer img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
}*/

.btn-order[b-8y9yyqyq4g] {
    padding: .5rem;
    border-radius: 7px;
}

.s-card-btn[b-8y9yyqyq4g] {
    display: flex;
    align-items: flex-end;
    padding: .3rem;
    border-radius: 7px;
    color: #fff;
    border: none;
}
/* _content/Web.Public/Components/Layout/AdminLayout.razor.rz.scp.css */
/* Общие стили */
.app-container[b-shmovwz7ks] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Верхнее меню */
.top-bar[b-shmovwz7ks] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    z-index: 1000;
    justify-content: space-between;
}


.menu-left-up[b-shmovwz7ks] {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.page-title[b-shmovwz7ks] {
    flex-grow: 1;
    padding-left: 15px;
}

.menu-toggle[b-shmovwz7ks] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
}

/* Иконки меню */
.menu-icon[b-shmovwz7ks] {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
}

.hamburger-icon[b-shmovwz7ks] {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'><path d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/></svg>");
}

.close-icon[b-shmovwz7ks] {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
}

/* Основная область */
.main-area[b-shmovwz7ks] {
    margin-top: 60px;
    display: flex;
    flex-grow: 1;
}

#mobile-menu-toggle:checked ~ .main-area .sidebar[b-shmovwz7ks] {
    transform: translateX(250px);
}

#mobile-menu-toggle:checked ~ .main-area .overlay[b-shmovwz7ks] {
    opacity: 1;
    visibility: visible;
}

/* Боковое меню (мобильная версия) */
.sidebar[b-shmovwz7ks] {
    position: fixed;
    top: 60px;
    left: -250px;
    bottom: 0;
    width: 250px;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar.mobile-open[b-shmovwz7ks] {
    transform: translateX(250px);
}

.nav-item[b-shmovwz7ks] {
    display: block;
    padding: .5rem 1rem;
    color: #212832;
}
.nav-item:hover[b-shmovwz7ks] {
    color: #0061f2;
}

/* Контент */
.content[b-shmovwz7ks] {
    flex-grow: 1;
    padding: 20px;
    background: #f5f5f5;
    min-height: calc(100vh - 60px);
}

/* Затемнение */
.overlay[b-shmovwz7ks] {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.overlay.active[b-shmovwz7ks] {
    opacity: 1;
    visibility: visible;
}

/* Меню профиля */
.profile-menu[b-shmovwz7ks] {
    position: relative;
}

.profile-button[b-shmovwz7ks] {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-menu[b-shmovwz7ks] {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 180px;
    z-index: 1001;
    display: none;
}

.dropdown-menu.active[b-shmovwz7ks] {
    display: block;
}

/*.profile-menu:hover .dropdown-menu,*/
.profile-button:focus + .dropdown-menu[b-shmovwz7ks] {
    display: block;
}

.profile-menu[b-shmovwz7ks] {
    position: relative;
}


.dropdown-item[b-shmovwz7ks] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}

.dropdown-item:hover[b-shmovwz7ks] {
    background: #f0f0f0;
}

/* Десктопная версия */
@media (min-width: 769px) {
    .sidebar[b-shmovwz7ks] {
        position: sticky;
        top: 60px;
        left: 0;
        transform: none;
        width: 250px;
        height: calc(100vh - 60px);
    }

    .overlay[b-shmovwz7ks] {
        display: none;
    }

    .menu-toggle[b-shmovwz7ks] {
        display: none;
    }

    /*.content {
        margin-left: 250px;
    }*/
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .dropdown-menu[b-shmovwz7ks] {
        position: fixed;
        /*width: 100%;*/
        top: 60px;
        /*left: 0;*/
        right: 0;
    }
}
/* _content/Web.Public/Components/Layout/AdminNavMenu.razor.rz.scp.css */
.sidebar[b-al4vm2cl94] {
    position: fixed;
    top: 60px;
    left: -250px;
    bottom: 0;
    width: 250px;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar.mobile-open[b-al4vm2cl94] {
    transform: translateX(250px);
}

.menu-mobile-open[b-al4vm2cl94] {
    /*transform: translateX(200px);*/
}

.nav-item[b-al4vm2cl94] {
    display: block;
    /*padding: .5rem 1rem;*/
    color: #212832;
}

.menu-toggle[b-al4vm2cl94] {
    position: fixed;
    background-color: white;
    opacity: 0.8;
    padding: .3rem;
    border-radius: 50%;
    left: 5px;
    top: 10px;
    display: flex;
    z-index: 1001;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-item[b-al4vm2cl94]  a.active span.nav-text {
    /*background-color: rgba(255,255,255,0.37);*/
    color: #0061f2;
    font-weight: 600;
}

.nav-item[b-al4vm2cl94]  a {
    display: flex;
    gap: .5rem;
    padding: .5rem 1rem;
}

.nav-item[b-al4vm2cl94]  a.active {
    background-color: rgb(0, 0, 0, .1);
    border-radius: 5px;
}


.menu-icon[b-al4vm2cl94] {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
}

.hamburger-icon[b-al4vm2cl94] {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'><path d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/></svg>");
}

.close-icon[b-al4vm2cl94] {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
}

.overlay[b-al4vm2cl94] {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.overlay.active[b-al4vm2cl94] {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .sidebar[b-al4vm2cl94] {
        position: sticky;
        top: 60px;
        left: 0;
        transform: none;
        width: 250px;
        height: calc(100vh - 60px);
    }

    .overlay[b-al4vm2cl94] {
        display: none;
    }

    .menu-toggle[b-al4vm2cl94] {
        display: none;
    }
}
/* _content/Web.Public/Components/Layout/Footer.razor.rz.scp.css */
.container[b-en5c2peucl] {
    /*display: flex;
    flex-wrap: wrap;*/
    /*align-content: space-between;*/
    /*justify-content: space-between;*/
    /*display: grid;*/
    /*   Задаем ширины колонок:
  auto-fit - сам выберет количество колонок, смотря сколько поместится
  minmax - задаем минимальное и максимальное значение
  150px - меньше 150 колонка не займет в ширину
  1fr - при ширине больше минимальной колонка будет растягиваться */
    /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
    /*   Расстояние между колонками */
    /*gap: 5px;*/
}

.footer-container[b-en5c2peucl] {
    display: flex;
    flex-direction: column;


.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5px;
}


.footer-column[b-en5c2peucl] {
    color: #000;
    display: flex;
    flex-direction: column;

    /*.themecolor, .themecolor a
    {
        color: #196dff;
    }*/

    hr {
        margin: 0 auto 20px auto;
        border: 0;
    }

    hr.first[b-en5c2peucl] {
        margin: 0 auto 75px auto
    }
    .footer-text[b-en5c2peucl] {
        display: flex;

        svg {
                margin: 5px 3px;
             }
    }
}

}

.footer-logo[b-en5c2peucl] {
    display: flex;
    gap: .5rem

}

.social-links[b-en5c2peucl] {
    display: flex;
}

.social-links > a[b-en5c2peucl] {
    width: 48px;
    height: 48px;
}

.social-links > a > img[b-en5c2peucl]{
    width: 24px;
    height: 24px;
}

/*@media (min-width: 641px) {
    .footer-logo {
        flex-direction: row;
    }
}*/
/* _content/Web.Public/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-vu1cjmoxi5] {
    /*position: relative;
    display: flex;
    flex-direction: column;*/
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main[b-vu1cjmoxi5] {
    flex: 1;
}

.header[b-vu1cjmoxi5] {
    background-image: linear-gradient(180deg, rgb(104, 107, 113) 0%, #000000 70%);
    width: 100%;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 9;
    /*background-color: */
}

.header div:last-child[b-vu1cjmoxi5] {
    margin-left: auto;
}

@media (max-width: 640px) {
    .header[b-vu1cjmoxi5] {
        background-color: rgb(12, 17, 17);
        background-image: unset;
    }
}

.footer[b-vu1cjmoxi5] {
    background-color: #f7f7f5;
    border: 0;
    border-top: var(--bs-border-width) solid rgba(0, 0, 0, 0.25);
    padding: 1rem 0;
    margin-top: 1.5rem;
    /*opacity: .25;*/
}


.top-row[b-vu1cjmoxi5] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-vu1cjmoxi5]  a, .top-row[b-vu1cjmoxi5]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-vu1cjmoxi5]  a:hover, .top-row[b-vu1cjmoxi5]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-vu1cjmoxi5]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-vu1cjmoxi5] {
        justify-content: space-between;
    }

    .top-row[b-vu1cjmoxi5]  a, .top-row[b-vu1cjmoxi5]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    /*.page {
        flex-direction: row;
    }*/

    .header[b-vu1cjmoxi5] {
        /*width: 100%;
        position: sticky;
        top: 0;
        display: flex;*/
    }

    .top-row[b-vu1cjmoxi5] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vu1cjmoxi5]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vu1cjmoxi5], article[b-vu1cjmoxi5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-vu1cjmoxi5] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-vu1cjmoxi5] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/Web.Public/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-plwlfmpob3] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    margin-left: 1.2rem;
    /*position: absolute;
    top: 0.5rem;
    right: 1rem;*/
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-plwlfmpob3] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-plwlfmpob3] {
    /*min-height: 3.5rem;*/
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-plwlfmpob3] {
    font-size: 1.1rem;
}

.bi[b-plwlfmpob3] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-plwlfmpob3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-plwlfmpob3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-plwlfmpob3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav[b-plwlfmpob3] {
    flex-direction: column;
}

.navbar-brand img[b-plwlfmpob3] {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(225deg) brightness(100%) contrast(103%);
}

.nav-item[b-plwlfmpob3] {
    /*font-size: 0.9rem;*/
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.nav-item[b-plwlfmpob3]  .nav-link {
    color: #d7d7d7;
    background: none;
    border: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 100%;
    transition: all 0.5s ease-out;
}

.nav-item[b-plwlfmpob3]  a.active {
    /*background-color: rgba(255,255,255,0.37);*/
    color: #07d564;
}

.nav-item[b-plwlfmpob3]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: #07d564;
}

.nav-scrollable[b-plwlfmpob3] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-plwlfmpob3] {
    display: block;
}
.navbar-brand-mobile[b-plwlfmpob3] {
    display: none;
}

.navbar-brand-mobile > img[b-plwlfmpob3] {
    max-height: 20px;
}

@media (min-width: 641px) {
    .navbar-toggler[b-plwlfmpob3] {
        display: none;
    }

    .nav-scrollable[b-plwlfmpob3] {
        display: flex;
    }

    .nav[b-plwlfmpob3] {
        flex-direction: row;
        align-items: center;
    }

    .nav-item[b-plwlfmpob3] {
        padding-bottom: 0;
    }
}

@media (max-width: 640px) {
    .nav-scrollable[b-plwlfmpob3] {
        position: absolute;
        top: 48px;
        width: 100%;
        height: 100%;
    }

    .nav[b-plwlfmpob3] {
        background-color: rgba(0,0,0,0.8);
    }

    .navbar-brand-mobile[b-plwlfmpob3] {
        display: block;
    }

    .navbar-brand-logo[b-plwlfmpob3] {
        display: none;
    }
}

.header_right_block[b-plwlfmpob3] {
    display: flex;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(225deg) brightness(100%) contrast(103%);
    margin-left: auto;
    margin-right: 2.5rem;
}
.header_right_block img[b-plwlfmpob3] {
    width: 30px;
}

.spinner-border[b-plwlfmpob3] {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
}

.sign-block[b-plwlfmpob3] {
    position: relative;
}

.ava-sign[b-plwlfmpob3] {
    cursor: pointer;
    background-color: #a79c9c;
    border-radius: 50%;
}

.ava-sign > img[b-plwlfmpob3] {
    margin: .3rem;
}

.popup-backdrop[b-plwlfmpob3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999; /* ������ ���� ����, ��� � popup-sign */
    background-color: transparent;
    cursor: default;
}

.popup-sign[b-plwlfmpob3] {
    position: absolute;
    right: -5px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 0;
    border-radius: 5px;
    z-index: 9999;
    transition: opacity 0.3s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    display: flex;
    flex-direction: column;
}
.popup-sign.invs[b-plwlfmpob3] {
    display: none;
}

.popup-sign > .popup-item[b-plwlfmpob3] {
    text-wrap: nowrap;
    width: 100%;
    padding: 0.3rem 1.5rem;
    cursor: pointer;
}

.popup-sign > a[b-plwlfmpob3] {
    text-decoration: none;
    color: black;

}

.popup-sign > a:hover[b-plwlfmpob3] {
    background-color: #a79c9c;
}
/* _content/Web.Public/Components/Pages/Admin/Order.razor.rz.scp.css */
.form-order[b-judpoh44q9] {
    max-width: 500px;
    padding: 15px;
}

.c_text[b-judpoh44q9] {
    display: flex;
    flex-direction: column;
    margin: 1.2rem 0 1.5rem 0;
}
/* _content/Web.Public/Components/Pages/Admin/Orders.razor.rz.scp.css */
.s-cards[b-lrbcmwuowq]{
    display: flex;
    flex-direction: column;
}

.s-card[b-lrbcmwuowq] {
    background-color: #f6f6f6;
    color: #4d4d4d;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 1rem;
    border-style: solid;
    border-width: 1px;
    max-width: 600px;
    min-width: 350px;
}

.s-card-title[b-lrbcmwuowq] {
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid #808080;
    padding-bottom: .2rem;
}
.title-time[b-lrbcmwuowq] {
    margin: 0 0 0 auto;
}

.s-card-body[b-lrbcmwuowq] {
    display: flex;
    flex-direction: column;
}

.s-card-serv-item[b-lrbcmwuowq] {
    padding-left: .3rem;
    display: flex;
    width: 100%;
    gap: .4rem;
    align-items: baseline;
}

.dot-item[b-lrbcmwuowq] {
    width: 5px;
    height: 5px;
    background-color: #4d4d4d;
    border-radius: 50%;
}

.s-card-footer[b-lrbcmwuowq] {
    margin: auto;
    display: flex;
    border-top: 1px solid #808080;
    gap: .3rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 700;
}

.s-card-footer-item[b-lrbcmwuowq] {
    padding: 0 1.5rem;
}

.page-order[b-lrbcmwuowq] {
    display: flex;
}

@media (max-width: 1199px) {
    .page-order[b-lrbcmwuowq] {
        flex-direction: column;
        gap: 1.2rem;
    }
}

.calendar-orders[b-lrbcmwuowq] {
    width: 100%;
}

.order-list-clicked[b-lrbcmwuowq] {
    margin: 0 auto;
}
/* _content/Web.Public/Components/Pages/ConfirmService.razor.rz.scp.css */
[b-0u2ty4gmlt] .service_section {
    display: flex;
}

.total_total_section[b-0u2ty4gmlt] {
    display: flex;
    flex-direction: column;
}

.c_srv_list[b-0u2ty4gmlt] {
    display: flex;
    flex-direction: column;
}

.c_text[b-0u2ty4gmlt] {
    display:flex;
    flex-direction: column;
    margin: 1.2rem 0 1.5rem 0;
}

.c_srv td.right[b-0u2ty4gmlt], th.right[b-0u2ty4gmlt] {
    text-align: right;
}
/* _content/Web.Public/Components/Pages/Login.razor.rz.scp.css */
.form-login[b-aelqr64xxn] {
    max-width: 350px;
    padding: 15px;
    margin: 0 auto;
}

.error-message[b-aelqr64xxn] {
    margin: 5px 0;
    color: #b90d0d;
    text-align: center;
}

.reg-button[b-aelqr64xxn] {
    margin-top: 1.5rem;
}
/* _content/Web.Public/Components/Pages/Profile/Orders.razor.rz.scp.css */
.s-cards[b-mw2xzjmz76]{
    display: flex;
    flex-direction: column;
}

.s-card[b-mw2xzjmz76] {
    background-color: #f6f6f6;
    color: #4d4d4d;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 1rem;
    border-style: solid;
    border-width: 1px;
    max-width: 600px;
    min-width: 350px;
}

.s-card-title[b-mw2xzjmz76] {
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid #808080;
    padding-bottom: .2rem;
}
.title-time[b-mw2xzjmz76] {
    margin: 0 0 0 auto;
}

.s-card-body[b-mw2xzjmz76] {
    display: flex;
    flex-direction: column;
}

.s-card-serv-item[b-mw2xzjmz76] {
    padding-left: .3rem;
    display: flex;
    width: 100%;
    gap: .4rem;
    align-items: baseline;
}

.dot-item[b-mw2xzjmz76] {
    width: 5px;
    height: 5px;
    background-color: #4d4d4d;
    border-radius: 50%;
}

.s-card-footer[b-mw2xzjmz76] {
    margin: auto;
    display: flex;
    border-top: 1px solid #808080;
    gap: .3rem;
    width: 100%;
    justify-content: space-between;
    font-weight: 700;
}

.s-card-footer-item[b-mw2xzjmz76] {
    padding: 0 1.5rem;
}

.page-order[b-mw2xzjmz76] {
    display: flex;
}

@media (max-width: 1199px) {
    .page-order[b-mw2xzjmz76] {
        flex-direction: column;
        gap: 1.2rem;
    }
}

.calendar-orders[b-mw2xzjmz76] {
    width: 100%;
}

.order-list-clicked[b-mw2xzjmz76] {
    margin: 0 auto;
}

@media (max-width: 768px)
{
    .order-list-clicked[b-mw2xzjmz76] {
        margin: 0;
    }
}
/* _content/Web.Public/Components/Pages/Profile/Profile.razor.rz.scp.css */
.form-profile[b-xk63v676yj] {
    max-width: 500px;
    padding: 15px;
}

.msg[b-xk63v676yj] {
    padding: 0.7rem;
    color: #fff;
    border-radius: 7px;
    margin: 0.7rem 0;
}

.error-message[b-xk63v676yj] {
    background-color: #dc3545;
}

.success-message[b-xk63v676yj] {
    background-color: #198754;
}

.invisible[b-xk63v676yj] {
    display: none;
}
/* _content/Web.Public/Components/Pages/Register.razor.rz.scp.css */
.form-register[b-5xe3jqyxkw] {
    max-width: 350px;
    padding: 15px;
    margin: 0 auto;
}

.error-message[b-5xe3jqyxkw] {
    margin: 5px 0;
    color: #b90d0d;
    text-align: center;
}
/* _content/Web.Public/Components/Pages/Services.razor.rz.scp.css */
[b-rnk8uhgkp3] .service_section {
    display: flex;
}

.total_total_section[b-rnk8uhgkp3] {
    display: flex;
    flex-direction: column;
}
/* _content/Web.Public/Components/Service/Collapsable.razor.rz.scp.css */
/*.s_card {
    display: flex;
    flex-direction: column;
}*/
/* _content/Web.Public/Components/Service/ConfirmDialog.razor.rz.scp.css */
.row_dialog[b-h1rnzf0ir4] {
    display: flex;
    flex-direction: column;
}

.disabled-form > *[b-h1rnzf0ir4]{

}

.sbm_button[b-h1rnzf0ir4] {
    display: flex;
}

.day-select[b-h1rnzf0ir4] {
    border: none;
}
/* _content/Web.Public/Components/Service/ServiceDialog.razor.rz.scp.css */
.row_dialog[b-tzzm68qytf] {
    display: flex;
    flex-direction: column;
}

.row_dialog > .service_modal_list[b-tzzm68qytf] {
    display: flex;
    column-gap: .5rem;
    margin-bottom: 1.5rem;
}
/* _content/Web.Public/Components/Service/ServicesComponent.razor.rz.scp.css */
.s_cards[b-1x1sja890u] {
    width: 70%;
}

[b-1x1sja890u] .s_card {
    display: flex;
    flex-direction: column;
}

[b-1x1sja890u] .s_card_title_section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9;
    align-items: baseline;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

[b-1x1sja890u] .s_card_title_section:hover {
    color: #196dff;
}

[b-1x1sja890u] .s_card_title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    width: 100%;
}


[b-1x1sja890u] .s_card_title_section > img {
    /*margin: auto;*/
}

.s_card_item[b-1x1sja890u] {
    background-color: #f6f6f6;
    color: #4d4d4d;
    border-radius: 5px;
    padding: 1.3rem;
    margin: 0.5rem 0;
    display: flex;
    cursor: pointer;
    gap: 1rem;
    transition: .2s;
    img
    {
        object-fit: contain;
        border-radius: 5px;
        display: block;
    }
}

@media (max-width: 767px) {

    .s_card_item > img[b-1x1sja890u] {
        display: none;
    }
}

.s_card_item:hover[b-1x1sja890u] {
    -webkit-box-shadow: 0px 0px 12px 2px rgba(25, 109, 255, 0.35);
    -moz-box-shadow: 0px 0px 12px 2px rgba(25, 109, 255, 0.35);
    box-shadow: 0px 0px 12px 2px rgba(25, 109, 255, 0.35);
}

.s_card_item.active[b-1x1sja890u] {
    box-shadow: 0 0 0 2px inset #196dff;
}

.s_card_item_descr[b-1x1sja890u] {
    display: flex;
    flex-direction: column;
}

.s_card_item_title[b-1x1sja890u] {
    font-weight: 600;
    font-size: 16px;
}

.s_card_item_price[b-1x1sja890u] {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: end;
    >*
    {
        text-wrap: nowrap;
        display:flex;
        column-gap: .5rem;
    }
    .s_card_item_cost[b-1x1sja890u] 
    {
        font-size: 1.2rem;
        font-weight: 600;
    }
    .s_card_item_cost[b-1x1sja890u] {
        font-size: 1.2rem;
        font-weight: 600;
    }

}

.total_section[b-1x1sja890u] {
    margin: 0 0 0 1.5rem;
    width: 30%;
    display: block;
}

.total_section > .sticky_section[b-1x1sja890u] {
  padding: 10px;
  background-color: #f6f6f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: sticky;
  position: -webkit-sticky;
  top: 60px; 
}

@media (max-width: 1023px) {

    .s_cards[b-1x1sja890u] {
        width: 100%;
    }
    .total_section[b-1x1sja890u] {
        display: none;
    }
}


.service_total_section[b-1x1sja890u] {
    margin: 1.5rem;
}

.service_total[b-1x1sja890u] {
    display: flex;
    flex-direction: column;
}

.service_total > span[b-1x1sja890u] {
    text-wrap: nowrap;
}

.service_mobile_total[b-1x1sja890u] {
    background-color: #ff6d00;
    min-width: 35%;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 15px 15px 0;
    padding: 10px;
    border-radius: 7px;
    border-radius: 7px;
    display: none;
    -webkit-box-shadow: 0px 4px 13px 10px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 4px 13px 10px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 4px 13px 10px rgba(34, 60, 80, 0.2);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 1023px) {

    .service_mobile_total[b-1x1sja890u] {
        display: block;
    }
}

.service_mobile_list[b-1x1sja890u] {
    display: flex;
    gap: 1.5rem;
    color: #fff;
    justify-content: space-between;
}

/*.service_mobile_list > span.basket {
    background-color: #fff;
    -webkit-mask: url(/static/svg/basket.svg) no-repeat center;
    mask: url(/static/svg/basket.svg) no-repeat center;
}*/


.service_mobile_list > span[b-1x1sja890u] {
    display: flex;
    align-self: auto;
    gap: .7rem;
}

/*.service_mobile_list:last-child {
    border: none;
}*/

.service_mobile_list > span > img[b-1x1sja890u] {
    filter: invert(100%) sepia(46%) saturate(19%) hue-rotate(296deg) brightness(105%) contrast(106%);
}

/* _content/Web.Public/Components/Service/ServicesTotal.razor.rz.scp.css */
/*.service_total_section {
    margin: 1.5rem;
}

.service_total {
    display: flex;
    flex-direction: column;
}

.service_total > span {
    text-wrap: nowrap;
}*/
