/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .home-promocodes__list .promocode {
        flex: 1 1 33%;
        max-width: 32%;
    }
    .home-promocodes__list {
        justify-content: flex-start;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .home-promocodes__list .promocode {
        flex: 1 1 49%;
        max-width: 48%;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .open-mob-menu {
        display: block;
        background: #fff;
        border: none;
        outline: none;
    }
    .open-mob-menu svg {
        height: 36px;
        width: 36px;
    }
    .header-wrapper .menu {
        position: fixed;
        top: 0;
        left: -999px;
        height: 100%;
        max-width: 300px;
        width: 100%;
        background: #fff;
        z-index: 1000;
        margin: 0;
        padding: 20px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-direction: column;
        gap: 15px;
        visibility: hidden;
        opacity: 0;
        transition: all .30s;
    }
    .header-wrapper .menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        transition: all .30s;
    }
    .mob-logo {
        display: block;
        text-decoration: none;
    color: #1ca2fc;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    }
    .mob-logo a {
        color: #1ca2fc !important;
    }
    .mob-logo span {
        color: rgb(255 148 61);
    }
    .mob-menu-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.29);
        z-index: 999;
        display: none;
    }
    .single-page-wrapper {
        flex-direction: column;
    }
    .breadcrumbs__list nav li a span {
        font-size: 14px;
    }
    .single-title .logo {
        display: block;
        margin-bottom: 12px;
        padding: 24px;
    }
    .seo-content {
        max-width: 100%;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
         .home-promocodes__list .promocode {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .promocodes-list .single-page-promocode .description-wrapper {
        flex-direction: column;
    }
    .promocodes-list .single-page-promocode .promocode-list-wrapper {
        flex: 1 1 auto;
    }
    .modal .modal-promocode .modal-promocode__wrapper {
        flex-direction: column;
    }
    .modal .modal-promocode .modal-promocode__wrapper button {
        max-width: 100%;
    }
    .modal .modal-description p {
        font-size: 14px;
    }
    .modal .modal-description h3 {
        font-size: 18px;
    }
    .modal {
        padding: 15px;
    }
    .modal .modal-description h2 {
        margin-top: 8px;
    }
    .shops-list .shops-group .shops-group__items a {
        flex: 1 1 25%;
        max-width: 30%;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .search form {
        flex-direction: column;
    }
    .search form button {
        width: 100%;
    }
    .search {
        padding: 15px;
    }
    .shops-list .shops-group .shops-group__items a {
        flex: 1 1 45%;
        max-width: 50%;
    }
    .shops-list .shops-list__head h1 {
        font-size: 22px;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {}
