﻿button.drawer-hamburger {
    background-color: transparent;
    border: none;
    margin-bottom: 3px;
}

    button.drawer-hamburger:focus {
        outline: none;
    }

.drawer {
    display: none;
}

.drawer__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s;
    will-change: opacity;
    background-color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drawer__header {
    /* Optional */
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid rgba(221, 221, 221, 0.35);
    background-color: #fff;
}

.drawer__header-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

.mob-head-drawer {
    background-color: #fff;
    padding: 0 20px;
    display: flex;
}

    .mob-head-drawer .drawer__title {
        margin-right: auto;
    }

        .mob-head-drawer .drawer__title img {
            height: 25px;
        }

.h-bx {
    margin: 6px;
}

    .h-bx a {
        color: #606265;
        font-size: 1.2em;
    }

.drawer__close__bx {
    margin: 0 0 0 50px;
    padding: 0;
    text-align: right;
}

.drawer__close {
    /* Optional */
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 15px;
    height: 15px;
}

.drawer__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-width: 360px;
    z-index: 9999;
    overflow: auto;
    transition: transform 0.3s;
    will-change: transform;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    -webkit-transform: translateX(103%);
    transform: translateX(103%); /* extra 3% because of box-shadow */
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
    /* Optional */
    box-shadow: 0 2px 6px #777;
}

.drawer__content {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    flex-grow: 1;
    /* Optional */
}

.drawer--left .drawer__wrapper {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.drawer.is-active {
    display: block;
}

.drawer.is-visible .drawer__wrapper {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.drawer.is-visible .drawer__overlay {
    opacity: 0.5;
}

.drawer__content::-webkit-scrollbar-track {
    background-color: #c7c4c7;
}

.drawer__content::-webkit-scrollbar {
    width: 5px;
    background-color: #c7c4c7;
}


/* Top to Down */
.drawer--top .drawer__wrapper {
    left: 0;
    min-width: 100%;
    padding: 10px;
    height: 240px;
    padding: 10px 0;
}
