/*
 * PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
 *
 * @author    VEKIA PL MILOSZ MYSZCZUK VATEU: PL9730945634
 * @copyright 2010-2023 VEKIA
 * @license   This program is not free software and you can't resell and redistribute it
 *
 * CONTACT WITH DEVELOPER http://mypresta.eu
 * support@mypresta.eu
 */

.sb-menu-right {
    position: fixed;

    overflow-y: hidden;

    -webkit-transform: translateX(105%);
    -ms-transform: translateX(105%);
    transform: translateX(105%);
  
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
 
    -ms-transform: translateX(105%);
    transform: translateX(105%);
  
    box-sizing: border-box;
    text-align: left;
    right: 0px;
    top: 0px;
    font-weight: 300;
    margin: 0px;

    display: block;

    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;

    z-index: 9999999999999;
    width: 100%;
    max-width: 506px;
    height: 100%;
    background-color: var(--bs-body-bg);
    overflow: auto;
    box-shadow: -3px 0 10px var(--bs-body-color);
}


@media (max-width: 480px) {
    .sb-menu-right {
        width: 100%;

    }
}

