html {
    height: auto !important;
    height: 100%;
    min-height: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    text-align: inherit;
    line-height: inherit;
}
body, div, table, td, form {
    padding: 0;
    margin: 0;
    border: none;
}

a {
    color: #3B507D;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: underline;
}
a:hover {
    color: #1A1A1A;
    text-decoration: none;
} /*
 */
.a-block {
    display: block;
    text-decoration: none;
}
h1, h2, h3, h4, h5 {
    margin: 0 0 0.5em 0;
    line-height: 120%;
    color: #000000;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 20px;
}
p {
    margin: 0 0 1em 0;
}
p:last-child {
    margin-bottom: 0;
}
img {
    border: none;
    max-width: 100%;
    height: auto;
    display: block;
}
img[data-src], div[data-bg] {
    opacity: 0;
    transition: opacity 0.3s ease;
}
img[data-src].lazy-loaded, div[data-bg].lazy-loaded {
    opacity: 1;
}
.img-hold {
    position: relative;
    display: block;
    padding: 50% 0;
    margin: 0;
    width: 100%;
}
.img-cover, .img-contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
}
.img-cover {
    object-fit: cover;
}
.img-contain {
    object-fit: contain;
}
.no--photo {
    display: block;
    padding: 50% 0;
    background-color: #E9EBEF;
}
svg {
    transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    display: inline-block;
    margin: auto;
}
.icon {
    position: relative;
}
.icon svg {
    left: 50%;
    top: 50%;
    position: absolute;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    font-size: 0;
    visibility: hidden;
}

