/* COMMON */
/* .modal-open {
    padding-right: 17px;
} */
@font-face {
    font-family: "AvenirLT";
    src: url("../webfonts/AvenirLTStd-Light.otf");
    font-weight: 300;
}

@font-face {
    font-family: "AvenirLT";
    src: url("../webfonts/AvenirLTStd-Medium.otf");
    font-weight: 500;
}

@font-face {
    font-family: "AvenirLT";
    src: url("../webfonts/AvenirLTStd-Heavy.otf");
    font-weight: 800;
}

@font-face {
    font-family: "AvenirLT";
    src: url("../webfonts/AvenirLTStd-Black.otf");
    font-weight: 900;
}

@font-face {
    font-family: "AvenirLT-Book";
    src: url("../webfonts/AvenirLTStd-Book.otf");
}

@font-face {
    font-family: "AvenirLT-Roman";
    src: url("../webfonts/AvenirLTStd-Roman.otf");
}

:root {
    --theme-color: #120c75;
}

a,
button {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--theme-color);
    margin: 0;
}

body {
    color: #000000;
    font-weight: 300;
    font-family: "AvenirLT";
    font-size: 15px;
    line-height: 20px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a,
button,
input,
textarea {
    outline: none;
}

p {
    margin: 0;
}

.pt-25 {
    padding-top: 25px;
}
.pl-25 {
    padding-left: 25px;
}
.pr-25 {
    padding-right: 25px;
}
.pb-15 {
    padding-bottom: 15px;
}
.mt-25 {
    margin-top: 25px;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-underline {
    text-decoration: underline;
}

.cookie-dialog {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 70px 10px 10px;
    color: #fff;
    opacity: 0;
    transition: 0.5s;
}

.cookie-dialog.active {
    opacity: 1;
}

.cookie-dialog a {
    color: #007bff !important;
}

.cookie-dialog-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    cursor: pointer;
}

.cookie-dialog-close::before {
    content: '';
    width: 80%;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.cookie-dialog-close::after {
    content: '';
    width: 80%;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 0;
}

.header-top {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    position: relative;
    z-index: 11;
}

.header-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}

.header-row {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    min-width: 150px;
    margin-right: 20px;
}

.header-logo img {
    display: block;
    height: 100%;
}

.header-search {
    margin: 0 0 0 auto;
    width: 100%;
    flex: auto;
    max-width: 720px;
    position: relative;
}

.header-search input {
    width: 100%;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-family: "AvenirLT-Book";
    padding: 10px 20px;
    border-radius: 25px;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 20px;
}

.header-search input::-webkit-input-placeholder {
    color: var(--theme-color);
    opacity: 1;
}

.header-search input::-moz-placeholder {
    color: var(--theme-color);
    opacity: 1;
}

.header-search input:-ms-input-placeholder {
    color: var(--theme-color);
    opacity: 1;
}

.header-search input::-ms-input-placeholder {
    color: var(--theme-color);
    opacity: 1;
}

.header-search input::placeholder {
    color: var(--theme-color);
    opacity: 1;
}

.header-user {
    margin-left: 40px;
}

.header-user a {
    color: var(--theme-color);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.header-user i {
    font-size: 36px;
    margin-right: 10px;
}

.header-user span {
    font-size: 16px;
}

.header-cart {
    position: relative;
    margin-left: 20px;
    margin-right: 16px;
}

.header-cart a {
    color: var(--theme-color);
    display: flex;
    align-items: center;
}

.header-cart i {
    font-size: 30px;
}

.header-cart span {
    line-height: 20px;
    min-height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: #fff;
    font-family: "AvenirLT-Book";
    font-size: 13px;
    position: absolute;
    right: -50%;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu {
    width: 100%;
    background: #dee2e6;
    position: relative;
}

.header-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0 0 3px rgb(0 0 0 / 44%);
    z-index: 10;
    pointer-events: none;
}

.header-menu ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -20px;
}

.header-menu ul > li {
    display: block;
    line-height: 14px;
}

.header-menu ul > li > a {
    display: flex;
    align-items: center;
    font-family: "AvenirLT";
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--theme-color);
    padding: 15px 20px;
    white-space: nowrap;
}

.header-menu ul > li.header-dropdown > a::after {
    content: "\f107";
    color: inherit;
    font-size: 18px;
    margin-left: 6px;
    font-family: "Font Awesome 5 Pro";
    position: relative;
    top: 1px;
    font-weight: 400;
}

.header-menu ul > li:hover > a,
.header-menu ul > li > a.active {
    color: #333;
}

.header-dropdown-menu {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 100vh 0 100vh rgba(0,0,0,0.5);
    padding: 30px 20px 40px;
    max-height: 100vh;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.1s linear;
}

.header-menu ul > li.header-dropdown:hover > .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header-dropdown-menu-row {
    display: flex;
    justify-content: space-between;
    margin: 10px -15px;
}

.header-dropdown-menu-row > div {
    margin: 0 15px;
    flex: 0 1 auto;
}

.header-dropdown-menu-row > div.header-dropdown-menu-col-25 {
    flex: 0 1 25%;
}

.header-dropdown-menu-row > div.header-dropdown-menu-col-50 {
    flex: 0 1 50%;
    background: #f8f9fa;
}

.header-dropdown-menu-row > div.header-dropdown-menu-mt {
    flex: 0 1 33.333333%;
    max-width: 375px;
    margin-top: 20px;
}

.header-dropdown-menu-row > div.header-dropdown-menu-mt > a {
    display: block;
    position: relative;
    border: 1px solid #999;
}

.header-dropdown-menu-row > div.header-dropdown-menu-mt > a img {
    width: 100%;
    height: auto;
}

.header-dropdown-menu-row > div.header-dropdown-menu-mt > a span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(18,12,117,0.9);
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    padding: 2px 0;
}

.header-dropdown-menu-row > div.header-dropdown-menu-mt > a strong {
    display: block;
    width: 50%;
    height: 1px;
    background: #fff;
    margin: auto;
}

.header-dropdown-menu h5 {
    font-size: 14px;
    line-height: 16px;
    color: var(--theme-color);
    text-transform: uppercase;
    padding: 0 0 5px;
    font-weight: 900;
    white-space: nowrap;
    display: inline-block;
    border-bottom: 1px dashed;
    margin-bottom: 10px;
}

.header-dropdown-menu ul + h5 {
    margin-top: 20px;
}

.header-dropdown-menu ul {
    list-style-type: none;
    display: block;
    margin: 0;
}

.header-dropdown-menu ul > li {
    display: block;
}

.header-dropdown-menu ul > li > a {
    color: #777;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 0;
    display: block;
    text-transform: capitalize;
}

.header-dropdown-menu ul > li > a:hover {
    color: var(--theme-color);
}

.header-dropdown-menu ul > li > a > h5 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 2px 0;
    margin: 0;
    border: 0;
    display: block;
}

.header-submenu ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.header-submenu ul li {
    display: block;
    margin: 0 15px;
    flex: 0 1 calc(25% - 30px);
}

.header-menu ul > li.header-dropdown-mobile {
    display: none;
    padding: 0 20px;
}

.hamburger-menu {
    cursor: pointer;
    margin-left: 28px;
    display: none;
}

.hamburger-menu span {
    background: var(--theme-color);
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}

.header-search-placeholder {
    position: absolute;
    top: 12px;
    left: 22px;
    font-size: 15px;
    color: var(--theme-color);
    pointer-events: none;
}

.header-search-placeholder span {
    display: none;
}

.header-search-placeholder span.hide-mobile {
    display: block;
}

input:focus + .header-search-placeholder {
    opacity: 0;
}

input:not(:placeholder-shown) + .header-search-placeholder {
    opacity: 0;
}

@media (max-width: 991px) {
    .header-search-placeholder span {
        display: block;
    }
    
    .header-search-placeholder span.hide-mobile {
        display: none;
    }
}

.suggestionsBox {
    position: absolute;
    top: 100%;
    padding: 0;
    margin: 5px 0 0;
    background: #fff;
    border-bottom: 1px solid #666;
    color: #000;
    left: 0;
    right: 0;
    z-index: 1;
}

.suggestionList {
    margin: 0px;
    padding: 0px;
}

.suggestionList > div {
    padding: 4px 20px;
    border: 1px solid #666;
    border-bottom: 0;
    background: #fff;
    color: #000;
    cursor: pointer;
}

.suggestionList > div:hover {
    background: #f7f7f7;
}

.main-container {
    max-width: 1240px;
    margin: auto;
    padding: 40px 20px;
}

.content-dropdown-menu-row > div + div {
    margin: 30px 0;
}

.content-dropdown-menu h5 {
    font-size: 15px;
    line-height: 1.2;
    color: var(--theme-color);
    text-transform: uppercase;
    padding-bottom: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.content-dropdown-menu ul {
    list-style-type: none;
}

.content-dropdown-menu ul > li {
    display: block;
}

.content-dropdown-menu ul > li > a {
    color: #777;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 0;
    display: inline-block;
    text-transform: capitalize;
}

.content-dropdown-menu ul > li > a:hover {
    color: var(--theme-color);
}

.content-dropdown-menu ul > li > a > h5 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 6px 0 0;
}

.content-dropdown-menu-row-flex {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.content-dropdown-menu-row-flex > div.content-dropdown-menu-mt {
    flex: 0 1 calc(33.333333% - 30px);
    margin: 15px;
    min-width: 335px;
}

.content-dropdown-menu-row-flex > div.content-dropdown-menu-mt > a {
    display: block;
    position: relative;
    border: 1px solid #999;
}

.content-dropdown-menu-row-flex > div.content-dropdown-menu-mt > a img {
    width: 100%;
    height: auto;
}

.content-dropdown-menu-row-flex > div.content-dropdown-menu-mt > a span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(18,12,117,0.9);
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    padding: 2px 0;
}

.content-dropdown-menu-row-flex > div.content-dropdown-menu-mt > a strong {
    display: block;
    width: 50%;
    height: 1px;
    background: #fff;
    margin: auto;
}

.video_area {
    position: relative;
    height: 670px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #000000;
}

.about_video_area {
    height: 400px;
}

.video_area video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.8;
}

.video_area h1 {
    color: #ffffff;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.video_area p {
    color: #dbdbdb;
    font-size: 22px;
    line-height: 1.3;
    margin-top: 10px;
}

.jarallax {
    position: relative;
    z-index: 0;
    height: 100vh;
    max-height: 700px;
}

.jarallax > .jarallax-img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.jarallax.home_parallax {
    height: 400px;
}

