
.hide__constructor-switch {
    transform: translateX(-200%);
}

.constructor-switch {
    position: fixed;
    left: 0;
    top: 241px;
    width: 58px;
    height: 58px;
    z-index: 999;
    cursor: pointer;
    background-image: url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdBAMAAACkvXo8AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEX7/Pn////7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/PkAAAB9oN6GAAAACXRSTlMAABy43D5g9vDO/p7OAAAAAWJLR0QKaND0VgAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB+MDBQ0yKYtgFiAAAACXSURBVBjTY2AAAyYjQTAQgHAZVKYoIvOZPGc6IfNVZs6EKBCASc+EKBCASUMVQPhhaenT09ICkcznmIGwjykAyg+C8FUSoPwURRCfyRPGz3QC8VVmwvlTFAVAdsP5M50EQHZXdHR0zuzo6KicOUWBwXImMjDAkEfXj24+hv3o7sNwP7r/MP2PHj7o4Ycevhjhjx4/iPgDAJS1UDlUZjnwAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-out;
}

@media (max-width: 1023px) {
    .constructor-switch,
    .constructor-switch__save,
    .constructor-switch__off {
        display: none;
    }
}

.constructor-switch:hover {
    background-color: #c80033;

}

.switch-constructor__on-icon {
    width: 30px;
    height: 30px;
    position: relative;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    fill: #fff;
}

.constructor-switch__save {
    position: fixed;
    left: 0;
    top: 304px;
    width: 58px;
    height: 58px;
    z-index: 999;
    cursor: pointer;
    background-color: #00b02a;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-out !important;
}

.constructor-switch__save:hover {
    background-color: #007d1e;
}

.constructor-switch__off {
    position: fixed;
    left: 0;
    top: 241px;
    width: 58px;
    height: 58px;
    z-index: 999;
    cursor: pointer;
    background-color: #ebebeb;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-out !important;
}

.constructor-switch__off:hover {
    background-color: #d2d2d2;
}


.landing-ui-panel-content-overlay {
    background: #000000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 319;
    opacity: 0;
}

.landing-ui-panel-content-overlay.landing-ui-show {
    animation: showOverlay 300ms both;
}

.landing-ui-panel-content-overlay.landing-ui-show-just {
    opacity: 1;
}

.landing-ui-panel-content-overlay.landing-ui-hide {
    visibility: visible;
    animation: hideOverlay 300ms both;
}

.landing-ui-hide-controls .landing-ui-panel-content-overlay {
    display: none;
}

.landing-ui-panel-content {
    display: flex;
    flex-direction: column;
    background: #fbfcf9;
    position: fixed;
    width: 750px;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    z-index: 99999;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.23);
    transform: translateX(-10%);
    opacity: 0;
    contain: layout;
}

.landing-ui-panel.landing-ui-panel-link {
    z-index: 333;
}

.landing-ui-panel-link.landing-ui-panel-content-overlay {
    z-index: 332;
}

.landing-ui-panel-content-with-subtitle .landing-ui-panel-content-body {
    height: calc(100% - 152px) !important;
}

.landing-ui-panel-content.landing-ui-show {
    animation: showContentPanel 300ms ease both;
}

.landing-ui-panel-content.landing-ui-show-just {
    opacity: 1;
}

.landing-ui-panel-content.landing-ui-hide {
    animation: hideContentPanel 300ms ease both;
    visibility: visible;
}


@keyframes showContentPanel {
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hideContentPanel {
    0% {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        transform: translateX(-10%);
    }
}


@keyframes showOverlay {
    0% {
        opacity: 0;
    }
    100% {
        opacity: .4;
    }
}

@keyframes hideOverlay {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 0;
    }
}


.landing-ui-panel-content-header {
    width: 100%;
    min-height: 63px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    padding-bottom: 22px;
    box-sizing: content-box;
}

.landing-ui-panel-content-header:empty {
    display: none;
}

.landing-ui-panel-content-title {
    font-family: 'OpenSans-Bold', Helvetica, Arial, sans-sarif;
    font-size: 28px;
    color: #242424;
    margin-left: 23px;
    margin-top: 14px;
}


.landing-ui-panel-content-subtitle {
    flex-shrink: 0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #807f7f;
    position: relative;
    margin-left: 25px;
    margin-right: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.landing-ui-panel-content-body {
    display: flex;
    height: calc(100% - 78px - 100px);
}

.landing-ui-panel-content-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 250px;
    min-height: 100px;
    z-index: 399;
}

.landing-ui-panel-content-footer:empty {
    display: none;
}


.landing-ui-panel-content-body-sidebar {
    background: #fbfcf9;
    border: 1px solid #ebebe9;
    border-left: none;
    position: relative;
    min-width: 225px;
    max-width: 245px;
    left: 0;
    top: 0;
    overflow-y: auto;
    margin-right: 5px;
    transform: translateZ(0);
}

.landing-ui-panel-content-body-sidebar:empty {
    display: none;
}

.landing-ui-panel-content-body-content {
    background: #fbfcf9;
    border: 1px solid #ebebe9;
    position: relative;
    overflow-y: scroll;
    width: 477px;
    padding: 20px;
    padding-bottom: 0;
}

.options-section-name {
    padding: 10px 0 29px;
    margin-bottom: 21px;
    font-family: "OpenSans-Bold", Helvetica, Arial, sans-serif;
    font-size: 22px;
    color: #242424;
    border-bottom: 1px solid #e1e1df;
    max-width: 418px;
}

.landing-ui-panel-content-body-content .options-section {
    max-width: 418px;
}


.landing-ui-panel-content-body-sidebar:empty + .landing-ui-panel-content-body-content {
    margin-left: 20px;
}