/* Системное сообщение */
.ws-sys__massage {
    transition: all 0.5s ease-out;
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
}
.ws-sys__massage.is--opened {
    max-height: none;
    margin-bottom: 32px;
}
.ws-sys__massage.is--outside {
    position: fixed;
    left: 20px;
    top: -100px;
    max-width: 400px;
    z-index: 4500;
}
.ws-sys__massage.is--outside.is--opened{
    top:20px;
}
.ws-sys__massage-text{
    border-radius: 4px;
    padding: 10px;
    font-weight: 700;
}
.msg--error{
    background-color:#FFE5E5;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.msg--success{
    background-color:#D9FEDF;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Menu */
.reset-list {
    margin: 0;
    padding: 0;
    position: relative;
}
.reset-list > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*  */
.ws-toggled__close {
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    text-indent: -300px;
    transform: rotate(45deg);
}
.ws-toggled__close::after, .ws-toggled__close::before {
    position: absolute;
    background-color: #000;
    overflow: hidden;
    font-size: 1px;
    display: block;
    content: "";
}
.ws-toggled__close::after {
    top: 20%;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    height: 60%;
}
.ws-toggled__close::before {
    left: 20%;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    width: 60%;
}
.toggled-layout {
    background: rgba(0, 0, 0, 0.75);
    z-index: 90;
    cursor: pointer;
}
b { font-weight: 700; }

.ws-layout {
    background: #1F22294D;
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease-out;
    cursor: pointer;
}
.ws-layout.is--opened {
    opacity: 1;
}

.ws-waiting {
    position: relative;
}
.ws-waiter {
    position: absolute;
    top: 50%;
    left: 50%;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: row; align-items: center;
    z-index: 1001;
}
.ws-waiting .ws-waiter {
    margin-top: -16px;
    margin-left: -25px;
    height: 32px;
    width: 50px;
}
.ws-waiter i {
    margin: 0 1px;
    display: block;
    animation: ws-wave-delay 1.2s infinite ease-in-out;
    animation-delay: 0s;
}
.ws-waiting .ws-waiter i {
    width: 4px;
    height: 32px;
    background-color: #91312C !important;
}
.ws-waiter i:nth-child(1) { animation-delay: -1.2s; }
.ws-waiter i:nth-child(2) { animation-delay: -1.1s; }
.ws-waiter i:nth-child(3) { animation-delay: -1.0s; }
.ws-waiter i:nth-child(4) { animation-delay: -0.9s; }
.ws-waiter i:nth-child(5) { animation-delay: -0.8s; }

@-webkit-keyframes ws-wave-delay {
    0%, 40%, 100% { transform: scaleY(0.4);}
    20% { transform: scaleY(1);}
}
@keyframes ws-wave-delay {
    0%, 40%, 100% {transform: scaleY(0.4);}
    20% {transform: scaleY(1);}
}
.ws-waiting::before {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    cursor: wait; /*border: 1px solid #4B6856;*/
    display: block;
    content: "";
}

.page-wrapper {
    overflow: hidden;
    width: 100%;
}
.content-in {
    max-width: 1340px;
    width: 100%;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.block--wide {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
}
.block--wide-bg {
    position: relative;
}
.block--wide-bg::before {
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -50vw;
    z-index: 1;
    position: absolute;
    width: 100vw;
}
.block--wide-bg > div {
    position: relative;
    z-index: 2;
}
blockquote {
    margin: 0 0 1em 40px;
    background-color: #E9EBEF;
    padding: 25px 40px;
    font-style: italic;
    font-size: 24px;
    font-family: "Times New Roman", serif;
    line-height: 120%;
    position: relative;
    display: block;
}
blockquote::before, blockquote::after {
    position: absolute;
    color: #948A7F;
    font-size: 32px;
    display: block;
}
blockquote::before {
    left: 15px;
    top: 25px;
    content: "«";
}
blockquote::after {
    right: 15px;
    bottom: 25px;
    content: "»";
}

main table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 25px;
}
main table td, main table th {
    padding: 8px 15px;
    border: 1px solid #BCC1CD;
    font-weight: 500;
}
main table thead tr {
    background-color: #3B507D;
    font-weight: bold;
}
main table tbody tr {
    background-color: #BCC1CD;
}
main table tbody tr:nth-child(2n-1){
    background-color: #f8f8f8;
}

.b-block {
    margin-bottom: 80px;
}

.c-block {
    margin-bottom: 140px;
}
.b-block__head {
    margin-bottom: 20px;
}

main .b-block__title {
    font-size: 36px;
    line-height: 1.2em;
    font-family: "Times New Roman", serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.b-block__head .b-block__title {
    float: left;
}
.b-block__head .b-block__more {
    float: left;
    margin-left: 20px;
}
.b-block__head .b-block__more a {
    border-left: 1px solid #BCC1CD;
    padding: 0 0 0 20px;
    line-height: 41px;
    white-space: nowrap;
    display: block;
    text-decoration: none;
}
main .b-block__text {
    max-width: 640px;
    margin-bottom: 40px;
    clear: both;
}
.b-block__image img {
    width: 100%;
    height: auto;
}

.ws-modal__window.fancybox-content {
    max-width: 506px;
}

.ws-pwd {
    position: relative;
    padding-right: 50px;
}
.ws-pwd .input-text {
    border-radius: 3px 0 0 3px;
}
.ws-pwd .ws-pwd__btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    border: 1px solid #BCC1CD;
    border-left: none;
    background-color: transparent;
    display: block;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    padding: 0;
}
.ws-pwd .ws-pwd__btn svg {
    width: 28px;
    height: 28px;
    fill: #AAAAAA;
    stroke: #AAAAAA;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -14px;
}
.ws-pwd .ws-pwd__btn svg:nth-child(2) {
    display: none;
}
.ws-pwd.is--hidden .ws-pwd__btn svg:nth-child(1) {
    display: none;
}
.ws-pwd.is--hidden .ws-pwd__btn svg:nth-child(2) {
    display: block;
    fill: #BCC1CD;
    stroke: #BCC1CD;
}

.ws-user__title {
    font-size: 36px;
    line-height: 1.2em;
    font-family: "Times New Roman", serif;
    margin-bottom: 20px;
}
.ws-user-auth {
    max-width: 400px;
}
.ws-user-auth .header-logo {
    max-width: 190px;
    margin: 0 auto 25px auto;
}
.ws-user-login__link, .ws-user-login__link li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ws-user-login__link li {
    color: #3B507D;
    margin-bottom: 10px;
}
.ws-user-login__form {
    margin-bottom: 32px;
}
.ws-user-login__link li span {
    border-bottom: 1px solid #3B507D;
    display: inline-block;
    cursor: pointer;
}

.ws-box {
    position: relative;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.ws-box__head {
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
}
.ws-box__body {
    padding: 15px 20px 20px 20px;
}

input, button, textarea, select, option {
    outline: none;
}
.input-text {
    width: 100%;
    color: #372715;
    border: 1px solid #BCC1CD;
    background-color: transparent;
    display: block;
    border-radius: 3px;
}
input[type="password"] {
    -webkit-text-security: disc;
    font: large Verdana,sans-serif;
    letter-spacing: 1px;
}
input.input-text, span.input-text {
    line-height: 50px;
    height: 50px;
    padding: 0 10px;
}
textarea.input-text {
    padding: 20px 10px;
    resize: none;
}

.btn {
    padding: 0 30px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    line-height: 42px;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid transparent;
    background-color: transparent;
}
.btn:hover {
    text-decoration: none;
}
.btn--disabled {
    color: #485b6f;
    background-color: #e3e6e7;
    border-color: #c1c4c4;
}
.btn--default:hover {
    color: #485b6f !important;
    background-color: #d5dadb !important;
    border-color: #b4b8b8 !important;
}
.btn--info {
    color: #fff;
    background-color: #23b7e5;
    border-color: #1e9cc3;
}
.btn--info:hover {
    color: #fff !important;
    background-color: #19a9d5 !important;
    border-color: #1b8aad !important;
}
.btn--success {
    color: #fff;
    background-color: #2ecc71;
    border-color: #27ad60;
}
.btn--success:hover {
    color: #fff !important;
    background-color: #29b765 !important;
    border-color: #229854 !important;
}
.btn--warning {
    color: #fff;
    background-color: #f39c12;
    border-color: #f39c12;
}
.btn--warning:hover {
    color: #fff !important;
    background-color: #f39c12;
    border-color: #f39c12;
}
.btn--danger {
    color: #fff;
    background-color: #e74c3c;
    border-color: #cc0000;
}
.btn--danger:hover {
    color: #fff !important;
    background-color: #cc0000;
    border-color: #cc0000;
}

.i-btn {
    position: relative;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    display: block;
}
.i-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
}

.tabs-buttons {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin-bottom: 30px;
    cursor: pointer;
    border-bottom: 1px solid #BCC1CD;
}
.tabs-button {
    font-size: 16px;
    font-family: "LT Remark", "Times New Roman", cursive;
    text-transform: uppercase;
    margin-left: 40px;
    margin-bottom: -1px;
    padding-bottom: 10px;
}
.tabs-button:first-child {
    margin-left: 0;
}
.tabs-button.btn-active {
    border-bottom: 3px solid #3B507D;
    padding-bottom: 8px;
}

.tabs-contents {
    position: relative;
}
.tabs-content .ws-brix__title {
    display: none;
}
.tabs-content .ws-brix__content {
    max-height: none;
    opacity: 1;
}

.tabs-arrow {
    position: absolute;
    top: 0;
    height: 100%;
    width: 60px;
    cursor: pointer;
    z-index: 2;
    display: none;
}
.tabs-arrow svg {
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    width: 42px;
    height: 68px;
    margin-left: -21px;
    margin-top: -34px;
    transition: all 0.3s ease-out;
    fill: #FFF;
    opacity: 0.7;
}
.tabs-arrow--left {
    left: 0;
}
.tabs-arrow--right {
    right: 0;
}
.tabs-arrow--right svg {
    transform: rotate(180deg);
}
.tabs-content { display: none; }
.tabs-content.tab-active { display: block; }

.ws-brix {
    border-top: 1px solid #948A7F4D;
}
.ws-brix__item {
    border-bottom: 1px solid #948A7F4D;
    padding: 20px 0;
}
.ws-brix__title {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-family: "Tenor Sans", serif;
}

.ws-brix__title span {
    display: block;
    margin-right: 70px;
}
.ws-brix__title .ws-brix__close {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
}
.ws-brix__title .ws-brix__close .i-cross {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    position: absolute;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.ws-brix__title:hover .ws-brix__close .i-cross {
    background-color: #3B507D;
}
.is--opened > .ws-brix__title .ws-brix__close .i-cross {
    transform: rotate(45deg);
}
.ws-brix__title:hover .ws-brix__close .i-cross::before,
.ws-brix__title:hover .ws-brix__close .i-cross::after { background-color: #fff;}

.ws-brix__title .ws-brix__close .i-cross::before {
    top: 25%;
    height: 50%;
}
.ws-brix__title .ws-brix__close .i-cross::after {
    left: 25%;
    width: 50%;
}
.ws-brix__content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height ease-in-out .3s,opacity ease-in-out .3s;
}
.is--opened > .ws-brix__content {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
}

.block-crumbs {
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 1.2em;
    overflow: hidden;
    white-space: nowrap;
}
.block-crumbs ul, .block-crumbs li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.block-crumbs li {
    display: inline-block;
    margin-right: 10px;
    text-overflow: ellipsis;
}
.block-crumbs svg {
    width: 5px;
    height: 10px;
    fill: none;
    stroke: #aaa;
}
.block-crumbs a {
    text-decoration: none;
    color: #aaa;
}
.block-crumbs .is--last {
    color: #1a1a1a;
}

/* Форма */
.ws-form {
}
.ws-form-error {
    color: #EC0000;
    margin-bottom: 10px;
}
.ws-form__header {
    max-width: 320px;
    margin: auto;
    text-align: center;
}
.ws-form .header-logo {
    max-width: 190px;
    margin: auto;
}
.ws-form.has--image {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: left;
    align-content: stretch;
}
.ws-form__image {
    background-position: 50% 50%;
    background-size: auto 101%;
    background-repeat: no-repeat;
}
.ws-form__title {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.2em;
    display: none;
}
.ws-form__phone {
    font-weight: 500;
    margin-bottom: 1.2em;
    color: #3B507D;
    text-decoration: none;
    display: block;
}
.ws-form__text {
    margin-bottom: 1.2em;
}
.ws-form__fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    align-content: stretch;
}
.ws-form__field {
    margin-bottom: 17px;
    position: relative;
    width: 100%;
}
.ws-form__label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 10px;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    line-height: 16px;
}
.form__field--empty > .ws-form__label {
    line-height: 50px;
    font-size: 16px;
}
.form__field--empty .input-text {}
.form__field--focused .input-text {
    border: 1px solid #005EFF;
}
.form__field--focused > .ws-form__label {
    font-size: 12px;
    line-height: 16px;
}
.form__field--error .input-text {
    border: 1px solid #EC0000;
    color: #EC0000;
}
.ws-form__input--radio label {
    margin-right: 20px;
}
.ws-form__submit {
}
.ws-form__submit .input-field {
    margin-right: 10px;
}
.ws-form__submit .input-conf {
    font-size: 16px;
}
.form__field--error .ws-form__error {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #EC0000;
    z-index: 10;
    border-radius: 3px;
    padding: 0 4px;
    font-size: 12px;
    color: #fff;
    line-height: 16px;
}
.ws-form__check {
    font-size: 14px;
    padding-left: 0;
    position: relative;
    margin-bottom: 12px;
}
.ws-form__check svg {
    left: 0;
    top: 5px;
    width: 15px;
    height: 12px;
    position: absolute;
    fill: #372715;
    stroke: #372715;
}
.form__input--check input {
    float: left;
}
.form__input--check label {
    margin-left: 25px;
    display: block;
}
.ws-form__submit {
    width: 100%;
}
.ws-form__submit .btn {
    display: block;
    width: 100%;
}
.ws-form__success {
    padding: 80px 0;
    text-align: center;
    line-height: 120%;
}
.ws-form__success-image {
    margin: 0 0 40px 0;
}
.ws-form__success-image img {
    margin: auto;
}
.ws-form__success-title {
    font-size: 24px;
    line-height: 120%;
    margin: 0 0 0.5em 0;
    font-weight: 600;
}
.ws-form__success-text {
    margin: 0 0 0.5em 0;
}
.ws-form__success-result {
    margin: 0 0 2em 0;
    font-weight: 600;
}
.ws-form__object {
    border: 1px solid #BCC1CD;
    margin-bottom: 17px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 10px;
}
.ws-form__object-image {
    width: 140px;
    margin-right: 16px;
}
.ws-form__object-name {
    margin-bottom: 6px;
    font-weight: 500;
}
.ws-form__object-code {
    font-size: 12px;
    color: #5D5D5D;
    margin-bottom: 6px;
}
.ws-form__object-price {
    margin-bottom: 15px;
    line-height: 20px;
}
.ws-form__object-price > span {
    display: inline-block;
    margin-right: 10px;
}
.ws-form__object-price .price-value {
    font-size: 16px;
    font-weight: 500;
}
.ws-form__object-price .price-old {
    color: #7D7F84;
    font-size: 12px;
    text-decoration: line-through;
}
.ws-form__object-price .price-discount {
    background-color: #A60800;
    color: #fff;
    font-weight: 500;
    padding: 0 6px;
    font-size: 12px;
}

