@charset "UTF-8";
/*!
Theme Name: Vintage
Author: Topref
Description: CRM система продаж антиквариата.
Version: 1.0.0
Text Domain: vida
*/
/*--------------------------------------------------------------
>>> ОГЛАВЛЕНИЕ:
----------------------------------------------------------------
# Типографика
# Элементы
# Шапка
# Секции
# Виджеты
# Контент
# Комментарии
# Галерея
# Подвал
--------------------------------------------------------------*/
/*Отзывчивое соотношение - Мы используем этот миксин для создания масштабируемых элементов(обычно изображения/картинки заднего фона), чтобы поддерживать соотношение.*/
/*
Пример:
div {
  @include responsive-ratio(16,9);
}
*/
/*--------------------------------------------------------------
# Типографика
--------------------------------------------------------------*/
@font-face {
    font-family: 'OpenSans';
  src: url("./fonts/OpenSans/OpenSans-Light.woff2") format("woff2"), url("./fonts/OpenSans/OpenSans-Light.woff") format("woff"), url("./fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
  src: url("./fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"), url("./fonts/OpenSans/OpenSans-Regular.woff") format("truetype"), url("./fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
  src: url("./fonts/OpenSans/OpenSans-Medium.woff2") format("woff2"), url("./fonts/OpenSans/OpenSans-Medium.woff") format("woff"), url("./fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
  src: url("./fonts/OpenSans/OpenSans-SemiBold.woff2") format("woff2"), url("./fonts/OpenSans/OpenSans-SemiBold.woff") format("woff"), url("./fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
  src: url("./fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"), url("./fonts/OpenSans/OpenSans-Bold.woff") format("woff"), url("./fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# Элементы
--------------------------------------------------------------*/
html,
body {
    font-family: 'OpenSans', sans-serif;
    font-size: 100%;
    color: #333333;
    height: 100%;
}

/*Прижатие подвала к низу сайта*/
#page {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.site-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

embed,
iframe,
object {
    max-width: 100%;
}

/* Заголовки */
h1 {
    font-size: 40px;
    font-size: 2.5rem;
}

h2 {
    font-size: 32px;
    font-size: 2rem;
}

h3 {
    font-size: 28px;
    font-size: 1.75rem;
}

h4 {
    font-size: 24px;
    font-size: 1.5rem;
}

h5 {
    font-size: 20px;
    font-size: 1.25rem;
}

h6 {
    font-size: 16px;
    font-size: 1rem;
}

.title {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
}

@media only screen and (max-width: 576px) {
    .title {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/*Ленивая загрузка*/
.b-lazy {
    -webkit-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
    max-width: 100%;
    opacity: 0;
}

.b-lazy.b-loaded {
    opacity: 1;
}

a {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

strong {
    font-weight: 700;
}

/* Выравнивание */
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Текущее меню */
/* Класс для текущей страницы */
/* Класс для текущей рубрики */
/* Класс для любого другого текущего пункта меню */
/* Класс для таксономии */
/* Класс для страницы */
/* Класс для любого пользовательского элемента, который был добавлен */
/* Класс для элемента, ведущего на главную страницу блога */
/*Форма*/
form {
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */
}

form div {
    margin-bottom: 10px;
}

form label {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
}

form input[type="email"],
form input[type="text"],
form input[type="number"],
form input[type="password"],
form input[type="date"],
form input[type="tel"],
form input[type="url"],
form textarea {
    border-radius: 4px;
    width: 100%;
    border: 1px solid #999999;
    padding: 5px 10px;
    outline: none;
}

form input[type="email"]:focus,
form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="password"]:focus,
form input[type="date"]:focus,
form input[type="tel"]:focus,
form input[type="url"]:focus,
form textarea:focus {
    border-color: #367fa9;
}

form input:focus::-webkit-input-placeholder {
    color: transparent;
}

form input:focus:-moz-placeholder {
    color: transparent;
}

form input:focus::-moz-placeholder {
    color: transparent;
}

form input:focus:-ms-input-placeholder {
    color: transparent;
}

form select {
    outline: none;
    padding: 5px;
    border: 1px solid #999999;
}

form select:focus {
    outline: none;
}

form input[type=checkbox],
form input[type=radio] {
    display: none;
}

form input[type=checkbox] + label:before {
    content: "\2713";
    color: transparent;
    display: inline-block;
    border: 1px solid #333333;
    font-size: 20px;
    line-height: 22px;
    margin: -5px 10px 0 0;
    height: 20px;
    width: 20px;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: color ease .3s;
    transition: color ease .3s;
}

form input[type=checkbox]:checked + label:before {
    color: #66bb6a;
    line-height: 18px;
}

form input[type=radio] + label:before {
    content: "\26AB";
    color: #66bb6a;
    border: 1px solid #333333;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    margin: 0 10px 0 0;
    height: 21px;
    width: 21px;
    text-align: center;
    vertical-align: middle;
    font-size: 0;
    -webkit-transition: font-size ease .3s;
    transition: font-size ease .3s;
    background-color: #FFFFFF;
}

form input[type=radio]:checked + label:before {
    color: #66bb6a;
    font-size: 12px;
    line-height: 19px;
}

form input[type="submit"],
form button[type="submit"] {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border: none;
    padding: 10px 15px;
    background-color: #66bb6a;
}

form input[type="submit"]:hover,
form button[type="submit"]:hover {
    cursor: pointer;
}

/*Модальное окно*/
.white-popup {
    position: relative;
    background: #FFFFFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
}

/*Модальное окно после удаления товара*/
#modal-delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#modal-delete .message {
    margin: 30px 0;
    padding: 30px;
    border: 1px solid #f55754;
}

#modal-delete .message p {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
    color: #f55754;
    margin: 0;
}

/*Таблица*/
table {
    width: 100%;
    margin-bottom: 15px;
}

table tr th,
table tr td {
    padding: 5px;
    border: 1px solid #b8c7ce;
}

/*Кнопки*/
.button {
    font-size: 13px;
    font-size: 0.8125rem;
    border: 1px solid #333333;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 15px;
    display: inline-block;
    border: none;
    background-color: #66bb6a;
}

.button:hover {
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    background-color: #419345;
}

.button:focus {
    outline: none;
}

.button.big {
    padding: 15px 30px;
}

/*Пагинация*/
.pagination {
    margin: 15px 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pagination a,
.pagination span {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 32px;
    text-align: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #333333;
    border-radius: 2px;
}

.pagination span {
    color: #999999;
    border: 1px solid #999999;
}

.pagination span:hover {
    cursor: not-allowed;
}

.pagination a {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #333333;
}

.pagination a:hover {
    color: #FFFFFF;
    background-color: #999999;
    border: 1px solid #999999;
}

/*Стилизация полосы прокрутки*/
.main-content .wrap-products::-webkit-scrollbar,
.main-content .wrap-products-sold::-webkit-scrollbar {
    width: 8px;
  /* ширина всей полосы прокрутки */
    height: 14px;
}

.main-content .wrap-products::-webkit-scrollbar-track,
.main-content .wrap-products-sold::-webkit-scrollbar-track {
    background: #999999;
  /* цвет зоны отслеживания */
    border-radius: 20px;
}

.main-content .wrap-products::-webkit-scrollbar-thumb,
.main-content .wrap-products-sold::-webkit-scrollbar-thumb {
    background-color: orange;
  /* цвет бегунка */
    border-radius: 20px;
  /* округлось бегунка */
    border: 1px solid #f55754;
  /* отступ вокруг бегунка */
}

/**
 * Спиннер.
 */
@-webkit-keyframes spin {
    0%, 100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(160%);
        transform: translate(160%);
    }

    50% {
        -webkit-transform: translate(160%, 160%);
        transform: translate(160%, 160%);
    }

    75% {
        -webkit-transform: translate(0, 160%);
        transform: translate(0, 160%);
    }
}

@keyframes spin {
    0%, 100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(160%);
        transform: translate(160%);
    }

    50% {
        -webkit-transform: translate(160%, 160%);
        transform: translate(160%, 160%);
    }

    75% {
        -webkit-transform: translate(0, 160%);
        transform: translate(0, 160%);
    }
}

/*--------------------------------------------------------------
# Шапка
--------------------------------------------------------------*/
/*Шапка сайта*/
.site-header {
    padding: 15px 0;
    background-color: #367fa9;
}

.site-header .site-branding {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .site-header .site-branding {
        display: none;
    }
}

.site-header .site-branding a {
    color: #FFFFFF;
    text-decoration: none;
    display: block;
}

.site-header .site-branding a:hover {
    color: #EEEEEE;
}

.site-header .mobile-menu {
    display: none;
}

@media only screen and (max-width: 768px) {
    .site-header .mobile-menu {
        display: block;
    }
}

.site-header .mobile-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-header .mobile-menu a:hover svg {
    fill: #b8c7ce;
}

.site-header .mobile-menu a svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #FFFFFF;
}

.site-header .user-data {
    font-size: 12px;
    font-size: 0.75rem;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .user-data .user-foto {
    margin-right: 10px;
}

@media only screen and (max-width: 576px) {
    .site-header .user-data .user-foto {
        margin-right: 15px;
    }
}

.site-header .user-data .user-foto img {
    border-radius: 50%;
}

.site-header .user-data .user-name {
    margin-right: 30px;
}

@media only screen and (max-width: 576px) {
    .site-header .user-data .user-name {
        display: none;
    }
}

.site-header .user-data a.settings {
    color: #b8c7ce;
    text-decoration: none;
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .user-data a.settings:hover {
    color: #FFFFFF;
}

.site-header .user-data a.settings:hover svg {
    fill: #FFFFFF;
}

.site-header .user-data a.settings svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #EEEEEE;
    margin-right: 5px;
}

.site-header .user-data a.logout {
    color: #b8c7ce;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .user-data a.logout:hover {
    color: #FFFFFF;
}

.site-header .user-data a.logout:hover svg {
    fill: #FFFFFF;
}

.site-header .user-data a.logout svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #f55754;
    margin-right: 5px;
}

/*Мобильное меню*/
#mobile-menu {
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    width: 100%;
    max-width: 300px;
    padding: 15px 15px 30px;
    position: fixed;
    left: -770px;
    top: 0;
    bottom: 0;
    z-index: 99;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #374850;
}

@media only screen and (max-width: 768px) {
    #mobile-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media only screen and (max-width: 576px) {
    #mobile-menu {
        left: -580px;
    }
}

#mobile-menu.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
}

#mobile-menu .close {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 30px;
}