.landing-ui-panel-content-close.close-for-theme-change {
    position: fixed;
    left: 720px;
    /*left: 713px;*/
    top: 178px;
    width: 58px;
    height: 58px;
    /*width: 73px;*/
    /*height: 73px;*/
    border: none;
    /*border-radius: 50%;*/
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.23);
    opacity: 1;
    /* background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAMAAAApB0NrAAAAbFBMVEVHcEz7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pkt3WQvAAAAJHRSTlMATtvicxb/OzZsHIxkepDz6S3G1SPCoEL6sdAPqIJJllq6CgUx+nIHAAABV0lEQVR4AYXSBY7DMBRF0Re6dZjKnMz+9ziy6kauVThi4yf5ojhJ9V0GsNJXBiDXe0VZZpIqgFKS6saEf7TQ9dGAxZivN0BwKOeNrV7seCNMsNkTOigUE2gVMnusLl2Z/AhWpcABazzJOmMl8vXpZQ/Qnl4+buqdnq44NzkVYWpHnLucHmcvZ8Kp5BicRM46DitywWrP250WZtdhGVmaW4Ax06sbVmvvqR9hSFgrz+XLOrCmND/DVEhGM2Qfe9FJO2m+QJlpvurhb8DTqCZuWoC2HLlI1h3fVtWexT73zowtzqyJxUYP8wQHZU0MMN5VtADTBNCu5UTRcx6TP/3dgP1Vuu6B2yzfCshVd0uHG4CulmfuINWAlS8TwFG+Yns2yvLjc+MIjHmhNyKATRRtACK9N7AY9V5x9M4UeusGLRYtbPVWP+VZfYSxzqrJ6DMDK/0wj/FJD/+55xgcvIJqwgAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-position: center; */
}


.landing-ui-panel-block-list {
    width: 750px;
}


.landing-ui-panel-block-list .landing-ui-card-block-preview-image-container {
    background-color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}


.landing-ui-panel-block-list .landing-ui-panel-content-body-sidebar {
    transform: none;
    padding: 8px 0;
}

.landing-ui-panel-block-list .landing-ui-panel-content-body-content {
    background-color: #fbfcf9;
}

.landing-ui-panel-block-list .landing-ui-panel-content-body-sidebar .landing-ui-button-sidebar-feedback {
    position: fixed;
    bottom: 10px;
}

.landing-ui-button.landing-ui-button-sidebar.landing-ui-button-sidebar-child {
    margin-bottom: 4px;
}

.landing-ui-panel-block-list .landing-ui-panel-content-body-sidebar .landing-ui-button-sidebar-feedback::before {
    width: 190px;
    left: 0;
}

.landing-ui-panel-block-list .landing-ui-panel-content-body-sidebar .landing-ui-button-sidebar-feedback {
    border-bottom: 0;
}

.landing-ui-button-plus {
    font-family: "OpenSans-Bold", Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    background: rgba(51, 51, 51, .60);
    border: 1px solid rgba(255, 255, 255, .67);
    position: absolute;
    top: 50%;
    left: 50%;
    height: 33px;
    border-radius: 33px;
    line-height: 31px;
    padding-left: 38px;
    padding-right: 22px;
    padding-top: 0;
    padding-bottom: 0;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    white-space: nowrap;
}

.landing-ui-button-plus:hover {
    background: #000000;
}

.landing-ui-button-plus::before {
    background: url(data:image/svg+xml,%0A%3Csvg%20width%3D%2213px%22%20height%3D%2213px%22%20viewBox%3D%220%200%2013%2013%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2047%20%2845396%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22%u0420%u0435%u0434%u0430%u043A%u0442%u0438%u0440%u043E%u0432%u0430%u043D%u0438%u0435-Copy%22%20transform%3D%22translate%28-739.000000%2C%20-784.000000%29%22%20fill%3D%22%23FFFFFF%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-14%22%20transform%3D%22translate%280.000000%2C%20774.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M747%2C15%20L747%2C10%20L744%2C10%20L744%2C15%20L739%2C15%20L739%2C18%20L744%2C18%20L744%2C23%20L747%2C23%20L747%2C18%20L752%2C18%20L752%2C15%20L747%2C15%20Z%22%20id%3D%22Combined-Shape%22%3E%3C/path%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
    background-size: 100%;
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    top: 50%;
    left: 16px;
    transform: translate3d(0, -50%, 0);
}

.landing-ui-card-block-preview {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    cursor: pointer;
    color: #828B95;
}

.landing-ui-card-block-preview .landing-ui-card-header {
    margin-right: 30px;
    font-size: 12px;
    text-align: left;
    line-height: 14px;
    margin-bottom: 10px;
    padding-left: 7px;
    z-index: 301;
}


.landing-ui-card-block-preview .landing-ui-card-body {
    margin-top: 0;
}


.landing-ui-card-block-preview .landing-ui-card-block-preview-image-container {
    position: relative;
    height: auto;
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    transition: box-shadow 200ms ease;
}


.landing-ui-card-block-preview-image-container::before,
.landing-ui-card-block-preview-image-container::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 200ms ease;
}