.product-page-banner {
    display: flex;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    justify-content: space-around;
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.product-page-banner > div {
    flex: 0 1 50%;
}

.product-page-banner > div:first-child {
    text-align: right;
}

.product-page-banner h2 {
    font-size: 26px;
    font-weight: 700;
    max-width: 290px;
    margin-left: auto;
}

.product-page-banner span {
    height: 3px;
    display: block;
    background: #120c75;
    margin: 20px 0;
    position: relative;
}

.product-page-banner span::before {
    content: '';
    height: 3px;
    width: 10px;
    background: #120c75;
    position: absolute;
    top: 1px;
    right: -1px;
    transform: rotate(36deg);
    transform-origin: right top;
    border-radius: 1px;
}

.product-page-banner span::after {
    content: '';
    height: 3px;
    width: 10px;
    background: #120c75;
    position: absolute;
    top: -1px;
    right: -1px;
    transform: rotate(-36deg);
    transform-origin: right bottom;
    border-radius: 1px;
}

.product-page-banner img {
    max-height: 200px;
}

.product-list-banner {
    display: flex;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    justify-content: space-around;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.product-list-banner-cat {
    padding: 0;
}

.product-list-banner > div {
    flex: 0 1 33.333333%;
}

.product-list-banner img {
    max-height: 160px;
}

.product-list-banner-cat img {
    max-height: 180px;
}

.product-list-banner h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 8px;
}

.product-list-banner h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0c0145;
}

.product-list-banner p {
    font-size: 15px;
    font-weight: 300;
}

@media (max-width: 992px) {
    header {
        padding: 0 0 60px;
        background: #fff;
        box-shadow: 0 0 3px rgb(0 0 0 / 44%);
    }
    .header-top {
        background: transparent;
    }
    .header-logo {
        height: 40px;
        min-width: 120px;
        display: flex;
        align-items: center;
    }
    .header-user {
        margin-left: auto;
    }
    .header-user i {
        font-size: 24px;
    }
    .header-user span {
        font-size: 14px;
        font-weight: 700;
    }
    .header-cart i {
        font-size: 24px;
    }
    .header-search {
        position: absolute;
        top: 78px;
        margin: auto;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 100%;
        background-color: #fff;
        margin-top: 0;
        padding: 140px 0 0;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        z-index: -1;
        overflow: auto;
        top: 140px;
        padding-top: 0;
        height: calc(100% - 140px);
    }
    .header-menu.current {
        right: 0;
    }
    .header-menu.current::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 140px;
        background: #f7f7f7;
        z-index: 10;
    }
    .header-menu ul {
        display: block;
    }
    .header-menu ul > li > a {
        padding: 20px;
        display: block;
    }
    .header-menu ul > li.header-dropdown > a::after {
        top: 3px;
    }
   .header-dropdown-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        top: 0;
        box-shadow: 0 0;
        max-height: none;
        padding: 0 20px;
    }
    .header-dropdown-menu-row {
        display: block;
        margin: 0;
        padding: 0;
        background: transparent;
    }
    .header-dropdown-menu-row > div {
        margin: 0 0 30px;
        padding: 0;
        background: transparent !important;
    }
    .header-dropdown-menu ul > li > a {
        padding: 5px 0;
    }
    .header-menu .header-submenu ul {
        display: block;
        margin-top: 10px;
    }
    .header-dropdown-menu-row > div.header-dropdown-menu-mt {
        display: none;
    }
    .header-menu ul > li.header-dropdown-mobile {
        display: block;
    }
    .header-menu ul > li.header-dropdown-mobile .header-dropdown-menu-row > div.header-dropdown-menu-mt {
        display: block;
    }
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .product-list-banner {
        flex-direction: column;
        padding: 20px 0;
    }
    .product-list-banner img {
        max-height: 100%;
    }
    .product-list-banner > div {
        position: relative;
    }
    .product-list-banner > div:not(:first-child) + div {
        margin-top: 20px;
    }
    .product-list-banner > div:first-child {
        position: absolute;
        opacity: 0.25;
    }
    .about_video_area {
		height: 230px;
	}
}

@media (max-width: 576px) {
    .header-logo {
        min-width: 90px;
    }
    .header-logo img {
        height: 30px;
    }
    .header-cart {
        margin-left: 14px;
        margin-right: 10px;
    }
    .header-cart i {
        font-size: 22px;
    }
    .header-cart span {
        min-height: 22px;
        min-width: 22px;
        font-size: 11px;
    }
    .hamburger-menu {
        margin-left: 24px;
    }
    .video_area h1 {
		font-size: 42px;
	}
	.video_area p {
		font-size: 19px;
	}
}

/* LAP BUILDER */
.lap-builder {
    min-height: calc(100vh - 140px);
    min-height: calc(var(--vh) * 100 - 140px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.lap-builder-catalogue {
    min-height: calc(100vh - 0px);
    min-height: calc(var(--vh) * 100 - 0px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.lap-builder-loading {
    min-height: calc(100vh - 140px);
}

.lap-builder-catalogue.lap-builder-loading {
    min-height: calc(100vh - 0px);
}

.lap-builder-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    z-index: 9;
}

.lap-builder-loading .lap-builder-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    /* background: url('../images/settings/loader.jpg') center no-repeat;
    background-size: contain; */
    border: 2px solid #001487;
    border-radius: 50%;
    z-index: 10;
    animation: lapbuilderloader 800ms cubic-bezier(0.5, 0, 0.5, 1) infinite 10ms;
}

.lap-builder-loading .lap-builder-loader::before {
    content: '';
    position: absolute;
    width: 75px;
    height: calc(100% + 4px);
    background: #f7f7f7;
    left: 0;
    right: 0;
    margin: auto;
    top: -2px;
}

@keyframes lapbuilderloader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.lap-builder-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #d7d7d7;
    font-size: 28px;
    font-weight: 600;
    z-index: 1;
}

.lap-builder-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1030;
}

.lap-rotation-benefits-button {
    display: none;
    position: absolute;
    top: 64px;
    left: 10px;
    width: 300px;
    z-index: 2;
}

.lap-rotation-benefits-button.active {
    display: inline-block;
}

.lap-rotation-benefits {
    position: absolute;
    top: 108px;
    left: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    background: radial-gradient(#fff, #e8e8e8);
    padding: 21px 14px;
    z-index: 2;
    opacity: 0;
}

.lap-rotation-benefits.active {
    opacity: 1;
}

.lap-rotation-benefits img {
    height: 108px;
    width: 150px;
    margin: 0 auto 20px;
}

.lap-rotation-benefits p + h5 {
    margin-top: 20px;
}

.lap-catalog-button {
    display: none;
}

.lap-builder-fixed .lap-catalog-button {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.lap-controls-close {
    display: none;
}

.lap-builder-fixed .lap-controls-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    z-index: 1;
}

.lap-builder-fixed .lap-controls-close::before {
    content: '';
    position: absolute;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}

.lap-builder-fixed .lap-controls-close::after {
    content: '';
    position: absolute;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}

.lap-item {
    position: relative;
    width: var(--itemw);
    height: var(--itemh);
    padding: 0;
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    transform: translate(calc(var(--vw) * 50 - var(--itemw) / 2), 0);
    transition: 400ms;
}

.lap-item-handle {
    position: relative;
    width: 100%;
    height: 100%;
    /* height: var(--itemh); */
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    transition: 400ms;
}

.lap-item-handle > img {
    width: auto;
    display: block;
    height: 100%;
    margin: auto;
    object-fit: contain;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 400ms;
}

.lap-item-handle > img.active {
    opacity: 1;
}

.lap-item-knob {
    position: absolute;
    top: calc(0 - calc(var(--itemh) * 33 / 1135));
    right: calc(var(--itemh) * (1098 - 40) / 1135);
    height: calc(var(--itemh) * 393 / 1135);
    width: calc(var(--itemh) * 544 / 1135);
    display: none;
}

.lap-item-knob > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
}

.lap-item-knob > img.active {
    opacity: 1;
}

.lap-item-sheath {
    position: absolute;
    top: calc(var(--itemh) * 272 / 1460);
    right: calc(var(--itemh) * (1815 - 116) / 1460);
    height: calc(var(--itemh) * 82 / 1460);
    width: calc(var(--itemh) * 2340 / 1460);
    transition: 400ms;
}

.lap-item-sheath > img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 400ms;
}

.lap-item-sheath > img.active {
    opacity: 1;
}

.lap-item-jaw {
    position: absolute;
    border: 4px solid #3c72b8;
    border-radius: 50%;
    background: #fff;
    top: 0;
    left: 15px;
    height: calc(var(--itemh) * 1100 / 1460);
    width: calc(var(--itemh) * 1100 / 1460);
    transition: 400ms;
}

.lap-item-jaw > img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 0 0 0 4px #3c72b8;
    border-radius: 50%;
    opacity: 0;
    transition: 400ms;
}

.lap-item-jaw > img.active {
    opacity: 1;
}

.lap-item-jawlength {
    position: absolute;
    bottom: -40px;
    left: calc(var(--itemh) * -1080 / 1960);
    height: calc(var(--itemh) * 720 / 1960);
    width: calc(var(--itemh) * 1080 / 1960);
    transition: 400ms;
    bottom: auto;
    top: calc(var(--itemhsdj) * 1100 / 2920);
    left: calc(var(--itemhsdj) * 1100 / 1460 + 30px);
    display: none;
}

.lap-item-jawlength.visible {
    display: block;
}

.lap-item-jawlength.overlapped {
    z-index: 2;
}

.lap-item-jawlength > img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    display: none;
    object-fit: contain;
    transition: 400ms;
}

.lap-item-jawlength > img.visible {
    display: block;
}

.lap-item-jawlength > img.active {
    opacity: 1;
}

.lap-item-jawlength-btn {
    position: absolute;
    top: calc(var(--itemhsmlj) * 1100 / 1460 + 20px);
    left: 15px;
    text-align: center;
    width: calc(var(--itemhsmlj) * 1100 / 1460);
    color: #000;
    cursor: pointer;
    display: none;
    z-index: 1;
}

.lap-item-jawlength-btn > span {
    border-bottom: 1px dashed;
}

.lap-settings {
    height: calc(var(--vh) * 10 + 160px);
    background: #f7f7f7;
    padding-top: calc(var(--vh) * 3);
    padding-bottom: 14px;
    position: relative;
}

.lap-desc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    max-width: 720px;
    color: #001487;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 20px;
    opacity: 0;
    transition: 400ms;
}

.lap-desc.active {
    opacity: 1;
}

.lap-info {
    position: absolute;
    top: calc(var(--vh) * 3 + 56px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #030000;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 20px;
    opacity: 0;
    transition: 400ms;
}

.lap-info.active {
    opacity: 1;
}

.lap-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.lap-controls-back {
    position: relative;
    width: 48px;
    height: 48px;
    margin-right: 118px;
    opacity: 1;
    transition: opacity 200ms 10ms;
    cursor: pointer;
    display: flex;
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lap-controls-back.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lap-controls-back span {
    position: absolute;
    top: 13px;
    font-size: 14px;
    width: 100%;
    left: 100%;
    margin-left: 4px;
    text-align: left;
}

.lap-controls-back-btn {
    position: relative;
    width: 48px;
    height: 2px;
    background: #424242;
    margin: auto;
}

.lap-controls-back-btn::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    bottom: 9px;
    left: -2px;
    transform: rotate(-45deg);
}

.lap-controls-back-btn::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    top: 9px;
    left: -2px;
    transform: rotate(45deg);
}

/* .lap-controls-back[data-step="0"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
} */

