.active {
        background-color: #ff003f !important;
        color: #ffffff !important;

}

.product_preview {
        width: 80px;
        height: 80px;
}

#categories,
#sections_menu {
        min-height: 45vh;
        max-height: 75vh;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
        scrollbar-width: thin;
}

#categories::-webkit-scrollbar,
#roomSection::-webkit-scrollbar,
#sections_menu::-webkit-scrollbar {
        -webkit-appearance: none;
}

#categories::-webkit-scrollbar:vertical,
#roomSection::-webkit-scrollbar:vertical,
#sections_menu::-webkit-scrollbar:vertical {
        width: 10px;
}

#categories::-webkit-scrollbar-button:increment,
#roomSection::-webkit-scrollbar-button:increment,
#sections_menu::-webkit-scrollbar-button:increment {
        display: none;
}

#categories::-webkit-scrollbar:horizontal,
#roomSection::-webkit-scrollbar:horizontal,
#sections_menu::-webkit-scrollbar:horizontal {
        height: 10px;
}

#categories::-webkit-scrollbar-thumb,
#roomSection::-webkit-scrollbar-thumb,
#sections_menu::-webkit-scrollbar-thumb {
        background-color: #797979;
        border-radius: 20px;
        border: 2px solid #f1f2f3;
}

#categories::-webkit-scrollbar-track,
#roomSection::-webkit-scrollbar-track,
#sections_menu::-webkit-scrollbar-track {
        border-radius: 10px;
}

#main_panel {
        z-index: 1000;
        position: absolute;
        top: 8%;
        left: 50%;
        transform: translateX(-50%);
        height: 82vh;
        overflow-y: hidden;
        overflow-x: hidden;
}

.scale-up-center {
        -webkit-animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
        animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}



@-webkit-keyframes scale-up-center {
        0% {
                -webkit-transform: scale(0.5);
                transform: scale(0.5);
        }

        100% {
                -webkit-transform: scale(1);
                transform: scale(1);
        }
}

@keyframes scale-up-center {
        0% {
                -webkit-transform: scale(0.5);
                transform: scale(0.5);
        }

        100% {
                -webkit-transform: scale(1);
                transform: scale(1);
        }
}

.focus-in-expand {
        -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes focus-in-expand {
        0% {
                letter-spacing: -0.5em;
                -webkit-filter: blur(12px);
                filter: blur(12px);
                opacity: 0;
        }

        100% {
                -webkit-filter: blur(0px);
                filter: blur(0px);
                opacity: 1;
        }
}

@keyframes focus-in-expand {
        0% {
                letter-spacing: -0.5em;
                -webkit-filter: blur(12px);
                filter: blur(12px);
                opacity: 0;
        }

        100% {
                -webkit-filter: blur(0px);
                filter: blur(0px);
                opacity: 1;
        }
}

@media (max-width: 768px) {

        #main_panel{
                height: 100vh;
                top:0%;
        }

        #categories, #sections_menu {
                min-height: 45vh;
                max-height: 77vh;
                overflow-y: auto;
                overflow-x: hidden;
        }
}
#roomSection {
        overflow-y: auto;
        overflow-x: hidden;
        height: 75vh !important;
}