.ws-uploads {
    margin-bottom: 34px;
}
.ws-uploads__upload {
    position: relative;
    overflow: hidden;
    margin-bottom: 17px;
}
.ws-uploads__input {
    float: left;
}
.ws-uploads__input.input-text {
    width: 66%;
}
.ws-uploads__btn {
    float: right;
    width: 34%;
}
.ws-uploads__btn.btn {
    padding: 0;
}
.ws-uploads__upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    text-indent: -800px;
}
.ws-uploads__list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: auto;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.ws-uploads__item {
    margin: 0 0.57% 0 0;
    padding: 5px;
    list-style: none;
    background-color: #F1EBDD;
    width: 12%;
}
.ws-uploads__item img {
    width: 100%;
    height: 40px;
    object-fit: cover;
    display: block;
    margin-top: 12px;
}
.ws-uploads__item .i-cross {
    width: 9px;
    height: 9px;
    float: right;
}
.ws-uploads__item .i-cross::before, .ws-uploads__item .i-cross::after {
    background-color: #948A7F;
}
.ws-uploads__item span {
    display: block;
    white-space: nowrap;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Century Gothic", serif;
    text-align: center;
}

.ws-paging {
    text-align: center;
}
.ws-paging__more {
    margin: 0 auto 40px auto;
}
.ws-paging__pages {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.ws-paging__pages ul {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ws-paging__pages li {
    padding: 0 12px;
    margin: 0 6px;
    cursor: pointer;
    list-style: none;
    line-height: 35px;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
    border: 1px solid #3B507D;
    color: #3B507D;
    background-color: transparent;
    border-radius: 5px;
}
.ws-paging__pages li.is--active, .ws-paging__pages li:hover {
    background-color: #3B507D;
    color: #FFFFFF;
}
.ws-paging__pages div {
    cursor: pointer;
    line-height: 37px;
    font-size: 16px;
    color: #3B507D;
}
.ws-paging__pages div svg {
    display: none;
}
.ws-paging__next, .ws-paging__last {
    margin-left: 28px;
}
.ws-paging__prev, .ws-paging__first {
    margin-right: 28px;
}

.ws-opts {}
.ws-opts__value {
    margin: 0 8px 8px 0;
    float: left;
    background-color: #E9EBEF;
    cursor: pointer;
    display: block;
    padding: 0 20px;
    line-height: 32px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    color: #1A1A1A;
    transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
}
.ws-opts__value.is--active {
    background-color: #3B507D;
    color: #FFFFFF;
}

.ws-search {
    position: relative;
}
.ws-search svg {
    fill: transparent;
    stroke: #1A1A1A;
}
.ws-search__form {
    border: 1px solid #BCC1CD;
    background-color: #ffffff;
    position: relative;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.is--hiding .ws-search__form {
    max-width: 0;
    overflow: hidden;
    position: absolute;
    right: -2px;
    top: -6px;
    opacity: 0;
    width: 520px;
    z-index: 10;
}
.is--hiding.is--opened .ws-search__form {
    max-width: none;
    opacity: 1;
    right: 0;
    overflow: visible;
}
.ws-search__input {
    width: 100%;
    flex-shrink: 1;
}
.ws-search__input input {
    line-height: 36px;
    border: none;
    width: 100%;
    padding: 0 10px;
    background-color: transparent;
    min-width: 200px;
}
.ws-search__btn {
    height: 38px;
    flex-shrink: 0;
}
.ws-search__btn .s-btn {
    float: left;
    width: 38px;
    height: 38px;
}
.ws-search__btn .s--close {
    display: none;
}
.is--hiding .ws-search__btn .s--close {
    display: block;
}
.ws-search__btn .s--search svg {
    width: 16px;
    height: 18px;
    stroke: #1a1a1a;
}
.ws-search__btn .s--close svg {
    width: 16px;
    height: 16px;
    stroke: transparent;
    fill: #BCC1CD;
}
.ws-search .s-btn span {
    display: none;
}
.ws-search__toggle {
    display: none;
}
.ws-search__toggle svg {
    width: 23px;
    height: 26px;
}
.is--hiding .ws-search__toggle {
    display: block;
}
.autocomplete-suggestions {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    overflow: auto;
}
.ws-sug-group {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
}
.autocomplete-suggestion {
    border-top: 1px solid #BCC1CD;
    padding: 6px 0;
}
.ws-sug-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.ws-sug-item__image {
    width: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}
.ws-sug-item__image i {
    display: block;
    padding: 50% 0;
    background-size: cover;
    background-position: center center;
}
.ws-sug-item__desc {
    margin-right: 10px;
    flex-grow: 1;
}
.ws-sug-item__name {
    font-size: 12px;
    margin-bottom: 2px;
    line-height: 1.2em;
}
.ws-sug-item__code {
    font-size: 12px;
    color: #aaaaaa;
}
.ws-sug-item__row > div {
    display: inline;
    vertical-align: middle;
    margin-right: 10px;
}
.ws-sug-item__price {
    color: #3B507D;
    font-weight: 600;
}
.ws-sug-item__btn {
    width: 80px;
    flex-shrink: 0;
}
.ws-sug-item__btn .ws-basket-add {
    width: 37px;
    float: left;
    margin-right: 5px;
}
.ws-sug-item__btn .ws-basket-add .btn {
    width: 37px;
    height: 37px;
    background-color: #3B507D;
    padding: 0;
}
.ws-sug-item__btn .ws-basket-add svg {
    width: 21px;
    height: 27px;
    stroke: #ffffff;
}
.ws-sug-item__btn .ws-basket-add span {
    display: none;
}
.ws-sug-item__btn .ws-fav-toggle {
    width: 37px;
    height: 37px;
    float: left;
    position: static;
}

.ws-btn-cnt {
    position: relative;
    z-index: 2;
}
.ws-btn-cnt__icon {}
.ws-btn-cnt__value {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 8px;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 9px;
    background-color: #3B507D;
    color: #ffffff;
}

.ws-modal.opening--default {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100%;
    overflow: auto;
    background-color: white;
    padding: 32px 30px;
    z-index: 5000;
}
.ws-modal.opening--default.is--opened {
    right: 0;
}
.ws-modal .modal__close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 20;
    background-color: white;
}
.modal__close svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -12px;
    background-color: #e74c3c;
    border-radius: 4px;
}
.ws-modal__window.fancybox-content {
    max-width: 506px;
}
.ws-basket.ws-waiting {
    position: static;
}
.ws-basket > div {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 20px 30px;
}

/* фильтр */
.ws-filter {
    padding: 14px 20px;
    border: 1px solid #BCC1CD;
    border-radius: 15px;
    margin-bottom: 32px;
}
.ws-filter__title {
    position: relative;
    border-bottom: 1px solid #BCC1CD;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.ws-filter__title-label {
    font-size: 28px;
    font-family: "LT Remark", "Times New Roman", cursive;
    margin-right: 32px;
}
.ws-filter__title-icon {
    position: absolute;
    top: 0;
    right: 0;
}
.ws-filter__title-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    stroke: #ffffff;
}
.ws-filter__items {}
.ws-filter__item {
    border-bottom: 1px solid #BCC1CD;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.ws-filter__item-head {
    position: relative;
}
.is--opened > .ws-filter__item-head {
    padding-bottom: 12px;
}
.ws-filter__item-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    visibility: hidden;
}
.is--opened > .ws-filter__item-content {
    max-height: none;
    opacity: 1;
    visibility: visible;
}
.ws-filter__item-head-title {
    font-size: 20px;
    font-family: "LT Remark", "Times New Roman", cursive;
    margin-right: 75px;
    cursor: pointer;
}
.ws-filter__item-head-icons {
    position: absolute;
    top: 2px;
    right: -3px;
}
.ws-filter__item-head-icons > span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    float: left;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 10px;
    margin-left: 5px;
}
.ws-filter__item-head-icons > span:first-child {
    margin-left: 0;
}
.ws-filter__item-head-count  {
    background-color: #3B507D;
    color: #ffffff;
}
.ws-filter__item-head-clear {
    background-color: #BCC1CD;
    padding: 6px 0;
    cursor: pointer;
}
.ws-filter__item-head-clear svg {
    width: 8px;
    height: 8px;
    fill: #fff;
    stroke: #fff;
}
.ws-filter__item-head-arr {
    transform: rotate(90deg);
    padding: 4px 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.ws-filter__item-head.is--opened .ws-filter__item-head-arr {
    transform: rotate(-90deg);
}
.ws-filter__item-head-arr svg {
    width: 7px;
    height: 12px;
    fill: #3B507D;
    stroke: transparent;
}
.ws-filter .property-range {
    padding: 12px 0 24px 0;
}
.f-property-list__value {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin-top: 5px;
    cursor: pointer;
}
.f-property-list__value.is--disabled {
    opacity: 0.5;
}
.filter-property__value-check {
    width: 15px;
    height: 15px;
    margin-right: 8px;
    border: 1px solid #3B507D;
    padding: 4px 0;
    border-radius: 3px;
    flex-shrink: 0;
}
.filter-property__value-check svg {
    width: 11px;
    height: 7px;
    stroke: #fff;
    fill: #fff;
    display: none;
}
.is--checked .filter-property__value-check {
    background-color: #3B507D;
}
.is--checked .filter-property__value-check svg {
    display: block;
}
.filter-property__value-count {
    margin-left: 8px;
    font-size: 12px;
    color: #7D7F84;
}
.ws-filter__bar {
    padding: 10px 12px;
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: none;
    border-radius: 10px;
}
.ws-filter__bar.is--opened {
    display: block;
}
.ws-filter__bar-text {
    margin-bottom: 8px;
}
.ws-filter__bar .btn {
    line-height: 36px;
}
.ws-wnd__filter {
    width: 360px;
    max-width: 90%;
}
.ws-wnd__filter .modal__close {
    display: none;
}
.wsp-filter__title,
.wsp-filter__content, .wsp-filter__bottom {
    position: absolute;
    left: 0;
    width: 100%;
}
.wsp-filter__title, .wsp-filter__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.wsp-filter__title {
    top: 0;
    height: 64px;
    padding: 15px 20px;
    z-index: 2;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
    font-size: 28px;
    font-family: "Times New Roman", serif;
}
.wsp-filter__title-label {
    margin-right: 12px;
}
.wsp-filter__title-btn {
    width: 1em;
    height: 1em;
    position: relative;
}
.wsp-filter__title-btn .btn--close {
    cursor: pointer;
}
.wsp-filter__title-btn .btn--close svg {
    width: 14px;
    height: 14px;
    fill: #BCC1CD;
    stroke: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -7px;
}
.wsp-filter__content {
    top: 64px;
    bottom: 100px;
    overflow: auto;
    padding: 15px 20px;
    z-index: 1;
}
.wsp-filter__bottom {
    bottom: 0;
    padding: 15px 20px;
    z-index: 2;
    border: 1px solid #3B507D;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -2px 21px 0 #3B507D29;

}
.wsp-filter__bottom-cnt {
    margin-bottom: 12px;
    width: 48%;
}
.wsp-filter__bottom-cnt:nth-child(2n) {
    text-align: right;
}
.wsp-filter__bottom-cnt b {
    font-weight: 600;
    font-size: 16px;
    margin-left: 6px;
    color: #3B507D;
}
.wsp-filter__bottom .btn {
    line-height: 35px;
    width: 48%;
}

/* Выбранные элементы */
.ws-filters__selected {
    margin-bottom: 20px;
    font-size: 12px;
}
.ws-filters__selected.is--empty {
    display: none;
}
.ws-filters__selected > * {
    float: left;
    line-height: 2em;
    margin: 0 5px 5px 0;
}
.ws-filters__selected-item,
.ws-filters__selected-clear {
    color: #ffffff;
    border-radius: 1em;
    cursor: pointer;
}
.ws-filters__selected-item {
    background-color: #3B507D;
}
.ws-filters__selected-clear {
    background-color: #91312C;
}
.ws-filters__selected-text {
    margin-right: 2em;
    display: block;
    float: left;
    padding: 0 0.1em 0 1em;
}
.ws-filters__selected-icon {
    float: left;
    width: 2em;
    height: 2em;
    margin-left: -2em;
    display: block;
    position: relative;
}
.ws-filters__selected-icon svg {
    width: 6px;
    height: 6px;
    fill: #ffffff;
    stroke: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -3px;
}

.btn-filter {
    border: 1px solid #BCC1CD;
    line-height: 16px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.btn-filter .ws-btn-cnt__value {
    right: auto;
    left: -6px;
}
.btn-filter .ws-btn-cnt__label {
    margin-right: 2em;
}
.btn-filter .ws-btn-cnt__icon {
    float: right;
    width: 1em;
    height: 1em;
    position: relative;
}
.btn-filter .ws-btn-cnt__icon svg {
    width: 12px;
    height: 12px;
    fill: #BCC1CD;
    stroke: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -6px;
}

.ws-shop-param {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    justify-items: center;
    align-items: center;
    border: 1px solid #BCC1CD;
    line-height: 16px;
    padding: 10px;
    border-radius: 5px;
}
.ws-shop-param__title {
    margin-right: 4px;
}
.ws-shop-param select {
    background: transparent;
    border: none;
    padding: 0;
}
.ws-number {
    border: 1px solid #BCC1CD;
    border-radius: 5px;
}
.ws-spinner__holder {
    background-color: #BCC1CD;
}
.ws-spinner__pin {
    border-color: #3B507D;
    background-color: #3B507D;
}
.ws-spinner__pin::after {
    background-color: #3B507D;
}
.ws-spinner__pin.is--pressed {
    border-color: #91312C;
    background-color: #91312C;
}
.ws-spinner__pin.is--pressed::after {
    background-color: #91312C;
}
.ws-spinner__edge {
    background-color: #3B507D;
}
.ws-spinner__limit {
    color: #7D7F84;
}

.ws-account {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    justify-items: center;
    align-items: center;
}
.ws-account__image {
    width: 30px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}
.ws-account__title {
    position: relative;
    padding-right: 16px;
    cursor: pointer;
}
.ws-account__name {
}
.ws-account__title svg {
    width: 6px;
    height: 11px;
    transform: rotate(90deg);
    position: absolute;
    top: 6px;
    right: 0;
}

.ws-tree {}
.ws-tree-node {
    margin-bottom: 2px;
}
.ws-tree-node__title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: stretch;
    padding: 1px 0;
}
.ws-tree-node__title:hover {
    background-color: #f2f2f2;
}
.ws-tree-node__title.is--hidden {
    opacity: 0.5;
    font-style: italic;
}
.ws-tree-node__title.is--related {
    font-weight: 700;
}
.ws-tree-node__title.is--checked {
    color: #27ad60;
}
.ws-tree-node__title.has--relation {
    color: #1e9cc3;
}
.ws-tree-node.is--root > .ws-tree-node__title {
    font-weight: 700;
    margin-bottom: 4px;
}
.ws-tree-node__arrow {
    width: 16px;
    margin-right: 3px;
}
.ws-tree-node__arrow svg {
    width: 5px;
    height: 11px;
    transform: rotate(0deg);
    margin-left: -3px;
    margin-top: -6px;
    fill: #000000;
    stroke: #000000;
}
.ws-tree-node.is--opened > .ws-tree-node__title .ws-tree-node__arrow svg {
    transform: rotate(90deg);
}
.ws-tree-node__content {
    margin-right: 12px;
    flex-grow: 1;
}
.ws-tree-node__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
}
.ws-tree-node__actions > div {
    margin-left: 5px;
    cursor: pointer;
    border-radius: 3px;
    padding: 2px;
    width: 18px;
    height: 18px;
}
.ws-tree-node__actions > div svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    stroke: #ffffff;
}
.ws-tree-node__actions > div span {
    display: none;
}
.ws-tree-node__actions .action--grey {
    background-color: #c1c4c4;
}
.ws-tree-node__actions .action--green {
    background-color: #2ecc71;
}
.ws-tree-node__actions .action--blue {
    background-color: #23b7e5;
}
.ws-tree-node__actions .action--yellow {
    background-color: #f39c12;
}
.ws-tree-node__actions .action--red {
    background-color: #e74c3c;
}
.ws-tree-node__child {
    margin-left: 19px;
    margin-bottom: 10px;
    display: none;
}
.ws-tree-node.is--root > .ws-tree-node__child {
    margin-left: 0;
}
.ws-tree-node.is--opened > .ws-tree-node__child {
    display: block;
}