#mobile-menu .close a.close-menu {
    display: inline-block;
}

#mobile-menu .close a.close-menu:hover svg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

#mobile-menu .close a.close-menu svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #f55754;
}

#mobile-menu ul.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

#mobile-menu ul.nav-menu li {
    text-align: left;
}

#mobile-menu ul.nav-menu li a {
    color: #b8c7ce;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}

#mobile-menu ul.nav-menu li a:hover {
    color: #FFFFFF;
}

#mobile-menu ul.nav-menu li a:hover svg {
    fill: #FFFFFF;
}

#mobile-menu ul.nav-menu li a svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #b8c7ce;
    margin-right: 10px;
}

#mobile-menu ul.nav-menu li .sub-menu {
    list-style: none;
    padding-left: 20px;
}

#mobile-menu ul.nav-menu li .sub-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#mobile-menu ul.nav-menu li .sub-menu a svg {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Сайтбар
--------------------------------------------------------------*/
/*Сайтбар*/
aside.sidebar {
    color: #b8c7ce;
    min-height: calc(100vh - 60px);
    height: 100%;
    background-color: #374850;
}

aside.sidebar ul.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

aside.sidebar ul.sidebar-menu li {
    border-bottom: 1px solid #999999;
}

aside.sidebar ul.sidebar-menu li a {
    font-size: 12px;
    font-size: 0.75rem;
    color: #b8c7ce;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
}

