@font-face {
    font-family: 'Roboto Bold';
    src: url('../font/roboto/Roboto-Bold.eot');
    src: url('../font/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/roboto/Roboto-Bold.woff2') format('woff2'),
        url('../font/roboto/Roboto-Bold.woff') format('woff'),
        url('../font/roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Light';
    src: url('../font/roboto/Roboto-Light.eot');
    src: url('../font/roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/roboto/Roboto-Light.woff2') format('woff2'),
        url('../font/roboto/Roboto-Light.woff') format('woff'),
        url('../font/roboto/Roboto-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Medium';
    src: url('../font/roboto/Roboto-Medium.eot');
    src: url('../font/roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/roboto/Roboto-Medium.woff2') format('woff2'),
        url('../font/roboto/Roboto-Medium.woff') format('woff'),
        url('../font/roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Regular';
    src: url('../font/roboto/Roboto-Regular.eot');
    src: url('../font/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/roboto/Roboto-Regular.woff2') format('woff2'),
        url('../font/roboto/Roboto-Regular.woff') format('woff'),
        url('../font/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Thin';
    src: url('../font/roboto/Roboto-Thin.eot');
    src: url('../font/roboto/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
        url('../font/roboto/Roboto-Thin.woff2') format('woff2'),
        url('../font/roboto/Roboto-Thin.woff') format('woff'),
        url('../font/roboto/Roboto-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bold-font-family: 'Roboto Bold', sans-serif;
    --medium-font-family: 'Roboto Medium', sans-serif;
    --regular-font-family: 'Roboto Regular', sans-serif;
    --light-font-family: 'Roboto Light', sans-serif;
    --thin-font-family: 'Roboto Thin', sans-serif;
    --danger-bgc: #ff303080;
    --danger-color: #ff0d0d;
    --info-bgc: #56c8f780;
    --info-color: #2ec0ff;
    --warning-bgc: #ffb10099;
    --warning-color: #ffb100;
    --success-bgc: #3fff0080;
    --success-color: #3aea00;
}

* {
    padding: 0;
    margin: 0;
    outline: none;
    font-family: 'Roboto Regular';
    font-size: 24px;
    user-select: none;
    box-sizing: border-box;
    color: #08345a;
}

:active,
:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden !important;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    max-width: 1920px;
    position: relative;
}

a,
li {
    text-decoration: none;
}

/* Disabled Elements*/
.disabled {
    opacity: 0.4 !important;
    pointer-events: none;
}

/* Buttons */
.btn {
    appearance: none;
    border-radius: 10px;
    font-family: 'Roboto Light';
    padding: 10px;
    display: block;
    border: 0;
    cursor: pointer;
}

.btn-orange {
    background-color: #FFA800;
    color: white;
}

.btn-blue {
    background-color: #1400FF;
    color: white;
}

.btn-red {
    background-color: #ff0000;
    color: white;
}

/*==========*/

/* Input */
input {
    transition: all.3s ease;
}

input:required:focus:invalid,
input:required:focus:valid {
    box-shadow: 0 0 5px #002fff !important;
}

input:required:invalid {
    box-shadow: 0 0 5px #ff0000 !important;
}

input:required:valid {
    box-shadow: 0 0 5px #2caf00 !important;
}

/*==========*/

/* Radio Button */
input[type="radio"] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    position: relative;
    min-height: 20px;
    margin-right: 10px;
}

input[type="radio"]::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 100%;
    background: #eeeeee;
}

input[type="radio"]:checked::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 100%;
    border: 6px solid #0057fd;
    box-sizing: border-box;
}

/*==========*/

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    z-index: 1000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

header .logo img {
    height: 70px;
}

header .open-menu {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    width: 68px;
    height: 68px;
    padding: 10px;
    margin-right: 10px;
}

header .open-menu,
header .open-menu i {
    font-size: 48px;
    line-height: 0;
}

header .page-title {
    font-size: 40px;
    font-family: var(--light-font-family);
    margin-left: -228px;
}

/*==========*/
/* Menu */
.menu {
    position: fixed;
    width: 460px;
    height: calc(100% - 20px);
    top: 10px;
    right: -466px;
    max-width: 460px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    transition: all.6s ease !important;
    -moz-transition: all.6s ease !important;
    -webkit-transition: all.6s ease !important;
    -ms-transition: all.6s ease !important;
    z-index: 1000000;
    border-radius: 10px;
}

.menu .menu-header {
    padding: 20px;
    display: flex;
    align-items: center;
}

.menu .menu-header,
.menu .menu-content {
    opacity: 70%;
}

.menu .menu-header button {
    background-color: transparent;
    border: 0;
    position: absolute;
    cursor: pointer;
    right: 20px;
    padding: 5px;
    border-radius: 10px;
    transition: all.3s ease;
    width: 45px;
    height: 45px;
}

.menu .menu-header button:hover {
    background-color: #eeeeee;
    transition: all.3s ease;
}

.menu .menu-header button,
.menu .menu-header button i {
    font-size: 36px;
}

.menu .menu-header span {
    font-size: 36px;
    margin: auto;
    font-family: 'Roboto Light';
}

.menu .menu-content {
    text-align: center;
}

.menu .menu-content ul li {
    display: flex;
    height: 48px;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px;
    position: relative;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    transition: all.3s ease;
}

a[is="page-changer"] {
    cursor: pointer;
}

.menu .menu-content ul li a[is="page-changer"] {
    color: black;
    font-family: 'Roboto Light';
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.menu .menu-content ul li a[is="page-changer"].disabled {
    color: #c4c4c4;
    cursor: default;
}

.menu .menu-content ul li a[is="page-changer"]:not(.disabled)::after {
    display: block;
    content: '';
    transform: scaleY(0);
    transition: transform 250ms ease-in-out;
    position: absolute;
    width: 5px;
    height: calc(100% - 20px);
    border-radius: 2.5px;
    background-color: #FFA800;
    right: 10px;
    top: 10px;
}

.menu .menu-content ul li:not(.disabled):hover {
    background-color: #e6e6e685;
}

.menu .menu-content ul li a[is="page-changer"]:not(.disabled).active::after {
    transform: scaleY(1);
}

.menu .menu-content .btn {
    width: 275px;
    margin: auto auto;
}

.menu .menu-content .btn#sign-in,
.menu .menu-content .btn#log-out {
    margin: 20px auto 20px auto;
}

.menu .menu-content .btn#sign-in i {
    color: white;
}

.menu .menu-content .menu-delimiter {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10%;
    width: 80%;
    height: 1px;
    background: rgb(0, 0, 0, 0.5);
    display: none;
}

.menu .menu-content button#log-out {
    display: none;
    border: 0;
}