.landing-ui-card-block-preview-image-container::before {
    background: url(data:image/svg+xml,%0A%3Csvg%20width%3D%2277px%22%20height%3D%2277px%22%20viewBox%3D%220%200%2077%2077%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2047%20%2845396%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22path-1%22%20cx%3D%2234.5%22%20cy%3D%2234.5%22%20r%3D%2234.5%22%3E%3C/circle%3E%0A%20%20%20%20%20%20%20%20%3Cfilter%20x%3D%22-10.1%25%22%20y%3D%22-7.2%25%22%20width%3D%22120.3%25%22%20height%3D%22120.3%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22filter-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%222%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter1%22%3E%3C/feOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%3E%3C/feGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.115177763%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter1%22%3E%3C/feColorMatrix%3E%0A%20%20%20%20%20%20%20%20%3C/filter%3E%0A%20%20%20%20%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22%u0411%u043B%u043E%u043A%u0438%22%20transform%3D%22translate%28-458.000000%2C%20-441.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-7%22%20transform%3D%22translate%28287.000000%2C%20344.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%28175.000000%2C%2099.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22black%22%20fill-opacity%3D%221%22%20filter%3D%22url%28%23filter-2%29%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M38%2C32%20L38%2C18%20L32%2C18%20L32%2C32%20L18%2C32%20L18%2C38%20L32%2C38%20L32%2C52%20L38%2C52%20L38%2C38%20L52%2C38%20L52%2C32%20L38%2C32%20Z%22%20id%3D%22Combined-Shape%22%20fill%3D%22%2313AADB%22%20opacity%3D%220.80078125%22%3E%3C/path%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
    background-size: 100%;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
    z-index: 302;
    font-size: 62px;
    text-align: center;
    line-height: 60px;
}

.landing-ui-card-block-preview:hover .landing-ui-card-block-preview-image-container {
    box-shadow: 0 8px 13px 0 rgba(0, 0, 0, 0.15);
}

.landing-ui-card-block-preview:hover .landing-ui-card-block-preview-image-container::before {
    opacity: 1;
}

.landing-ui-card-block-preview-image-container img {
    width: 100%;
}


.landing-ui-card-block-preview-body-wrapper {
    display: flex;
    flex-grow: 1;
}

.landing-ui-card-block-preview .landing-ui-panel-content-body {
    flex-grow: 0;
}

.landing-ui-button-sidebar {
    background: none;
    color: #101010;
    font-size: 15px;
    font-family: "Open Sans", Arial, sans-sarif;
    line-height: 40px;
    padding: 0 20px 0 15px;
    border: none;
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    text-align: left;
}

.landing-ui-button-sidebar .landing-ui-button-text {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    border-radius: 13px;
    display: inline-block;
    line-height: 32px;
}

.landing-ui-button-sidebar:hover {
    background: rgba(225, 225, 223, .4);
}

.landing-ui-button-sidebar.landing-ui-active .landing-ui-button-text {
    background: rgb(241, 241, 241);
}


.landing-ui-button-sidebar.landing-ui-new-section .landing-ui-button-text {
    position: relative;
}

.landing-ui-button-sidebar.landing-ui-new-section .landing-ui-button-text::before {
    background: #2FC6F6;
    position: absolute;
    top: 7px;
    right: 7px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
}


.landing-ui-button-sidebar:not(.landing-ui-button-sidebar-child) {
    font-family: "Open Sans", Helvetica, Arial, sans-sarif;
    font-size: 15px;
    color: #101010;
    width: 100%;
}

.landing-ui-button-sidebar:not(.landing-ui-button-sidebar-child):hover {
    background: rgba(225, 225, 223, .4);
}


.landing-ui-button-sidebar-child + .landing-ui-button-sidebar:not(.landing-ui-button-sidebar-child) {
    margin-top: 40px;
}


.landing-ui-button-sidebar.landing-ui-button-sidebar-feedback {
    font-family: OpenSans-Regular, Helvetca, Arial, sans-sarif;
    position: relative;
    overflow: visible;
    margin-top: 40px;
    background: none;
    color: #0063C6;
    font-size: 14px;
    text-transform: none;
}

.landing-ui-button-sidebar.landing-ui-button-sidebar-feedback:not(.landing-ui-active):hover {
    opacity: .65;
}

.landing-ui-button-sidebar.landing-ui-button-sidebar-feedback::before {
    display: block;
    content: '';
    position: absolute;
    top: -17px;
    left: 30px;
    width: 156px;
    border-top: 1px rgba(0, 0, 0, .1) solid;
    pointer-events: none;
}

.block-wrapper {
    position: relative;
    box-sizing: border-box;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .block-wrapper {
        margin-top: 0;
    }
}

.block-wrapper [contenteditable="true"],
.block-wrapper [contenteditable="plaintext-only"] {
    background: rgba(0, 0, 0, .05);
    outline: none;
}

.landing-ui-panel {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #777777;
    transform: translateZ(0);
    contain: layout;
}


/** Create block panel */
.landing-ui-panel-create-action {
    position: absolute;
    height: 24px;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    -moz-transform: translate3d(0, 50%, 0);
    -ms-transform: translate3d(0, 50%, 0);
    -o-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    z-index: 302;
}

/** Create block panel */

.landing-ui-panel-link-editor-buttons {
    position: absolute !important;
    border-radius: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px #757D87 solid;
    z-index: 321;
    transition: opacity 200ms ease;
    margin-top: 4px;
    transform: translateX(-47%);
}

.landing-ui-panel-link-editor-buttons .landing-ui-button {
    background: #ffffff;
    opacity: 1;
}

.landing-ui-panel-link-editor-buttons .landing-ui-button[data-id="remove"] {
    padding-right: 40px;
}


.landing-ui-panel-create-action {
    height: 1px;
}

.landing-ui-panel-content.landing-ui-panel-edit-image {
    width: 496px;
}

.landing-ui-panel.landing-ui-panel-feedback {
    width: 600px;
    z-index: 1299;
}

.landing-ui-panel.landing-ui-panel-feedback .landing-ui-panel-content-body-content {
    background: #ffffff;
}

.landing-ui-panel-content-overlay.landing-ui-panel-feedback-overlay {
    z-index: 1298;
}


.landing-ui-panel.landing-ui-panel-link {
    width: 496px;
}

.landing-ui-panel.landing-ui-panel-icon {
    z-index: 9999;
}

.landing-ui-panel-content-overlay.landing-ui-panel-icon {
    z-index: 500;
}


.landing-ui-panel .landing-ui-button {
    transition: opacity 200ms ease;
}

.landing-ui-panel-block-action {
    background-color: #ffffff;
    overflow: hidden;
    padding-right: 35px;
    display: flex;
    transition: width 200ms ease, right 200ms ease;
}


.landing-ui-collapse .landing-ui-panel-block-action {
    width: 60px;
    min-width: auto;
    right: -26px;
}

.landing-ui-collapse .landing-ui-panel-block-action .landing-ui-button:not([data-id="collapse"]) span,
.landing-ui-collapse .landing-ui-panel-block-action .landing-ui-button:not([data-id="collapse"])::before,
.landing-ui-collapse .landing-ui-panel-block-action .landing-ui-button:not([data-id="collapse"])::after {
    opacity: 0;
}

.landing-ui-panel-block-action .landing-ui-button[data-id="collapse"] {
    position: absolute;
    right: 0 !important;
    z-index: 10;
    width: 35px;
}

.landing-ui-panel-block-action .landing-ui-button[data-id="collapse"] .landing-ui-button-text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(-15px);
    transform-origin: center;
    transition: transform 200ms ease;
}

.landing-ui-collapse .landing-ui-panel-block-action .landing-ui-button[data-id="collapse"] .landing-ui-button-text {
    transform: translateX(-37px) rotate(180deg);
}