@media only screen and (max-width: 576px) {
    aside.sidebar ul.sidebar-menu li a {
        font-size: 0px;
        font-size: 0rem;
        padding: 10px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

aside.sidebar ul.sidebar-menu li a:hover {
    color: #FFFFFF;
    background-color: #4c636e;
}

aside.sidebar ul.sidebar-menu li a:hover svg {
    fill: #FFFFFF;
}

aside.sidebar ul.sidebar-menu li a svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #b8c7ce;
    margin-bottom: 5px;
}

@media only screen and (max-width: 576px) {
    aside.sidebar ul.sidebar-menu li a svg {
        margin-right: 0;
    }
}

aside.sidebar ul.sidebar-menu li .sub-menu {
    list-style: none;
    padding-left: 20px;
}

aside.sidebar ul.sidebar-menu li .sub-menu a {
    font-size: 12px;
    font-size: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

aside.sidebar ul.sidebar-menu li .sub-menu a svg {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Контент
--------------------------------------------------------------*/
/*Основной контент*/
.site-main {
    background-color: #EEEEEE;
}

.main-content {
    padding: 30px 15px;
}

@media only screen and (max-width: 576px) {
    .main-content {
        padding: 30px 0 0;
    }
}

.main-content .main-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .main-content .main-options {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.main-content .main-options .add-product {
    padding: 15px;
}

@media only screen and (max-width: 768px) {
    .main-content .main-options .add-product {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .main-content .main-options .add-product span {
        display: none;
    }
}

.main-content .main-options .add-product svg {
    fill: #FFFFFF;
    margin-right: 5px;
}

.main-content .main-options .right-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .main-content .main-options .right-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.main-content .main-options .right-block .title-form {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #999999;
    white-space: nowrap;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .main-content .main-options .right-block .title-form {
        margin-bottom: 15px;
    }
}

.main-content .main-options .right-block form {
    margin-left: 15px;
    margin-right: 15px;
}

.main-content .main-options .right-block form select {
    border-radius: 4px;
    color: #333333;
    outline: none;
    padding: 2px 6px;
    border: 1px solid #AAAAAA;
    background-color: #FFFFFF;
}

.main-content .main-options .right-block form select option {
    color: #333333;
}

.main-content .main-options .exchange-rates {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #66bb6a;
    margin-left: 15px;
    margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
    .main-content .main-options .exchange-rates {
        margin-left: 0;
    }
}

.main-content .main-options .exchange-rates span {
    color: #333333;
    font-weight: 500;
}

.main-content .filters {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
    .main-content .filters {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.main-content .filters p {
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .main-content .filters p {
        width: 100%;
        margin-bottom: 5px;
    }
}

.main-content .filters a {
    border-radius: 4px;
    text-decoration: none;
    color: #FFFFFF;
    white-space: nowrap;
    padding: 2px 10px;
    display: inline-block;
    margin-right: 10px;
    background-color: #374850;
}

@media only screen and (max-width: 768px) {
    .main-content .filters a {
        margin-bottom: 8px;
    }
}

.main-content .filters a.sale {
    background-color: #66bb6a;
}

.main-content .filters a.queue {
    background-color: #999999;
}

.main-content .filters a.delivered {
    background-color: orange;
}

.main-content .filters a.sold {
    background-color: #f55754;
}

.main-content .filters a span {
    font-weight: 500;
}

.main-content .filters a svg {
    fill: #FFFFFF;
    margin-right: 5px;
}

.main-content .session-message {
    font-size: 14px;
    font-size: 0.875rem;
    border-radius: 4px;
    color: #FFFFFF;
    line-height: 1.4;
    padding: 10px 30px;
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #367fa9;
}

.main-content .session-message svg {
    fill: #b8c7ce;
    margin-right: 15px;
}

.main-content .session-message p {
    margin: 0;
}

.main-content .session-message.error, .main-content .session-message.deleted {
    background-color: #f55754;
}

.main-content .session-message.edit {
    background-color: orange;
}

.main-content .session-message.edit svg {
    fill: #FFFFFF;
}

.main-content .session-message.deleted {
    margin-bottom: 10px;
}

.main-content .wrap-products {
    overflow: auto;
}

.main-content table.products {
    table-layout: fixed;
    width: 100%;
    min-width: 1140px;
    margin: 15px 0 30px;
}

@media only screen and (max-width: 768px) {
    .main-content table.products {
        min-width: auto;
    }
}

@media only screen and (max-width: 768px) {
    .main-content table.products thead {
        display: none;
    }
}

.main-content table.products thead tr {
    background-color: #FFFFFF;
}

.main-content table.products thead tr th {
    font-size: 12px;
    font-size: 0.75rem;
    color: #333333;
    text-align: center;
    line-height: 1.4;
}

.main-content table.products thead tr th#product-number {
    width: 50px;
}

.main-content table.products thead tr th#product-label {
    width: 120px;
}

.main-content table.products thead tr th#product-date {
    width: 80px;
}

.main-content table.products thead tr th#product-foto {
    width: 130px;
}

@media only screen and (max-width: 1400px) {
    .main-content table.products thead tr th#product-foto {
        width: 100px;
    }
}

.main-content table.products thead tr th#product-price {
    width: 100px;
}

.main-content table.products thead tr th#product-selling-price {
    width: 100px;
}

.main-content table.products thead tr th#product-post {
    width: 100px;
}

