@import url(https://fonts.googleapis.com/css?family=VT323);
@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@400;700&display=swap');

.dos-button {
    display: inline-flex; /* Use inline-flex to allow flexbox properties */
    justify-content: center; /* Center the text horizontally */
    align-items: center; /* Center the text vertically */
    padding: 6px 14px;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    font-family: var(--font-family);
    font-size: 24px;
    color: var(--main-color); /* Ensure the text color is set */
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: glow 2s infinite alternate;
}

.dos-button span {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: inherit; /* Ensure the text color is inherited */
}

.dos-button span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    animation: metallic-reflection 5s infinite linear;
    pointer-events: none; /* Ensure the pseudo-element doesn't interfere with interactions */
}

.dos-button:hover {
    color: var(--sec-color); /* Change the text color on hover */
    border: 2px solid var(--sec-color);
}

.dos-button::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--main-color);
    opacity: 0.05;
    mix-blend-mode: multiply;
}

.dos-button.active {
    background-color: var(--main-color); /* Change the background color when active */
    border-color: var(--sec-color); /* Change the border color when active */
    color: var(--bg-color); /* Change the text color when active */
}

.timetable .dos-button {
    font-size: 22px; /* Set the desired font size */
    white-space: normal; /* Allow text to wrap */
}

.product-buttons-container {
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    justify-content: center; /* Add this line to center vertically */
}

.menu-btn {
    width: 66vw !important;
}

/* Media query for desktop resolutions */
@media (min-width: 768px) {
    .menu-btn {
        width: 40vw !important; /* Apply smaller width on desktop */
    }
}

@media (max-height: 740px) {
    .menu-btn {
      font-size: 18px; /* Set the desired smaller font size */
    }
}

.deactivated {
    border: 2px solid grey !important;
    color: grey !important;
}

#menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider-btn {
    top: 40%;
    position: fixed !important;
}

#main-slider-prev-button {
    left: 0;
}

#main-slider-next-button {
    right: 0 !important;
}
