.qv-mbar,
.qv-drawer {
    --qv-tile-bg: hsl(223, 100%, 96.5%);
    --qv-tile-fg: #0651fe;
}

[data-theme-style="dark"] .qv-mbar,
[data-theme-style="dark"] .qv-drawer {
    --qv-tile-bg: hsla(223, 100%, 62%, .16);
    --qv-tile-fg: hsl(223, 100%, 74%);
}

.qv-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.qv-i {
    flex: none;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qv-mbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 56px;
    padding: 0 6px 0 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(17, 24, 39, .06);
}

.qv-mbar__logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    color: var(--gray-900);
    font-weight: 700;
}

.qv-mbar__logo:hover {
    color: var(--gray-900);
    text-decoration: none;
}

.qv-mbar__logo img {
    display: block;
    width: auto;
    height: 34px;
    max-height: none;
}

.qv-mbar__btn,
.qv-mbar__burger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--gray-800);
    cursor: pointer;
}

.qv-mbar__btn:hover,
.qv-mbar__burger:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.qv-mbar__btn:focus,
.qv-mbar__burger:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--primary);
}

.qv-mbar__btn:focus:not(:focus-visible),
.qv-mbar__burger:focus:not(:focus-visible) {
    box-shadow: none;
}

.qv-mbar__btn .qv-i {
    width: 23px;
    height: 23px;
}

.qv-mbar__badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--white);
}