.main-content table.products thead tr th#product-profit {
    width: 100px;
}

.main-content table.products thead tr th#product-date-sold {
    width: 80px;
}

.main-content table.products thead tr th#product-action {
    width: 60px;
}

.main-content table.products tbody tr {
    background-color: #FFFFFF;
}

@media only screen and (max-width: 768px) {
    .main-content table.products tbody tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 15px;
        margin-bottom: 30px;
        border: 1px solid #999999;
    }
}

@media only screen and (max-width: 768px) {
    .main-content table.products tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: none;
        padding: 10px 0;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        border-bottom: 1px solid #EEEEEE;
    }
}

@media only screen and (max-width: 576px) {
    .main-content table.products tbody tr td {
        padding: 5px 0;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.main-content table.products tbody tr td .label-title {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #999999;
    margin-right: 10px;
    display: none;
}

@media only screen and (max-width: 768px) {
    .main-content table.products tbody tr td .label-title {
        display: block;
    }
}

.main-content table.products tbody tr td .delimiter {
    font-size: 0px;
    font-size: 0rem;
    width: 100%;
}

.main-content table.products tbody tr td .delimiter hr {
    color: #999999;
}

@media only screen and (max-width: 768px) {
    .main-content table.products tbody tr td .delimiter {
        font-size: 16px;
        font-size: 1rem;
        padding: 0 5px;
    }

    .main-content table.products tbody tr td .delimiter hr {
        display: none;
    }
}

.main-content table.products tbody tr.sold {
    background-color: #EEEEEE;
}

@media only screen and (max-width: 768px) {
    .main-content table.products tbody tr.sold td {
        border-color: #b8c7ce;
    }
}

.main-content table.products .product-number {
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center;
}

.main-content table.products .product-date {
    font-size: 12px;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
}

.main-content table.products .product-foto {
    vertical-align: top;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-foto {
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    }
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-foto {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-bottom: none;
    }
}

.main-content table.products .product-foto .gallery {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-foto .gallery {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-foto .gallery img {
        width: 100%;
        height: auto;
    }
}

.main-content table.products .product-foto .gallery a {
    display: none;
}

.main-content table.products .product-foto .gallery a:first-child,
.main-content table.products .product-foto .gallery .no-foto {
    width: 120px;
    display: block;
    overflow: hidden;
    position: relative;
}

.main-content table.products .product-foto .gallery a:first-child .label,
.main-content table.products .product-foto .gallery .no-foto .label {
    font-size: 10px;
    font-size: 0.625rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    color: #FFFFFF;
    padding: 2px 5px;
    display: inline-block;
    background-color: #999999;
}

.main-content table.products .product-foto .gallery a:first-child .label.label-queue,
.main-content table.products .product-foto .gallery .no-foto .label.label-queue {
    background-color: #999999;
}

.main-content table.products .product-foto .gallery a:first-child .label.label-onsale,
.main-content table.products .product-foto .gallery .no-foto .label.label-onsale {
    background-color: #66bb6a;
}

.main-content table.products .product-foto .gallery a:first-child .label.label-delivered,
.main-content table.products .product-foto .gallery .no-foto .label.label-delivered {
    background-color: orange;
}

.main-content table.products .product-foto .gallery a:first-child .label.label-sold,
.main-content table.products .product-foto .gallery .no-foto .label.label-sold {
    background-color: #f55754;
}

@media only screen and (max-width: 1400px) {
    .main-content table.products .product-foto .gallery a:first-child,
  .main-content table.products .product-foto .gallery .no-foto {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-foto .gallery a:first-child,
  .main-content table.products .product-foto .gallery .no-foto {
        height: auto;
    }
}

.main-content table.products .product-foto .gallery a:first-child:hover img,
.main-content table.products .product-foto .gallery .no-foto:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.main-content table.products .product-foto .gallery a:first-child img,
.main-content table.products .product-foto .gallery .no-foto img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-foto .gallery a:first-child img,
  .main-content table.products .product-foto .gallery .no-foto img {
        width: 100%;
        height: auto;
    }
}

.main-content table.products .product-foto .gallery .gallery-count {
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 500;
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px 6px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-top-left-radius: 5px;
    background-color: rgba(54, 127, 169, 0.8);
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-foto .gallery .gallery-count {
        font-size: 16px;
        font-size: 1rem;
        padding: 5px 15px;
    }
}

.main-content table.products .product-foto .gallery .gallery-count svg {
    fill: #FFFFFF;
    margin-right: 4px;
}

.main-content table.products .product-name {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 5px 10px;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-name {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-name {
        font-size: 16px;
        font-size: 1rem;
        padding: 10px 0;
    }
}

.main-content table.products .product-name .link-product {
    color: #367fa9;
    display: block;
}

.main-content table.products .product-name .link-product:hover {
    text-decoration: none;
}

.main-content table.products .product-name .note {
    font-size: 12px;
    font-size: 0.75rem;
    color: #999999;
    margin-top: 5px;
    margin-bottom: 0;
    overflow: auto;
}

.main-content table.products .product-name .note span {
    color: #333333;
}

.main-content table.products .product-label {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-label {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.main-content table.products .product-label .label {
    border-radius: 4px;
    font-size: 12px;
    font-size: 0.75rem;
    color: #FFFFFF;
    padding: 2px 5px;
    display: inline-block;
    background-color: #999999;
}

.main-content table.products .product-label .label.label-queue {
    background-color: #999999;
}

.main-content table.products .product-label .label.label-onsale {
    background-color: #66bb6a;
}

.main-content table.products .product-label .label.label-delivered {
    background-color: orange;
}

.main-content table.products .product-label .label.label-sold {
    background-color: #f55754;
}

.main-content table.products .product-platform {
    color: #999999;
    text-align: center;
    padding: 0;
    vertical-align: middle;
}

.main-content table.products .product-platform .wrap-platform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-platform .wrap-platform {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.main-content table.products .product-platform .wrap-platform .delimiter hr {
    margin: 0;
}

.main-content table.products .product-platform .wrap-platform .items-platform,
.main-content table.products .product-platform .wrap-platform .items-operator {
    height: 50px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-platform .wrap-platform .items-platform,
  .main-content table.products .product-platform .wrap-platform .items-operator {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 5px;
    }
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-platform .wrap-platform .items-platform {
        border-right: 1px solid #999999;
        border-bottom: none;
    }
}

.main-content table.products .product-platform .wrap-platform .items-operator img {
    height: 26px;
}

.main-content table.products .product-platform img {
    display: block;
    margin-right: 5px;
    width: auto;
    height: 20px;
}

.main-content table.products .product-platform img:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-platform img {
        margin-bottom: 0;
        margin-right: 5px;
    }

    .main-content table.products .product-platform img:last-child {
        margin-right: 0;
    }
}

.main-content table.products .product-price {
    font-size: 12px;
    font-size: 0.75rem;
    color: #999999;
    text-align: center;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-price {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .main-content table.products .product-price .label-title {
        text-align: left;
    }

    .main-content table.products .product-price span {
        margin-right: 2px;
    }

    .main-content table.products .product-price hr {
        margin-right: 10px;
    }
}

.main-content table.products .product-price span {
    color: #333333;
    font-weight: 500;
}

.main-content table.products .product-price span:first-of-type {
    color: #999999;
}

.main-content table.products .product-price span:last-of-type {
    font-weight: 700;
}

.main-content table.products .product-selling-price {
    font-size: 12px;
    font-size: 0.75rem;
    color: #999999;
    text-align: center;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-selling-price {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .main-content table.products .product-selling-price .label-title {
        text-align: left;
    }

    .main-content table.products .product-selling-price span {
        margin-right: 2px;
    }

    .main-content table.products .product-selling-price hr {
        margin-right: 10px;
    }
}

.main-content table.products .product-selling-price span {
    color: #333333;
    font-weight: 500;
}

.main-content table.products .product-selling-price span:first-of-type {
    color: #999999;
}

.main-content table.products .product-selling-price span:last-of-type {
    font-weight: 700;
}

.main-content table.products .product-post {
    font-size: 12px;
    font-size: 0.75rem;
    color: #999999;
    text-align: center;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-post {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .main-content table.products .product-post .label-title {
        text-align: left;
    }

    .main-content table.products .product-post span {
        margin-right: 2px;
    }

    .main-content table.products .product-post hr {
        margin-right: 10px;
    }
}

.main-content table.products .product-post span {
    color: #333333;
    font-weight: 500;
}

.main-content table.products .product-post span:first-of-type {
    color: #999999;
}

.main-content table.products .product-post span:last-of-type {
    font-weight: 700;
}

.main-content table.products .product-profit {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #999999;
    text-align: center;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-profit {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .main-content table.products .product-profit .label-title {
        text-align: left;
    }

    .main-content table.products .product-profit span {
        margin-right: 2px;
    }

    .main-content table.products .product-profit hr {
        margin-right: 10px;
    }
}

.main-content table.products .product-profit span {
    color: #419345;
    font-weight: 700;
}

.main-content table.products .product-profit span:first-of-type {
    color: #999999;
}

.main-content table.products .product-profit span:last-of-type {
    font-weight: 700;
}

.main-content table.products .product-date-sold {
    font-size: 12px;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
}

.main-content table.products .product-action {
    text-align: right;
    padding: 5px 10px;
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-action {
        padding: 5px 0;
    }
}

.main-content table.products .product-action .link-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-action .link-action {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.main-content table.products .product-action a {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-action a {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .main-content table.products .product-action a:last-child {
        margin-right: 0;
    }
}

.main-content table.products .product-action a:last-child {
    margin-bottom: 0;
}

.main-content table.products .product-action a:hover svg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media only screen and (max-width: 768px) {
    .main-content table.products .product-action a.link {
        margin-bottom: 0;
    }
}

.main-content table.products .product-action a.link svg {
    fill: #367fa9;
}

.main-content table.products .product-action a.edit svg {
    fill: #66bb6a;
}

.main-content table.products .product-action a.delete svg {
    fill: #f55754;
}

.main-content table.products .product-action a svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 16px;
}

@media only screen and (max-width: 576px) {
    .main-content table.products .product-action a svg {
        width: 20px;
    }
}

.main-content .no-products {
    border-radius: 4px;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
    color: #999999;
    padding: 15px 30px;
    margin: 30px 0;
    border: 1px solid #999999;
    background-color: #FFFFFF;
}

/*Страница добавления товара*/
.add-form {
    margin: 30px 0 0;
}

.add-form label {
    color: #374850;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.add-form label input,
.add-form label textarea {
    margin-top: 5px;
}

.add-form input {
    margin-bottom: 15px;
}

.add-form textarea {
    margin-bottom: 15px;
}

.add-form .wrap-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-date {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .add-form .wrap-date label[for="product-start"] {
        margin-bottom: 15px;
    }
}

.add-form .wrap-date label[for="product-start"] {
    margin-right: 30px;
}

.add-form .wrap-date input[type="date"] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0;
    background-color: #FFFFFF;
}

.add-form .wrap-date input[type="date"]:active, .add-form .wrap-date input[type="date"]:focus {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.add-form .wrap-price {
    border-radius: 4px;
    width: 100%;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #999999;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-price {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.add-form .wrap-price p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 15px;
    margin-bottom: 0;
    -ms-flex-negative: 2;
    flex-shrink: 2;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-price p {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
}

.add-form .wrap-price .wrap-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    margin: 0;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-price .wrap-label {
        width: 100%;
    }
}

.add-form .wrap-price .wrap-label label:first-child {
    margin-right: 15px;
}

.add-form .wrap-price label {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-price label {
        width: 100%;
    }
}

.add-form .wrap-price label .currency {
    color: #FFFFFF;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #374850;
    margin: 0;
    width: 40px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.add-form .wrap-price input {
    max-width: 150px;
    margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-price input {
        max-width: none;
    }
}

.add-form .wrap-price input:-moz-read-only {
    color: #FFFFFF;
    background-color: #999999;
}

.add-form .wrap-price input:disabled,
.add-form .wrap-price input:read-only {
    color: #FFFFFF;
    background-color: #999999;
}

.add-form .item-foto {
    margin-left: 30px;
}

@media only screen and (max-width: 992px) {
    .add-form .item-foto {
        margin-left: 0;
    }
}

.add-form .product-foto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 576px) {
    .add-form .product-foto {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.add-form .product-foto p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
}

.add-form .product-foto p.note {
    font-size: 12px;
    font-size: 0.75rem;
    color: #f55754;
    margin-top: -5px;
}

.add-form .product-foto .jFiler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
    .add-form .product-foto .jFiler {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.add-form .product-foto .jFiler .jFiler-input-dragDrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: 250px;
    padding: 10px 30px;
    margin-right: 15px;
    margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
    .add-form .product-foto .jFiler .jFiler-input-dragDrop {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
}

.add-form .product-foto .jFiler .jFiler-input-dragDrop .jFiler-input-inner {
    margin: 0;
}

.add-form .product-foto .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-icon {
    font-size: 0px;
    font-size: 0rem;
    margin: 0;
}

.add-form .product-foto .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-icon i {
    font-size: 32px;
    font-size: 2rem;
}

.add-form .product-foto .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-text {
    margin: 0;
}

.add-form .product-foto .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-text span {
    margin: 5px 0 10px !important;
    padding: 0;
}

.add-form .product-foto .jFiler .jFiler-items li .jFiler-item-thumb {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-bottom: 8px;
}

.add-form .product-foto .jFiler .jFiler-items li .jFiler-item-thumb .jFiler-item-thumb-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.add-form .product-foto .jFiler .jFiler-items li .jFiler-item-thumb img {
    width: 100%;
    max-height: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.add-form .product-foto .jFiler .jFiler-items li .jFiler-item-thumb .jFiler-item-info {
    max-width: 100%;
}

.add-form .product-foto .jFiler .jFiler-items li a {
    text-decoration: none;
}

.add-form .product-foto .jFiler .jFiler-items div {
    margin: 0;
}

.add-form .product-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 576px) {
    .add-form .product-gallery {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.add-form .product-gallery p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
}

.add-form .product-gallery p.note {
    font-size: 12px;
    font-size: 0.75rem;
    color: #f55754;
    margin-top: -5px;
}

.add-form .product-gallery .jFiler {
    width: 100%;
}

.add-form .product-gallery .jFiler .jFiler-input-dragDrop {
    width: 100%;
}

.add-form .product-gallery .jFiler .jFiler-input-dragDrop .jFiler-input-inner {
    margin: 0;
}

.add-form .product-gallery .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-icon {
    font-size: 0px;
    font-size: 0rem;
    margin: 0;
}

.add-form .product-gallery .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-icon i {
    font-size: 32px;
    font-size: 2rem;
}

.add-form .product-gallery .jFiler .jFiler-input-dragDrop .jFiler-input-inner .jFiler-input-text {
    margin: 0;
}

.add-form .product-gallery .jFiler-items {
    margin: 0;
}

.add-form .product-gallery .jFiler-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1400px) {
    .add-form .product-gallery .jFiler-items ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 992px) {
    .add-form .product-gallery .jFiler-items ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 576px) {
    .add-form .product-gallery .jFiler-items ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.add-form .product-gallery .jFiler-items li {
    float: none;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}

.add-form .product-gallery .jFiler-items li:nth-child(3n) {
    margin-right: 0;
}

@media only screen and (max-width: 1400px) {
    .add-form .product-gallery .jFiler-items li {
        width: 49%;
    }

    .add-form .product-gallery .jFiler-items li:nth-child(2n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .add-form .product-gallery .jFiler-items li {
        width: 32%;
        margin-right: 2%;
    }

    .add-form .product-gallery .jFiler-items li:nth-child(2n) {
        margin-right: 2%;
    }

    .add-form .product-gallery .jFiler-items li:nth-child(3n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 576px) {
    .add-form .product-gallery .jFiler-items li {
        width: 49%;
    }

    .add-form .product-gallery .jFiler-items li:nth-child(2n) {
        margin-right: 0;
    }
}

.add-form .product-gallery .jFiler-items li .jFiler-item-thumb {
    width: 100%;
    height: auto;
}

.add-form .product-gallery .jFiler-items li .jFiler-item-thumb .jFiler-item-thumb-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.add-form .product-gallery .jFiler-items li .jFiler-item-thumb img {
    width: 100%;
    max-height: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.add-form .product-gallery .jFiler-items li .jFiler-item-thumb .jFiler-item-info {
    max-width: 100%;
}

.add-form .product-gallery .jFiler-items li a {
    text-decoration: none;
}

.add-form .product-gallery .jFiler-items div {
    margin: 0;
}

.add-form p.radio {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
}

.add-form .wrap-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-radio {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.add-form .wrap-radio label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 15px;
}

@media only screen and (max-width: 576px) {
    .add-form .wrap-radio label {
        margin-bottom: 5px;
    }
}

.add-form .wrap-radio label[for="queue"] {
    color: #999999;
}

.add-form .wrap-radio label[for="sale"] {
    color: #66bb6a;
}

.add-form .wrap-radio label[for="delivered"] {
    color: orange;
}

.add-form .wrap-radio label[for="sold"] {
    color: #f55754;
}

.add-form .wrap-platform {
    padding: 10px 0;
}

.add-form .wrap-platform p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.add-form .wrap-platform select {
    margin-right: 15px;
    background-color: #FFFFFF;
}

.add-form .wrap-platform select:last-child {
    margin-right: 0;
}

.add-form #link-product {
    margin-bottom: 15px;
}

.add-form button[type="submit"],
.add-form input[type="submit"] {
    padding: 10px 20px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.add-form button[type="submit"] svg,
.add-form input[type="submit"] svg {
    margin-right: 10px;
}

/*Страница редактирования товара*/
.page-edit .main-content {
    padding: 0 15px;
}

/*Страница входа (авторизации)*/
.page-login {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #EEEEEE;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.page-login .login-form-container {
    width: 100%;
    max-width: 320px;
}

.page-login h3 {
    font-weight: 700;
    text-align: center;
    color: #367fa9;
    margin-bottom: 15px;
}

.page-login #loginform {
    width: 100%;
    padding: 30px;
    margin-bottom: 10px;
    border: 1px solid #999999;
    background-color: #FFFFFF;
}

.page-login #loginform label {
    margin-bottom: 5px;
}

.page-login #loginform .login-username,
.page-login #loginform .login-password {
    position: relative;
}

.page-login #loginform .login-username:after,
.page-login #loginform .login-password:after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23999999' d='M272 304h-96C78.8 304 0 382.8 0 480c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32C448 382.8 369.2 304 272 304zM48.99 464C56.89 400.9 110.8 352 176 352h96c65.16 0 119.1 48.95 127 112H48.99zM224 256c70.69 0 128-57.31 128-128c0-70.69-57.31-128-128-128S96 57.31 96 128C96 198.7 153.3 256 224 256zM224 48c44.11 0 80 35.89 80 80c0 44.11-35.89 80-80 80S144 172.1 144 128C144 83.89 179.9 48 224 48z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.page-login #loginform .login-password:after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23999999' d='M144 192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H96V128C96 57.31 153.3 0 224 0C280.1 0 329.2 37.22 345.8 88.62C349.9 101.2 342.1 114.8 330.4 118.8C317.7 122.9 304.2 115.1 300.1 103.4C289.8 71.22 259.6 48 223.1 48C179.8 48 143.1 83.82 143.1 128L144 192zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V256C400 247.2 392.8 240 384 240H64C55.16 240 48 247.2 48 256V448z'/%3E%3C/svg%3E");
}

.page-login #loginform .login-remember label {
    font-size: 14px;
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-login #loginform .login-remember #rememberme {
    display: block;
    margin-top: 2px;
    margin-right: 8px;
}

.page-login #loginform .login-submit {
    margin-bottom: 0;
}

.page-login #loginform .login-submit #wp-submit {
    padding: 12px 30px;
}

.page-login .errno {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #f55754;
    padding: 5px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #f55754;
    background-color: #FFFFFF;
}

.page-login .errno a {
    color: #367fa9;
}

.page-login .errno a:hover {
    text-decoration: none;
}

.page-login .forgot-password {
    font-size: 14px;
    font-size: 0.875rem;
    color: #367fa9;
}

.page-login .forgot-password:hover {
    text-decoration: none;
}

/*Страница ошибка 404*/
.error-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    height: 100%;
}

.error-404 svg {
    margin-bottom: 30px;
}

.error-404 h1 {
    font-weight: 700;
    color: #f55754;
}

.error-404 p {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #999999;
    text-align: center;
}

/*Страница статистики*/
.page-statistics .title {
    color: #999999;
    margin-bottom: 15px;
}

.page-statistics .profit-month {
    border-radius: 10px;
    padding: 15px 30px;
    margin-bottom: 30px;
    border: 1px solid #999999;
    background-color: #FFFFFF;
}

.page-statistics .profit-month .month-title {
    font-size: 16px;
    font-size: 1rem;
    color: #999999;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #367fa9;
}

.page-statistics .profit-month .month-title span {
    border-radius: 10px;
    font-size: 10px;
    font-size: 0.625rem;
    color: #FFFFFF;
    font-weight: 500;
    padding: 2px 10px;
    margin-left: 15px;
    background-color: orange;
}

.page-statistics .profit-month ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-statistics .profit-month ul li {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 2px 0;
}

.page-statistics .profit-month ul li:last-child {
    font-weight: 600;
    margin-top: 15px;
    padding: 3px 0;
    border-top: 1px solid #999999;
}

.page-statistics .profit-month ul li:last-child span {
    color: #419345;
}

.page-statistics .profit-month ul li:last-child span.currency {
    font-size: 16px;
    font-size: 1rem;
    color: #999999;
    margin: 0;
}

.page-statistics .profit-month ul li span {
    font-weight: 500;
    margin-left: 10px;
    margin-right: 5px;
}

.page-statistics .wrap-products-sold {
    overflow: auto;
}

@media only screen and (max-width: 576px) {
    .page-statistics .wrap-products-sold {
        margin-bottom: 15px;
    }
}

.page-statistics .products-sold {
    font-size: 12px;
    font-size: 0.75rem;
    background-color: #FFFFFF;
}

.page-statistics .products-sold thead {
    color: #FFFFFF;
    background-color: #999999;
}

.page-statistics .products-sold thead tr th {
    text-align: center;
}

.page-statistics .products-sold thead tr th.number {
    width: 60px;
}

.page-statistics .products-sold thead tr th.miniature {
    width: 60px;
}

.page-statistics .products-sold thead tr th.date-start, .page-statistics .products-sold thead tr th.date-finish, .page-statistics .products-sold thead tr th.price, .page-statistics .products-sold thead tr th.price-sold, .page-statistics .products-sold thead tr th.price-post {
    width: 140px;
}

.page-statistics .products-sold thead tr th.price-profit {
    width: 100px;
}

.page-statistics .products-sold tbody tr td {
    text-align: center;
}

.page-statistics .products-sold tbody tr td:nth-child(3) {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: left;
    padding-left: 15px;
}

.page-statistics .products-sold tbody tr td:last-child {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #419345;
}

.page-statistics .products-sold tbody tr td:last-child span {
    color: #999999;
}

/*--------------------------------------------------------------
# Комментарии
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*Блоки с комментариями*/
.comment-area {
    margin-bottom: 40px;
}

.comment-area .comment-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
    .comment-area .comment-title {
        display: block;
    }
}

.comment-area .comment-title h3 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
}

.comment-area .comment-title a {
    font-size: 14px;
    font-size: 0.875rem;
    color: red;
    line-height: 35px;
    font-weight: normal;
    display: block;
    float: right;
    text-decoration: none;
}

@media only screen and (max-width: 576px) {
    .comment-area .comment-title a {
        float: left;
    }
}

.comment-area .comment-title a i {
    color: white;
    background: green;
    line-height: 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.comment-area .comment-title a:hover {
    text-decoration: underline;
}

.comment-area .commentlist {
    padding-left: 0;
}

.comment-area .commentlist li {
    list-style-type: none;
}

.comment-area .comment-box {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #999999;
    background: white;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .comment-area .comment-box {
        padding: 10px 10px 20px;
    }
}

.comment-area .comment-box figure {
    margin-right: 15px;
}

.comment-area .comment-box .comment-inner {
    width: 100%;
}

.comment-area .comment-box .comment-name {
    overflow: hidden;
    border-bottom: 1px solid #999999;
    margin-bottom: 10px;
}

.comment-area .comment-box .comment-name h3 {
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: normal;
    display: inline-block;
    margin-right: 10px;
}

.comment-area .comment-box .comment-name h3 a {
    font-size: 17px;
    font-size: 1.0625rem;
    color: red;
    display: inline-block;
    margin-right: 10px;
}

.comment-area .comment-box .comment-name .comment-info {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #999999;
    font-weight: normal;
    margin-bottom: 6px;
}

.comment-area .comment-box p {
    font-size: 16px;
    font-size: 1rem;
    color: #333333;
    font-weight: normal;
}

.comment-area .comment-box .comment-reply-link {
    font-size: 14px;
    font-size: 0.875rem;
    color: red;
    font-weight: normal;
    position: relative;
}

.comment-area .comment-box .comment-reply-link svg {
    fill: blue;
}

.comment-area .comment-box .comment-edit-link {
    font-size: 14px;
    font-size: 0.875rem;
    color: green;
    font-weight: normal;
}

@media only screen and (max-width: 576px) {
    .comment-area .children {
        padding-left: 20px;
    }
}

.comment-area .children .comment-box:before {
    display: none;
}

.comment-area .replay-comment {
    margin-left: 50px;
}

@media only screen and (max-width: 576px) {
    .comment-area .replay-comment {
        margin-left: 25px;
    }
}

.comment-area .replay-comment:before {
    display: none;
}

.comment-area .comment-navigation {
    margin: 0 0 1.45em;
}

.comment-area .comment-navigation h2 {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: normal;
}

@media (max-width: 576px) {
    .comment-area .comment-navigation h2 {
        text-align: center;
    }
}

.comment-area .comment-navigation .nav-links {
    overflow: hidden;
}

.comment-area .comment-navigation .nav-links .nav-previous a,
.comment-area .comment-navigation .nav-links .nav-next a {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 1em;
    border: 1px solid #999999;
}

.comment-area .comment-navigation .nav-links .nav-previous a:hover,
.comment-area .comment-navigation .nav-links .nav-next a:hover {
    text-decoration: none;
}

.comment-area .comment-navigation .nav-links .nav-previous {
    float: left;
}

.comment-area .comment-navigation .nav-links .nav-next {
    float: right;
}

/*Форма комментариев*/
.comment-respond .comment-title {
    margin-bottom: 5px;
}

.comment-respond .comment-title h3 {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: normal;
    width: 100%;
    margin-bottom: 0;
}

.comment-respond .comment-notes {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 14px;
}

.default-form {
    margin-bottom: 60px;
}

.default-form input:not([type="checkbox"]) {
    width: 100%;
    margin-bottom: 15px;
}

.default-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.default-form button[type="submit"] {
    margin: 0;
    width: auto;
}

/*Отступы для ответов на комментарии*/
.comment-area .margin-left {
    margin-left: 30px;
}

/*--------------------------------------------------------------
# Подвал
--------------------------------------------------------------*/
/*Прелоадер*/
.preloader {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(51, 51, 51, 0.8);
    z-index: 999;
}

.preloader .load {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 9;
}

.preloader .load hr {
    opacity: 1;
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    -webkit-animation: spin 2s ease infinite;
    animation: spin 2s ease infinite;
}

.preloader .load :first-child {
    background: #367fa9;
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
}

.preloader .load :nth-child(2) {
    background: #367fa9;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.preloader .load :nth-child(3) {
    background: #367fa9;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.preloader .load :last-child {
    background: #367fa9;
}

/*--------------------------------------------------------------
# Плагины
--------------------------------------------------------------*/
/*Стили ContactForm7*/
.wpcf7 {
    margin: 0 auto;
}

.wpcf7 .screen-reader-response {
    display: none;
}

.wpcf7 .wpcf7-form label {
    width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 5px;
}

.wpcf7 form .wpcf7-not-valid-tip {
    font-size: 12px;
    font-size: 0.75rem;
    display: inline-block;
}

.wpcf7 form .wpcf7-validation-errors {
    font-size: 12px;
    font-size: 0.75rem;
}

/*# sourceMappingURL=style.css.map */
