* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: 'Arial', serif;
    color: #333333;
    float: left;
    width: 100%;
    display: table;
}

/*Контейнер страницы*/
.wrapper {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    float: left;
}

.page-list .content {
    display: table-row;
    height: 100%;
    margin-bottom: 25px;
}

.container {
    float: left;
    width: 100%;
}

.child {
    width: 1000px;
    margin: 0 auto;
    display: table;
    position: relative;
}

/*********************** Блок с контентом ***************************/
.form-field .title {
    font-weight: bold;
    float: left;
}

.form-field {
    float: left;
    width: 100%;
    margin: 5px 0;
}

.block-content {
    width: inherit;
    height: auto;
    position: relative;
    display: table;
    border-radius: 3px;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.13);
    padding: 65px 25px 25px 25px;
}

.block-content .block-head {
    background: #808285;
    height: 40px;
    width: calc(100% + 2px);
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    position: absolute;
    left: -1px;
    top: 0;
}

.block-content .block-head h2 {
    color: white;
    font-family: 'Arial', serif;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    display: inline-block;
    height: 100%;
    padding: 0 30px;
    line-height: 44px;
}

.block-content .block-logo { /* Если нужно лого в углу */
    height: 100%;
    width: 120px;
    background: url(/image/logo-white.png) no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
}

/************* Ссылки *************/
.popup-link {
    color: #ec8086;
    text-decoration: underline;
    cursor: pointer;
}

/************* Кнопки *************/
.btn {
    font-family: 'Arial', serif;
    font-size: 15px;
    color: white;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    line-height: 17px;
    user-select: none;

    padding: 7px 0;
    width: 154px;
    height: 30px;
}

.btn.gray.active {
    background: #808285;
}

.btn.gray {
    background: #bbbbbb;
}

.btn.gray:not(.active):hover {
    background: #aaaaaa;
}

.btn.red {
    background: #c73a3a;
}

.btn.red:hover {
    background: #ec3535;
}

.btn.green {
    background: #7bb236;
}

.btn.green:hover {
    background: #8ac439;
}

.btn.medium-green {
    background: #36b2a1;
}

.btn.medium-green:hover {
    background: rgba(54, 178, 161, 0.74);
}

.btn.blue {
    background: #36a8ff;
}

.btn.blue:hover {
    background: #54b4ff;
}

.btn.orange {
    background: #ff9966;
}

.btn.orange:not(.active):hover {
    background: #ffa47b;
}

.btn.orange.active {
    background: #f67f45;
}

/************* Большая красная кнопка **************/
.red-button {
    font-size: 15px;
    color: #ffffff;
    background: #c73a3a;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    user-select: none;
}

.red-button:hover {
    background: #e33c3c;
}

.red-button:active {
    background: #f73f3f;
}

.red-button:disabled {
    background: #cccccc !important;
    color: #555555 !important;
}

/************* Звёзды рейтинга **************/
.review-info .rating-stars {
    float: right;
    height: 32px;
    position: relative;
}

.review-info .rating-stars .star {
    background: url(/image/review_stars.png) 0 0;
    width: 32px;
    height: 32px;
    float: left;
    cursor: pointer;
    position: absolute;
    right: 128px;
    top: 0;
}

.review-info .rating-stars .star > .star {
    position: absolute;
    left: 32px;
    top: 0;
}

.review-info .rating-stars .star.active {
    background: url(/image/review_stars.png) -32px 0;
}

.review-info .rating-stars:not(.disabled):hover .star {
    background: url(/image/review_stars.png) 0 0;
}

.review-info .rating-stars:not(.disabled) .star:hover {
    background: url(/image/review_stars.png) -32px 0;
}

/************* Элементы формы **************/
textarea {
    border: 1px solid #d1d4da;
    padding: 10px 15px;
    border-radius: 3px;
    display: block;
    width: 100%;
    font-size: 16px;
    resize: none;
    height: 85px;
    font-family: Arial, serif;
}

input[type=text], input[type=number] {
    border: 1px solid #d1d4da;
    padding: 10px;
    border-radius: 3px;
    display: block;
    font-size: 15px;
    color: #333333;
    resize: none;
    height: 40px;
}

label {
    user-select: none;
}

/************* Строка из таблицы(списка чего-либо) **************/
.list-line {
    height: 50px;
    background: #fafafa;
    border: 1px solid #f0eaea;
    margin-bottom: 10px;
    font-size: 0;
    display: block;
}

.list-line.active {
    background: #ececec;
}

.list-line.free {
    background: #ffd4d7;
}

.list-line.jammed {
    background: #f9ff8c;
}