.ws-relate-view  {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: stretch;
}
.ws-relate-view__struct {
    width: 460px;
    margin-right: 25px;
}
.ws-relate-view__opt {
}
.ws-relate-view__opt label {
    display: block;
    font-weight: 700;
}
.ws-relate-view__opt select {
    height: 36px;
    line-height: 36px;
    width: 100%;
}
.ws-relate-view__stats {
    width: 360px;
}
.ws-relate-stats {
    position: sticky;
    z-index: 10;
    top: 72px;
}

.ws-relate-bind__object, .ws-relate-bind__source {
    background-color: #f2f2f2;
    border-radius: 4px;
    margin-bottom: 12px;
    padding: 12px;
}
.ws-relate-bind__object label, .ws-relate-bind__source label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}
.ws-relate-bind__object ul, .ws-relate-bind__object li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.ws-relate-bind__object li {
    position: relative;
}
.ws-relate-bind__object li::before {
    position: absolute;
    width: 10px;
    height: 10px;
    content: "";
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-size: 1px;
    left: -16px;
    top: 2px;
}
.ws-relate-bind__object .type--brand {
    margin-left: 20px;
}
.ws-relate-bind__object .type--model {
    margin-left: 40px;
}
.ws-relate-bind__object .type--modification {
    margin-left: 60px;
}
.ws-relate-bind__source select {
    height: 36px;
    line-height: 36px;
    width: 100%;
}
.ws-relate-selected {
    margin-bottom: 12px;
}
.ws-relate-selected__title {
    font-weight: 700;
    margin-bottom: 5px;
}
.ws-relate-selected__item {
    display: inline-block;
    line-height: 24px;
    position: relative;
    border-radius: 12px;
    background-color: #3498db;
    color: white;
    overflow: hidden;
    font-size: 12px;
    padding: 0 32px 0 12px;
}
.ws-relate-selected__item i {
    position: absolute;
    background-color: rgba(0,0,0,0.1);
    top: 0;
    right: 0;
    bottom: 0;
    width: 24px;
    border-radius: 12px;
    cursor: pointer;
    clear: left;
}
.ws-relate-selected__item i svg {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -5px;
    fill: white;
    stroke: white;
}
.ws-relate-selected__item.item--clear {
    background-color: #e74c3c;
    cursor: pointer;
}
.ws-relate-selected__empty {
    padding: 16px;
    color: #e74c3c;
    background-color: #f8ecec;
    border-radius: 4px;
    text-align: center;
}
.ws-relate-bind__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.ws-relate-bind__actions button {
    width: 48%;
}