.lap-controls-next {
    position: relative;
    width: 48px;
    height: 48px;
    margin-left: 70px;
    opacity: 1;
    transition: opacity 200ms 10ms;
    cursor: pointer;
    display: flex;
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lap-controls-next.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lap-controls-next span {
    position: absolute;
    top: 13px;
    font-size: 14px;
    width: 100%;
    right: 100%;
    margin-right: 4px;
    text-align: right;
}

.lap-controls-next-btn {
    position: relative;
    width: 48px;
    height: 2px;
    background: #424242;
    margin: auto;
}

.lap-controls-next-btn::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    bottom: 9px;
    right: -2px;
    transform: rotate(45deg);
}

.lap-controls-next-btn::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    top: 9px;
    right: -2px;
    transform: rotate(-45deg);
}

.lap-controls-next[data-step="8"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lap-controls-name {
    color: #001487;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    padding: 6px 5px 4px;
    height: 52px;
    width: 240px;
    border: 3px solid;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lap-controls-add {
    display: none;
}

.lap-controls-add.active {
    display: block;
}

.lap-controls-add.active + .lap-controls-name {
    display: none;
}

.lap-controls-add .btn {
    color: #001487;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    padding: 6px 5px 4px;
    height: 52px;
    width: 240px;
    border: 3px solid #001487;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lap-controls-add .btn:hover {
    color: #fff;
    background: #001487;
}

.lap-controls-step {
    color: #505050;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 18px;
}

.lap-controls-fwd {
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: 70px;
    cursor: pointer;
}

.lap-controls-fwd-btn {
    position: relative;
    width: 42px;
    height: 16px;
    transform: rotate(-45deg);
    transform-origin: left;
    margin-top: 24px;
    margin-left: 8px;
}

.lap-controls-fwd-btn::before {
    content: '';
    width: 2px;
    height: 16px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lap-controls-fwd-btn::after {
    content: '';
    width: 42px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lap-controls-fwd[data-step="8"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lap-setting {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    height: calc(var(--vh) * 7 + 160px - 52px - 32px); /* 10vh - 3vh */
    padding: 0 24px;
    padding: 0;
    opacity: 0;
    transition: opacity 10ms 10ms;
    z-index: -1;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    /* background: #f00; */
    scroll-behavior: smooth;
    /* padding: 0 20px; */
}

/* .lap-setting::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(170, 230, 8);
    top: 0;
}

.lap-setting::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(170, 230, 8);
    top: 94px;
} */

.lap-setting::-webkit-scrollbar {
    width: auto;
    height: 10px;
    cursor: pointer;
}

.lap-setting::-webkit-scrollbar-track {
    background: #FFF;
}

.lap-setting::-webkit-scrollbar-thumb {
    background: #828282;
    background: #2d74c8;
}

.lap-setting::-webkit-scrollbar-thumb:hover {
    background: #424242;
    background: #2567b6;
}

.lap-setting::-webkit-scrollbar-button:single-button {
    width: 15px;
    background: #1b5295;
}

/* .lap-setting-handle {
    height: calc(var(--vh) * 7 + 160px - 52px - 32px + 16px);
} */

.lap-setting.active {
    opacity: 1;
    z-index: 1;
}

/* .lap-setting-final {
    justify-content: center;
} */

.lap-setting .setting-arrow-left {
    position: fixed;
    width: 24px;
    height: 150px;
    background: #f7f7f7;
    bottom: 16px;
    left: 0;
    z-index: 1;
    cursor: pointer;
    height: calc(var(--vh) * 10 + 159px - 42px);
    bottom: 1px;
    background: #f7f7f7;
}

.lap-setting .setting-arrow-left::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(-30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.lap-setting .setting-arrow-left::after {
    content: '';
    position: absolute;
    bottom: calc(50% - 2px);
    left: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.lap-setting .setting-arrow-left:hover::before,
.lap-setting .setting-arrow-left:hover::after {
    opacity: 1;
}

.lap-setting .setting-arrow-right {
    position: fixed;
    width: 24px;
    height: 150px;
    background: #f7f7f7;
    bottom: 16px;
    right: 0;
    z-index: 1;
    cursor: pointer;
    height: calc(var(--vh) * 10 + 159px - 42px);
    bottom: 1px;
    background: #f7f7f7;
}

.lap-setting .setting-arrow-right::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.lap-setting .setting-arrow-right::after {
    content: '';
    position: absolute;
    bottom: calc(50% - 2px);
    right: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(-30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.lap-setting .setting-arrow-right:hover::before,
.lap-setting .setting-arrow-right:hover::after {
    opacity: 1;
}

.lap-setting > .sep:first-child,
.lap-setting .setting-arrow-left + .sep {
    margin-left: auto;
}

.lap-setting > .sep:last-child,
.lap-setting .setting-arrow-right + .sep {
    margin-right: auto;
}

.lap-setting > .s-item,
.lap-setting-start > .s-item {
    margin: 0 10px;
    flex-shrink: 0;
}

.lap-setting > .s-item-first-child {
    margin-left: auto;
}

.lap-setting > .s-item-last-child {
    margin-right: auto;
}

.lap-setting > .s-item > a,
.lap-setting-start > .s-item > a {
    display: block;
    height: 100%;
    margin: auto;
    opacity: 0.5;
    position: relative;
}

.lap-setting > .s-item > a.active,
.lap-setting-start > .s-item > a.active {
    opacity: 1;
}

.lap-setting > .s-item > a > img {
    display: block;
    height: calc(100% - 23px);
    width: auto;
    margin: auto;
}

.lap-setting > .s-item > a[data-jaw] > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    height: calc(100% - 38px);
}

.lap-setting > .s-item > a[data-handle] > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    /* width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    max-height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px); */
    object-fit: contain;
    background: #fff;
}

.lap-setting > .s-item > a > span {
    color: #001487;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    display: block;
    text-align: center;
    margin-top: 8px;
}

.lap-setting > .s-item > a > span.popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #2d74c8;
    color: #ffffff;
    width: 54px;
    border-radius: 2px;
    opacity: 0;
}

.lap-setting > .s-item > a > div,
.lap-setting-start > .s-item > a > div {
    background: #2d74c8;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
    box-shadow: 0 0 0 3px #2d74c8;
    border: 3px solid #f7f7f7;
    margin: 3px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lap-setting > .s-item > a:hover > div {
    background: #737373;
    box-shadow: 0 0 0 3px #737373;
}

.lap-setting > .s-item > a.no-hover:hover > div {
    background: #2d74c8;
    box-shadow: 0 0 0 3px #2d74c8;
}

.lap-setting > .s-item > a.selected > div {
    background: #737373;
    box-shadow: 0 0 0 3px #737373;
}

.lap-setting > .s-item > a > div > span,
.lap-setting-start > .s-item > a > div > span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    padding: 5px;
    margin: auto;
    text-align: center;
    text-transform: capitalize;
}

/* .lap-setting > a > img.fj {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px);
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px);
    object-fit: contain;
    background: #fff;
}

.lap-setting > a > img.fh {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    max-height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    object-fit: contain;
    background: #fff;
} */

.lap-setting > a.btn {
    height: auto;
    opacity: 1;
    color: #001487;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    border: 2px solid #001487;
    border-radius: 20px;
    transition: 200ms 10ms;
}

.lap-setting > a.btn:hover {
    color: #fff;
    background: #001487;
}

.lap-item.scaled {
    transform: translate(calc(var(--vw) * 50 - calc(var(--itemhsdj) * 1100 / 2920) - 15px), 0);
    width: var(--itemwsdj);
    height: var(--itemhsdj);
}
.lap-item.scaled .lap-item-sheath {
    top: calc(var(--itemhsdj) * 272 / 1460);
    right: calc(var(--itemhsdj) * (1815 - 120) / 1460);
    height: calc(var(--itemhsdj) * 87 / 1460);
    width: calc(var(--itemhsdj) * 2384 / 1460);
}
.lap-item.scaled .lap-item-jaw {
    height: calc(var(--itemhsdj) * 1100 / 1460);
    width: calc(var(--itemhsdj) * 1100 / 1460);
}
.lap-item.handlescaled {
    transform: translate(calc(var(--vw) * 50 - var(--itemwsdh) + var(--itemhsdh) * 1815 / 2920), 0);
    width: var(--itemwsdh);
    height: var(--itemhsdh);
}
.lap-item.handlescaled .lap-item-sheath {
    top: calc(var(--itemhsdh) * 272 / 1460);
    right: calc(var(--itemhsdh) * (1815 - 120) / 1460);
    height: calc(var(--itemhsdh) * 87 / 1460);
    width: calc(var(--itemhsdh) * 2384 / 1460);
}
.lap-item.handlescaled .lap-item-jaw {
    height: calc(var(--itemhsdh) * 1100 / 1460);
    width: calc(var(--itemhsdh) * 1100 / 1460);
}

@media (max-width: 767px) {
    .lap-controls-name {
        font-size: 16px;
        border-width: 2px;
        width: 210px;
    }
    .lap-controls {
        padding: 0 10px;
    }
    .lap-controls-back {
        width: 36px;
        height: 36px;
        margin-right: 50px;
    }
    .lap-controls-back span {
        top: 16px;
        left: 12px;
        opacity: 0;
    }
    .lap-controls-back-btn {
        width: 36px;
        height: 1px;
    }
    .lap-controls-back-btn::before {
        width: 18px;
        height: 1px;
        bottom: 7px;
    }
    .lap-controls-back-btn::after {
        width: 18px;
        height: 1px;
        top: 7px;
    }
    .lap-controls-next {
        width: 36px;
        height: 36px;
        margin-left: 20px;
    }
    .lap-controls-next span {
        top: 16px;
        right: 12px;
        opacity: 0;
    }
    .lap-controls-next-btn {
        width: 36px;
        height: 1px;
    }
    .lap-controls-next-btn::before {
        width: 18px;
        height: 1px;
        bottom: 7px;
    }
    .lap-controls-next-btn::after {
        width: 18px;
        height: 1px;
        top: 7px;
    }
    .lap-controls-fwd {
        width: 40px;
        height: 40px;
        margin-left: 20px;
    }
    .lap-controls-fwd-btn {
        width: 36px;
        height: 14px;
        margin-top: 20px;
    }
    .lap-controls-fwd-btn::before {
        width: 1px;
        height: 14px;
    }
    .lap-controls-fwd-btn::after {
        width: 36px;
        height: 1px;
    }
    .lap-setting > a.btn {
        min-width: 140px;
        font-size: 18px;
    }
    .lap-controls-add .btn {
        border-width: 2px;
        width: 210px;
    }
    /* */
    .lap-item-jaw {
        border: 2px solid #3c72b8;
    }
    .lap-item-jaw > img {
        box-shadow: 0 0 0 2px #3c72b8;
    }
    .lap-item-jawlength {
        height: calc(var(--itemhsmj) * 1100 / 1460);
        width: calc(var(--itemhsmj) * 1100 / 1460);
        border: 2px solid #3c72b8;
        border-radius: 50%;
        background: #fff;
        top: 0;
        left: 15px;
    }
    .lap-item-jawlength > img {
        width: 70%;
        height: 70%;
        top: 15%;
        left: 15%;
    }
    .lap-item-jawlength-btn {
        top: calc(var(--itemhsmj) * 1100 / 1460 + 20px);
        width: calc(var(--itemhsmj) * 1100 / 1460);
    }
    .lap-item-jawlength-btn.visible {
        display: block;
    }
    .lap-item.scaled {
        transform: translate(calc(calc(var(--vw) * 50) - calc(var(--itemhsmj) * 1100 / 2920) - 15px), 0);
        width: var(--itemwsmj);
        height: var(--itemhsmj);
    }
    .lap-item.scaled .lap-item-sheath {
        top: calc(var(--itemhsmj) * 272 / 1460);
        right: calc(var(--itemhsmj) * (1815 - 120) / 1460);
        height: calc(var(--itemhsmj) * 87 / 1460);
        width: calc(var(--itemhsmj) * 2384 / 1460);
    }
    .lap-item.scaled .lap-item-jaw {
        height: calc(var(--itemhsmj) * 1100 / 1460);
        width: calc(var(--itemhsmj) * 1100 / 1460);
    }
    .lap-item.handlescaled {
        transform: translate(calc(var(--vw) * 50 - var(--itemwsmh) + var(--itemhsmh) * 1815 / 2920), 0);
        width: var(--itemwsmh);
        height: var(--itemhsmh);
    }
    .lap-item.handlescaled .lap-item-sheath {
        top: calc(var(--itemhsmh) * 272 / 1460);
        right: calc(var(--itemhsmh) * (1815 - 120) / 1460);
        height: calc(var(--itemhsmh) * 87 / 1460);
        width: calc(var(--itemhsmh) * 2384 / 1460);
    }
    .lap-item.handlescaled .lap-item-jaw {
        height: calc(var(--itemhsmh) * 1100 / 1460);
        width: calc(var(--itemhsmh) * 1100 / 1460);
    }
}

.lap-setting-start {
    display: none;
}

@media screen and (max-width: 1284px) and (orientation: landscape) {
    footer .container {
        max-width: 100%;
    }
    .lap-item {
        width: var(--itemwml);
        height: var(--itemhml);
        transform: translate(calc(var(--vw) * 39 - calc(var(--itemwml) / 2)), 0);
    }
    .lap-item-sheath {
        top: calc(var(--itemhml) * 272 / 1460);
        right: calc(var(--itemhml) * (1815 - 120) / 1460);
        height: calc(var(--itemhml) * 87 / 1460);
        width: calc(var(--itemhml) * 2384 / 1460);
    }
    .lap-item-jaw {
        height: calc(var(--itemhml) * 1100 / 1460);
        width: calc(var(--itemhml) * 1100 / 1460);
        border: 2px solid #3c72b8;
    }
    .lap-item-jaw > img {
        box-shadow: 0 0 0 2px #3c72b8;
    }
    .lap-item-jawlength {
        height: calc(var(--itemhsmlj) * 1100 / 1460);
        width: calc(var(--itemhsmlj) * 1100 / 1460);
        border: 2px solid #3c72b8;
        border-radius: 50%;
        background: #fff;
        top: 0;
        left: 15px;
    }
    .lap-item-jawlength > img {
        width: 70%;
        height: 70%;
        top: 15%;
        left: 15%;
    }
    .lap-item-jawlength-btn {
        top: calc(var(--itemhsmlj) * 1100 / 1460 + 20px);
        width: calc(var(--itemhsmlj) * 1100 / 1460);
    }
    .lap-item-jawlength-btn.visible {
        display: block;
    }
    .lap-desc {
        position: fixed;
        left: 80px;
        bottom: auto;
        right: 22%;
        top: 12px;
    }
    .lap-controls {
        display: none;
    }
    .lap-controls-close {
        right: auto;
        left: 0;
    }
    .lap-builder-fixed .lap-controls {
        position: fixed;
        left: 0;
        width: 78%;
        bottom: 0;
        background: #f7f7f7;
        padding: 20px;
        display: flex;
    }
    .lap-builder-fixed .lap-catalog-button {
        top: auto;
        bottom: 102px;
    }
    .lap-builder-fixed .lap-rotation-benefits-button.active {
        top: auto;
        bottom: 156px;
    }
    .lap-builder-fixed .lap-rotation-benefits {
        top: auto;
        bottom: 200px;
    }
    .lap-settings {
        position: absolute;
        top: 0;
        right: 0;
        height: calc(var(--vh) * 100 - 140px);
        width: 22%;
        padding: 0;
    }
    .lap-builder-fixed .lap-settings {
        height: 100%;
    }
    .lap-setting > .sep:first-child {
        margin-top: auto;
    }
    .lap-setting > .sep:last-child {
        margin-bottom: auto;
    }
    .lap-setting {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: scroll;
        height: 100%;
        padding: 10px 0;
    }
    .lap-setting-start {
        display: flex;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        height: calc(var(--vh) * 7 + 160px - 52px - 32px);
        padding: 0 24px;
        opacity: 0;
        transition: opacity 10ms 10ms;
        z-index: -1;
        position: relative;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: scroll;
        height: 100%;
        padding: 20px 0;
        opacity: 1;
        z-index: 2 !important;
        height: 100%;
        top: 0;
        margin: auto;
        padding: 0;
        justify-content: center;
        background: #f7f7f7;
        display: flex;
    }
    .lap-builder-fixed .lap-setting-start {
        display: none;
    }
    .lap-setting::-webkit-scrollbar {
        width: 10px;
        height: 100%;
        cursor: pointer;
    }
    
    .lap-setting::-webkit-scrollbar-track {
        background: #FFF;
    }
    
    .lap-setting::-webkit-scrollbar-thumb {
        background: #828282;
        background: #2d74c8;
    }
    
    .lap-setting::-webkit-scrollbar-thumb:hover {
        background: #424242;
        background: #2567b6;
    }
    
    .lap-setting::-webkit-scrollbar-button:single-button {
        height: 15px;
        background: #1b5295;
    }
    .lap-setting > .s-item,
    .lap-setting-start > .s-item {
        margin: 10px 0;
        display: flex;
        align-items: center;
    }
    .lap-setting > .s-item:first-child,
    .lap-setting-start > .s-item:first-child {
        margin-top: auto;
        margin-left: 0;
    }
    .lap-setting > .s-item:last-child,
    .lap-setting-start > .s-item:last-child {
        margin-bottom: auto;
        margin-right: 0;
    }
    .lap-setting > .s-item > a,
    .lap-setting-start > .s-item > a {
        display: block;
        height: 100%;
        height: auto;
        margin: auto;
        opacity: 0.5;
    }
    .lap-setting > .s-item > a > img {
        display: block;
        height: calc(100% - 23px);
        width: auto;
        margin: auto;
    }
    .lap-setting > .s-item > a[data-jaw] > img {
        border: 1px solid #2d74c8;
        border-radius: 50%;
        height: calc(100% - 38px);
    }
    .lap-setting > .s-item > a[data-handle] > img {
        border: 1px solid #2d74c8;
        border-radius: 50%;
        /* width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
        height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
        max-height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px); */
        object-fit: contain;
        background: #fff;
    }
    .lap-setting > .s-item > a > span {
        color: #001487;
        font-size: 14px;
        font-weight: 400;
        line-height: 15px;
        display: block;
        text-align: center;
        margin-top: 8px;
    }
    .lap-setting > .s-item > a > div,
    .lap-setting-start > .s-item > a > div {
        background: #2d74c8;
        width: calc(100% - 6px);
        height: calc(100% - 6px);
        border-radius: 50%;
        box-shadow: 0 0 0 3px #2d74c8;
        border: 3px solid #f7f7f7;
        margin: 3px auto 0;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lap-setting > .s-item > a > div > span,
    .lap-setting-start > .s-item > a > div > span {
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        width: 100%;
        padding: 5px;
        margin: auto;
        text-align: center;
        text-transform: capitalize;
    }
    .lap-item.scaled {
        top: calc(var(--vh) * 3 - 26px);
        width: var(--itemwsmlj);
        height: var(--itemhsmlj);
        transform: translate(calc(calc(var(--vw) * 39) - calc(var(--itemhsmlj) * 1100 / 2920) - 15px), 0);
    }
    .lap-item.scaled .lap-item-jaw {
        height: calc(var(--itemhsmlj) * 1100 / 1460);
        width: calc(var(--itemhsmlj) * 1100 / 1460);
    }
    .lap-item.scaled .lap-item-sheath {
        top: calc(var(--itemhsmlj) * 272 / 1460);
        right: calc(var(--itemhsmlj) * (1815 - 120) / 1460);
        height: calc(var(--itemhsmlj) * 87 / 1460);
        width: calc(var(--itemhsmlj) * 2384 / 1460);
    }
    .lap-item.handlescaled {
        width: var(--itemwsmlh);
        height: var(--itemhsmlh);
        transform: translate(calc(var(--vw) * 39 - var(--itemwsmlh) + var(--itemhsmlh) * 1815 / 2920), -25px);
    }
    .lap-item.handlescaled .lap-item-sheath {
        top: calc(var(--itemhsmlh) * 272 / 1460);
        right: calc(var(--itemhsmlh) * (1815 - 120) / 1460);
        height: calc(var(--itemhsmlh) * 87 / 1460);
        width: calc(var(--itemhsmlh) * 2384 / 1460);
    }
    .lap-item.handlescaled .lap-item-jaw {
        height: calc(var(--itemhsmlh) * 1100 / 1460);
        width: calc(var(--itemhsmlh) * 1100 / 1460);
    }
}

/* FLC BUILDER */
.flc-builder {
    min-height: calc(100vh - 140px);
    min-height: calc(var(--vh) * 100 - 140px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.flc-builder-catalogue {
    min-height: calc(100vh - 0px);
    min-height: calc(var(--vh) * 100 - 0px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.flc-builder-loading {
    min-height: calc(100vh - 140px);
}

.flc-builder-catalogue.flc-builder-loading {
    min-height: calc(100vh - 0px);
}

.flc-builder-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    z-index: 9;
}

.flc-builder-loading .flc-builder-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    /* background: url('../images/settings/loader.jpg') center no-repeat;
    background-size: contain; */
    border: 2px solid #001487;
    border-radius: 50%;
    z-index: 10;
    animation: flcbuilderloader 800ms cubic-bezier(0.5, 0, 0.5, 1) infinite 10ms;
}

.flc-builder-loading .flc-builder-loader::before {
    content: '';
    position: absolute;
    width: 75px;
    height: calc(100% + 4px);
    background: #f7f7f7;
    left: 0;
    right: 0;
    margin: auto;
    top: -2px;
}

@keyframes flcbuilderloader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.flc-builder-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #d7d7d7;
    font-size: 28px;
    font-weight: 600;
    z-index: 1;
}

.flc-builder-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1030;
}

.flc-catalog-button {
    display: none;
}

.flc-builder-fixed .flc-catalog-button {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
}

.flc-controls-close {
    display: none;
}

.flc-builder-fixed .flc-controls-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    z-index: 1;
}

.flc-builder-fixed .flc-controls-close::before {
    content: '';
    position: absolute;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}

.flc-builder-fixed .flc-controls-close::after {
    content: '';
    position: absolute;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}

.flc-item {
    /* position: relative;
    width: calc(calc(90vh - 300px)*1.67);
    height: calc(90vh - 300px);
    padding: 30px 0;
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s; */
    position: relative;
    width: var(--itemw);
    height: var(--itemh);
    padding: 0;
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    transform: translate(calc(var(--vw) * 50 - var(--itemw) / 2), 0);
    transition: 800ms 10ms;
}

.flc-item.scaled {
    transform: translate(calc(var(--vw) * 50 - var(--itemwsdc) / 2), 0);
    width: var(--itemwsdc);
    height: var(--itemhsdc);
}

.flc-item.scaledlse {
    transform: translate(calc(var(--vw) * 50 - calc(var(--itemhsdlse) * 1100 / 2920) - 15px), 0);
    width: var(--itemwsdlse);
    height: var(--itemhsdlse);
}

.flc-item.scaledspe {
    transform: translate(calc(var(--vw) * 50 - calc(var(--itemhsdspe) * 1100 / 2920) - 15px), calc(var(--itemhsdspe)*0.2));
    width: var(--itemwsdspe);
    height: var(--itemhsdspe);
}

.flc-item-cable {
    position: relative;
    width: 100%;
    height: 100%;
}

.flc-item-cable > img {
    width: auto;
    /* max-width: calc(1928*calc(100vh - 530px)/1296 - calc(calc(calc(100vh - 530px)*100/1296)*482/100)); */
    display: block;
    /* height: calc(90vh - 350px); */
    height: 100%;
    margin: auto;
    object-fit: contain;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s;
}

.flc-item-cable > img.active {
    opacity: 1;
}

.flc-item-spe-head {
    position: absolute;
    top: calc(var(--itemh)*62/512);
    right: calc(var(--itemh)*561/512);
    height: calc(var(--itemh)*39/512);
    width: calc(var(--itemh)*150/512);
}

.flc-item-spe-head > img {
    display: block;
}

.flc-item-spe {
    position: absolute;
    top: 0;
    right: calc(var(--itemh)*704/512);
    height: calc(var(--itemh)*100/512);
    width: calc(var(--itemh)*105/512);
}

.flc-item.scaled .flc-item-spe-head {
    top: calc(var(--itemhsdc)*62/512);
    right: calc(var(--itemhsdc)*561/512);
    height: calc(var(--itemhsdc)*39/512);
    width: calc(var(--itemhsdc)*150/512);
}

.flc-item.scaled .flc-item-spe {
    top: 0;
    right: calc(var(--itemhsdc)*704/512);
    height: calc(var(--itemhsdc)*100/512);
    width: calc(var(--itemhsdc)*105/512);
}

.flc-item.scaledlse .flc-item-spe-head {
    top: calc(var(--itemhsdlse)*62/512);
    right: calc(var(--itemhsdlse)*561/512);
    height: calc(var(--itemhsdlse)*39/512);
    width: calc(var(--itemhsdlse)*150/512);
}

.flc-item.scaledlse .flc-item-spe {
    top: 0;
    right: calc(var(--itemhsdlse)*704/512);
    height: calc(var(--itemhsdlse)*100/512);
    width: calc(var(--itemhsdlse)*105/512);
}

.flc-item.scaledspe .flc-item-spe-head {
    top: calc(var(--itemhsdspe)*62/512);
    right: calc(var(--itemhsdspe)*561/512);
    height: calc(var(--itemhsdspe)*39/512);
    width: calc(var(--itemhsdspe)*150/512);
}

.flc-item.scaledspe .flc-item-spe {
    top: 0;
    right: calc(var(--itemhsdspe)*704/512);
    height: calc(var(--itemhsdspe)*100/512);
    width: calc(var(--itemhsdspe)*105/512);
}

.flc-item-spe > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s;
}

.flc-item-spe > img.active {
    opacity: 1;
}

.flc-item-lse-head {
    position: absolute;
    top: calc(var(--itemh)*173/512);
    right: calc(var(--itemh)*561/512);
    height: calc(var(--itemh)*38/512);
    width: calc(var(--itemh)*150/512);
}

.flc-item-lse-head > img {
    display: block;
}

.flc-item-lse {
    position: absolute;
    top: calc(var(--itemh)*145/512);
    right: calc(var(--itemh)*704/512);
    height: calc(var(--itemh)*66/512);
    width: calc(var(--itemh)*177/512);
}

.flc-item.scaled .flc-item-lse-head {
    top: calc(var(--itemhsdc)*173/512);
    right: calc(var(--itemhsdc)*561/512);
    height: calc(var(--itemhsdc)*38/512);
    width: calc(var(--itemhsdc)*150/512);
}

.flc-item.scaled .flc-item-lse {
    top: calc(var(--itemhsdc)*145/512);
    right: calc(var(--itemhsdc)*704/512);
    height: calc(var(--itemhsdc)*66/512);
    width: calc(var(--itemhsdc)*177/512);
}

.flc-item.scaledlse .flc-item-lse-head {
    top: calc(var(--itemhsdlse)*173/512);
    right: calc(var(--itemhsdlse)*561/512);
    height: calc(var(--itemhsdlse)*38/512);
    width: calc(var(--itemhsdlse)*150/512);
}

.flc-item.scaledlse .flc-item-lse {
    top: calc(var(--itemhsdlse)*145/512);
    right: calc(var(--itemhsdlse)*704/512);
    height: calc(var(--itemhsdlse)*66/512);
    width: calc(var(--itemhsdlse)*177/512);
}

.flc-item.scaledspe .flc-item-lse-head {
    top: calc(var(--itemhsdspe)*173/512);
    right: calc(var(--itemhsdspe)*561/512);
    height: calc(var(--itemhsdspe)*38/512);
    width: calc(var(--itemhsdspe)*150/512);
}

.flc-item.scaledspe .flc-item-lse {
    top: calc(var(--itemhsdspe)*145/512);
    right: calc(var(--itemhsdspe)*704/512);
    height: calc(var(--itemhsdspe)*66/512);
    width: calc(var(--itemhsdspe)*177/512);
}

.flc-item-lse > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s;
}

.flc-item-lse > img.active {
    opacity: 1;
}

.flc-connector {
    position: absolute;
    margin-top: 0;
    top: -56px;
    left: calc(calc(350px - 90vh)*0.3);
    height: calc(calc(90vh - 350px)*0.5);
    width: calc(calc(90vh - 350px)*0.25);
    opacity: 0;
    transition: 0.5s;
}

.flc-connector.active {
    opacity: 1;
}

.flc-connector > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.flc-settings {
    height: calc(10vh + 160px);
    background: #f7f7f7;
    padding-top: 3vh;
    padding-bottom: 14px;
    position: relative;
}

.flc-desc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    /* max-width: 400px; */
    color: #001487;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 20px;
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0.25s;
}

.flc-desc.active {
    opacity: 1;
}

.flc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flc-controls-back {
    position: relative;
    width: 48px;
    height: 48px;
    margin-right: 118px;
    opacity: 1;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
}

.flc-controls-back span {
    position: absolute;
    top: 13px;
    font-size: 14px;
    width: 100%;
    left: 100%;
    margin-left: 4px;
    text-align: left;
}

.flc-controls-back-btn {
    position: relative;
    width: 48px;
    height: 2px;
    background: #424242;
    margin: auto;
}

.flc-controls-back-btn::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    bottom: 9px;
    left: -2px;
    transform: rotate(-45deg);
}

.flc-controls-back-btn::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    top: 9px;
    left: -2px;
    transform: rotate(45deg);
}

.flc-controls-back[data-step="0"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.flc-controls-next {
    position: relative;
    width: 48px;
    height: 48px;
    margin-left: 70px;
    opacity: 1;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
}

.flc-controls-next span {
    position: absolute;
    top: 13px;
    font-size: 14px;
    width: 100%;
    right: 100%;
    margin-right: 4px;
    text-align: right;
}

.flc-controls-next-btn {
    position: relative;
    width: 48px;
    height: 2px;
    background: #424242;
    margin: auto;
}

.flc-controls-next-btn::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    bottom: 9px;
    right: -2px;
    transform: rotate(45deg);
}

.flc-controls-next-btn::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    top: 9px;
    right: -2px;
    transform: rotate(-45deg);
}

