.custom-footer {
    display: none;
}

.configurator-container {
    background-color: whitesmoke;
}

.configurator-container .configurator-wrap #configurator-content-container {
    width: 100%;
    max-width: 100%;
}

.configurator-wrap {
    position: relative;
    height: 100vh;
}

.horizontal-menu {
    background: linear-gradient(117.56deg, #2776BB 0.25%, #21346E 98.68%), #2776BB;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    height: 30px;
    position: absolute;
    top: 90px;
}

.horizontal-menu-inner {
    text-align: center;
    height: 50px;
    margin-top: -5px;
}

.horizontal-menu-inner .category {
    display: inline-block;
    padding-top: 5px;
}

.horizontal-menu-inner .category.active {
    background: linear-gradient(124.26deg, #62B7DC -46.21%, #2180A9 132.94%), #21346E;
    /*box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);*/
    border-radius: 20px;
    height: 40px;
}

.category-name-holder {
    color: #ffffff;
    font-size: 16px;
    margin: 5px 20px;
    cursor: pointer;
}

.category-name-holder:hover {
    text-decoration: underline;
}

.vertical-menu {
    position: absolute;
    z-index: 2;
    width: 350px;
    background: rgba(56, 56, 56, 0.95);
    top: 145px;
    left: 40px;
    border-radius: 20px;
    padding: 20px;
}

.vertical-menu.no-display {
    display: none;
}

.vertical-menu .vertical-menu-next {
    color: #000000;
    float: right;
    position: absolute;
    right: -30px;
    top: 10px;
}

.vertical-menu .vertical-menu-next > .button > span:first-child {
    margin-right: -10px;
}

.vertical-menu .vertical-menu-next > .button > .button-right-arrow {
    margin-right: 10px;
}

.vertical-menu > .category-name {
    color: white;
    float: left;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    width: 200px;
    line-height: 1.1;
}

.vertical-menu-separator {
    clear: both;
    width: 100%;
    height: 2px;
    background-color: #edf153;
    margin: 10px auto;
    border-radius: 50%;
}

.vertical-menu .parts-container {
    max-height: calc(100vh - 315px);
    overflow-y: auto;
}

.vertical-menu .parts {
    clear: both;
    color: #ffffff;
    overflow: auto;
    margin-bottom: 20px;
}

.vertical-menu .parts .circle > div {
    position: relative;
}

.vertical-menu .parts .circle {
    background: linear-gradient(134.06deg, #BBD97A 12%, #3D96B2 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    transform: none;
    border: 0;
}

.vertical-menu .parts > .left {
    width: 60px;
    float: left;
}

.vertical-menu .parts > .right {
    float: left;
    width: calc(100% - 60px);
    padding-left: 10px;
}

.vertical-menu .parts > .right > .title {
    line-height: 1;
    margin-bottom: 5px;
    font-weight: bold;
    cursor: pointer;
}

.vertical-menu .parts > .right > .title:hover {
    text-decoration: underline;
}

.vertical-menu .parts > .right > .body {
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.toggle-vertical-menu {
    position: absolute;
    color: white;
    background: #373737;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    top: 130px;
    left: 40px;
    padding-top: 5px;
    z-index: 5;
}

.toggle-vertical-menu .fa-plus,
.toggle-vertical-menu .fa-minus {
    display: none;
}

.toggle-vertical-menu:not(.open) .fa-plus {
    display: inline;
}

.toggle-vertical-menu.open .fa-minus {
    display: inline;
}

.finished-product-menu {
    position: absolute;
    z-index: 2;
    background: linear-gradient(139.14deg, #62B7DC -46.21%, #2180A9 132.94%), #21346E;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    top: 145px;
    right: 40px;
    border-radius: 20px;
    color: #ffffff;
}

.custom-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: linear-gradient(139.14deg, #62B7DC -46.21%, #2180A9 132.94%), #21346E;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 20px;
    min-width: 200px;
    margin-top: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    display: none;
}

i.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    position: relative;
}

i.arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 0;
}

i.arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: -3px;
}

.finished-product-menu.open .custom-dropdown {
    display: block;
}

.finished-product-menu > button {
    background: linear-gradient(139.14deg, #62B7DC -46.21%, #2180A9 132.94%), #21346E;
    border-radius: 20px;
    font-size: 18px;
    width: 200px;
    border: 0;
    padding: 10px;
}

.finished-product-menu .help-block {
    color: #ad0000;
    padding: 5px;
}

.finished-product-menu > button:active {
    background: linear-gradient(139.14deg, #62B7DC -46.21%, #2180A9 132.94%), #21346E;
}

.finished-product-menu > button > span {
    font-size: 18px;
    margin-top: 4px;
    margin-right: 5px;
    color: white;
}

.finished-product-menu > button > i.arrow.up {
    display: none;
}

.finished-product-menu.open > button > i.arrow.up {
    display: inline-block;
}

.finished-product-menu.open > button > i.arrow.down {
    display: none;
}

.finished-product-menu .category-wrap {
    margin-bottom: 2px;
}

.finished-product-menu .category-wrap .category-name,
.finished-product-menu .category-wrap .type-name {
    font-size: 15px;
}

.pay-for-setup {
    margin-top: 30px;
    text-align: center;
}

.pay-for-setup > input {
    background-color: #213a75;
    padding: 10px 20px;
    color: white;
}

.finished-product-menu .show-hide-buttons-wrap button {
    background-color: #213a75;
    border-radius: 25px;
    width: 200px;
    color: white;
}

.finished-product-menu .show-hide-buttons-wrap .next-button {
    margin-top: 20px;
}

.finished-product-menu .show-hide-buttons-wrap .next-button > span:first-child {
    margin-right: -10px;
}

.finished-product-menu .show-hide-buttons-wrap .next-button .glyphicon {
    float: right;
    margin-right: 10px;
    margin-top: 2px;
}

.finished-product-menu .show-hide-buttons-wrap .prev-button > span:last-child {
    margin-left: -10px;
}

.finished-product-menu .show-hide-buttons-wrap .prev-button .glyphicon {
    float: left;
    margin-left: 10px;
    margin-top: 2px;
}

.finished-product-menu .show-hide-buttons-wrap .prev-button {
    margin-bottom: 20px;
}

.finished-product-menu.show-parts .show-hide-buttons-wrap .prev-button,
.finished-product-menu.show-parts .hidden-form {
    display: none;
}

.finished-product-menu.show-form .show-hide-buttons-wrap .next-button,
.finished-product-menu.show-form .category-wrap-container {
    display: none;
}

    /** ====> CUSTOM RADIO/CHECKBOX <==== **/
.configurator-container [type="checkbox"]:checked,
.configurator-container [type="checkbox"]:not(:checked),
.configurator-container [type="radio"]:checked,
.configurator-container [type="radio"]:not(:checked) {
    position: absolute;
    left: 0;
    visibility: hidden;
}

.configurator-container [type="checkbox"]:checked + label,
.configurator-container [type="checkbox"]:not(:checked) + label,
.configurator-container [type="radio  "]:checked + label,
.configurator-container [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    color: #666;
    height: 20px;
    font-family: 'Font Awesome 5 Free', sans-serif;
}

.configurator-container [type="checkbox"]:checked + label:before,
.configurator-container [type="checkbox"]:not(:checked) + label:before,
.configurator-container [type="radio"]:checked + label:before,
.configurator-container [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #EDF153;
    border-radius: 100%;
    background: rgb(56, 56, 56);
    cursor: pointer;
}

.configurator-container [type="radio"]:checked + label:after,
.configurator-container [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #EDF153;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

.configurator-container [type="checkbox"]:checked + label:after,
.configurator-container [type="checkbox"]:not(:checked) + label:after {
    content: '\f00c';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: #EDF153;
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 10px;
}

.configurator-container [type="checkbox"]:not(:checked) + label:after,
.configurator-container [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.configurator-container [type="checkbox"]:checked + label:after,
.configurator-container [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/** ====> SLICK <==== */
.container.slick-initialized.slick-slider {
    width: 100%;
    padding: 0;
    position: relative;
}

.slick-list,
.slick-track {
    height: 100%;
}

.slider-image-container {
    height: 100vh;
    width: 100%;
    background-position-y: 72px;
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slick-dots {
    position: absolute;
    bottom: 14px;
    display: block;
    width: 110px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    list-style: none;
    text-align: center;
    z-index: 2;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 0;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:before {
    font-size: 46px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}

.slick-arrow > div {
    background-color: #595959;
    color: white;
    text-align: center;
    border-radius: 50%;
    font-size: 26px;
    height: 30px;
    width: 30px;
    padding: 3px 0;
}

.slick-arrow {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    height: 30px;
    width: 30px;
}

.slick-prev {
    padding-right: 190px;
}

.slick-next {
    padding-left: 130px;
}

.slick-prev > div {
    cursor: pointer;
}

.slick-next > div {
    cursor: pointer;
}

.horizontal-menu .slick-arrow > div {
     background-color: transparent;
    font-size: 32px;
}

.horizontal-menu .slick-next {
    margin-left: 0;
    margin-right: 0;
    right: 5px;
    top: 4px;
    padding: 0;
    left: auto;
}

.horizontal-menu .slick-prev {
    margin-left: 0;
    margin-right: 0;
    right: auto;
    padding: 0;
    left: 5px;
    top: 4px;
}

.slick-list div {
    outline: 0;
}

.horizontal-menu .slick-list.draggable {
    margin: 0 50px;
}


@media (max-width: 768px) {
    .configurator-wrap{
        margin-top: 80px;
        height: auto;
        min-height: 100vh;
        max-width: 100%;
    }
    .finished-product-menu{
        width: 100%;
        max-width: calc(100% - 50px);
        top: 20px;
        left: 25px;
        z-index: 10;

    }
    .finished-product-menu > button{
        width: 100%;
    }
    .finished-product-menu .custom-dropdown{
        right: auto;
        width: 100%;
    }

    #vertical-menu{
        max-width: calc(100% - 50px);
        left: 25px;
    }
    .vertical-menu > .category-name{
        width: 100%;
    }
    .vertical-menu .vertical-menu-next{
        right: 10px;
    }
    .horizontal-menu{

    }
    .slick-dots{

    }
}