
div.scrol-panel {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 20rem;
    height: 93vh;
    padding-inline: 20px;
}
   
.scrol-panel::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: cyan;
}

.left-panel {
    text-align: center;
    z-index: 2000;
    padding-inline: 0px;
}

.left-panel .row {
    z-index: 2000;
}

.left-panel a {
    display: block;
    align-content: center;
    margin-inline: 20%;
    margin-block: 1em;
    height: 4rem;
    z-index: 2000;
}

.left-panel>h2 {
    margin-block: 10px;
    margin-bottom: 20px;
}

.wrapper {
    margin-block: 10px;
    margin-inline: 11%;
}

a.wrapper-btn {
    display: block;
    margin: 0px;
    border-radius: 5px;
    font-size: 18px;
    font-family: sans-serif;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid #f7f7f7;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    transition: all .35s;
    font-size: 1em;
}

.card>img {
    height: 18rem;
    width: 100% ;
    align-content: center;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

a.wrapper-btn::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00ccff;
    transition: all .35s;
}

.wrapper-btn>span {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    /* font-size: 0.1vw; */
    /* font-size: 50%; */
}


.wrapper-btn:hover{
    color: #000000;
}
  
.wrapper-btn:hover:after{
    width: 100%;
}

#scale-text {
    /* transform: sca; */
    word-wrap:break-word;
    text-wrap: inherit;
    display: block;
}

a.categoryBtn {
    transform: scale(1.2);
    color: #000000;
    background: #00ccff;
}

a.wrapper-btn:active{
    transform: scale(0.95);
}

.product-conteiner {
    margin-left: 18%;
    margin-right: 3%;
}

#menu-toggle {
    display: block;
    visibility: hidden;
}

.menu-button {
    display: none;
    position: fixed;
    top: 65px;
    /* left: 10px; */
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    justify-content: center;
    background: rgb(66, 66, 66);;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
}

.card-title {
    font-size: clamp(1vh, 130%, 3vh) !important;
    max-height: 4rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

#menu-toggle:checked ~ .side-ment {
    top:65px;
}

div.side-menu {
    padding-bottom: 15px;
    transition: top 0.3s ease-out;
    z-index: 1000;
}

#menu-toggle:checked + .menu-button + .side-menu  {
    /* top: 100px; */
    transform: translateY(0vh);
    overscroll-behavior: contain;
}

.backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: #00000000; */
    z-index: 1000;
}


@media (max-width: 1200px) {
    .left-panel>h2 {
        /* font-size: 26px; */
    }
}

@media (max-width: 990px) {
    .left-panel {
       display: block;
       
       /* position: absolute; */
    }
    
    .scrol-panel {
        position: fixed;

    }

    .left-panel {
        width: 100%;
        height: auto;
        border-right: none;
    }

    .product-conteiner {
        margin-inline: 4%;
    }

    .menu-button {
        display: block;
    }

    div.side-menu {
        position: block;
        /* top: -500vh; */
        transform: translateY(-120vh);
        height: 94vh;
        padding: 20px;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: scroll;
    }

    .product-conteiner {
        margin-top: 30px;
    }
 
    /* #menu-toggle:checked {
        left: 0;
    }
    #menu-toggle {
        display: block;
    } */
    
}