/* Udacha 2025 Promotion Styles */

@media screen and (max-width: 770px) {
.container { padding: 0 !important; }
}

@media screen and (max-width: 1000px) {
    footer .nav, footer .bottom, .foot-social {
        padding: 30px 12px !important;
    }
}

.udacha-promo {
    font-family: Gilroy, sans-serif;
    background-color: #fff;
    color: #333;
}


/* Promotional Banner */
.promo-banner {
    width: 100%;
    position: relative;
}

.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 370px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-text {
    flex: 1;
    color: white;
    z-index: 2;
}

.brands {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
}

.brand {
    color: white;
}

.separator {
    margin: 0 15px;
    color: #FFD700;
    font-weight: bold;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.subtitle {
    font-size: 64px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.banner-image {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.jewelry-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #FFD700 25%, #FFA500 25%, #FFA500 50%, #FFD700 50%, #FFD700 75%, #FFA500 75%);
    background-size: 20px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid #8B0000;
}

.placeholder-text {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    font-weight: bold;
    color: #640a0a;
    text-align: center;
    font-size: 16px;
}

/* Action Buttons */
.action-buttons {
    background-color: #fff;
    padding: 30px 0;
    position: sticky;
  top: 160px;
    z-index: 2;
}

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 9%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.action-btn {
    background-color: #640a0a;
    color: white;
    border: none;
    padding: 12px 0;
    font-size: 20px;
    width: 280px;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.action-btn:hover {
    /* background-color: #A52A2A; */
    transform: translateY(-2px);
}


/* Promotion Rules */
.promotion-rules {
    padding: 10px 0;
    /* padding: 60px 0; */
    /* background-color: #f9f9f9; */
}

.rules-content {
    max-width: 1200px;
    /* margin: 0 auto 40px; */
    /* padding: 0 20px; */
}

.rule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 13px;
    gap: 20px;
}

.rule-number {
    background-color: #FDD097;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    flex-shrink: 0;
}

.rule-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

.full-rules-btn {
    text-align: center;
    padding-top: 15px;
}

.rules-button {
    background-color: #640a0a;
    color: white;
    border: none;
    padding: 15px 35px;
    width: 255px;
    border-radius: 30px;
    font-size: 19px;
    font-weight: semi-bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rules-button:hover {
    background-color: #A52A2A;
    transform: translateY(-2px);
}

/* Registration Form */
.registration-form {
    /* padding: 60px 0; */
    margin-top: 70px;
}

.form-container {
    background-color: #8B0000;
    /* max-width: 480px; */
    max-width: 710px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.code-form {
    display: flex;
    flex-direction: column;
}
.input__form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.form-title {
    font-family: Gilroy, sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: var(--text-color-dark);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.input__form-group {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    flex-direction: column;
}

.input-and-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.label-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


.input__form-group label {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: white;
    text-align: left;
    flex-shrink: 0;
    text-align: right;
    margin-right: 15px;
}

.input__form-group input {
    width: 400px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.input__form-group input:focus {
    outline: none;
    border-color: #8B0000;
}

.checkbox-group {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
}

.checkbox-wrapper {
    padding: 20px 10px;
}

.checkbox-group .checkbox-label {
    text-align: right;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    cursor: pointer;
    color: white;
    justify-content: flex-end;
    width: 100%;
}

.checkbox-wrapper {
    margin-bottom: 10px;
    width: 100%;
}

.checkbox-label__text {
    align-self: center;
}


.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group .checkbox-label {
    display: flex;
    /* align-items: center; */
    cursor: pointer;
    color: white;
    margin-bottom: 0px;
}

.checkbox-group .checkmark {
    width: 26px;
    height: 29px;
    vertical-align: middle;
    border-radius: 8px;
    background-color: white;
    position: relative;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked + .checkmark {
    background-color: #8B0000;
}

.checkbox-group input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 16px;
    font-weight: bold;
    background-color: white;
    width: 26px;
    height: 29px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.required-note {
    font-size: 12px;
    color: white;
    margin-bottom: 20px;
}

.submit-btn {
    width: 200px;
    background-color: #FDD199;
    color: #640a0a;
    border: none;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    position: relative;
    background: #FDD097 radial-gradient(150% 100% at 50% 5px, rgba(255,255,255,.2), rgba(0,0,0,0));
    box-shadow: inset rgba(0,0,0,.6) 0 -2px 5px, inset rgba(252,255,255,.7) 0 2px 5px, rgba(0,0,0,.8) 0 2px 5px -1px;
    outline: none;
    background-color: #FDD097;
    text-shadow: none;
}

.submit-btn:hover {
    background: #FDD097 radial-gradient(150% 100% at 50% 5px, rgba(255,255,255,.2), rgba(0,0,0,0));
    box-shadow: inset rgba(0,0,0,.6) 0 -2px 5px, inset rgba(252,255,255,.7) 0 2px 5px, rgba(0,0,0,.8) 0 2px 5px -1px;
}

/* .submit-btn:active {
    transform: translateY(4px);
    box-shadow: 
        0 2px 0 #d49e17,
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
} */


/* Countdown Timer */
.countdown-section {
    padding: 53px 0;
    background-color: #fff;
}

.countdown-container {
    text-align: center;
    max-width: 710px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.countdown-title {
    font-family: Gilroy, sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: var(--text-color-dark);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 43px;
    background-color: #8B0000;
    padding: 12px 0px;
    border-radius: 10px;
    position: relative;
}

.time-unit {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    background-color: white;
    color: black;
    width: 90px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-label {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 5px;
}

.time-separator {
    position: absolute;
    left: 50%;
    top: 39%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 20px;
    height: 29px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.time-separator::before,
.time-separator::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

/* Prize Winners */
.prize-winners {
    padding: 60px 0;
}

.winners-title {
    font-family: Gilroy, sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: var(--text-color-dark);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.prize-winners-container {
    background-color: #8B0000;
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto;
}

.date-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 0;
    position: relative;
}

.dates-swiper {
    flex: 1;
    max-width: 1000px;
    overflow: hidden;
}

.dates-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    flex-shrink: 0;
}

.dates-swiper .swiper-wrapper {
    align-items: center;
}

.nav-arrow {
    background-color: #8B0000;
    color: black;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background-color: #A52A2A;
    color: white;
}

/* Swiper navigation buttons - наследуем стили от .nav-arrow */
.date-navigation .swiper-button-prev,
.date-navigation .swiper-button-next {
    position: static !important;
    margin: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #8B0000 !important;
    color: black !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border: none !important;
    cursor: pointer !important;
    color: white !important;
    z-index: 1 !important;
}

/* Form validation styles */
.error-message {
    color: #ffd700;
    font-size: 12px;
    margin-top: 5px;
    text-align: right;
    width: 100%;
    font-weight: bold;
}

/* Hide browser default validation messages */
input:invalid {
    box-shadow: none;
}

input:invalid:focus {
    box-shadow: none;
}

/* Hide browser validation tooltips */
input::-webkit-validation-bubble-message {
    display: none;
}

input::-webkit-validation-bubble {
    display: none;
}

input::-webkit-validation-bubble-arrow {
    display: none;
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.input__form-group input.error {
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.input__form-group input:focus {
    outline: none;
    border-color: #039B9D;
    box-shadow: 0 0 5px rgba(3, 155, 157, 0.3);
}

/* Phone input specific styles */
#phone {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

#phone::placeholder {
    color: #999;
    font-style: italic;
}

.date-navigation .swiper-button-prev:hover,
.date-navigation .swiper-button-next:hover {
    background-color: #A52A2A !important;
    color: white !important;
}

/* Убираем стандартные стрелки Swiper и используем только текст */
.date-navigation .swiper-button-prev::after,
.date-navigation .swiper-button-next::after {
    display: none !important;
}

/* Добавляем наши стрелки через псевдоэлементы */
.date-navigation .swiper-button-prev::before {
    content: '‹' !important;
    font-size: 55px !important;
    font-weight: bold !important;
}

.date-navigation .swiper-button-next::before {
    content: '›' !important;
    font-size: 55px !important;
    font-weight: bold !important;
}

.date-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    font-size: 16px;
}

.date-btn.active {
    background-color: #FFA500;
    color: black;
}

.date-btn:hover {
    background-color: #FFD700;
    color: black;
}

.prize-categories {
    margin-top: 20px;
    padding: 18px 34px;
}

.prize-category {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.prize-category .winners-list {
    display: none;
}

.prize-category .dropdown-arrow {
    transition: transform 0.3s ease;
}

.prize-category.active .dropdown-arrow {
    transform: rotate(180deg);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-header:hover {
    background-color: #f5f5f5;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.prize-category.active .dropdown-arrow {
    transform: rotate(180deg);
}

.winners-list {
    display: none;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.winners-list.show {
    display: block;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.winner-item:last-child {
    border-bottom: none;
}

.winner-name {
    font-weight: bold;
    color: #333;
    flex: 1;
}

.winner-code {
    font-family: monospace;
    color: #666;
    min-width: 80px;
    text-align: right;
}

.winner-city {
    color: #888;
    font-size: 0.9em;
    font-style: italic;
    min-width: 100px;
    text-align: right;
}

/* More Info */
.more-info {
    background-color: #fff;
    margin-top: 60px;
}

.info-title {
    font-family: Gilroy, sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: var(--text-color-dark);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.info-links {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.info-link {
   display: block;
    font-family: Gilroy, sans-serif;
    font-size: 25px;
    margin-bottom: 20px;
    text-decoration: underline;
    width: fit-content;
    transition: 0.2s all 
ease;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0;
}

.info-link:hover {
    color: #A52A2A;
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    padding: 30px 0;
    font-family: Gilroy, sans-serif;
    font-size: 26px;
    text-align: center;
    margin-top: 105px;
    /* margin-bottom: 105px; */
    letter-spacing: 0;
}

.contact-info p {
    /* color: #666; */
    /* font-size: 14px; */
    font-family: Gilroy, sans-serif;
    font-size: 26px;
    text-align: center;
    letter-spacing: 0;
}

.about__problem-link {
    transition: 0.2s all 
ease;
    text-decoration: underline;
}
/* Mobile Styles */
@media screen and (max-width: 768px) {
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
    }
    
    .udacha-promo {
        margin-top: 0;
    }
    
    .action-buttons {
        padding: 20px 0;
    }
    
    .buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 320px;
        padding: 15px 0;
        font-size: 18px;
    }
    
    .promotion-rules {
        padding: 30px 15px;
    }
    
    .rules-content {
        padding: 0;
    }
    
    .rule-item {
        /* flex-direction: column; */
        /* text-align: center; */
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .rule-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .rule-text {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .full-rules-btn {
        padding-top: 20px;
    }
    
    .rules-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .registration-form {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .form-container {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .input__form-container {
        align-items: center;
    }
    
    .input__form-group {
        width: 100%;
        margin-bottom: 2px;
    }
    
    .input-and-label-wrapper {
        /* flex-direction: column; */
        align-items: center;
        gap: 8px;
    }
    
    .input__form-group label {
        font-size: 18px;
        text-align: right;
        margin-bottom: 0;
    }
    
    .input__form-group input {
        /* width: 100%; */
        max-width: 280px;
        margin-left: 0;
        padding: 12px;
        font-size: 16px;
    }
    
    .checkbox-wrapper {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .checkbox-group {
        justify-content: center;
    }
    
    .checkbox-group .checkbox-label {
        font-size: 12px;
        line-height: 1.4;
        text-align: right;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 0;
        font-size: 20px;
    }
    
    .countdown-section {
        padding: 40px 15px;
    }
    
    .countdown-container {
        max-width: 100%;
    }
    
    .countdown-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .time-number {
        font-size: 32px;
        width: 70px;
        height: 50px;
    }
    
    .time-label {
        font-size: 14px;
    }
    
    .time-separator {
        display: none;
    }
    
    .prize-winners {
        padding: 40px 15px;
    }
    
    .winners-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .prize-winners-container {
        padding: 15px;
    }
    
    .date-navigation {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .dates-swiper {
        max-width: 100% !important;

    }
    
    .date-btn {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 100px;
        height: 40px;
    }
    
    .dates-swiper .swiper-slide {
        height: 40px;
    }
    
    .nav-arrow,
    .date-navigation .swiper-button-prev,
    .date-navigation .swiper-button-next {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
    
    .date-navigation .swiper-button-prev::before,
    .date-navigation .swiper-button-next::before {
        font-size: 44px !important;
    }
    
    .prize-categories {
        padding: 10px 15px;
    }
    
    .category-header {
        padding: 15px;
        font-size: 16px;
    }
    
    .winners-list {
        padding: 10px 15px;
    }
    
    .winner-item {
        padding: 6px 0;
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .winner-name {
        font-size: 14px;
    }
    
    .winner-code {
        font-size: 12px;
        text-align: left;
    }
    
    .winner-city {
        font-size: 12px;
        text-align: left;
    }
    
    .more-info {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .info-links {
        max-width: 100%;
    }
    
    .info-link {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
        margin-top: 40px;
    }
    
    .contact-info p {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .action-btn {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .rule-text {
        font-size: 18px;
    }
    
    .form-title {
        font-size: 18px;
    }
    
    .input__form-group label {
        font-size: 16px;
        /* text-wrap: nowrap; */
    }
    
    .input__form-group input {
        padding: 8px;
        font-size: 14px;
        max-width: 180px;
    }
    
    .submit-btn {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .countdown-title {
        font-size: 18px;
    }
    
    .time-number {
        font-size: 28px;
        width: 60px;
        height: 45px;
    }
    
    .time-label {
        font-size: 12px;
    }
    
    .winners-title {
        font-size: 18px;
    }
    
    .date-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
        height: 35px;
    }
    
    .dates-swiper .swiper-slide {
        height: 35px;
    }
    
    .nav-arrow,
    .date-navigation .swiper-button-prev,
    .date-navigation .swiper-button-next {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .date-navigation .swiper-button-prev::before,
    .date-navigation .swiper-button-next::before {
        font-size: 44px !important;
    }
    
    .category-header {
        padding: 12px;
        font-size: 14px;
    }
    
    .winner-item {
        font-size: 12px;
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .info-link {
        font-size: 16px;
    }
    
    .contact-info p {
        font-size: 16px;
    }
}


@media screen and (max-width: 1000px) {
    header .right {
        background-color: var(--lightgrey);
        margin: 0 !important;
        max-width: none;
        width: 100%;
        padding: 10px 10px;
    }

    .action-btn {
        font-size: 16px;
    }
    header .left {
        order: 2;
        padding: 15px 12px !important;
    }
    #breadcrumbs {
        padding: 10px 12px 20px !important;
    }
    .newMobileMenu {
        top: 79px !important;
    }
    header button {
        left: 15px !important;
    }
    nav {
        padding: 0 12px !important;
    }
}

@media screen and (max-width: 480px) {
    header button {
        left: 10px !important;
    }
}