.flc-controls-next[data-step="8"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.flc-controls-name {
    color: #001487;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    padding: 5px;
    height: 52px;
    width: 240px;
    border: 3px solid;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flc-controls-add {
    display: none;
}

.flc-controls-add.active {
    display: block;
}

.flc-controls-add.active + .flc-controls-name {
    display: none;
}

.flc-controls-add .btn {
    color: #001487;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    padding: 6px 5px 4px;
    height: 52px;
    width: 240px;
    border: 3px solid #001487;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flc-controls-add .btn:hover {
    color: #fff;
    background: #001487;
}

.flc-controls-step {
    color: #505050;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 18px;
}

.flc-controls-fwd {
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: 70px;
    cursor: pointer;
}

.flc-controls-fwd-btn {
    position: relative;
    width: 42px;
    height: 16px;
    transform: rotate(-45deg);
    transform-origin: left;
    margin-top: 24px;
    margin-left: 8px;
}

.flc-controls-fwd-btn::before {
    content: '';
    width: 2px;
    height: 16px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.flc-controls-fwd-btn::after {
    content: '';
    width: 42px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.flc-controls-fwd[data-step="8"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.flc-setting {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    height: calc(var(--vh) * 7 + 160px - 52px - 32px);
    padding: 0 24px;
    opacity: 0;
    transition: opacity 10ms 10ms;
    z-index: -1;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
}

.flc-setting-diameter {
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 20px);
    bottom: 20px;
}

.flc-setting.active {
    opacity: 1;
    z-index: 1;
}

.flc-setting-final {
    justify-content: center;
}

.flc-setting > .sep:first-child {
    margin-left: auto;
}

.flc-setting > .sep:last-child {
    margin-right: auto;
}

.flc-setting > a {
    display: block;
    margin: 0 10px;
    min-width: 130px;
    height: 100%;
    opacity: 0.5;
    transition: 200ms 10ms;
    /* display: none; */
    position: relative;
}

.flc-setting-diameter > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.flc-setting > a:hover {
    opacity: 0.75;
}

.flc-setting > a.active {
    opacity: 1;
}

.flc-setting > a.visible {
    display: flex;
    display: block;
}

.flc-setting > a > div {
    background: #2d74c8;
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 30px);
    width: calc(var(--vh) * 7 + 160px - 52px - 32px - 30px);
    border-radius: 50%;
    box-shadow: 0 0 0 3px #2d74c8;
    border: 3px solid #f7f7f7;
    margin: 3px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flc-setting > a:hover > div {
    background: #737373;
    box-shadow: 0 0 0 3px #737373;
}

.flc-setting-final > a:hover > div {
    background: #2d74c8;
    box-shadow: 0 0 0 3px #2d74c8;
}

.flc-setting > a.selected > div {
    background: #737373;
    box-shadow: 0 0 0 3px #737373;
}

.flc-setting > a > div > span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    padding: 5px;
    margin: auto;
    text-align: center;
}

.flc-setting > a > img {
    display: block;
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px);
    max-height: calc(100% - 42px);
    width: auto;
    margin: auto;
}

.flc-setting-lse > a > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    background: #fff;
}

.flc-setting-final > a.flc-setting-lse > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    background: #fff;
}

