@tailwind base; @tailwind components; @tailwind utilities; ::-webkit-scrollbar { width: 5px; /* Width of the entire scrollbar */ } ::-webkit-scrollbar-thumb { background: #7b88948b; /* Color of the scroll thumb */ } ::-webkit-scrollbar-track { background: #5a5a5a00; /* Color of the scrollbar track */ } /* FOR THE IFRAME TO TAKE 95% OF WIDTH ON SMALL SCREEN SIZES */ @media screen and (max-width: 798px) { #popupModalFrame { width: 100% !important; } } /* TO ANIMATE THE BURGER MENU IN THE FIXED HEADER */ /* Default state */ .burgerMenuLine { width: 25px; height: 2px; } /* Expanded state */ .burgerMenuLine.expanded { width: 2px; height: 25px; } .closeMenuLine { width: 2px; height: 25px; } .closeMenuLine.expanded { width: 25px; height: 2px; } /* SIDE BAR */ @media (max-width: 1200px) { #scrollPart { margin-left: 0; } .fixedSideHeader { display: none; margin-top: 100px; width: 100% !important; z-index: 50; position: absolute; } } /* TO ANIMATION THE UER ACTIVITY FIXED BUTTON */ @keyframes zoomInOut { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); /* Adjust the scale factor as needed */ opacity: 1; /* Adjust the opacity as needed */ } } .usersActivityIcon { animation: zoomInOut 1.5s infinite; } /* DRAGGABLE SLIDER */ .swiper-container { width: 100%; height: 100%; overflow: hidden !important; position: relative; } .swiper-slide { width: 33% !important; margin-right: 20px; } .swiper-slide:last-child { margin-right: 0 !important; } .swiper-wrapper::-webkit-scrollbar { width: 0; background: transparent; } /* Hide the scrollbar thumb when not scrolling */ .swiper-wrapper::-webkit-scrollbar-thumb { background: transparent; } /* Hide the scrollbar track when not scrolling */ .swiper-wrapper::-webkit-scrollbar-track { background: transparent; } @media screen and (max-width: 500px) { .swiper-slide { width: 90% !important; } }