.landing-ui-collapse .landing-ui-panel-block-action .landing-ui-button[data-id="collapse"] {
    width: 100%;
    border-left: 1px #757D87 solid;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.landing-ui-panel-content-action {
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    padding-left: 35px;
    justify-content: flex-end;
    transition: width 200ms ease, left 200ms ease;
}

.landing-ui-collapse .landing-ui-panel-content-action {
    width: 60px;
    min-width: auto;
    left: -26px;
}

.landing-ui-collapse .landing-ui-panel-content-action .landing-ui-button:not([data-id="collapse"]) span,
.landing-ui-collapse .landing-ui-panel-content-action .landing-ui-button:not([data-id="collapse"])::before,
.landing-ui-collapse .landing-ui-panel-content-action .landing-ui-button:not([data-id="collapse"])::after {
    opacity: 0;
}

.landing-ui-panel-content-action .landing-ui-button[data-id="collapse"] {
    position: absolute;
    left: 0 !important;
    z-index: 10;
    width: 35px;
    border-left: 1px #757D87 solid;
    border-right: none;
    border-radius: 20px 0 0 20px;
}

.landing-ui-panel-content-action .landing-ui-button[data-id="content"] {
    border-left: none;
}

.landing-ui-panel-content-action .landing-ui-button[data-id="collapse"] .landing-ui-button-text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(-15px) rotate(-180deg);
    transform-origin: center;
    transition: transform 200ms ease;
}

.landing-ui-collapse .landing-ui-panel-content-action .landing-ui-button[data-id="collapse"] .landing-ui-button-text {
    transform: translateX(-16px) rotate(0deg);
}

.landing-ui-collapse .landing-ui-panel-content-action .landing-ui-button[data-id="collapse"] {
    width: 100%;
    border-right: 1px #757D87 solid;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.landing-ui-collapse .landing-ui-panel-content-action .landing-ui-button[data-id="block_display_info"] {
    display: none;
}

.landing-ui-button-action {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    background: rgba(255, 255, 255, .89);
    height: 39px;
    line-height: 37px;
    padding: 0 15px;
    border-radius: 0;
    transition: background 200ms ease, color 200ms ease;
    border: 1px #757D87 solid;
}

.landing-ui-button-action:hover,
.landing-ui-button-action.landing-ui-active {
    background: rgba(255, 255, 255, .69);
    color: rgba(0, 0, 0, .3);
}


.landing-ui-button-action:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-left: 19px;
}

.landing-ui-button-action[data-id="content"] {
    border-right: none;
}

.landing-ui-button-action[data-id="style"] {
    border-left: none;
}


.landing-ui-button-action[data-id="style"],
.landing-ui-button-action[data-id="remove"] {
    padding-right: 19px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.landing-ui-button-action[data-id="actions"] + .landing-ui-button-action[data-id="remove"] {
    border-radius: 0 !important;
}

.landing-ui-button-action:last-of-type::after {
    display: none !important;
}

.landing-ui-button-action[data-id="style"].landing-ui-no-rounded {
    border-right: 1px rgba(0, 0, 0, .1) solid;
}

.landing-ui-button-action[data-id="style"] + .landing-ui-button-action[data-id="actions"] {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-right: 29px;
    border-right: none;
}


.landing-ui-button-action[data-id="block_display_info"] {
    background: url("/bitrix/images/landing/false-button.svg") center center no-repeat;
    position: relative;
    top: 1px;
    width: 51px;
    height: 37px;
    border: none;
    text-align: right;
    padding-right: 10px;
    margin-left: -17px;
    transform: translateX(0) translateZ(0);
    z-index: -6;
    font-size: 14px;
    display: none;
    transition: opacity 200ms ease;
}

.landing-ui-button-action[data-id="block_display_info"]:hover {
    opacity: .8;
}

.l-d-lg-none ~ .landing-ui-panel-content-action .landing-ui-button-action[data-id="block_display_info"],
.l-d-md-none ~ .landing-ui-panel-content-action .landing-ui-button-action[data-id="block_display_info"],
.l-d-xs-none ~ .landing-ui-panel-content-action .landing-ui-button-action[data-id="block_display_info"] {
    display: inline-block;
}


.landing-ui-button-action[data-id="down"] {
    padding-left: 19px;
    border-right: 0;
    padding-right: 22px;
}

.landing-ui-button-action[data-id="down"] {
    border-right: none;
}

.landing-ui-button-action[data-id="up"] {
    border-right: none;
    border-left: none;
}

.landing-ui-button-action[data-id="up"]::after,
.landing-ui-button-action[data-id="actions"]::after,
.landing-ui-button-action[data-id="content"]::after,
.landing-ui-button-action[data-id="content"]::before,
.landing-ui-button-action[data-id="remove"]::after,
.landing-ui-button-card-action:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    border-right: 1px rgba(0, 0, 0, .1) solid;
}

.landing-ui-button-action[data-id="content"]::before {
    left: 0;
    right: auto;
}


.landing-ui-button-action[data-id="down"]::before,
.landing-ui-button-action[data-id="up"]::before {
    background: url("/bitrix/images/landing/arrow-down.svg");
    width: 11px;
    height: 13px;
    content: '';
    position: absolute;
    top: 50%;
    left: 19px;
    transform: translateY(-50%);
}


.landing-ui-button-action[data-id="up"] {

}

.landing-ui-button-action[data-id="up"]::before {
    transform: translate3d(-50%, -50%, 0) rotate(180deg);
    transform-origin: center center;
    left: 16px;
}

.landing-ui-button-action[data-id="remove"] {
    position: relative;
    padding-left: 22px;
    border-right: none;
}


.landing-ui-button-action[data-id="clone"] {
    position: relative;
}