.flc-setting-spe > a > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    background: #fff;
}

.flc-setting-final > a.flc-setting-spe > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    background: #fff;
}

.flc-setting-diameter > a > img {
    max-height: 100%;
}

.flc-setting-diameter > a[data-diameter="5"] > img {
    height: calc(calc(var(--vh) * 7 + 160px - 52px - 32px - 42px) * 1);
}

.flc-setting-diameter > a[data-diameter="4"] > img {
    height: calc(calc(var(--vh) * 7 + 160px - 52px - 32px - 42px) * 4.8/5);
}

.flc-setting-diameter > a[data-diameter="3"] > img {
    height: calc(calc(var(--vh) * 7 + 160px - 52px - 32px - 42px) * 3.8/5);
}

.flc-setting-diameter > a[data-diameter="2"] > img {
    height: calc(calc(var(--vh) * 7 + 160px - 52px - 32px - 42px) * 3/5);
}

.flc-setting-diameter > a[data-diameter="1"] > img {
    height: calc(calc(var(--vh) * 7 + 160px - 52px - 32px - 42px) * 2.2/5);
}

.flc-setting > a > span {
    color: #001487;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    display: block;
    text-align: center;
    margin-top: 8px;
}

.flc-setting > a.btn {
    height: auto;
    opacity: 1;
    color: #001487;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    border: 2px solid #001487;
    border-radius: 20px;
    transition: 0.5s;
}