.menu .menu-content .agent-links {
    display: none;
}

/*==========*/
main {
    margin-bottom: 100px;
}

main .about-page,
main .filter {
    max-height: 800px !important;
    height: auto !important;
}
main .about-page img,
main .filter img {
    position: relative;
}

/* Main Footer */
footer.main {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    border-top: 1px solid black;
    color: black;
}

footer.main #menu-links,
footer.main #links-for-clients,
footer.main #catalog-links .column {
    width: 215px;
}

footer.main #catalog-links {
    width: 460px;
}

footer.main #menu-links .menu-link,
footer.main #links-for-clients #title-links-for-clients,
footer.main #links-for-clients .link-for-clients,
footer.main #catalog-links #title-catalog-links,
footer.main #catalog-links .catalog-link {
    color: black;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Roboto Light';
    opacity: 60%;
}

footer.main #links-for-clients .link-for-clients,
footer.main #catalog-links .catalog-link {
    font-size: 18px;
    font-family: 'Roboto Thin';
    opacity: 60%;
}

footer.main #catalog-links .column {
    display: inline-grid;
}

footer.main #copiright-and-social {
    width: 275px;
    margin-top: 15px;
}

footer.main #copiright-and-social #copyright,
footer.main #copiright-and-social #copyright #currentYear {
    font-family: 'Roboto Light';
    font-size: 18px;
    margin-bottom: 30px;
}

footer.main #copiright-and-social #copyright {
    opacity: 60%;
}

footer.main #copiright-and-social #socials {
    display: flex !important;
    justify-content: space-around;
}

footer.main #copiright-and-social #socials .social {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 60%;
    transition: all.3s ease;
}

footer.main #copiright-and-social #socials .social:hover {
    opacity: 100%;
    transition: all.3s ease;
}

footer.main #copiright-and-social #socials .social span {
    display: none;
}

footer.main #copiright-and-social #socials .social i {
    font-size: 40px;
}

/*==========*/
/* Other */
.fa-vk {
    color: #4B729F !important;
}

.fa-odnoklassniki-square {
    color: #FF9800 !important;
}

.fa-facebook-square {
    color: #3B5999 !important;
}

.fa-youtube,
.fa-youtube-square {
    color: #FF0000 !important;
}

.fa-instagram-square {
    background-image: #f09433;
    background-image: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-image: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.fa-mobile {
    color: #000000;
    font-size: 36px;
}

/*==========*/
/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all.3s ease;
    /* visibility: hidden; */
}

.preloader .loader-dots {
    display: flex;
    position: relative;
    width: 260px;
}

.preloader .loader-dots .loader-dot {
    width: 20px;
    height: 20px;
    background-color: #ea7e15;
    border-radius: 100%;
    transition: all.3s ease;
    animation: dot-preloader 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.preloader .loader-dots .loader-dot.end {
    animation-play-state: paused;
    display: none;
    position: absolute;
    transform: scale(1);
    left: calc(50% - 20px);

}

.preloader .loader-dots .loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.preloader .loader-dots .loader-dot:nth-child(2) {
    animation-delay: .2s;
}

.preloader .loader-dots .loader-dot:nth-child(3) {
    animation-delay: .4s;
}

.preloader .loader-dots .loader-dot:nth-child(4) {
    animation-delay: .6s;
}

.preloader .loader-dots .loader-dot:nth-child(5) {
    animation-delay: .8s;
}

.preloader .loader-dots .loader-dot:not(:first-child) {
    margin-left: 40px;
}

@keyframes dot-preloader {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    }
}

/*==========*/

