/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Your styles here */
    .main-content{
        height: 100%;
    }
    .delivery-filter{
        grid-template-columns: 50% 50% !important;
    }
    .version{
        position: fixed;
        bottom: 0.5rem;
    }
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Your styles here */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Your styles here */
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Your styles here */
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* XXL devices (very large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}