.flc-setting > a.btn:hover {
    color: #fff;
    background: #001487;
}

@media (max-width: 767px) {
    .flc-controls-name {
        font-size: 16px;
        border-width: 2px;
    }
    .flc-controls {
        padding: 0 10px;
    }
    .flc-controls-back {
        width: 36px;
        height: 36px;
        margin-right: 50px;
    }
    .flc-controls-back span {
        top: 16px;
        left: 12px;
    }
    .flc-controls-back-btn {
        width: 36px;
        height: 1px;
    }
    .flc-controls-back-btn::before {
        width: 18px;
        height: 1px;
        bottom: 7px;
    }
    .flc-controls-back-btn::after {
        width: 18px;
        height: 1px;
        top: 7px;
    }
    .flc-controls-next {
        width: 36px;
        height: 36px;
        margin-left: 20px;
    }
    .flc-controls-next span {
        top: 16px;
        right: 12px;
    }
    .flc-controls-next-btn {
        width: 36px;
        height: 1px;
    }
    .flc-controls-next-btn::before {
        width: 18px;
        height: 1px;
        bottom: 7px;
    }
    .flc-controls-next-btn::after {
        width: 18px;
        height: 1px;
        top: 7px;
    }
    .flc-controls-fwd {
        width: 40px;
        height: 40px;
        margin-left: 20px;
    }
    .flc-controls-fwd-btn {
        width: 36px;
        height: 14px;
        margin-top: 20px;
    }
    .flc-controls-fwd-btn::before {
        width: 1px;
        height: 14px;
    }
    .flc-controls-fwd-btn::after {
        width: 36px;
        height: 1px;
    }
    .flc-controls-add .btn {
        border-width: 2px;
        width: 210px;
    }
    .flc-setting {
        padding: 0 24px 24px;
    }
    .flc-setting > a {
        margin: 0 20px;
    }
    .flc-setting > a.btn {
        min-width: 140px;
        font-size: 18px;
    }
    .flc-setting > a > span {
        font-size: 16px;
    }
    .flc-setting-spe > a > span {
        font-size: 14px;
    }
    /* */
    .flc-item.scaled {
        transform: scale(1.2) translate(10%, 15%);
    }
    .flc-connector {
        left: calc(calc(350px - 90vh)*0.24);
    }
    /* .flc-builder {
        min-height: calc(100vh - 143px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
    }
    .flc-item {
        height: calc(100vh - 443px);
    }
    .flc-item-spe {
        position: absolute;
        margin-top: 60px;
        top: calc(calc(calc(100vh - 543px)*100/1296)*19/100);
        left: calc(50% - calc(calc(calc(100vh - 543px)*100/1296)*1928/200) - calc(calc(calc(100vh - 543px)*100/1296)*282/100));
        height: calc(calc(calc(100vh - 543px)*100/1296)*155/100);
        width: calc(calc(calc(100vh - 543px)*100/1296)*282/100);
    }
    .flc-item-lse {
        position: absolute;
        margin-top: 60px;
        top: calc(calc(calc(100vh - 543px)*100/1296)*351/100);
        left: calc(50% - calc(calc(calc(100vh - 543px)*100/1296)*1928/200) - calc(calc(calc(100vh - 543px)*100/1296)*482/100));
        height: calc(calc(calc(100vh - 543px)*100/1296)*410/100);
        width: calc(calc(calc(100vh - 543px)*100/1296)*482/100);
    }
    .flc-connector {
        position: absolute;
        margin-top: 0;
        top: 0;
        left:  calc(50% - calc(calc(calc(100vh - 543px)*100/1296)*1928/200) - calc(calc(calc(100vh - 543px)*100/1296)*720/100));
        height: calc(calc(calc(100vh - 543px)*100/1296)*600/100);
        width: calc(calc(calc(100vh - 543px)*100/1296)*278/100);
        opacity: 0;
        transition: 0.5s;
    } */
}

.flc-setting-start {
    display: none;
}

