@media(max-width: 1199px) {
    header.top {
        display: none !important;
    }

    header.top.mobile {
        display: block !important;
    }

    footer .top .right {
        display: none !important;
    }

    footer .bottom .right {
        text-align: left !important;
    }

    .categories .navigator {
        display: none !important;
    }

    .categories .navigator.mobile {
        display: flex !important;
    }

    .categories .category .text {
        font-size: 16px;
    }

    .categories .category .text .small {
        display: none;
    }
}

input, textarea {
    background-color: var(--background);
    padding: 11px 24px;
    display: block;
    color: var(--white);
    border: 0px;
    border-radius: 5px;
    width: 100%;
    height: 35px;
}

input:not(:last-child) {
    margin-bottom: 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    border: none !important;
    -webkit-text-fill-color: var(--white) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--background) inset;
    transition: background-color 5000s ease-in-out 0s;
}

input[disabled] {
    cursor: no-drop;
}

textarea {
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    height: initial;
    min-height: 10em;
    resize: vertical;
    padding: 16px 20px;
}

button {
    background: inherit;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

button:focus {
    outline: 0 !important;
}

a {
    color: unset;
    text-decoration: none !important;
}

a:hover {
    color: unset;
}

a:focus, input:focus, textarea:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

[href] {
    cursor: pointer;
}