.qv-mbar__burger span {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.qv-mbar__burger span:nth-child(1) {
    top: 15px;
}

.qv-mbar__burger span:nth-child(2) {
    top: 21px;
}

.qv-mbar__burger span:nth-child(3) {
    top: 27px;
}

.qv-mbar__dot {
    position: absolute;
    top: 9px;
    right: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 2px var(--white);
}

.qv-drawer-bd,
.qv-drawer {
    position: fixed;
    right: 0;
    bottom: 0;
    visibility: hidden;
}

.qv-drawer-bd {
    top: 0;
    left: 0;
    z-index: 1036;
    background: rgba(17, 24, 39, .5);
    opacity: 0;
    transition: opacity .25s, visibility 0s linear .25s;
}

.qv-drawer {
    top: 0;
    z-index: 1037;
    display: flex;
    flex-direction: column;
    width: 86%;
    max-width: 360px;
    background: var(--white);
    color: var(--gray-900);
    font-size: 16px;
    line-height: 1.5;
    box-shadow: -12px 0 30px rgba(17, 24, 39, .22);
    transform: translateX(104%);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .3s;
}

html.qv-drawer-open,
html.qv-drawer-open body {
    overflow: hidden;
}

html.qv-drawer-open .qv-drawer-bd {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s;
}

html.qv-drawer-open .qv-drawer {
    visibility: visible;
    transform: none;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.qv-drawer__top {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 6px 0 18px;
    border-bottom: 1px solid var(--gray-100);
}

.qv-drawer__logo {
    display: flex;
    align-items: center;
    color: var(--gray-900);
    font-weight: 700;
}

.qv-drawer__logo:hover {
    color: var(--gray-900);
    text-decoration: none;
}

.qv-drawer__logo img {
    display: block;
    width: auto;
    height: 28px;
    max-height: none;
}

.qv-drawer__close,
.qv-drawer__back {
    border: 0;
    background: transparent;
    color: var(--gray-700);
    font-family: inherit;
    cursor: pointer;
}

.qv-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
}

.qv-drawer__close .qv-i {
    width: 24px;
    height: 24px;
}

.qv-drawer__close:hover {
    background: var(--gray-100);
}

.qv-drawer__close:focus,
.qv-drawer__back:focus {
    outline: 0;
    box-shadow: inset 0 0 0 2px var(--primary);
}

.qv-drawer__close:focus:not(:focus-visible),
.qv-drawer__back:focus:not(:focus-visible) {
    box-shadow: none;
}

.qv-drawer__panes {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.qv-drawer__pane {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: var(--white);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.qv-drawer__main {
    display: flex;
    flex-direction: column;
}

.qv-drawer__sub {
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .3s;
}

.qv-drawer__sub.is-active {
    visibility: visible;
    transform: none;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.qv-drawer.is-deep .qv-drawer__main {
    visibility: hidden;
    transform: translateX(-28%);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .3s;
}

.qv-drawer__row {
    display: flex;
    flex: none;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 0 14px 0 16px;
    border: 0;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    background: var(--white);
    color: var(--gray-900);
    font-family: inherit;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.qv-drawer__row:hover,
.qv-drawer__row:focus {
    background: var(--gray-50);
    color: var(--gray-900);
    text-decoration: none;
}

.qv-drawer__row:focus,
.qv-drawer__item:focus,
.qv-drawer__user:focus {
    outline: 0;
    box-shadow: inset 0 0 0 2px var(--primary);
}

.qv-drawer__row:focus:not(:focus-visible),
.qv-drawer__item:focus:not(:focus-visible),
.qv-drawer__user:focus:not(:focus-visible) {
    box-shadow: none;
}

.qv-drawer__ic {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 14px;
    border-radius: 11px;
    background: var(--qv-tile-bg);
    color: var(--qv-tile-fg);
}

.qv-drawer__ic--hot {
    background: var(--primary-100);
    color: var(--primary-600);
}

.qv-drawer__lbl {
    flex: 1 1 auto;
    min-width: 0;
}

.qv-drawer__chev {
    margin-left: 6px;
    color: var(--gray-400);
}

.qv-drawer__count {
    display: inline-block;
    flex: none;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.qv-drawer__count--muted {
    background: var(--gray-100);
    color: var(--gray-700);
}

.qv-drawer__pip {
    flex: none;
    width: 10px;
    height: 10px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.qv-drawer__cap {
    padding: 20px 18px 8px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qv-drawer__user {
    display: flex;
    flex: none;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 14px 14px 16px;
    border: 0;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
    color: var(--gray-900);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.qv-drawer__user:hover {
    background: var(--gray-100);
}

.qv-drawer__avatar {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-100);
}

.qv-drawer__who {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.3;
}

.qv-drawer__who b,
.qv-drawer__who small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.qv-drawer__who b {
    font-size: 16px;
    font-weight: 600;
}

.qv-drawer__who small {
    margin-top: 2px;
    color: var(--gray-500);
    font-size: 13px;
}

.qv-drawer__auth {
    display: grid;
    flex: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 18px 16px;
}

.qv-drawer__auth--single {
    grid-template-columns: 1fr;
}

.qv-drawer__auth .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-weight: 600;
}

.qv-drawer__reg,
.qv-drawer__reg:hover,
.qv-drawer__reg:focus {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.qv-drawer__reg:hover,
.qv-drawer__reg:focus {
    border-color: hsl(333, 71%, 51%);
    background: hsl(333, 71%, 51%);
}

.qv-drawer__back {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 600;
}

.qv-drawer__back .qv-i {
    margin-right: 4px;
}

.qv-drawer__title {
    padding: 0 18px 10px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-900);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.qv-drawer__item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
}

.qv-drawer__item:hover,
.qv-drawer__item:focus {
    background: var(--gray-50);
    color: var(--gray-900);
    text-decoration: none;
}

.qv-drawer__item .qv-i,
.qv-drawer__item .svg-inline--fa {
    margin-right: 10px;
}

.qv-drawer__item .qv-drawer__count {
    margin-left: auto;
}

.qv-drawer__item--danger,
.qv-drawer__item--danger:hover,
.qv-drawer__item--danger:focus {
    color: var(--danger);
}

.qv-drawer__contacts {
    display: grid;
    flex: 1 0 auto;
    align-content: start;
    gap: 12px;
    padding: 22px 20px 28px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1671%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='url(%23SvgjsLinearGradient1672)'%3e%3c/rect%3e%3cpath d='M1440 0L1387.75 0L1440 124.31z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M1387.75 0L1440 124.31L1440 296.51L771.68 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M771.68 0L1440 296.51L1440 380.24L555.18 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M555.18 0L1440 380.24L1440 473.47L374.51 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 560L231.01 560L0 308.07z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 308.07L231.01 560L894.36 560L0 180.36z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 180.36L894.36 560L906.78 560L0 162.73000000000002z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 162.73000000000002L906.78 560L1182.71 560L0 73.44000000000001z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1671'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='50%25' y1='100%25' x2='50%25' y2='0%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1672'%3e%3cstop stop-color='%230e2a47' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(114%2c 19%2c 170%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.qv-drawer__ccap {
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qv-drawer__phone,
.qv-drawer__mail {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.qv-drawer__phone {
    min-height: 36px;
    font-size: 21px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.qv-drawer__mail {
    min-height: 28px;
    margin-top: -4px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
}

.qv-drawer__phone:hover,
.qv-drawer__mail:hover {
    color: #fff;
    text-decoration: none;
}

.qv-drawer__phone .qv-i,
.qv-drawer__mail .qv-i {
    margin-right: 10px;
    color: hsl(327, 87%, 82%);
}

.qv-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.qv-drawer__cta:hover,
.qv-drawer__cta:focus {
    background: hsl(333, 71%, 51%);
    color: #fff;
    text-decoration: none;
}

.qv-drawer__ms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qv-drawer__ms a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.qv-drawer__ms a:hover,
.qv-drawer__ms a:focus {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
}

.qv-drawer__ms img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.qv-drawer__addr {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13.5px;
    font-style: normal;
    line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
    .qv-drawer,
    .qv-drawer-bd,
    .qv-drawer__pane,
    .qv-drawer__sub {
        transition: none !important;
    }
}
