.offcanvas-menu-overlay {
    position: relative;
    overflow: hidden;
}

.offcanvas-menu-overlay:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 300;
}

.offcanvas-menu {
    background: white;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    width: 100%;
    height: 100vh;
    max-width: calc(100% - 16px);
    position: fixed;
    top: 0;
    left: -100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 400;
    transition: .2s;
}

.offcanvas-menu-open {
    left: 0;
}

.offcanvas-menu-header {
    border-bottom: 1px solid #efefef;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-menu-title {
    font-size: 20px;
    margin: 0;
}

.offcanvas-menu-title img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.offcanvas-menu-close {
    font-size: 14px;
    color: black;
    border: 1px solid black;
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.offcanvas-menu-body {
    padding: 24px;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
}

.offcanvas-search {
    margin-bottom: 24px;
    display: flex;
    cursor: pointer;
}

.offcanvas-search * {
    pointer-events: none;
}

.offcanvas-search-input {
    flex: 1;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 16px 6px;
    border: 1px solid #F25b12;
    border-radius: 25px 0 0 25px;
}

.offcanvas-search-input:focus {
    border-color: #F25b12;
}

.offcanvas-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F25b12;
    color: white;
    border-radius: 0 25px 25px 0;
    font-size: 14px;
    line-height: 24px;
    padding: 0 18px 0 14px;
    cursor: pointer;
}

.offcanvas-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas-nav > li {
    margin-bottom: 6px;
    float: none !important;
}

.offcanvas-nav > li > a {
    font-size: 16px;
    letter-spacing: .8px;
    text-decoration: none;
    color: black;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-toggle-open {
    display: none;
}

.dropdown.open .dropdown-toggle-open {
    display: block;
}

.dropdown.open .dropdown-toggle-close {
    display: none;
}

.dropdown-open > a .dropdown-toggle-open {
    display: block;
}

.dropdown-open > a .dropdown-toggle-close {
    display: none;
}

.offcanvas-nav-dropdown {
    margin: 0;
    padding: 8px 0 16px 16px;
    list-style: none;
    display: none;
}

.dropdown.open .offcanvas-nav-dropdown {
    display: block;
}

.dropdown-open > .offcanvas-nav-dropdown {
    display: block;
}

.offcanvas-nav-dropdown > li > a {
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #efefef;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-socials {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offcanvas-socials a {
    text-decoration: none;
    color: white;
    background: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-menu .wrapper-button {
    margin-top: 24px;
}

.offcanvas-menu .button {
    background: #f25b12;
    text-align: center;
    display: block;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 24px;
    margin: 0;
    color: white;
}

@media (min-width: 428px) {
    .offcanvas-menu {
        max-width: 400px;
    }
}