.landing-ui-button-action[data-id="clone"] .landing-ui-button-text::before {
    background-image: url(data:image/svg+xml,%0A%3Csvg%20width%3D%2212px%22%20height%3D%2212px%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2047%20%2845396%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate%28-230.000000%2C%20-41.000000%29%22%20fill%3D%22%23525C69%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-11%22%20transform%3D%22translate%28210.000000%2C%2029.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20id%3D%22Rectangle-27%22%20x%3D%2220%22%20y%3D%2217%22%20width%3D%2212%22%20height%3D%222%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20id%3D%22Rectangle-27-Copy%22%20transform%3D%22translate%2826.000000%2C%2018.000000%29%20rotate%28-90.000000%29%20translate%28-26.000000%2C%20-18.000000%29%20%22%20x%3D%2220%22%20y%3D%2217%22%20width%3D%2212%22%20height%3D%222%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
    content: '';
    width: 10px;
    height: 13px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.landing-ui-button-action[data-id="remove"] .landing-ui-button-text {
    display: inline-block;
}

.landing-ui-button-action[data-id="remove"] .landing-ui-button-text::before {
    background: url("/bitrix/images/landing/bin.svg") center center no-repeat;
    content: '';
    width: 10px;
    height: 13px;
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
}

.landing-ui-button-action[data-id="remove"] .landing-ui-button-text.landing-ui-hide-icon::before,
.landing-ui-button-action[data-id="clone"] .landing-ui-button-text.landing-ui-hide-icon::before {
    display: none;
}

.landing-ui-button-action[data-id="clone"] {
    border-right: none;
}

.landing-ui-button-action[data-id="actions"] {
    padding-left: 20px;
    padding-right: 30px;
    border-left: none;
    border-right: none;
}

.landing-sidebar .landing-ui-button-action[data-id="actions"] .landing-ui-button-text,
.landing-sidebar .landing-ui-button-action[data-id="content"] .landing-ui-button-text,
.landing-sidebar .landing-ui-button-action[data-id="style"] .landing-ui-button-text {
    font-size: 0 !important;
}

.landing-sidebar .landing-ui-button-action[data-id="actions"] {
    padding-left: 15px;
    padding-right: 25px;
}

.landing-sidebar .landing-ui-button-action[data-id="down"] {
    padding-left: 12px;
    padding-right: 26px;
}


.landing-sidebar .landing-ui-button-action[data-id="content"] {
    padding-left: 25px;
}

.landing-sidebar .landing-ui-button-action[data-id="style"] {
    padding-left: 18px;
}

.landing-sidebar .landing-ui-button-action[data-id="actions"]::before,
.landing-sidebar .landing-ui-button-action[data-id="content"]::before,
.landing-sidebar .landing-ui-button-action[data-id="style"]::before {
    display: none;
}

.landing-sidebar .landing-ui-button-action[data-id="actions"] .landing-ui-button-text::before {
    background: url(/bitrix/images/landing/small-actions.svg) left top no-repeat;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    width: 16px;
    height: 16px;
}

.landing-sidebar .landing-ui-button-action[data-id="content"] .landing-ui-button-text::before {
    background: url(/bitrix/images/landing/small-edit.svg) left top no-repeat;
    content: '';
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translateY(-30%);
    width: 20px;
    height: 20px;
}

.landing-sidebar .landing-ui-button-action[data-id="style"] .landing-ui-button-text::before {
    background: url(/bitrix/images/landing/small-design.svg) left top no-repeat;
    content: '';
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translateY(-37%);
    width: 20px;
    height: 20px;
}


.landing-ui-button-action[data-id="remove"] {
    border-left: none;
}

.landing-ui-button-action[data-id="actions"]::before {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 0;
    height: 0;
    border-left: 5px transparent solid;
    border-right: 5px transparent solid;
    border-top: 5px #5F6875 solid;
    transition: all 200ms ease;
}

.landing-ui-button-action[data-id="actions"].landing-ui-active::before,
.landing-ui-button-action[data-id="actions"]:hover::before {
    border-top: 5px rgba(0, 0, 0, .3) solid;
}


.landing-ui-block-actions-popup .menu-popup-item {
    min-width: 220px;
}

.landing-ui-button-action.landing-ui-no-rounded {
    border-radius: 0 !important;
}

.landing-ui-button-action.landing-ui-disable {
    pointer-events: none;
}

.landing-ui-button-action.landing-ui-disable .landing-ui-button-text {
    opacity: .4;
}

.landing-ui-block-restricted-button,
.landing-ui-block-restricted-button:hover {
    background-image: url("/bitrix/images/landing/block_restricted.svg");
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    width: 45px;
    top: 1px;
    left: 18px;
    cursor: default;
}

.landing-ui-block-restricted-button + .landing-ui-button-action {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.landing-ui-button-action[data-id="down"].landing-ui-disable::before,
.landing-ui-button-action[data-id="down"].landing-ui-disable .landing-ui-button-text,
.landing-ui-button-action[data-id="up"].landing-ui-disable .landing-ui-button-text,
.landing-ui-button-action[data-id="up"].landing-ui-disable::before {
    opacity: .4;
}

.landing-ui-button-action[data-id="collapse"] {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: none;
    z-index: 10;
}

.landing-ui-panel-content-action,
.landing-ui-panel-block-action {
    background-color: #ffffff;
    top: 10px;
    left: 16px;
    position: absolute;
    border-radius: 20px;
    z-index: 316;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity 200ms ease;
    opacity: 0;
}

.block-wrapper:hover .landing-ui-panel-content-action,
.block-wrapper.landing-ui-hover .landing-ui-panel-content-action,
.block-wrapper:hover .landing-ui-panel-block-action,
.block-wrapper.landing-ui-hover .landing-ui-panel-block-action {
    opacity: 1;
}

.landing-ui-panel-block-action {
    left: auto;
    right: 16px;
    z-index: 318;
}

.landing-ui-field {
    font-family: "Open Sans", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-bottom: 17px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e1df;
}

.landing-ui-panel-content-edit .landing-ui-field {
    padding-bottom: 0;
    border-bottom: none;
}

.landing-ui-panel-content-edit .landing-ui-panel-content-body-sidebar {
    padding: 20px 0;
}


.landing-ui-card-block-preview[data-code="CONTACTS"] .landing-ui-field,
.landing-ui-card-block-preview[data-code="PROMOTION_LIST_TEMPLATE"] .landing-ui-field,
.landing-ui-card-block-preview[data-code="HEADER"] .landing-ui-field,
.landing-ui-card-block-preview[data-code="FOOTER"] .landing-ui-field,
.landing-ui-card-block-preview[data-code="ORDER_TEMPLATE"] .landing-ui-field {
    padding-bottom: 0;
}

.landing-ui-card-block-preview[data-code="CONTACTS"] .landing-ui-field {
    margin-bottom: 25px;
}

.landing-ui-field-header {
    font-family: "OpenSans-Bold", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #101010;
    margin-bottom: 15px;
}

.landing-ui-field-header-iselect {
    font-family: "Open Sans", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #242424;
    margin-bottom: 7px;
}

.landing-ui-field-input {
    background: #fff;
    font-size: 13px;
    color: #000;
    line-height: 21px;
    border: 1px solid #ededed;
    padding: 5px 20px;
    min-height: 39px;
    box-sizing: border-box;
    transition: border-color 200ms ease;
    outline: none !important;
    word-wrap: break-word;
}

.landing-ui-field-input::placeholder {
    color: #8b8b8b;
}


.landing-ui-field-input[contenteditable="true"],
.landing-ui-field-input[contenteditable="plaintext-only"],
.landing-ui-field-input.landing-ui-active {
    background: none;
    border-color: #66AFE9;
}

.landing-ui-field-input:empty::before {
    display: inline-block;
    content: attr(data-placeholder);
    color: #e0e0e0;
}

.landing-ui-field-description {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 16px;
}

.landing-ui-field[data-compact="true"] + .landing-ui-field:not([data-compact="true"]) {
    margin-top: 17px;
}

.landing-ui-field:not([data-compact="true"]) + .landing-ui-field[data-compact="true"] {
    margin-top: -10px;
}

.landing-ui-panel-content-save,
.landing-ui-button-content-cancel {
    cursor: pointer;
    color: #000000;
    display: inline-block;
    height: 39px;
    line-height: 39px;
    margin: 0 12px 0 0;
    font-family: "OpenSans-Bold", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    outline: none;
    padding: 0 18px;
    vertical-align: middle;
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: background-color 0.2s linear, color 0.2s linear;
    transition: background-color 0.2s linear, color 0.2s linear;
    border: none;
}

.landing-ui-panel-content-save {
    color: #fff;
    margin-right: 0;
}

.landing-ui-panel-content-save:hover {
    color: #ffffff;
}

.landing-ui-panel-content-footer .landing-ui-button.landing-ui-panel-content-save {
    padding-left: 21px;
    padding-right: 22px;
}

.landing-ui-button-content-cancel {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.landing-ui-button-desktop,
.landing-ui-button-tablet,
.landing-ui-button-mobile {
    background-color: #ffffff;
    position: relative;
    width: 50px;
    min-height: 62px;
    opacity: .3;
    border: none;
    transition: opacity 200ms ease;
}

.landing-ui-button-desktop {
    width: 60px;
}

.landing-ui-button-mobile {
    width: 35px;
}


.landing-ui-button-desktop:hover,
.landing-ui-button-tablet:hover,
.landing-ui-button-mobile:hover {
    opacity: .8;
}


.landing-ui-button-desktop.active,
.landing-ui-button-tablet.active,
.landing-ui-button-mobile.active {
    opacity: 1;
}


.landing-ui-button-desktop::before,
.landing-ui-button-tablet::before,
.landing-ui-button-mobile::before {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    top: 11px;
}

.landing-ui-button-desktop::before {
    background: url('/bitrix/images/landing/devices/desktop.svg');
    background-size: 38px 24px;
    width: 47px;
    height: 29px !important;
}


.landing-ui-button-tablet::before {
    background: url('/bitrix/images/landing/devices/tablet.svg');
    background-size: 27px 20px;
    width: 34px;
    height: 25px !important;
    /*top: 10px;*/
}


.landing-ui-button-mobile::before {
    background: url('/bitrix/images/landing/devices/mobile.svg');
    background-size: 13px 21px;
    width: 17px;
    height: 25px !important;
    top: 12px;
}

.landing-ui-field-input {
    width: 100%;
}

.landing-ui-hidden {
    display: none;
}

.landing-ui-field-button-group .landing-ui-field-input {
    background: none;
    display: table;
    border: none;
    border-radius: 2px;
    padding: 0;
    line-height: 0;
    min-height: 20px;
    width: auto;
}

.landing-ui-field-button-group .landing-ui-field-input .landing-ui-button {
    line-height: 0;
    padding-top: 0;
    padding-bottom: 4px;
    height: 18px;
}

.landing-ui-field-button-group .landing-ui-field-input .landing-ui-button.landing-ui-active {
    background-color: #ffffff;
    -webkit-box-shadow: inset 0 0 3px 0 #e0e0e0;
    box-shadow: inset 0 0 3px 0 #e0e0e0;
}

.landing-ui-field-button-group .landing-ui-field-input .landing-ui-button:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.landing-ui-field-button-group .landing-ui-field-input .landing-ui-button:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-right: none;
}


.landing-ui-display-button-group {
    width: auto;
    height: auto;
}

.landing-ui-display-button-group .landing-ui-button {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0;
}

.landing-ui-display-button-group .landing-ui-button .landing-ui-button-desktop,
.landing-ui-display-button-group .landing-ui-button .landing-ui-button-tablet,
.landing-ui-display-button-group .landing-ui-button .landing-ui-button-mobile {
    background-color: transparent !important;
    display: inline-block;
    height: 50px;
    min-height: 50px;
    opacity: 1;
}

.landing-ui-display-button-group .landing-ui-button {
    position: relative;
}

.landing-ui-display-button-group .landing-ui-button.landing-ui-active {
    opacity: .2;
    transition: opacity 200ms ease;
}

.landing-ui-display-button-group .landing-ui-button.landing-ui-active:hover {
    opacity: .6;
}

.landing-ui-display-button-group .landing-ui-button .landing-ui-button-desktop {
    width: 46px;
}

.landing-ui-display-button-group .landing-ui-button .landing-ui-button-desktop::before {
    background: url('/bitrix/images/landing/devices/desktop-enabled.svg');
    width: 46px;
    height: 29px;
}

.landing-ui-display-button-group .landing-ui-button.landing-ui-active .landing-ui-button-desktop::before {
    background: url('/bitrix/images/landing/devices/desktop-disabled.svg');
}

.landing-ui-display-button-group .landing-ui-button .landing-ui-button-tablet {
    width: 90px;
}

.landing-ui-display-button-group .landing-ui-button .landing-ui-button-tablet::before {
    background: url('/bitrix/images/landing/devices/tablet-enabled.svg');
    width: 33px;
    height: 24px;
    top: 12px;
}

.landing-ui-display-button-group .landing-ui-button.landing-ui-active .landing-ui-button-tablet::before {
    background: url('/bitrix/images/landing/devices/tablet-disabled.svg');
}

.landing-ui-display-button-group .landing-ui-button .landing-ui-button-mobile::before {
    background: url('/bitrix/images/landing/devices/mobile-enabled.svg');
    width: 16px;
    height: 25px;
    margin-left: -9px;
}

.landing-ui-display-button-group .landing-ui-button.landing-ui-active .landing-ui-button-mobile::before {
    background: url('/bitrix/images/landing/devices/mobile-disabled.svg');
}

.landing-block-disabled::before {
    opacity: .3;
    pointer-events: all;
}

.theme-panel .landing-ui-field-input .landing-ui-button {
    position: relative;
    height: 36px !important;
    width: 36px !important;
    background: #fff;
    box-shadow: none;
    border: 0;
    display: block;
}

.theme-panel .landing-ui-field-input .landing-ui-button span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.options-block .option.landing-ui-button-active {
    border: 2px solid;
    border-color: #fb0040;
}

.theme-panel .landing-ui-button-active span {
    height: 30px !important;
    width: 30px !important;
    top: 1px !important;
    left: 1px !important;
    border: 0 !important;
}

.theme-panel .options-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.theme-panel .options-block__colors {
    display: flex;
    flex-wrap: wrap;
}

.theme-panel .options-block__colors li {
    border: 1px solid #e1e1df;
    padding: 0 10px;
    margin: 0 2px 2px 0;
}

.theme-panel .options-block .options-block-custom__btn-save,
.theme-panel .options-block .options-block-custom__btn-reset {
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    height: 40px;
    line-height: 14px;
    margin: 0 12px 0 0;
    font-family: "OpenSans-Bold", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    outline: none;
    padding: 0 18px;
    vertical-align: middle;
    text-decoration: none;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: background-color 0.2s linear, color 0.2s linear;
    transition: background-color 0.2s linear, color 0.2s linear;
    background-color: #fb0040;
    border: none;
}

.theme-panel .options-block .options-block-custom__btn-reset {
    color: #fb0040;
    background-color: transparent;
    border: 2px solid #fb0040;
}


.theme-panel .options-block-font .landing-ui-button {
    width: auto !important;
    height: 50px !important;
}

.theme-panel .landing-ui-card-block-preview {
    cursor: auto;
}

.theme-panel .option {
    cursor: pointer;
}

.theme-panel .options-block button {
    background: none;
    color: #000;
    border: 1px solid #e1e1df;
    padding: 0 10px;
    margin: 0 4px 4px 0;
}

.theme-panel .options-block button:disabled {
    cursor: not-allowed;
    filter: opacity(40%);
}

.theme-panel .options-block button.option-color {
    margin: 0 2px 2px 0;
}

.theme-panel .options-block span {
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
    font-size: 13px;
}

.theme-panel .options-block-iselect .option {
    width: 100%;
    margin: 0;
    padding: 0;
}

.theme-panel .options-block-iselect span {
    background-size: cover;
    display: block;
    height: 120px;
}

[hidden] {
    display: none !important;
}

.theme-change {
    position: fixed;
    left: 0;
    top: 178px;
    width: 58px;
    height: 58px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.theme-change .constructor-switch__item-icon,
.theme-change .constructor-switch__item-icon.constructor-switch__item-icon--two {
    animation-play-state: paused;
}

.theme-change:hover {
    background-color: #c80033;
    transition: all 0.3s ease-out;
}

.theme-change:hover .constructor-switch__item-icon,
.theme-change:hover .constructor-switch__item-icon.constructor-switch__item-icon--two {
    animation-play-state: running;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRevers {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.constructor-switch__item-icon {
    position: absolute;
    top: 28px;
    left: 30px;
    fill: #fff;
    animation: rotate 2s infinite linear;
}

.constructor-switch__item-icon.constructor-switch__item-icon--two {
    position: absolute;
    top: 10px;
    left: 7px;
    animation: rotateRevers 2s infinite linear;
}

.theme-change.theme-change--constructor {
    top: 241px;
    background-image: url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdBAMAAACkvXo8AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEX7/Pn////7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/PkAAAB9oN6GAAAACXRSTlMAABy43D5g9vDO/p7OAAAAAWJLR0QKaND0VgAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB+MDBQ0yKYtgFiAAAACXSURBVBjTY2AAAyYjQTAQgHAZVKYoIvOZPGc6IfNVZs6EKBCASc+EKBCASUMVQPhhaenT09ICkcznmIGwjykAyg+C8FUSoPwURRCfyRPGz3QC8VVmwvlTFAVAdsP5M50EQHZXdHR0zuzo6KicOUWBwXImMjDAkEfXj24+hv3o7sNwP7r/MP2PHj7o4Ycevhjhjx4/iPgDAJS1UDlUZjnwAAAAAElFTkSuQmCC);
}

.constructor-switch:hover .theme-change__tooltip {
    display: block;
}

.theme-change__save-btn {
    position: fixed;
    left: 0;
    top: 304px;
    width: 58px;
    height: 58px;
    z-index: 999;
    cursor: pointer;
    background-color: #00b02a;
    background-image: url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAMAAABF0y+mAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhFBMVEX////7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/Pn7/PkAAAC6d+PMAAAAKnRSTlMAAECAcQO/sMmlMFCoBkjADLJgEHZO0A2gvuLg9KpDDyACisJLezIWKbVZiaFgAAAAAWJLR0QrJLnkCAAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB+MDBQ87LsdC7KQAAACWSURBVCjPvdPJDoIwEIDhQkGQxQpIZXEDFXXe/wHtYJQCLZGY+F+azneZHkpMqsqyCUYBWzhyLsDS7tAz3uHMF5MgHOOKMbZGhCgcYSwuSYuoeoTNFNJZmHLOtzr8PEXCKJPL+6jsZyzKQTsJE6O3LSHZ97jH46DB40lUabDm2PlyVWETY+ntPnuh/+PDGVS8UP0d2swnBPo+JCRkMHcAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-position: center;
}

.theme-change__tooltip {
    display: none;
    position: absolute;
    padding: 33px;
    width: 436px;
    left: 77px;
    top: 0;
    background-color: #fff;
    box-shadow: 0 5px 9.7px 0.3px rgba(0, 0, 0, 0.15);
}

.theme-change__tooltip:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 22px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
    transform: rotate(45deg);
}


.theme-change__tooltip-title {
    padding-bottom: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}


.theme-change__tooltip-description {
    padding-bottom: 0;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 21px;
}


.options-block__list-item input[type="radio"] {
    display: none;
}

.options-block__list[data-code="HEADER"],
.options-block__list[data-code="FOOTER"] {
    flex-direction: column;
}

.options-block__list .options-block__label {
    cursor: pointer;
}

.options-block__list[data-code="HEADER"] .options-block__label,
.options-block__list[data-code="FOOTER"] .options-block__label {
    padding-left: 27px;
    cursor: pointer;
}

.options-block__list[data-code="HEADER"] .options-block__label span,
.options-block__list[data-code="FOOTER"] .options-block__label span {
    width: 100%;
}

.options-block__list[data-code="HEADER"] .options-block__label span {
    height: 50px;
}

.options-block__list[data-code="FOOTER"] .options-block__label span {
    height: 106px;
}

.options-block__list[data-code="HEADER"] .option-block__title:before,
.options-block__list[data-code="FOOTER"] .option-block__title:before {
    top: 8px;
    left: -29px;
    width: 18px;
}

.options-block__list[data-code="HEADER"] .options-block__label > .option-block__title:after,
.options-block__list[data-code="FOOTER"] .options-block__label > .option-block__title:after {
    top: 13px;
    left: -24px;
}

.options-block__list[data-code="HEADER"] .options-block__list-item,
.options-block__list[data-code="FOOTER"] .options-block__list-item {
    width: 100%;
}


.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__label span {
    display: none;
}

.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__label {
    margin-right: 0;
    padding: 4px 10px;
    border: 2px solid rgba(116, 116, 116, 0.2);
    text-align: center;
}

.options-block.options-block-iselect.options-block__list[data-code="DETAIL_TEMPLATE"] {
    margin-bottom: 0;
}

.options-block.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__list-item {
    margin-bottom: 0;
}

.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__label .option-block__title {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 40px;
    font-weight: 400;
    color: #101010;
}

.options-block__list[data-code="DETAIL_TEMPLATE"] .landing-ui-button-active + .options-block__label > .option-block__title {
    font-weight: 400;
}

.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__list-item {
    width: auto;
    margin-right: 10px;
}

.options-block__list[data-code="DETAIL_TEMPLATE"] .landing-ui-button-active + .options-block__label {
    width: auto;
    margin-right: 0;
    padding: 0 10px;
    border-color: #fb0040;
}

.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__label .option-block__title:before,
.options-block__list[data-code="DETAIL_TEMPLATE"] .options-block__label .option-block__title:after {
    display: none;
}

.options-block__list .options-block__list-item {

    width: 102px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin-right: 45px;
    margin-bottom: 1rem;
}

.options-block__list-item:nth-of-type(3n) {
    margin-right: 0;
}

.options-block__label {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.theme-panel .options-block__label span {
    width: 104px;
    height: 128px;
    background-repeat: no-repeat;
    background-size: auto;
}

.option-block__title {
    position: relative;
    flex-grow: 1;
    padding-left: 30px;
}

.option-block__title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(116, 116, 116, 0.2);
    border-radius: 50%;
}

.options-block__input.landing-ui-button-active + .options-block__label > .option-block__title:before {
    border: 2px solid #fb0040;
}

.landing-ui-button-active + .options-block__label > .option-block__title:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background-color: #fb0040;
    border-radius: 50%;
}


.landing-ui-button {
    cursor: pointer;
}

.options-block-custom {
    width: 100%;
    height: 39px;
    margin-bottom: 20px;
    border: 1px solid #ededed;
    padding: 5px 20px;
    margin-top: 18px;
    font-size: 13px;
    color: #8b8b8b;
}

.options-block-custom::placeholder {
    color: #8b8b8b;
}

@media (max-width: 1023px) {
    .theme-change {
        display: none;
    }

    #theme-panel {
        display: none;
    }
}


.landing-ui-form-style .landing-ui-form-body > input {
    background: none;
    /* color: #fb0040 !important; */
}

.landing-ui-form-style .landing-ui-form-body .landing-ui-field {
    padding-bottom: 0;
    border-bottom: none;
}


.overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 995;
}

.overlay.overlay-show {
    display: block;
}


.switch {
    position: relative;
    width: 35px;
    height: 14px;
    background: #e5e5e5;
    border-radius: 6px;
}

.switch::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: 33px;
    height: 12px;
    background: #fff;
    border-radius: 6px;
}

.switch::after {
    content: '';
    position: absolute;
    left: 1px;
    top: -3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px #999;
    transition-duration: 300ms;
}

.switch-on, .switch-on::before {
    background: #4cd964;
}

.switch-on::after {
    left: 15px;
}

.options-block.disabled {
    cursor: not-allowed;
    filter: opacity(40%);
}

.switch.disabled {
    pointer-events: none;
}

.landing-ui-field-switch {
    display: flex;
    align-items: center;
}

.landing-ui-field-switch .landing-ui-field-header {
    margin-bottom: 0;
    margin-right: 20px;
}

.tabs {
    width: 100%;
}

.tabs li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabs li.ui-state-default {
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.tabs li.ui-state-default .options-block {
    position: absolute;
    right: 0;
}

.tabs li .options-block {
    padding-right: 20px;
}

.landing-ui-card-block-preview__title {
    font-family: "OpenSans-Bold", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #101010;
    margin-bottom: 15px;
}


/*#theme-panel .landing-ui-panel-content-save {
    display: none;
}*/