@media screen and (max-width: 1284px) and (orientation: landscape) {
    .flc-item {
        width: var(--itemwml);
        height: var(--itemhml);
        transform: translate(calc(var(--vw) * 39 - calc(var(--itemwml) / 2)), 0);
    }
    .flc-item .flc-item-spe-head {
        top: calc(var(--itemhml)*62/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*39/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item .flc-item-spe {
        top: 0;
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*100/512);
        width: calc(var(--itemhml)*105/512);
    }
    .flc-item .flc-item-lse-head {
        top: calc(var(--itemhml)*173/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*38/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item .flc-item-lse {
        top: calc(var(--itemhml)*145/512);
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*66/512);
        width: calc(var(--itemhml)*177/512);
    }
    .flc-desc {
        position: fixed;
        left: 0;
        bottom: auto;
        right: 22%;
    }
    .flc-controls {
        display: none;
    }
    .flc-controls-close {
        right: auto;
        left: 0;
    }
    .flc-builder-fixed .flc-controls {
        position: fixed;
        left: 0;
        width: 78%;
        bottom: 0;
        background: #f7f7f7;
        padding: 20px;
        display: flex;
    }
    .flc-builder-fixed .flc-catalog-button {
        top: auto;
        bottom: 102px;
    }
    .flc-settings {
        position: absolute;
        top: 0;
        right: 0;
        height: calc(var(--vh) * 100 - 140px);
        width: 22%;
    }
    .flc-builder-fixed .flc-settings {
        height: 100%;
    }
    .flc-setting > .sep:first-child {
        margin-top: auto;
    }
    .flc-setting > .sep:last-child {
        margin-bottom: auto;
    }
    .flc-setting {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
    }
    .flc-setting-start {
        opacity: 1;
        z-index: 2 !important;
        height: 100%;
        top: 0;
        margin: auto;
        padding: 0 0 calc(var(--vh) * 3);
        justify-content: center;
        background: #f7f7f7;
        display: flex;
    }
    .flc-builder-fixed .flc-setting-start {
        display: none;
    }
    .flc-setting > a {
        margin: 15px 0;
        height: auto;
        min-width: 0;
    }
    .flc-setting > a > div {
        height: calc(var(--vw) * 12);
        width: calc(var(--vw) * 12);
    }
    .flc-setting > a > div > span {
        font-size: 16px;
        padding: 0;
    }
    .flc-setting > a > img {
        height: calc(var(--vw) * 12);
        /* width: calc(var(--vw) * 12); */
        max-height: 100%;
    }
    .flc-item.scaled {
        top: calc(var(--vh) * 3 - 26px);
        width: var(--itemwml);
        height: var(--itemhml);
        transform: translate(calc(calc(var(--vw) * 39) - calc(var(--itemhml) * 1100 / 2920) - 15px), 0);
    }
    .flc-item.scaled .flc-item-spe-head {
        top: calc(var(--itemhml)*62/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*39/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item.scaled .flc-item-spe {
        top: 0;
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*100/512);
        width: calc(var(--itemhml)*105/512);
    }
    .flc-item.scaled .flc-item-lse-head {
        top: calc(var(--itemhml)*173/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*38/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item.scaled .flc-item-lse {
        top: calc(var(--itemhml)*145/512);
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*66/512);
        width: calc(var(--itemhml)*177/512);
    }
    .flc-item.scaledlse {
        transform: translate(calc(var(--vw) * 50 - calc(var(--itemhml) * 1100 / 2920) - 15px), 0);
        width: var(--itemwml);
        height: var(--itemhml);
    }
    .flc-item.scaledlse .flc-item-spe-head {
        top: calc(var(--itemhml)*62/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*39/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item.scaledlse .flc-item-spe {
        top: 0;
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*100/512);
        width: calc(var(--itemhml)*105/512);
    }
    .flc-item.scaledlse .flc-item-lse-head {
        top: calc(var(--itemhml)*173/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*38/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item.scaledlse .flc-item-lse {
        top: calc(var(--itemhml)*145/512);
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*66/512);
        width: calc(var(--itemhml)*177/512);
    }
    .flc-item.scaledspe {
        transform: translate(calc(var(--vw) * 50 - calc(var(--itemhml) * 1100 / 2920) - 15px), calc(var(--itemhml)*0.2));
        width: var(--itemwml);
        height: var(--itemhml);
    }
    .flc-item.scaledspe .flc-item-spe-head {
        top: calc(var(--itemhml)*62/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*39/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item.scaledspe .flc-item-spe {
        top: 0;
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*100/512);
        width: calc(var(--itemhml)*105/512);
    }
    .flc-item.scaledspe .flc-item-lse-head {
        top: calc(var(--itemhml)*173/512);
        right: calc(var(--itemhml)*561/512);
        height: calc(var(--itemhml)*38/512);
        width: calc(var(--itemhml)*150/512);
    }
    .flc-item.scaledspe .flc-item-lse {
        top: calc(var(--itemhml)*145/512);
        right: calc(var(--itemhml)*704/512);
        height: calc(var(--itemhml)*66/512);
        width: calc(var(--itemhml)*177/512);
    }
}

/* BF BUILDER */
.bf-builder {
    min-height: calc(100vh - 140px);
    min-height: calc(var(--vh) * 100 - 140px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.bf-builder-catalogue {
    min-height: calc(100vh - 0px);
    min-height: calc(var(--vh) * 100 - 0px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.bf-builder-loading {
    min-height: calc(100vh - 140px);
}

.bf-builder-catalogue.bf-builder-loading {
    min-height: calc(100vh - 0px);
}

.bf-builder-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    z-index: 9;
}

.bf-builder-loading .bf-builder-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    /* background: url('../images/settings/loader.jpg') center no-repeat;
    background-size: contain; */
    border: 2px solid #001487;
    border-radius: 50%;
    z-index: 10;
    animation: bfbuilderloader 800ms cubic-bezier(0.5, 0, 0.5, 1) infinite 10ms;
}

.bf-builder-loading .bf-builder-loader::before {
    content: '';
    position: absolute;
    width: 75px;
    height: calc(100% + 4px);
    background: #f7f7f7;
    left: 0;
    right: 0;
    margin: auto;
    top: -2px;
}

@keyframes bfbuilderloader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bf-builder-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #d7d7d7;
    font-size: 28px;
    font-weight: 600;
    z-index: 1;
}

.bf-builder-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1030;
}

.bf-gold-benefits-button {
    display: none;
    position: absolute;
    top: 64px;
    left: 10px;
    width: 255px;
    z-index: 2;
}

.bf-gold-benefits-button.active {
    display: inline-block;
}

.bf-gold-benefits {
    position: absolute;
    top: 108px;
    left: 10px;
    width: 255px;
    height: 325px;
    display: flex;
    flex-direction: column;
    background: radial-gradient(#fff, #e8e8e8);
    padding: 21px 12px 21px 21px;
    z-index: 2;
    opacity: 0;
}

.bf-gold-benefits.active {
    opacity: 1;
}

.bf-gold-benefits ul {
    list-style-type: none;
    margin-top: 10px;
}

.bf-gold-benefits ul li {
    position: relative;
    padding-top: 4px;
    padding-left: 32px;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 400;
}

.bf-gold-benefits ul li::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    background-size: contain !important;
}

.bf-gold-benefits ul li:nth-child(1)::before {
    background: url(../images/bf/icons/benefit_1.png) 0 0 no-repeat;
}

.bf-gold-benefits ul li:nth-child(2)::before {
    background: url(../images/bf/icons/benefit_2.png) 0 0 no-repeat;
}

.bf-gold-benefits ul li:nth-child(3)::before {
    background: url(../images/bf/icons/benefit_3.png) 0 0 no-repeat;
}

.bf-gold-benefits ul li:nth-child(4)::before {
    background: url(../images/bf/icons/benefit_4.png) 0 0 no-repeat;
}

.bf-gold-benefits ul li:nth-child(5)::before {
    background: url(../images/bf/icons/benefit_5.png) 0 0 no-repeat;
}

.bf-gold-benefits p {
    margin-top: auto;
}

.bf-catalog-button {
    display: none;
}

.bf-builder-fixed .bf-catalog-button {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.bf-controls-close {
    display: none;
}

.bf-builder-fixed .bf-controls-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    z-index: 1;
}

.bf-builder-fixed .bf-controls-close::before {
    content: '';
    position: absolute;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}

.bf-builder-fixed .bf-controls-close::after {
    content: '';
    position: absolute;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}

.bf-item-wrapper {
    position: relative;
    height: calc((var(--vh)*100) - 240px - 140px);
    transition: 0s;
}

.bf-builder-fixed .bf-item-wrapper {
    height: calc((var(--vh)*100) - 240px - 80px);
    transition: 400ms;
}

.bf-helper-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    background: #fff;
    color: #001487;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 20px;
    opacity: 0;
    transition: 400ms;
}

.bf-helper-text.active {
    opacity: 1;
}

.bf-item {
    width: var(--itemw);
    height: var(--itemh);
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: calc(var(--vh)*50 - 70px - 120px - var(--itemh)/2);
    transform: translate(calc(var(--vw) * 50 - var(--itemw) / 2), 0);
    transition: 400ms;
}

.bf-item.ontop {
    top: 40px;
}

.bf-item-style {
    position: absolute;
    top: 0;
    left: calc(var(--itemh) - 20px);
    height: 100%;
    width: calc(var(--itemw) * 1454 / 1836);
    transition: 400ms;
}

.bf-item-style > img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 400ms;
}

.bf-item-style > img.active {
    opacity: 1;
}

.bf-item-tip {
    position: absolute;
    border: 4px solid #3c72b8;
    border-radius: 50%;
    background: #fff;
    top: 0;
    left: 15px;
    height: var(--itemh);
    width: var(--itemh);
    transition: 400ms;
}

.bf-item-tip > img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 0 0 0 4px #3c72b8;
    border-radius: 50%;
    opacity: 0;
    transition: 400ms;
}

.bf-item-tip > img.active {
    opacity: 1;
}

.bf-cable {
    width: var(--itemw);
    height: calc(var(--vh)*100 - 240px - 80px - 40px - var(--itemh));
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--itemh) - var(--vh)*100 + 240px + 80px + 40px);
    transform: translate(calc(var(--vw) * 50 - var(--itemw) / 2), 0);
    transition: 400ms;
}

.bf-cable.active {
    bottom: 0;
}

.bf-cable > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bf-settings-wrapper {
    background: #f7f7f7;
    position: relative;
    height: 240px;
    padding-top: 18px;
    padding-bottom: 14px;
    z-index: 1;
}

.bf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bf-controls-back {
    position: relative;
    width: 48px;
    height: 48px;
    margin-right: 118px;
    opacity: 1;
    transition: opacity 200ms 10ms;
    cursor: pointer;
    display: flex;
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bf-controls-back.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.bf-controls-back span {
    position: absolute;
    top: 13px;
    font-size: 14px;
    width: 100%;
    left: 100%;
    margin-left: 4px;
    text-align: left;
}

.bf-controls-back-btn {
    position: relative;
    width: 48px;
    height: 2px;
    background: #424242;
    margin: auto;
}

.bf-controls-back-btn::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    bottom: 9px;
    left: -2px;
    transform: rotate(-45deg);
}

.bf-controls-back-btn::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    top: 9px;
    left: -2px;
    transform: rotate(45deg);
}

/* .bf-controls-back[data-step="0"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
} */

.bf-controls-next {
    position: relative;
    width: 48px;
    height: 48px;
    margin-left: 70px;
    opacity: 1;
    transition: opacity 200ms 10ms;
    cursor: pointer;
    display: flex;
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bf-controls-next.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.bf-controls-next span {
    position: absolute;
    top: 13px;
    font-size: 14px;
    width: 100%;
    right: 100%;
    margin-right: 4px;
    text-align: right;
}

.bf-controls-next-btn {
    position: relative;
    width: 48px;
    height: 2px;
    background: #424242;
    margin: auto;
}

.bf-controls-next-btn::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    bottom: 9px;
    right: -2px;
    transform: rotate(45deg);
}

.bf-controls-next-btn::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #424242;
    position: absolute;
    top: 9px;
    right: -2px;
    transform: rotate(-45deg);
}