.list-line.free.jammed {
    background: #f28181;
}

.list-line.blocked {
    background: #333333 !important;
}

.list-line:last-child {
    margin-bottom: 0;
}

.list-line > div,
.list-line > a {
    overflow: hidden;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 16px 20px;
    border-right: 1px solid #f0eaea;
    font-size: 14px;
    color: #777777;
}

.list-line > div .link {
    text-decoration: underline;
    cursor: pointer;
}

.list-line.thead > div { /* шапка таблицы */
    font-size: 16px;
    color: #333333;
    user-select: none;
}

.list-line > div:last-of-type {
    border: none;
}

.list-line > div:first-child .marker { /* Маркер с цветом */
    height: 100%;
    width: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.list-wrap {
    height: 300px;
    margin-bottom: 0;
    position: relative;
}

/*Сортировка сотбцов в таблицах*/
.sorting {
    background: url(/image/sorting-default.png);
    position: absolute;
    top: 15px;
    right: 10px;
    width: 11px;
    height: 22px;
    z-index: 90;
    transform: scale(1, -1);
}

.sorting.active {
    background: url(/image/sorting-active.png);
}

.sorting.inverse {
    transform: scale(1, 1);
}

/********** colors *************/

.orange {
    background: #ff9966;
}

.blue {
    background: #36a8ff;
}

.green {
    background: #7bb236;
}

.red {
    background: #fd2727;
}

.gold {
    background: #e3cd53;
}

/*Чекбокс*/
.check {
    display: inline-block;
    border: 1px solid #d1d4da;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    position: relative;
    background: #ffffff;
    z-index: 5;
    float: left;
}

.check > input {
    opacity: 0;
    height: inherit;
    width: inherit;
    margin: 0;
}

.check > input:checked + div {
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
}

.check > input:checked + div::before {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: -2px;
    width: 10px;
    height: 3px;
    background: #808285;
    transform: rotate(50deg);
}

.check > input:checked + div::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 3px;
    width: 15px;
    height: 3px;
    background: #808285;
    transform: rotate(-50deg);
}

/*Зелёная галочка*/
.check-arrow {
    width: 24px;
    height: 23px;
    display: block;
    float: left;
}

.check-arrow.active {
    background: url(/image/check_arrow.png);
}

/*************** Список в описании чего-либо ****************/
ul.desc {
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    display: inline-block;
}

ul.desc > li {
    margin-bottom: 10px;
    display: table;
}

ul.desc > li > * {
    display: inline-block;
    margin: 0;
}

ul.desc > li > h2 {
    font-size: 15px;
    font-family: 'Arial', serif;
    font-weight: normal;
    margin-right: 10px;
    color: #333333;
}

ul.desc > li > p, ul.desc > li > a {
    font-size: 14px;
    font-family: 'Arial', serif;
    font-weight: normal;
    color: #777777;
}

