@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'IBM Plex Sans', sans-serif;
}

html {
    background: #FAFAFA;
}

.h100 {
    height: 100%;
    min-height: 763px;
}

.h100 body {
    height: 100%;
}

.wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.wrapper:after {
    content: '';
    clear: both;
    display: block;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clearfix {
    clear: both;
}

.t-right {
    text-align: right;
}

.t-center {
    text-align: center;
}

.w-1150 {
    width: 1150px;
    margin: 0 auto;
}

.mobile-plug {
    display: none;
}

.btn {
    line-height: 20px;
    padding: 8px 32px;
    color: #5DAF8B;
    border: 2px solid #5DAF8B;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}

.btn:hover {
    border-color: #469472;
    color: #469472;
}

.btn.green {
    color: #FFF;
    background: #5DAF8B;
}

.btn.green:hover {
    background: #469472;
    border-color: #469472;
}

.btn.large {
    display: block;
    text-align: center;
    height: 56px;
    box-sizing: border-box;
    line-height: 36px;
}

.btn.disabled {
    cursor: default;
}

.btn.green.disabled:hover {
    background: #5DAF8B;
    border-color: #5DAF8B;
}

header {
    background: #FFF;
    padding: 22px 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

header .logo {
    width: 133px;
    height: 40px;
    background: url(../images/logo.svg) no-repeat center top;
    display: block;
    float: left;
    background-size: 100%;
}

header nav {
    line-height: 20px;
    padding: 10px 0;
}

header nav.right {
    padding: 0;
    text-align: center;
    margin-left: 40px;
}

header nav.left {
    padding-left: 25px;
}

header nav a {
    font-weight: 500;
    font-size: 15px;
    color: #8B919C;
    text-decoration: none;
    display: block;
    float: left;
    margin-left: 40px;
}

header nav.right a {
    margin-left: 0;
    display: inline-block;
    float: none;
}

header nav a:hover,
header nav .green {
    color: #5DAF8B;
}

header nav p {
    font-size: 14px;
    color: #555;
}

header .btn {
    display: block;
    float: left;
    margin-left: 24px;
}

header .user {
    float: left;
    position: relative;
    margin-top: -7px;
    margin-left: 40px;
    padding-right: 20px;
    cursor: pointer;
}

header .user:after {
    content: '';
    position: absolute;
    top: 23px;
    right: 0;
    display: block;
    width: 2px;
    height: 8px;
    background: #C8C8C8;
    border-radius: 1px;
    transform: rotate(50deg);
}

header .user:before {
    content: '';
    position: absolute;
    top: 23px;
    right: 5px;
    display: block;
    width: 2px;
    height: 8px;
    background: #C8C8C8;
    border-radius: 1px;
    transform: rotate(-50deg);
}

header .user img {
    display: block;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    border: 1px solid #CCC;
}

header .user .block {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    padding: 16px 24px;
    box-sizing: border-box;
    width: 350px;
    background: #FFF;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    z-index: 2;
    cursor: default;
}

header .block img {
    width: 62px;
    height: 62px;
    float: left;
    margin-right: 16px;
}

header .block .left {
    width: calc(100% - 80px);
}

header .block h1 {
    color: #111213;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}

header .block .left a {
    color: #B3B9C5;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
}

header .block .left a:hover {
    text-decoration: underline;
}

header .block .projects {
    border-top: 1px solid #E5E5E5;
    margin: 24px 0 10px;
    padding-top: 16px;
}

header .block .projects a {
    display: block;
    line-height: 24px;
    padding-left: 32px;
    background: url(../images/projects.svg) no-repeat left center;
    background-size: 18px;
    text-decoration: none;
    color: #B3B9C5;
}

header .block .favorite a {
    display: block;
    line-height: 24px;
    padding-left: 32px;
    background: url(../images/favorite.svg) no-repeat left center;
    background-size: 18px;
    text-decoration: none;
    color: #B3B9C5;
}

header .block div a:hover {
    text-decoration: underline;
}

header .block .logout {
    display: inline-block;
    margin-top: 16px;
    color: #5DAF8B;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-decoration: none;
}

header .block .logout:hover {
    color: #3c8464;
}

.content {
    padding: 22px 10px
}

.h100 .content {
    height: calc(100% - 91px);
    box-sizing: border-box;
}

.h100 .content > .wrapper {
    height: 100%;
    min-height: 723px;
}

.content .configurator {
    height: 100%;
}

footer {
    padding: 15px 10px;
    text-align: center;
    color: #8B919C;
    font-size: 14px;
    line-height: 15px;
}

.h100 footer {
    display: none;
}

.modal-window {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    background: rgba(0, 0, 0, 0.5);
}

.modal {
    position: relative;
    top: 100px;
    margin: 0 auto 20px;
    padding: 34px 48px;
    background: #FFF;
    display: none;
    width: 594px;
    z-index: 105;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.modal.preview {
    width: 700px;
}

.modal h2 {
    font-size: 40px;
    line-height: 48px;
    color: #111213;
    margin-bottom: 32px;
    font-weight: 500;
}

.modal .close {
    z-index: 2;
    position: absolute;
    top: 27px;
    right: 27px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all .3s linear;
    transform: rotate(45deg);
    border: 2px solid #8B919C;
    border-radius: 50%;
}

.modal .close:hover {
    transform: scale(1.1) rotate(135deg);
}

.modal .close:before {
    content: '';
    display: block;
    width: 18px;
    top: 14px;
    left: 6px;
    height: 2px;
    background: #8B919C;
    position: absolute;
    cursor: pointer;
}

.modal .close:after {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 18px;
    background: #8B919C;
    top: 6px;
    left: 14px;
}

.modal .hint {
    padding-top: 16px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 24px;
    color: #5E6269;
}

.modal .top-border {
    margin-bottom: 0;
    padding-top: 32px;
    border-top: 1px solid #E5E5E5;
}

.modal .top-border-2 {
    margin-bottom: 0;
    padding-top: 22px;
    margin-top: 32px;
    border-top: 1px solid #E5E5E5;
}

.modal p a {
    color: #5DAF8B;
    cursor: pointer;
    text-decoration: none;
}

.modal p a:hover {
    text-decoration: underline;
}

.modal .result {
    text-align: center;
}

.modal h3 {
    color: green;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
}

.modal textarea {
    display: block;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 10px;
    line-height: 24px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
    height: 160px;
    resize: none;
}

.modal .phone,
.personal-data .phone {
    float: left;
    width: calc(100% - 100px);
    margin-left: 10px;
}

.modal .countries,
.personal-data .countries {
    float: left;
}

.videos .col-70 {
    width: calc(70% - 30px);
    margin-right: 30px;
    float: left;
}

.videos .col-30 {
    width: 30%;
    float: left;
}

.videos iframe {
    width: 100%;
    height: 400px;
}

.videos .video {
    display: block;
    margin-bottom: 30px;
    transition: all .2s linear;
}

.videos .video:hover {
    opacity: .8;
}

.videos .video:after {
    content: '';
    clear: both;
    display: block;
}

.videos .video img {
    display: block;
    width: calc(50% - 10px);
    float: left;
}

.videos .video div {
    float: left;
    width: 50%;
    margin-left: 10px;
}

.videos .video div p {
    line-height: 18px;
    font-size: 14px;
    color: #444;
    margin-top: 5px;
}

.videos .video div h1 {
    font-size: 14px;
    font-weight: 600;
    color: #111213;
    line-height: 18px;
    max-height: 53px;
    overflow-y: hidden;
}

.videos h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin: 10px 0 20px;
}

.videos p {
    line-height: 20px;
}

.videos p b {
    color: #469472;
}

.videos .col-70 ul {
    margin-left: 20px;
    margin-top: 10px;
}

.videos .col-70 li {
    line-height: 20px;
    margin-bottom: 8px;
}

.personal-data,
.videos {
    background: #FFFFFF;
    box-shadow: -6px 13px 57px rgba(94, 98, 105, 0.1);
    border-radius: 6px;
    padding: 40px 48px;
    box-sizing: border-box;
}

.videos:after {
    content: '';
    display: block;
    clear: both;
}

.personal-data h2 {
    color: #111213;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

.personal-data h3 {
    color: #076F31;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.personal-data .line {
    height: 1px;
    background: #E5E5E5;
    margin: 24px 0;
}

.personal-data input[type=submit] {
    width: 250px;
}

.personal-data .col {
    width: calc(50% - 24px);
    float: left;
}

.personal-data .first-col {
    margin-right: 48px;
}

.breadcrumbs {
    margin-bottom: 32px;
}

.breadcrumbs span {
    display: inline-block;
    padding: 0 10px;
    color: #B3B9C5;
    font-size: 14px;
}

.breadcrumbs a {
    color: #B3B9C5;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
}

.breadcrumbs .a {
    font-weight: 500;
    color: #5DAF8B;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

form input[type=text],
form input[type=password] {
    display: block;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 10px;
    line-height: 54px;
    padding: 0 15px;
    width: 100%;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
}

.configurator form h3 input[type=text] {
    border-radius: 0;
}

form input[type=text].error,
form input[type=password].error,
form .jq-checkbox.error {
    border-color: red;
}

form input[type=submit] {
    background: #5DAF8B;
    border-radius: 4px;
    display: block;
    border: none;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    height: 56px;
    margin-top: 32px;
    cursor: pointer;
    margin-bottom: 25px;
}

form input[type=submit]:hover {
    border-color: #469472;
    background: #469472;
}

form input[type=submit].loading,
form .project-submit.loading {
    background: #3c8464 url(../images/submit.gif) no-repeat center !important;
    border-color: #3c8464 !important;
    color: transparent;
    cursor: default;
}

form b {
    letter-spacing: .3px;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 16px;
    display: block;
    color: #111213;
    margin-bottom: 8px;
}

form b i {
    display: inline-block;
    font-style: normal;
    color: red;
    font-size: 14px;
    margin-left: 2px;
    font-weight: 400;
}

form .result {
    font-size: 14px;
    line-height: 22px;
}

form .result.error {
    color: red;
}

form .result.success {
    color: green;
}

form .simple-row {
    position: relative;
}

form .simple-row .eye {
    position: absolute;
    height: 32px;
    width: 40px;
    display: block;
    background: url(../images/eye.svg) no-repeat center;
    top: 38px;
    right: 5px;
    cursor: pointer;
}

form .row {
    margin: 32px 0;
}

form .row span {
    line-height: 24px;
    font-size: 14px;
    color: #111213;
}

.project-preview {
    border-collapse: collapse;
    width: 100%;
}

.project-preview .draft {
    background: #EFEFEF;
}

.project-preview .no-border,
.project-preview .no-border td {
    border: none;
}

.project-preview .left {
    text-align: left;
    float: none;
    padding-left: 0;
}

.project-preview th {
    background: #FAFAFA;
    color: #111213;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    padding: 16px;
    text-align: center;
}

.project-preview th:nth-child(1) {
    width: 40px;
}

.project-preview td {
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #E5E5E5;
}

.project-preview h1 {
    background: #F3FBF7;
    font-size: 16px;
    color: #076F31;
    font-weight: 400;
    line-height: 32px;
    padding: 8px 16px;
    border-top: 8px solid #FFF;
    text-align: left;
}

.project-preview .f {
    display: inline-block;
    border: 1px solid #AAA;
    border-radius: 2px;
    margin-bottom: -4px;
}

.project-details .project-preview .f {
    border: none;
    border-radius: 0;
}

.project-preview .frame {
    background: linear-gradient(0deg, rgba(180, 180, 180, 1) 0%, rgba(236, 236, 236, 1) 100%);
    display: inline-block;
    padding: 3px;
    border-radius: 3px;
    border: 1px solid #AAA;
}

.project-details .project-preview .frame {
    background: none;
    padding: 0;
    border: none;
}

.project-preview .empty-frame {
    background: linear-gradient(0deg, rgba(180, 180, 180, 1) 0%, rgba(236, 236, 236, 1) 100%);
    display: inline-block;
    padding: 3px;
    border-radius: 3px;
    border: 1px solid #AAA;
}

.project-preview .empty-frame b {
    display: inline-block;
    border: 1px solid #AAA;
    border-radius: 2px;
    margin-bottom: -4px;
    width: 40px;
    height: 40px;
    background: #FFF;
}

.project-preview .draft .empty-frame b {
    background: #EFEFEF;
}

.project-preview img {
    display: block;
    border-radius: 1px;
    width: 40px;
}

.project-preview td i {
    font-style: normal;
    color: #777;
    font-size: 14px;
}

@media screen and (max-width: 1280px) {
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1000px) {
    .mobile-plug {
        display: block;
        text-align: center;
        padding-top: 100px;
    }

    .mobile-plug img {
        display: block;
        margin: 0 auto 50px;
    }

    .mobile-plug h1 {
        font-weight: 500;
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 14px;
    }

    .mobile-plug p {
        font-weight: 300;
        font-size: 18px;
        line-height: 21px;
    }

    .content {
        display: none;
    }

    header {
        display: none;
    }

    footer {
        display: none;
    }

    .h100 {
        height: auto;
        min-height: auto;
    }
}

.jq-checkbox,
.jq-radio {
    position: relative;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jq-checkbox input,
.jq-radio input {
    position: absolute;
    z-index: -1;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.jq-file {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.jq-file input {
    position: absolute;
    top: 0;
    right: 0;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    font-size: 100px;
    line-height: 1em;
}

.jq-file__name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jq-selectbox,
.jq-select-multiple {
    position: relative;
    display: inline-block;
}

.jq-selectbox select,
.jq-select-multiple select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.jq-selectbox li,
.jq-select-multiple li {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.jq-selectbox {
    z-index: 10;
}

.jq-selectbox__select {
    position: relative;
}

.jq-selectbox__select-text {
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jq-selectbox__dropdown {
    position: absolute;
}

.jq-selectbox__search input {
    -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.jq-selectbox__dropdown ul {
    position: relative;
    overflow: auto;
    overflow-x: hidden;
    list-style: none;
    -webkit-overflow-scrolling: touch;
}

.jq-select-multiple ul {
    position: relative;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.jq-number {
    display: inline-block;
}

.jq-number__field input {
    -moz-appearance: textfield;
    text-align: left;
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.jq-selectbox.width-300 {
    width: 300px;
}

.jq-selectbox.width-120 {
    width: 120px;
}

.jq-selectbox.width-90 {
    width: 90px;
}

.error-404 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    height: 500px;
}

.error-404 img {
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
}

.error-404 h1 {
    color: #111213;
    margin-bottom: 4px;
    font-size: 42px;
    line-height: 50px;
    font-weight: 500;
}

::placeholder {
    color: #B3B9C5;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #B3B9C5;
}

::-ms-input-placeholder {
    color: #B3B9C5;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #5DAF8B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #5DAF8B;
    border-radius: 4px;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    height: 100%;
    -ms-touch-action: pan-Y;
    padding: 0 !important;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    height: 100%;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    max-height: 140px;
    height: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 500ms ease-in-out;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 5px 0;
    background: #888;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all 0.2s;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #9C6B00;
}