/* Notify */
.notifications {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 10px;
    overflow: hidden;
    z-index: 1;
}

.notifications .notification {
    min-width: 350px;
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    background-color: #cccccc80;
}

.notifications .notification:not(:last-child) {
    margin-bottom: 10px;
}

.notifications .notification .icon {
    margin-right: 10px;
}

.notifications .notification .icon i {
    font-size: 50px;
}

.notifications .notification .container .header {
    font-size: 20px;
    font-family: var(--regular-font-family);
}

.notifications .notification .container .content {
    font-size: 24px;
    padding: 0;
    margin: 0;
    width: auto;
    font-family: var(--light-font-family);
}

.notifications .notification .container .footer {
    margin-top: 5px;
    font-family: var(--thin-font-family);
    font-size: 18px;
}

/* .notifications .notification.info {
    background-color: var(--info-bgc);
} */

.notifications .notification.info .icon i {
    color: var(--info-color);
}

/* .notifications .notification.danger {
    background-color: var(--danger-bgc);
} */

.notifications .notification.danger .icon i {
    color: var(--danger-color);
}

/* .notifications .notification.success {
    background-color: var(--success-bgc);
} */

.notifications .notification.success .icon i {
    color: var(--success-color);
}

/* .notifications .notification.warning {
    background-color: var(--warning-bgc);
} */

.notifications .notification.warning .icon i {
    color: var(--warning-color);
}

/*==========*/

/* Adaptation for Mobile */
@media screen and (max-width: 1280px) {

    #menu-links,
    #links-for-clients,
    #catalog-links {
        display: none !important;
    }

}

@media screen and (max-width: 360px) {

    #menu-links,
    #links-for-clients,
    #catalog-links {
        display: none !important;
    }

    header a img {
        width: 100%;
        height: auto !important;
    }
}

@media screen and (max-height: 650px) {
    div.menu {
        overflow-y: auto;
    }
}

@media screen and (max-width: 1023px) {

    div.menu {
        width: calc(100% - 20px);
    }

    div.menu .menu-header * {
        font-size: 28px;
    }

    div.menu .menu-content ul * {
        font-size: 24px;
    }

    header {
        position: unset !important;
        width: 100%;
    }

    header .page-title {
        display: none;
    }

    header .open-menu {
        margin-right: 0 !important;
        margin-left: 20px !important;
    }

    main[data-page="Главная"] .filter,
    main .about-page {
        height: auto !important;
    }

    main .about-page img {
        position: unset;
        margin-top: 0 !important;
    }

    main[data-page="О нас"] .content {
        width: 100%;
        text-align: justify;
        font-size: 20px;
        padding: 10px;
    }

    main[data-page="О нас"] .content strong {
        font-size: 20px;
    }

    main[data-page="Контакты"] .content {
        padding: 50px 10px;
    }

    main[data-page="Контакты"] .content .schedule .day {
        margin-left: 15px;
        width: 300px;
    }

    main[data-page="Клиентам"] .content,
    main[data-page="Каталог"] .products {
        padding: 40px 24px;
    }

    main[data-page="Клиентам"] .content *,
    main[data-page="Контакты"] .content .director,
    main[data-page="Контакты"] .content .address,
    main[data-page="Контакты"] .content .schedule * {
        font-size: 20px;
    }

    main[data-page="Главная"] .filter img {
        margin-top: -50px;
    }

    main[data-page="Главная"] #offers {
        align-items: center;
        flex-wrap: wrap;
    }

    main[data-page="Главная"] #offers .offer {
        width: calc(50% - 15px)
    }

    main[data-page="Главная"] #advertisings #advertisings-title {
        font-size: 28px;
    }

    main[data-page="Главная"] #advertisings .wrapper {
        flex-direction: column;
        align-items: center;
    }

    main[data-page="Главная"] #advertisings .wrapper .advertising {
        width: 100%;
    }

    main[data-page="Вход"] .content,
    main[data-page="Регистрация"] .content {
        padding: 10px;
        width: 100%;
    }

    main[data-page="Вход"] .content .header,
    main[data-page="Регистрация"] .content .header {
        font-size: 40px;
    }

    main[data-page="Вход"] .content .form,
    main[data-page="Регистрация"] .content .form {
        padding: 30px 15px;
    }

    main[data-page="Регистрация"] .content {
        margin: 40px auto;
    }

    main[data-page="Регистрация"] .content .form .about-reg {
        margin: 0;
        font-size: 18px;
    }
    main[data-page="Регистрация"] .content .form .floor .male label,
    main[data-page="Регистрация"] .content .form .floor .female label {
        font-size: 20px;
    }

    footer.main #copiright-and-social {
        width: calc(100% - 10px);
    }

    footer.main #copiright-and-social #copyright {
        margin-left: 15px;
        margin-bottom: 15px;
    }

    footer.main #copiright-and-social #socials {
        flex-wrap: wrap;
    }

    footer.main #copiright-and-social #socials .social {
        width: auto;
    }

    footer.main #copiright-and-social #socials .social span {
        display: block;
        margin-right: 10px;
        font-size: 18px;
        color: #000000;
    }
}

/*==========*/
