.drawer {
    display: none;
}

.drawer__header {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
}

.drawer__clear-filters {
    flex-basis: 100%;
    font-size: 20px;
    border-bottom: 0;
    margin-top: 25px;
}

.drawer__close {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_1937_4559%29%27%3E%3Crect width=%2732%27 height=%2732%27 rx=%2716%27 fill=%27white%27/%3E%3Crect x=%2715%27 y=%279%27 width=%272%27 height=%2714%27 fill=%27black%27/%3E%3Crect x=%2723%27 y=%2715%27 width=%272%27 height=%2714%27 transform=%27rotate%2890 23 15%29%27 fill=%27black%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_1937_4559%27%3E%3Crect width=%2732%27 height=%2732%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    width: 32px;
    height: 32px;
    transform: rotate(45deg);
}

.drawer__wrapper {
    box-sizing: border-box;
    position: fixed;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    z-index: 102;
    overflow: auto;
    transition: transform 0.3s;
    will-change: transform;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(103%);
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 6px #777;
    padding: 40px 30px;
    border-radius: 30px 0px 0px 30px;
}

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

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

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

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

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