html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: #111111;
}

main {
    background-color: #FFFFFF;
}

.header {
    padding: 6px 24px;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 5px 1px #00000026;
}

.header_logo-image-mt img {
    display: flex;
    align-items: center;
    height: 18px;
    width: auto;
}

.header_logo-cross {
    width: 16px;
    height: 16px;
}

.header_logo-image img {
    display: flex;
    align-items: center;
    height: 24px;
    width: auto;
}

.header_logo-text {
    display: none;
    /*font-weight: 600;*/
    /*font-size: 1.5rem;*/

    /*text-decoration: none;*/
}

.header_logo-text {
    color: var(--title);
}

@media (min-width: 390px) {
    .header_logo-image-mt img {
        height: 20px;
    }
}

@media (min-width: 480px) {
    .header_logo-image-mt img {
        height: 22px;
    }

    .header_logo-image {
        height: 44px;
        width: 44px;
    }

    .header_logo-image img {
        height: 24px;
    }
}

@media (min-width: 576px) {
    .header_logo-image-mt img {
        height: 24px;
    }

    .header_logo-text {
        display: inline-block;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .header_logo-image-mt img {
        height: 30px;
    }

    .header_logo-image {
        height: 50px;
        width: 50px;
    }

    .header_logo-image img {
        height: 30px;
    }
}

@media (min-width: 1200px) {
    .header_logo-image-mt img {
        height: 36px;
    }
}

.gift_container {
    margin-bottom: 0;
}