.ws-listing {
    background-color: #fff;
    padding: 20px;
}
.ws-table {
    display: table;
    width: 100%;
    border: 1px solid #e8e8e8;
    border-collapse: collapse;
}
.ws-table-head, .ws-table-row {
    display: table-row;
}
.ws-table-head > div, .ws-table-row > div{
    display: table-cell;
    vertical-align: middle;
    padding: 12px 12px;
    border: 1px solid #e9ecef;
}
.ws-table-head > div {
    cursor: pointer;
    font-weight: 700;
    border-bottom: 1px solid #ddd !important;
    border-top: 0;
}

body {
    background-color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #000000;
    width: 100%;
    overflow-x: hidden;
}
body {
    padding-top: 56px;
}
.type-empty, .type-empty body {
    background-color: #f2f2f2;
}
header {
    height: 56px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1002;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}
.l-logo {
    color: #fff;
    background-color: #374f65;
    width: 280px;
    padding: 18px 15px;
    font-weight: 500;
    height: 56px;
}
.l-logo__title {
    font-size: 20px;
    line-height: 100%;
}
.l-head {
    padding: 0 15px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}
.l-head .ws-account {
    float: right;
}
main {
    display: grid;
    grid-template-columns: 280px auto;
    background-color: #f1f1f1;
}
.l-side {
    grid-row: 1 / 4;
    background-color: #253544;
    color: #b4bcc8;
    padding-top: 25px;
}
.b-menu-main ul, .b-menu-main li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
.menu-item {}
.menu-item__title {
    display: block;
    position: relative;
    text-decoration: none;
    color: #d2d2d2;
    padding-left: 40px;
}
.menu-item.is--parent > .menu-item__title {
    padding-right: 30px;
}
.menu-item__title:hover {
    color: #ffffff;
}
.menu-item__icon {
    width: 40px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
}
.menu-item.is--parent > .menu-item__icon {
    display: block;
}
.b-menu-main li li .menu-item__icon {
    display: none;
}
.b-menu-main ul ul {
    background-color: #2e4255;
}
.menu-item__icon svg {
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-top: -9px;
    fill: #dddddd;
    stroke: #dddddd;
}
.menu-item__text {
    line-height: 100%;
    padding: 12px 0;
    white-space: none;
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu-item.is--parent .menu-item__arr {
    width: 30px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.menu-item__arr svg {
    width: 6px;
    height: 12px;
    transform: rotate(180deg);
    margin-left: -3px;
    margin-top: -6px;
    fill: #dddddd;
    stroke: #dddddd;
}

.l-panel {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
    padding: 16px 15px;
}
.l-panel__title {
    font-size: 24px;
}
.l-main {
    padding: 16px 15px;
    min-height: calc(100vh - 148px);
}
.l-bottom {
    background-color: #fff;
    padding: 10px 15px;
    font-size: 13px;
    height: 40px;
    overflow: hidden;
}
.w-offer-detail {
    width: 600px;
    max-width: 90%;
}
.ws-modal.w-relate-bind {
    width: 840px;
    padding: 0;
}
.w-relate-bind .ws-relate-bind {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 100vh;
    width: 100%;
}
.w-relate-bind .ws-relate-bind > div {
    position: absolute;
    padding: 20px;
    top: 0;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    bottom: 100px;
}
.w-relate-bind .ws-relate-bind__info {
     width: 360px;
     left: 0;
 }
.w-relate-bind .ws-relate-bind__struct {
    width: 480px;
    left: 360px;
    border-left: 1px solid #f2f2f2;
}
.auth-form {
    width: 420px;
    margin: auto;
}