.bf-controls-next[data-step="8"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bf-controls-name {
    color: #001487;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    padding: 6px 5px 4px;
    height: 52px;
    width: 240px;
    border: 3px solid;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-controls-add {
    display: none;
}

.bf-controls-add.active {
    display: block;
}

.bf-controls-add.active + .bf-controls-name {
    display: none;
}

.bf-controls-add .btn {
    color: #001487;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    padding: 6px 5px 4px;
    height: 52px;
    width: 240px;
    border: 3px solid #001487;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-controls-add .btn:hover {
    color: #fff;
    background: #001487;
}

.bf-controls-step {
    color: #505050;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 18px;
}

.bf-controls-fwd {
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: 70px;
    cursor: pointer;
}

.bf-controls-fwd-btn {
    position: relative;
    width: 42px;
    height: 16px;
    transform: rotate(-45deg);
    transform-origin: left;
    margin-top: 24px;
    margin-left: 8px;
}

.bf-controls-fwd-btn::before {
    content: '';
    width: 2px;
    height: 16px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bf-controls-fwd-btn::after {
    content: '';
    width: 42px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bf-controls-fwd[data-step="8"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bf-settings {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 170px; /* 240 - 18 - 52 - 0 */
    padding-top: 18px;
    opacity: 0;
    transition: opacity 10ms 10ms;
    z-index: -1;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    /* background: #f00; */
    scroll-behavior: smooth;
}

/* .bf-setting::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(170, 230, 8);
    top: 0;
}

.bf-setting::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(170, 230, 8);
    top: 94px;
} */

.bf-settings::-webkit-scrollbar {
    width: auto;
    height: 10px;
    cursor: pointer;
}

.bf-settings::-webkit-scrollbar-track {
    background: #FFF;
}

.bf-settings::-webkit-scrollbar-thumb {
    background: #828282;
    background: #2d74c8;
}

.bf-settings::-webkit-scrollbar-thumb:hover {
    background: #424242;
    background: #2567b6;
}

.bf-settings::-webkit-scrollbar-button:single-button {
    width: 15px;
    background: #1b5295;
}

/* .bf-setting-handle {
    height: calc(var(--vh) * 7 + 160px - 52px - 32px + 16px);
} */

.bf-settings.active {
    opacity: 1;
    z-index: 1;
}

/* .bf-setting-final {
    justify-content: center;
} */

.bf-settings .setting-arrow-left {
    position: fixed;
    width: 24px;
    height: 150px;
    background: #f7f7f7;
    bottom: 16px;
    left: 0;
    z-index: 1;
    cursor: pointer;
    height: calc(var(--vh) * 10 + 159px - 42px);
    bottom: 1px;
    background: #f7f7f7;
}

.bf-settings .setting-arrow-left::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(-30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.bf-settings .setting-arrow-left::after {
    content: '';
    position: absolute;
    bottom: calc(50% - 2px);
    left: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.bf-settings .setting-arrow-left:hover::before,
.bf-settings .setting-arrow-left:hover::after {
    opacity: 1;
}

.bf-settings .setting-arrow-right {
    position: fixed;
    width: 24px;
    height: 150px;
    background: #f7f7f7;
    bottom: 16px;
    right: 0;
    z-index: 1;
    cursor: pointer;
    height: calc(var(--vh) * 10 + 159px - 42px);
    bottom: 1px;
    background: #f7f7f7;
}

.bf-settings .setting-arrow-right::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.bf-settings .setting-arrow-right::after {
    content: '';
    position: absolute;
    bottom: calc(50% - 2px);
    right: 10px;
    height: 28px;
    width: 2px;
    background: #000000;
    transform: rotate(-30deg);
    opacity: 0.5;
    transition: 0.2s;
}

.bf-settings .setting-arrow-right:hover::before,
.bf-settings .setting-arrow-right:hover::after {
    opacity: 1;
}

.bf-settings > .sep:first-child,
.bf-settings .setting-arrow-left + .sep {
    margin-left: auto;
}

.bf-settings > .sep:last-child,
.bf-settings .setting-arrow-right + .sep {
    margin-right: auto;
}

.bf-settings > .s-item,
.bf-settings-start > .s-item {
    width: 142px;
    height: 142px;
    padding: 0 2px;
    flex-shrink: 0;
}

.bf-settings > .s-item:first-child {
    margin-left: auto;
}

.bf-settings > .s-item:last-child {
    margin-right: auto;
}

.bf-settings > .s-item > a,
.bf-settings-start > .s-item > a {
    display: block;
    height: 100%;
    margin: auto;
    opacity: 0.5;
    position: relative;
}

.bf-settings > .s-item > a.active,
.bf-settings-start > .s-item > a.active {
    opacity: 1;
}

.bf-settings > .s-item > a > img {
    display: block;
    height: calc(100% - 23px);
    width: auto;
    margin: auto;
}

.bf-settings > .s-item > a[data-style] > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    height: 104px;
}

.bf-settings > .s-item > a[data-tip] > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    height: 104px;
}

.bf-settings > .s-item > a[data-cable] > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    height: 104px;
}

.bf-settings > .s-item > a[data-handle] > img {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    /* width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    max-height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px); */
    object-fit: contain;
    background: #fff;
}

.bf-settings > .s-item > a > span {
    color: #001487;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    display: block;
    text-align: center;
    margin-top: 8px;
}

.bf-settings > .s-item > a > span.popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #2d74c8;
    color: #ffffff;
    width: 54px;
    border-radius: 2px;
    opacity: 0;
}

.bf-settings > .s-item > a > div,
.bf-settings-start > .s-item > a > div {
    background: #2d74c8;
    width: 121px;
    height: 121px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #2d74c8;
    border: 3px solid #f7f7f7;
    margin: 3px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-settings > .s-item > a:hover > div {
    background: #737373;
    box-shadow: 0 0 0 3px #737373;
}

.bf-settings > .s-item > a.no-hover:hover > div {
    background: #2d74c8;
    box-shadow: 0 0 0 3px #2d74c8;
}

.bf-settings > .s-item > a.selected > div {
    background: #737373;
    box-shadow: 0 0 0 3px #737373;
}

.bf-settings > .s-item > a > div > span,
.bf-settings-start > .s-item > a > div > span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    padding: 5px;
    margin: auto;
    text-align: center;
    text-transform: capitalize;
}

/* .bf-settings > a > img.fj {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px);
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px);
    object-fit: contain;
    background: #fff;
}

.bf-settings > a > img.fh {
    border: 1px solid #2d74c8;
    border-radius: 50%;
    width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    max-height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
    object-fit: contain;
    background: #fff;
} */

.bf-settings > a.btn {
    height: auto;
    opacity: 1;
    color: #001487;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    border: 2px solid #001487;
    border-radius: 20px;
    transition: 200ms 10ms;
}

.bf-settings > a.btn:hover {
    color: #fff;
    background: #001487;
}

.bf-item.scaled {
    transform: translate(calc(var(--vw) * 50 - calc(var(--itemhsdt) /2) - 15px), 0);
    width: var(--itemwsdt);
    height: var(--itemhsdt);
    top: calc(var(--vh)*50 - 70px - 120px - var(--itemhsdt)/2);
}
.bf-item.scaled .bf-item-style {
    left: calc(var(--itemhsdt) - 20px);
    width: calc(var(--itemwsdt) * 1454 / 1836);
}
.bf-item.scaled .bf-item-tip {
    height: var(--itemhsdt);
    width: var(--itemhsdt);
}

@media (max-width: 767px) {
    .bf-controls-name {
        font-size: 16px;
        border-width: 2px;
        width: 210px;
    }
    .bf-controls {
        padding: 0 10px;
    }
    .bf-controls-back {
        width: 36px;
        height: 36px;
        margin-right: 50px;
    }
    .bf-controls-back span {
        top: 16px;
        left: 12px;
        opacity: 0;
    }
    .bf-controls-back-btn {
        width: 36px;
        height: 1px;
    }
    .bf-controls-back-btn::before {
        width: 18px;
        height: 1px;
        bottom: 7px;
    }
    .bf-controls-back-btn::after {
        width: 18px;
        height: 1px;
        top: 7px;
    }
    .bf-controls-next {
        width: 36px;
        height: 36px;
        margin-left: 20px;
    }
    .bf-controls-next span {
        top: 16px;
        right: 12px;
        opacity: 0;
    }
    .bf-controls-next-btn {
        width: 36px;
        height: 1px;
    }
    .bf-controls-next-btn::before {
        width: 18px;
        height: 1px;
        bottom: 7px;
    }
    .bf-controls-next-btn::after {
        width: 18px;
        height: 1px;
        top: 7px;
    }
    .bf-controls-fwd {
        width: 40px;
        height: 40px;
        margin-left: 20px;
    }
    .bf-controls-fwd-btn {
        width: 36px;
        height: 14px;
        margin-top: 20px;
    }
    .bf-controls-fwd-btn::before {
        width: 1px;
        height: 14px;
    }
    .bf-controls-fwd-btn::after {
        width: 36px;
        height: 1px;
    }
    .bf-settings > a.btn {
        min-width: 140px;
        font-size: 18px;
    }
    .bf-controls-add .btn {
        border-width: 2px;
        width: 210px;
    }
    /* */
    .bf-item-tip {
        border: 2px solid #3c72b8;
    }
    .bf-item-tip > img {
        box-shadow: 0 0 0 2px #3c72b8;
    }
    .bf-item.scaled {
        transform: translate(calc(var(--vw) * 50 - calc(var(--itemhsdt) /2) - 15px), 0);
        width: var(--itemwsdt);
        height: var(--itemhsdt);
        top: calc(var(--vh)*50 - 70px - 120px - var(--itemhsdt)/2);
    }
    .bf-item.scaled .bf-item-style {
        left: calc(var(--itemhsdt) - 20px);
        width: calc(var(--itemwsdt) * 1454 / 1836);
    }
    .bf-item.scaled .bf-item-tip {
        height: var(--itemhsdt);
        width: var(--itemhsdt);
    }
}

.bf-settings-start {
    display: none;
}

@media screen and (max-width: 1284px) and (orientation: landscape) {
    .bf-item-wrapper {
        height: calc((var(--vh)*100) - 140px);
    }
    .bf-builder-fixed .bf-item-wrapper {
        height: calc((var(--vh)*100) - 80px - 92px);
        width: 78%;
        margin-bottom: 92px;
    }
    .bf-item {
        width: var(--itemwml);
        height: var(--itemhml);
        top: calc(var(--vh)*50 - 70px - var(--itemh)/2);
        transform: translate(calc(var(--vw) * 39 - calc(var(--itemwml) / 2)), 0);
    }
    .bf-item-style {
        left: calc(var(--itemhml) - 20px);
        width: calc(var(--itemwml) * 1454 / 1836);
    }
    .bf-item-tip {
        height: var(--itemhml);
        width: var(--itemhml);
        border: 2px solid #3c72b8;
    }
    .bf-item-tip > img {
        box-shadow: 0 0 0 2px #3c72b8;
    }
    
    .bf-helper-text {
        position: fixed;
        left: 80px;
        bottom: auto;
        right: 22%;
        top: 12px;
    }
    .bf-controls {
        display: none;
    }
    .bf-controls-close {
        right: auto;
        left: 0;
    }
    .bf-builder-fixed .bf-controls {
        position: fixed;
        left: 0;
        width: 78%;
        bottom: 0;
        background: #f7f7f7;
        padding: 20px;
        display: flex;
    }
    .bf-builder-fixed .bf-catalog-button {
        top: auto;
        bottom: 102px;
    }
    .bf-builder-fixed .bf-gold-benefits-button.active {
        top: auto;
        bottom: 156px;
    }
    .bf-builder-fixed .bf-gold-benefits {
        top: auto;
        bottom: 200px;
    }
    .bf-settings-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        height: calc(var(--vh) * 100 - 140px);
        width: 22%;
        padding: 0;
    }
    .bf-builder-fixed .bf-settings-wrapper {
        height: 100%;
    }
    .bf-settings > .sep:first-child {
        margin-top: auto;
    }
    .bf-settings > .sep:last-child {
        margin-bottom: auto;
    }
    .bf-settings {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: scroll;
        height: 100%;
        padding: 10px 0;
    }
    .bf-settings-start {
        display: flex;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        height: calc(var(--vh) * 7 + 160px - 52px - 32px);
        padding: 0 24px;
        opacity: 0;
        transition: opacity 10ms 10ms;
        z-index: -1;
        position: relative;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: scroll;
        height: 100%;
        padding: 20px 0;
        opacity: 1;
        z-index: 2 !important;
        height: 100%;
        top: 0;
        margin: auto;
        padding: 0;
        justify-content: center;
        background: #f7f7f7;
        display: flex;
    }
    .bf-builder-fixed .bf-settings-start {
        display: none;
    }
    .bf-settings::-webkit-scrollbar {
        width: 10px;
        height: 100%;
        cursor: pointer;
    }
    
    .bf-settings::-webkit-scrollbar-track {
        background: #FFF;
    }
    
    .bf-settings::-webkit-scrollbar-thumb {
        background: #828282;
        background: #2d74c8;
    }
    
    .bf-settings::-webkit-scrollbar-thumb:hover {
        background: #424242;
        background: #2567b6;
    }
    
    .bf-settings::-webkit-scrollbar-button:single-button {
        height: 15px;
        background: #1b5295;
    }
    .bf-settings > .s-item,
    .bf-settings-start > .s-item {
        margin: 10px 0;
        display: flex;
        align-items: center;
    }
    .bf-settings > .s-item:first-child,
    .bf-settings-start > .s-item:first-child {
        margin-top: auto;
        margin-left: 0;
    }
    .bf-settings > .s-item:last-child,
    .bf-settings-start > .s-item:last-child {
        margin-bottom: auto;
        margin-right: 0;
    }
    .bf-settings > .s-item > a,
    .bf-settings-start > .s-item > a {
        display: block;
        height: 100%;
        height: auto;
        margin: auto;
        opacity: 0.5;
    }
    .bf-settings > .s-item > a > img {
        display: block;
        height: calc(100% - 23px);
        width: auto;
        margin: auto;
    }
    .bf-settings > .s-item > a[data-style] > img {
        border: 1px solid #2d74c8;
        border-radius: 50%;
        height: calc(100% - 38px);
    }
    .bf-settings > .s-item > a[data-tip] > img {
        border: 1px solid #2d74c8;
        border-radius: 50%;
        height: calc(100% - 38px);
    }
    .bf-settings > .s-item > a[data-cable] > img {
        border: 1px solid #2d74c8;
        border-radius: 50%;
        height: calc(100% - 38px);
    }
    .bf-settings > .s-item > a[data-handle] > img {
        border: 1px solid #2d74c8;
        border-radius: 50%;
        /* width: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
        height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px);
        max-height: calc(var(--vh) * 7 + 160px - 52px - 32px - 42px + 18px); */
        object-fit: contain;
        background: #fff;
    }
    .bf-settings > .s-item > a > span {
        color: #001487;
        font-size: 14px;
        font-weight: 400;
        line-height: 15px;
        display: block;
        text-align: center;
        margin-top: 8px;
    }
    .bf-settings > .s-item > a > div,
    .bf-settings-start > .s-item > a > div {
        margin: auto;
    }
    .bf-item.scaled {
        top: 80px;
        width: var(--itemwsmlt);
        height: var(--itemhsmlt);
        transform: translate(calc(var(--vw) * 39 - calc(var(--itemhsmlt) /2) - 15px), 0);
    }
    .bf-item.scaled .bf-item-tip {
        height: var(--itemhsmlt);
        width: var(--itemhsmlt);
    }
    .bf-item.scaled .bf-item-style {
        left: calc(var(--itemhsmlt) - 22px);
        width: calc(var(--itemwsmlt) * 1454 / 1836);
    }
}

.catalogue-status {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: #f7f7f7;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.catalogue-status.finished {
    display: none;
}

.catalogue-status-bar {
    width: 320px;
    height: 6px;
    background: #d7d7d7;
    margin-top: 20px;
    position: relative;
}

.catalogue-status-bar > span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: #b3b3b3;
    transition: 0.1s;
}