ul.desc > li p.warning {
    font: 16px Arial, serif;
    color: #f73f3f;
    padding: 2px 5px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

ul.desc > li > .li-italic {
    color: #777777;
    font-size: 14px;
    width: 450px;
    display: table;
    padding: 5px;
    font-style: italic;
}

/****************************/
.line-status {
    border-radius: 3px;
    color: white;
    padding: 7px 25px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.btn-wrap {
    margin-bottom: 25px;
}

.btn-wrap .btn {
    margin: 0 11px 0 0;
    font: 14px Arial;
}

.btn-wrap .btn:last-child {
    margin: 0;
}

.customer-order-menu .btn {
    float: left;
    margin-right: 8px;
    width: 136px;
}

.customer-order-menu .btn:last-child {
    margin-right: 0;
}

/*********************** Постраничная навигация ***************************/
.paging {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}

.paging .items-info {
    text-align: center;
    display: table;
    margin-bottom: 10px;
}

.paging .button-wrap {
    margin: 0 auto;
    height: 40px;
    display: table;
    background: #fafafa;
    border-top: 1px solid rgba(195, 167, 167, 0.19);
    border-left: 1px solid rgba(195, 167, 167, 0.19);
}

.paging .button {
    position: relative;
    width: 40px;
    height: 40px;
    float: left;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: #777777;
    border-right: 1px solid rgba(195, 167, 167, 0.19);
    border-bottom: 1px solid rgba(195, 167, 167, 0.19);
}

.paging .button:hover {
    background: #dddddd;
}

.paging .button.active {
    background: #aaaaaa;
    color: #ffffff;
    cursor: default;
}

.paging .button.to-next .arrow,
.paging .button.to-last .arrow {
    background: url(/image/back_arrow.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.paging .button.to-next .arrow {
    transform: rotate(180deg);
}

.paging .button.to-first .one-arrow,
.paging .button.to-finish .one-arrow {
    background: url(/image/back_arrow.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    left: 8px;
}

.paging .button.to-first .two-arrow,
.paging .button.to-finish .two-arrow {
    background: url(/image/back_arrow.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    left: 14px;
}

.paging .button.to-finish .one-arrow {
    transform: rotate(180deg);
}

.paging .button.to-finish .two-arrow {
    transform: rotate(180deg);
}

/*********************** Селектбоксы ***************************/
.select {
    background: #ffffff;
    float: left;
    border: 1px solid #cccccc;
    border-radius: 3px;
    cursor: default;
    position: relative;
    user-select: none;
}

.select.opened {
    background: #ffffff;
    float: left;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select .value {
    position: relative;
    overflow: hidden;
}

.select .value:before {
    border: 8px solid transparent;
    border-top-color: #cccccc;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -2px;
    content: "";
}

.find-sl.select.opened .value div {
    display: none;
}

.find-sl.select .value .variant-begin-text {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    width: 100%;
}

.find-sl.select:not(.opened) .value .variant-begin-text {
    display: none;
}

.select .variants {
    display: block;
    float: left;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 0 0 0 -1px;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    z-index: 100;
}

.select:not(.opened) .variants {
    display: none;
}

.select.opened .variants {
    display: block;
}

.select .variants .variant {
    overflow: hidden;
    width: 100%;
}

.select .variants:not(:hover) .variant.active {
    background: #dddddd;
}

.select .variants .variant:hover {
    background: #dddddd;
}

.select .variants::-webkit-scrollbar {
    width: 10px;
    border-left: 1px solid #cccccc;
}

.select .variants::-webkit-scrollbar-thumb {
    background: #bdc0c6;
    border-radius: 2px;
}

.select .variants::-webkit-scrollbar-thumb:active {
    background: #c73a3a;
}

/*********************** Всплывающие окна ***************************/
.popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
    overflow-y: scroll;
    top: 0;
    left: 0;
}

.popup > .child {
    border-radius: 5px;
    background: #f5f5f5;
    padding: 20px;
    margin: 40px auto;
}

.popup .title {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 28px;
}

.popup .text {
    line-height: 35px;
}

.popup > .child > .close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.popup > .child > .close:after {
    width: 20px;
    height: 2px;
    background: #aaaaaa;
    content: "";
    position: absolute;
    transform: rotate(45deg);
    top: 9px;
    left: 0;
}

.popup > .child > .close:before {
    width: 20px;
    height: 2px;
    background: #aaaaaa;
    content: "";
    position: absolute;
    transform: rotate(-45deg);
    top: 9px;
    left: 0;
}

/*********************** Оповещение об использовании куки ***************************/
.confirm-cookies {
    position: fixed;
    width: 100%;
    background: rgba(50, 50, 50, 0.8);
    float: left;
    z-index: 110;
    bottom: 0;
    right: 0;
    color: #ffffff;
    display: none;
}

.confirm-cookies .child {
    padding: 20px;
}

.confirm-cookies .left-part {
    float: left;
    width: 700px;
}

.confirm-cookies .right-part {
    float: right;
}

.confirm-cookies .title {
    width: 700px;
    float: left;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
}

.confirm-cookies .text {
    width: 700px;
    float: left;
    text-align: justify;
}

.confirm-cookies .red-button {
    width: 120px;
    height: 40px;
    float: right;
    margin: 28px 0 0 0;
}

.confirm-cookies a {
    color: #ffffff;
}

/*********************** Меню в кабинете админа, менеджера и специалиста ***************************/

.menu-block {
    background: #9fa1a6;
    margin: 25px 0;
    border-radius: 3px;
}

.menu-item {
    float: left;
    height: 40px;
    padding: 11px 10px;
    width: 160px;
    text-align: center;
    cursor: default;
    position: relative;
    text-decoration: none;
    color: #ffffff;
}

.menu-item .title {
    display: table;
    margin: 0 auto;
}

.menu-item .arrow {
    border: 6px solid transparent;
    border-top-color: #ffffff;
    float: left;
    margin: 6px 10px 0 0;
}

.menu-item.active .arrow {
    border-top-color: #333333;
}

.menu-item .text {
    float: left;
}

.menu-item:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

a.menu-item:hover {
    background: #bbbbbb;
    border-bottom-left-radius: 0;
}

.menu-links {
    position: absolute;
    top: 37px;
    left: 0;
    z-index: 200;
    display: none;
    background: #9fa1a6;
    border-top: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    overflow: hidden;
    border-top: 3px solid #9fa1a6;
    border-bottom: 1px solid #cccccc;
}

.menu-item:hover .menu-links {
    display: block;
}

.menu-item .menu-item:hover {
    background: #bbbbbb;
}

.menu-item.active {
    color: #333333;
}

/*********************** Оповещение в кабинете о скидке ***************************/
.social-action-alert {
    width: 700px;
    height: 273px;
    top: 50%;
    left: 50%;
    margin: -153px 0 0 -350px;
    border-radius: 5px;
    position: fixed;
    z-index: 110;
    padding: 25px 0 25px 0;
    background: #ffffff;
    border: 2px solid #e36c6c;
    box-shadow: 0 3px 10px 1px #777777;
    display: none;
}

.social-action-alert .more-info {
    padding: 0 25px 25px 25px
}

.social-action-alert h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 10px;
}

.social-action-alert p {
    margin: 0;
}

.social-action-alert .action {
    width: 100%;
    padding: 8px 40px;
    height: 80px;
    background: #e36c6c;
    font-size: 28px;
    font-weight: bold;
    float: left;
}

.social-action-alert .action .text {
    color: #ffffff;
    float: left;
    width: 350px
}

.social-action-alert .social {
    width: 220px;
    height: 40px;
    float: right;
    margin: 12px 0 0 0;
}

.social-action-alert .social .vk,
.social-action-alert .social .ok,
.social-action-alert .social .fb {
    width: 40px;
    height: 40px;
    float: right;
    margin: 0 0 0 20px;
    border-radius: 50%;
    cursor: pointer;
}

.social-action-alert .social .vk {
    background: url(/image/social_vk.png) no-repeat;
}

.social-action-alert .social .ok {
    background: url(/image/social_ok.png) no-repeat;
}

.social-action-alert .social .fb {
    background: url(/image/social_fb.png) no-repeat;
}

.social-action-alert .social .fb {
    background: url(/image/social_fb.png) no-repeat;
}

.social-action-alert .close-action-alert {
    margin: 25px auto;
    display: block;
    width: 200px;
    height: 40px;
}

/*Текстовый блок с возможностью редактирования*/
.editing-block .text {
    line-height: 25px;
    color: #777777;
    min-height: 40px;
    width: 950px;
    overflow: hidden;
}

.editing-block .editor .btn {
    float: right;
    margin-top: 25px;
}

.editing-block .editor {
    display: none;
    float: left;
    width: 100%;
    position: relative;
}

.editing-block.editing .text {
    display: none;
}

.editing-block.editing .editor {
    display: block;
}

.confidentiality .btn-wrap,
.privacy-policy .btn-wrap,
.terms-of-use .btn-wrap {
    text-align: center;
}

/* Политика обработки персональных данных */
.confidentiality .child, .terms-of-use .child {
    background: #ffffff;
}

.confidentiality .list:first-child, .terms-of-use .list:first-child {
    margin-top: 50px;
}

.confidentiality .signature div, .terms-of-use .signature div {
    float: right;
    width: 250px;
}

.confidentiality .city, .terms-of-use .city {
    text-align: center;
}

.confidentiality .date, .terms-of-use .date {
    text-align: center;
}

.confidentiality h2, .terms-of-use h2 {
    text-align: center;
}

.confidentiality h4, .terms-of-use h4 {
    text-align: center;
    margin: 10px 0;
}

.confidentiality p, .terms-of-use p {
    margin: 10px 0;
    text-indent: 40px;
}

.terms-of-use h4.contacts-info > img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.terms-of-use ul {
    padding-left: 75px;
}

.contacts-title {
    font-size: 18px;
    margin-bottom: 5px;
}

div[class^="contact-"] {
    margin-bottom: 23px;
}

.popup.contacts > .child {
    min-height: 500px;
}

.contacts-wrap {
    padding: 30px 60px;
}

.contacts .logo {
    background-image: url(/image/logo.png);
    width: 169px;
    height: 60px;
    margin: 0 auto;
}

/*Всплывающее уведомление*/
.helper-alert.hpa-back {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 500;
}

.helper-alert .hpa-popup {
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s all;
}

.helper-alert .hpa-close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 8px;
    top: 8px;
    cursor: pointer;
}

.helper-alert .hpa-title {
    float: left;
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
}

.helper-alert .hpa-close:after {
    background: #ffffff;
    width: 20px;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    transform: rotate(-45deg);
    transition: 0.1s;
}

.helper-alert .hpa-close:before {
    background: #ffffff;
    width: 20px;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    transform: rotate(45deg);
    transition: 0.1s;
}

.helper-alert .hpa-close:hover:after {
    width: 25px;
    left: -2px;
    transition: 0.1s;
}

.helper-alert .hpa-close:hover:before {
    width: 25px;
    left: -2px;
    transition: 0.1s;
}

.helper-alert .hpa-message-wrap {
    float: left;
    width: 100%;
    height: 70px;
    display: table;
    margin-top: 5px;
}

.helper-alert .hpa-message {
    font-size: 15px;
    color: #555555;
    width: 100%;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}

.helper-alert .hpa-btn-wrap {
    text-align: center;
}

.helper-alert .hpa-ok-btn {
    width: auto;
    display: inline-block;
    padding: 5px 25px;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: .3s opacity;
}

.helper-alert.red .hpa-title {
    background: #e36c6c;
}

.helper-alert.red .hpa-ok-btn {
    background: #c73a3a;
}

.helper-alert.red .hpa-ok-btn:hover {
    background: #ee4444;
}

.helper-alert.blue .hpa-title {
    background: #64b8db;
}

.helper-alert.blue .hpa-ok-btn {
    background: #64b8db;
}

.helper-alert.blue .hpa-ok-btn:hover {
    background: #68d3f7;
}

.helper-alert.red .hpa-close:after,
.helper-alert.red .hpa-close:before,
.helper-alert.blue .hpa-close:after,
.helper-alert.blue .hpa-close:before {
    background: #ffffff;
}

.helper-alert.gray .hpa-ok-btn {
    background: #e6e6e6;
}

.helper-alert.gray .hpa-ok-btn:hover {
    background: #a2a2a2;
}

.helper-alert.gray .hpa-close:after, .helper-alert.gray .hpa-close:before {
    background: #a2a2a2;
}

/*****************Кнопка возврата к списку заказов********************/
#status {
    position: relative;
}

.return-to-order-list {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 100%;
    width: auto;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0 15px;
    line-height: 30px;
    background: rgba(128, 130, 133, 0.45);
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    border-left: 3px solid white;
}

.return-to-order-list:hover {
    /*color: #b7521f;*/
    background: rgba(128, 130, 133, 0);
}

/*невалидное поле*/
.field-error {
    background: rgba(227, 108, 108, 0.2);
}

/*tabs*/
.tabs > a {
    display: inline-block;
    color: #6c6d71;
    width: 142px;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    border-right: 1px solid white;
    font-size: 15px;
    transition: all .3s;
    text-decoration: none;
}

.tabs > a.active {
    background: #9fa1a6;
    color: white;
}

.tabs > a:hover {
    background: #9fa1a6;
    color: white;
}

.tabs > a:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.tabs {
    background: #e0e0e0;
    font-size: 0;
    margin-bottom: 25px;
    border-radius: 3px;
}

/******************Пустой список********************/
.list-wrap.clear-list::before {
    content: 'Список пуст';
    display: block;
    text-align: center;
    padding-top: 135px;
    font-size: 25px;
    color: rgba(159, 161, 166, 0.31);
    padding-bottom: 135px;
    border-bottom: 1px solid rgba(159, 161, 166, 0.22);
}

/******************Прелоадер для ajax запросов********************/
.circle-preload {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -20px;
    z-index: 999;

    /* Отображение, если долгая загрузка */
    opacity: 0;
    animation-name: circle-preload-block;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes circle-preload-block {
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.circle-preload .circle-preload-lines div {
    float: left;
    background: #808285;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px #ffffff;
}

.circle-preload .circle-preload-lines div:before {
    background: #c73a3a;
    width: 40px;
    height: 40px;
    left: 0;
    content: "";
    position: absolute;
    animation-name: circle-preload-animate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes circle-preload-animate {
    0% {
        top: -40px;
    }
    25% {
        top: 0;
    }
    50% {
        top: 40px;
    }
    75% {
        top: 0;
    }
    100% {
        top: -40px;
    }
}

.circle-preload-text {
    position: absolute;
    top: 44px;
    left: -60px;
    color: #6f6f6f;
    font-size: 12px;
    background: #ececec;
    padding: 5px;
    border-radius: 3px;
    width: 160px;
    text-align: center;
}

.hide {
    display: none !important;
}

.toggle {
    height: 15px;
    width: 30px;
    background: rgba(199, 58, 58, 0.24);
    position: relative;
    border-radius: 10px;
    margin-left: calc(50% - 15px)
}

.toggle > div {
    background: #c73a3a;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    position: absolute;
    left: -10px;
    top: -3px
}

.toggle.active {
    background: rgba(123, 178, 54, 0.49)
}

.toggle.active > div {
    left: initial;
    right: -10px;
    background: #7bb236
}