@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import '/node_modules/blaze-slider/dist/blaze.css';

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Roboto', sans-serif;
}

@media screen and (min-width: 768px) {

    .contenedor-con-scroll-horizontal {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .contenedor-con-scroll-horizontal::-webkit-scrollbar {
        height: 5px;
        background-color: #f1f1f1;
        border-radius: 2px;
    }

    .contenedor-con-scroll-horizontal::-webkit-scrollbar-thumb {
        background: #9b9b9b;
        border-radius: 2px;
    }

    .contenedor-con-scroll-horizontal::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}