a.ua-offcanvas-open-button.before {
    display: inline-block;
}
.ua_offcanvas_content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.ua_offcanvas_content.offcanvas-in {
    opacity: 1;
    visibility: visible;
}
.ua_offcanvas_content_inner{
    position: relative;
    background-color: #fff;
    height: 100%;
    width: 100%;
    transition: all 0.3s;
    z-index: 999;
}
.ua-offcanvas-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}
.ua_offcanvas_content.offcanvas-left .ua_offcanvas_content_inner,
.ua_offcanvas_content.offcanvas-right .ua_offcanvas_content_inner {
    width: 400px;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
}
.ua_offcanvas_content.offcanvas-left .ua_offcanvas_content_inner{
    margin-right: auto;
    transform: translateX(-100%);
}
.ua_offcanvas_content.offcanvas-right .ua_offcanvas_content_inner{
    margin-left: auto;
    transform: translateX(100%);
}
.ua_offcanvas_content.offcanvas-left.offcanvas-in .ua_offcanvas_content_inner,
.ua_offcanvas_content.offcanvas-right.offcanvas-in .ua_offcanvas_content_inner{
    transform: translateX(0%);
}
.ua_offcanvas_content.offcanvas-top .ua_offcanvas_content_inner,
.ua_offcanvas_content.offcanvas-bottom .ua_offcanvas_content_inner{
    max-height: 100vh;
    height: 300px;
}
.ua_offcanvas_content.offcanvas-top .ua_offcanvas_content_inner{
    transform: translateY(-100%);
}
.ua_offcanvas_content.offcanvas-bottom{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
.ua_offcanvas_content.offcanvas-bottom .ua_offcanvas_content_inner{
    transform: translateY(100%);
}
.ua_offcanvas_content.offcanvas-top.offcanvas-in .ua_offcanvas_content_inner,
.ua_offcanvas_content.offcanvas-bottom.offcanvas-in .ua_offcanvas_content_inner{
    transform: translateY(0%);
}
a.ua-offcanvas-close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 1;
    font-size: 15px;
}
a.ua-offcanvas-close-button svg {
    width: 1em;
    height: 1em;
}
a.ua-offcanvas-close-button svg line{
    stroke: currentColor;
}
