
#landscape {
    background: var(--var-vendor-color);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    overflow: hidden;
    display: none;
    z-index: 15000000000000000;
}
#landscapeTitle {
    z-index: 50;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 2vh;
    text-align: center;
}



.grid-container {
    --rH100: 100px;
    --rH145: 145px;
    --rH70: 70px;
    --rH40: 40px;
    --rH50: 50px;
    --rHAUTO: 'auto';

    display: grid;
    grid-template-areas:
            "A1 A2 A3"
            "B1 B2 B3"
            "C1 B2 C3"
            "D1 B2 D3";

    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    grid-template-rows: var(--rHAUTO) var(--rHAUTO) var(--rHAUTO) var(--rHAUTO);
    grid-template-columns: 170px auto 170px;

    margin: 0 auto;
    width: 100%;
}

.main.farbe-active .grid-container {
    grid-template-rows: var(--rH70) var(--rH70) var(--rH70) var(--rH70);
}

.main.expand-menu-bottom .grid-container {
    grid-template-rows: var(--rH70) var(--rH145) var(--rH100) var(--rH100);
}



.menuBottomContent {
    height: 100%;
}

#iconInformation {
    grid-area: C1;
}

.area {
    z-index: 2;
    margin: 15px 0;
}
#area_0 {
    grid-area: C1;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 2vh;
}
#area_1 {
    grid-area: C3;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 2vh
}
#area_2 {
    grid-area: A3;
    align-items: center;
    display: none;
}
#area_2.show {
    display: flex;
}

#iconFarbe {
    right: unset !important;
    position: unset !important;
}
#iconInformation {
    left: unset !important;
    position: unset !important;
}
.menuBottom {
    grid-area: B2;
    margin: 0 auto;
    position: unset !important;
    left: unset !important;
    transform: unset !important;
}


/* big screen */

@media (min-width : 1025px) and (max-width : 1399px) {
    .menuBottom {
        /*width: 75% !important;*/
    }
}
@media (min-width : 1400px) {
    .menuBottom {
        width: 55% !important;
    }
}

/* any mobile */

@media only screen {
    .setIcon, .iconEffect {
        border-width: 2px !important;
    }
}

/* ipad */

@media only screen
and (min-width : 703px)
and (max-width : 1024px) {

    #modalCart .modal-dialog {
        height: 85% !important;;
        min-width: 85% !important;
    }
    .cartProduct .cartIconImg {
        width: 40px !important;
        height: 40px !important;
    }
    .cartProduct.component .cartIconImg {
        width: 40px !important;
        height: 40px !important;
    }

    .iconStyle1, #iconIDS {
        width: 5.7vh !important;
        height: 5.7vh !important;
        max-height: 5.7vh !important;
        max-width: 5.7vh !important;
    }


    .highlightModal.modal.center_modal .modal-content {
        height: 100%;
        min-height: 100%;
    }
    .highlightModal.modal.center_modal .modal-body {

    }
    .highlightModal.modal.center_modal .modal-dialog {
        height: 85% !important;
        min-width: 85% !important;
    }

    .main.expand-menu-bottom .grid-container {
        grid-template-rows: var(--rH100) var(--rH145) var(--rH100) var(--rH100) !important;
    }
}

/* ipad landscape */
@media only screen
and (min-width : 703px)
and (max-width : 1024px)
and (orientation : landscape) {
    .grid-container {
        grid-template-rows: var(--rHAUTO) var(--rHAUTO) var(--rHAUTO) var(--rHAUTO);
    }

    .main.farbe-active .grid-container {
        grid-template-rows: var(--rH70) var(--rH70) var(--rH70) var(--rH70);
    }
}

/* ipad portrait */
@media only screen
and (min-width : 703px)
and (max-width : 1024px)
and (orientation : portrait) {
    .grid-container {
        grid-template-rows: var(--rHAUTO) var(--rHAUTO) var(--rHAUTO) var(--rHAUTO);

        width: 90%;
    }

    .main.farbe-active .grid-container {
        grid-template-rows: var(--rH100) var(--rH70) var(--rH70) var(--rH70);
    }

    #area_0 {
        grid-area: A1;
        padding-left: 0;
    }
    #area_1 {
        grid-area: A3;
        padding-right: 0;
    }
    #area_2 {
        grid-area: A2;
        padding-right: 0;
        justify-content: center;
    }
    .menuBottom {
        grid-area: B1 / A1 / D1 / A3;    /* from B1 to D1 and from A1 to A3 */
        width: 100% !important;
    }


    .highlightModal.modal.center_modal .modal-content {
        height: 100%;
        min-height: 100%;
    }
    .highlightModal.modal.center_modal .modal-body {

    }
    .highlightModal.modal.center_modal .modal-dialog {
        height: 85% !important;
        min-width: 85% !important;
    }
}

/* iPHONE portrait */
/*@media only screen
and (min-width : 375px)
and (max-width : 400px) {*/

@media only screen and (min-device-width: 360px) and (max-device-width: 812px) {

    :root {
        font-size: 10px;
    }

    .grid-container {
        grid-template-rows: var(--rHAUTO) var(--rHAUTO) var(--rHAUTO) var(--rHAUTO);
        grid-template-columns: 70px auto 70px;
    }

    #area_0 {
        grid-area: A1;
        padding-left: 2vh
    }
    #area_1 {
        grid-area: A3;
        padding-right: 2vh;
    }
    #area_2 {
        grid-area: A2;
        padding-right: 0;
        justify-content: center;
    }
    .menuBottom {
        grid-area: B1 / A1 / D1 / A3    /* from B1 to D1 and from A1 to A3 */
    }


    .menuBottom {
        width: 100% !important;
    }
    .iconStyle1, #iconIDS {
        width: 3.5vh !important;
        height: 3.5vh !important;
        max-height: 3.5vh !important;
        max-width: 3.5vh !important;
    }

    .setIcon, .iconEffect, .componentDiv img, .accessoryDiv img {
        width: 4vh !important;
        height: 4vh !important;
    }

    .setTitle {
        font-size: 0.625rem !important;
        width: 78px !important;
    }

    .colorsets_content .swiper-slide {
        width: 90px !important;
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }

    #colorsets .swiper-button-prev {
        left: 2% !important;
    }
    #colorsets .swiper-button-next {
        right: 2% !important;;
    }

    #slickHeader {
        margin: 10px auto !important;
    }

    .menuBottomSubHeader {
        margin-top: 5px !important;
    }


    #modalCart .modal-dialog {
        height: 90% !important;;
        min-width: 90% !important;
    }
    .cartProduct .cartIconImg {
        width: 30px !important;
        height: 30px !important;
    }
    .cartProduct.component .cartIconImg {
        width: 30px !important;
        height: 30px !important;
    }

    .iconStyle1 {
        width: 3.7vh !important;
        height: 3.7vh !important;
        max-height: 3.7vh !important;
        max-width: 3.7vh !important;
    }
    #modalCart .close {
        right: -3% !important;
        top: -5% !important;
    }


    .highlightModal.modal.center_modal .modal-dialog {
        height: 90% !important;
        min-width: 90% !important;
    }

    .highlightModal .close {
        right: -3% !important;
        top: -5% !important;
    }


    #modalCart #btnPrintCart {
        width: 8rem !important;
    }



    #modalCart .cartProduct .container {
        padding: 0 !important;
        margin: 1px 2px !important;
    }

    .productHeader .title {
        font-size: 1rem !important;
        letter-spacing: .01rem;
        line-height: 1.2rem !important;
    }

    .cartProduct .cartProductIndex,
    .cartProduct .cartProductQuantityValue,
    .cartProduct .cartProductName, .cartProduct .cartProductDetailsElement,
    .cartProduct .cartProductDetailsSizeTitle, .cartProduct .cartProductDetailsWeightTitle, .cartProduct .cartProductDetailsCatalogueIdTitle, .cartProduct .cartProductQuantityTitle, .cartProduct .elementName,
    .cartProduct .cartProductDetailsSizeValue, .cartProduct .cartProductDetailsWeightValue, .cartProduct .cartProductDetailsCatalogueIdValue, .cartProduct .elementMaterial {
        font-size: 0.525rem !important;
    }
}

/* iPHONE landscape */
@media only screen
and (min-device-width: 375px)
and (max-device-width: 812px)
and (orientation: landscape) {

    :root {
        font-size: 10px;
    }

    .grid-container {
        grid-template-rows: var(--rHAUTO) var(--rHAUTO) var(--rHAUTO) var(--rHAUTO);
        grid-template-columns: 70px auto 70px;
    }

    .main.farbe-active .grid-container {
        grid-template-rows: var(--rH70) var(--rH70) var(--rH70) var(--rH70);
    }


    #shareQR {
        height: calc(100% - 100px) !important;
    }

    .setTitle {
        font-size: 0.625rem !important;
        width: 78px !important;
    }

    #qrcode img {
        width: 80%;
        margin: 0 auto;
    }

    #landscape {
        display: block;
    }
}



/* WINDOW */
@media (min-width : 334px)     /*570 602 rect */
and (max-width : 702px) {
    :root {
        font-size: 10px;
    }

    .grid-container {
        grid-template-rows: var(--rHAUTO) var(--rHAUTO) var(--rHAUTO) var(--rHAUTO);
    }

    .main.farbe-active .grid-container {
        grid-template-rows: var(--rH100) var(--rH70) var(--rH70) var(--rH70);
    }

    #area_0 {
        grid-area: A1;
        padding-left: 2vh;
    }
    #area_1 {
        grid-area: A3;
        padding-right: 2vh;
    }
    #area_2 {
        grid-area: A2;
        padding-right: 0;
        justify-content: center;
    }
    .menuBottom {
        grid-area: B1 / A1 / D1 / A3;    /* from B1 to D1 and from A1 to A3 */
        width: 99% !important;
    }


    #modalCart .modal-dialog {
        height: 85% !important;;
        min-width: 85% !important;
    }
    .cartProduct .cartIconImg {
        width: 40px !important;
        height: 40px !important;
    }
    .cartProduct.component .cartIconImg {
        width: 40px !important;
        height: 40px !important;
    }

    .highlightModal.modal.center_modal .modal-content {
        height: 100%;
        min-height: 100%;
    }
    .highlightModal.modal.center_modal .modal-body {

    }
    .highlightModal.modal.center_modal .modal-dialog {
        height: 85% !important;
        min-width: 85% !important;
    }

    .btnSocial {
        margin: 0 2vh 0 2vh;
        display: none;
        width: 2.8rem !important;
        height: 2.8rem !important;
    }


    .main.expand-menu-bottom .grid-container {
        grid-template-rows: var(--rH70) var(--rH145) var(--rH100) var(--rH100) !important;
    }
}



/* OLD */



#iconIDS {
    display: none;
    justify-content: center;
    align-items: center;

    width: 5.7vh;
    height: 5.7vh;
    max-height: 5.7vh;
    max-width: 5.7vh;
}


#iconInformation {
    left: 4%;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    bottom: 4.3rem;
}

#iconFarbe {
    right: 4%;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    bottom: 4.3rem
}


.iconStyle1 {
    width: 5.7vh;
    height: 5.7vh;
    max-height: 5.7vh;
    max-width: 5.7vh;
}


.btn1 {
    color: var(--var-buttons-text-color);
    background: var(--var-vendor-color);
    /* height: 100%; */
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
    /*height: 2.188rem;*/
    border-radius: 30px;
    min-width: 120px;
    /* text-transform: uppercase; */
    /* text-align: center; */
    /* float: left; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-family: 'fontName1';
    border: 0;
    padding-right: 1vh;
    padding-left: 1vh;
    outline: 0;
}














.iconType1 {
    cursor: pointer;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 1vh;
}

.iconType2 {
    cursor: pointer;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
}

.iconType3 {
    justify-content: center;
    align-items: center;
    width: 2.85vh;
    height: 2.85vh;
    min-height: 2.85vh;
    min-width: 2.85vh;
    display: flex;
}
.iconType3 img {
    vertical-align: unset;
}

/* --------------------------------------- */
.topDiv {
    display: flex;
    flex-direction: row;
    align-content: space-between;
    position: absolute;
    width: 100%;
    padding: 3% 4%;
    align-items: center;
    justify-content: space-between;
    top: 0;
    flex-grow: 2;
    gap: 4%;
    z-index: 2;
    height: 6.7vh;
}

.topDiv img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    vertical-align: unset;
}

.topHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 2;
}

#menuBottom {
    width: 65%;
    min-width: 340px;       /* was 570 */
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    position: absolute;
    border-top-left-radius: 2vh;
    border-top-right-radius: 2vh;
    z-index: 2;
    display: none;
    overflow: hidden;
}

#menuBottom.active {
    box-shadow: 0px 0px 8px rgb(0 0 0 / 16%);
    display: block;
    background: var(--template-bottom-menu-color);
}

.mobile .menuBottom2 .menuBottomSubContent {
    box-shadow: unset;
}
.mobile .main.expand-menu-bottom .menuBottomSubContent {

}

.menuBottomHeader {
    min-width: 270px;
    margin: 0.1vh 0vh 0.1vh 0vh;
}

.menuBottomHeaderPresets {
    display: none;
}


#colorsets {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /*max-height: 9.375rem;*/
    justify-content: center;
}

#colorsets .swiper-button-prev, #colorsets .swiper-container-rtl .swiper-button-next {
    background-image: none;
    fill: var(--template-background-color);
    left: 5%;
}
#colorsets .swiper-button-next, #colorsets .swiper-container-rtl .swiper-button-prev {
    background-image: none;
    fill: var(--template-background-color);
    right: 5%;
}

#colorsets .swiper-button-prev svg, #colorsets .swiper-button-next svg {
    height: 100%;
    /*width: 100%;*/
}

#colorsets .swiper-button-next,
#colorsets .swiper-button-prev {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: flex-start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    width: unset;
    margin-top: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 1.6rem;
}

.colorsets_content .gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.colorsets_content .swiper-wrapper .swiper-slide {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: flex-start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    width: 120px;
    height: 100%;

    margin-top: 20px;
    margin-bottom: 20px;
}

.colorsets_content .setIcon {
    opacity: 0.6;
    cursor: pointer;
    width: 5.7vh;
    height: 5.7vh;
    background: linear-gradient(to bottom, #FFFFFF, var(--template-bottom-menu-color)) border-box;
    border-radius: 50%;
    border: 3px solid #fff;
}

.colorsets_content .swiper-wrapper {
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: baseline;
}

.colorsets_content .right-arrow {
    left: 0;
}

.colorsets_content .right-arrow, .colorsets_content .left-arrow {
    position: absolute;
    padding: 0 26px;
}

.colorsets_content .right-arrow i, .colorsets_content .left-arrow i {
    line-height: 50px;
}

.colorsets_content .swiper-container {
    width: calc(88% - 50px);
    height: 100%;

}

.menuBottomSubHeader {
    width: 90%;
    display: flex;
    height: 2vh;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 15px 5% 5px 5%;
}

.menuBottomSubHeader2 {
    color: #333333;
    width: 100%;
    /*height: 30px;*/
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.menuBottomContent {
    text-transform: uppercase;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    display: none;
}

.menuBottomSubContent {
    text-transform: uppercase;
    height: 100%;
    /*row-gap: 1vh;*/
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem 0 1rem;
    justify-content: start;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(57, 57, 57, 0) 19.05%, rgba(57, 57, 57, 0.2) 100%);
    box-shadow: 0px 0px 8px rgb(0 0 0 / 16%);
    /*border-top-left-radius: 2vh;
    border-top-right-radius: 2vh;*/
}

.menuBottomContent1 {
    display: none;
}

/*.menuBottomContent2 {
    height: 22.7vh;
}*/
.main.expand-menu-bottom .menuBottomContent2 {
    height: 345px;
}
.menuBottomContent2 .menuBottom2 {
    width: 100%;
    /*height: 150px;
    position: absolute;
    top: 70px;
    transition: 100ms;*/
    /*height: 100%;*/
    flex-grow: 2;
    overflow-y: hidden;
}

.main.expand-menu-bottom .menuBottom2 {
    width: 100%;
    flex-grow: 2;
}
.main.expand-menu-bottom .menuBottom2 svg {
    transform: rotate(180deg);
}

.ddd {
    height: 100%;
}
.mobile .ddd {
    height: 145px;
    overflow: hidden;
}

.main.expand-menu-bottom .ddd {
    height: 100%;
}

.menuBottomContent2 > .tab-content {
    width: 100%;
    height: 100%;
    position: absolute;
}
.menuBottomContent2 > .tab-content>.active {
    display: flex !important;
    gap: 10px;
}
.menuBottomContent2 .setIcon {
    opacity: 0.6;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
    width: 5vh;
    height: 5vh;
    background: linear-gradient(to bottom, #FFFFFF, var(--template-bottom-menu-color)) border-box;
    border-radius: 50%;
}
.menuBottomContent2 .setIcon:hover,
.menuBottomContent2 .setIcon.active {
    opacity: 1;
    border: 3px var(--var-vendor-color) solid;
}
.menuBottomContent2 .setIcon:hover, .menuBottomContent2 .setIcon.active .setTitle,
.menuBottomContent1 .setIcon:hover, .menuBottomContent1 .setIcon.active {
    opacity: 1;
    border: 3px var(--var-vendor-color) solid;
}

.menuBottomContentIcons {
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    border-bottom: 0px;
    /*position: absolute;*/
    align-items: center;
    top: 0;
    flex-grow: 0;
    flex-shrink: 0;
    /*padding: 1vh 0 2px 0;*/
    padding: 5px 10px;
    display: none;
}

.menuBottom2 .tab-content>.active {
    display: flex !important;
    /*flex-direction: column;*/
}

.mobile .menuBottomContentIcons {

}

.menuBottomContentIcons .nav-link {
    border: 0px;
    padding: 0px;
}

.headerSliderClass {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 270px;
    flex-grow: 0;
    flex-shrink: 0;
    /*display: flex;*/
    min-width: 270px;
}

#slickHeader {
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
}

#slickHeader .slickHeaderCommon {
    display: none;
    align-items: center;
}

#slickHeader .slickHeaderCommon.active {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mobile #slickHeader {
    position: relative;
    height: 35px;
    max-width: 70%;
    margin: 2px auto;
}
#slickHeader .right_slick-next,
#slickHeader .right_slick-prev {
    cursor: pointer;
    position: absolute;
    outline: none;
    background: none;
    z-index: 100;
    height: 100%;
    width: 40px;
    /*background: #fff;
    border: #fff solid 1px;*/
    border:0px;
    border-radius: 5px;
    top: 0px;
}

#slickHeader .right_slick-prev {
    left: -1px;
}
#slickHeader .right_slick-next {
    right: -1px;
}



/*.slickHeaderColorSets {
    display: flex;
}*/


#tabComponents .nav-link, #tabAccessories .nav-link, #tabSizes .nav-link, #tabColorsets .nav-link {
    background-color: unset !important;
}

#menuComponents, #menuAccessories, #menuColorsets {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: self-start;
    width: 95%;
    flex-wrap: wrap;
    justify-content: left;
    overflow-y: auto;
    padding: 0px;
    left: 2.5%;
    margin: 0 auto;
    position: relative;
    flex-grow: 2;
    direction: rtl;
    overflow: auto;
    margin: 0 1vh;
    min-height: 70px;
}

#contentComponents img, #contentAccessories img {
    border-radius: 50%;
    border: 3px solid transparent;
}

#contentColorsets, #contentComponents, #contentAccessories {
    width: 100%;
    /*overflow-y: scroll;
    position: relative;*/
    display: flex;
    height: 100%;
    overflow-y: scroll;
}

#contentColorsets .tab-pane, #contentComponents .tab-pane, #contentAccessories .tab-pane {
    display: flex;
    /* flex-wrap: wrap; */
    /* position: absolute; */
    width: 100%;
    flex-direction: column;
}

#contentComponents .tab-pane, #contentAccessories .tab-pane {
    flex-direction: row;
}

#contentColorsets .tab-pane-items, #contentComponents .tab-pane-items, #contentAccessories .tab-pane-items {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: 5px;
                /*height: 100%;*/
}


#contentColorsets::-webkit-scrollbar-track, #contentComponents::-webkit-scrollbar-track, #contentAccessories::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.3);
    border-radius: 2px;
    background-color: transparent;
}
#contentColorsets::-webkit-scrollbar, #contentComponents::-webkit-scrollbar, #contentAccessories::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}
#contentColorsets::-webkit-scrollbar-thumb, #contentComponents::-webkit-scrollbar-thumb, #contentAccessories::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,.3);
    background-color: #cccccc;
}

.slick-dots {
    position: relative;
    bottom: 0px;
}
.slick-dots li button:before {
    font-size: 26px;
    opacity: 0.75;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--var-vendor-color);
}

#menuSizes {
    width: 100%;
    display: block;
    position: unset !important;
    text-transform: initial;
    max-height: 70px;
    text-align: center;
}
#menuSizes a {
    font-size: 0.825rem;
    letter-spacing: .01rem;
    line-height: 1.8rem;
}
#menuSizes .dropdown-item.active,
#menuSizes .dropdown-item:active {
    color: var(--var-vendor-color);
    background: unset;
}

#menuSizes .dropdown-item:hover, #menuSizes dropdown-item:focus {
    background: unset;
}

#iconIDSDiv {
    display: none;
}

#menuIds {
    padding: 10px;
    width: 22vw;

    font-family: 'fontName1';
    font-size: 0.875rem;
    letter-spacing: .05rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.067;
    word-break: break-word;
    text-transform: uppercase;
    color: #A4A4A4;
}

#menuIds.dropdown-menu {
    min-width: 20rem !important;
}
#menuIds li {
    margin: 5px 0;
}
#menuIds .active {
    font-family: 'fontName2';
    color: #333333;
}


.setTitle {
    color: var(--template-text-color);
    width: 110px;
    margin-top: 2vh;
    color: #A4A4A4;
}
.setTitle.active {
    color: #333333;
}

.iconEffect {
    border: 3px var(--var-vendor-color) solid !important;
}


/* Product Header */
.productHeader {
    /*padding: 0 2vh;*/
    padding: 0;
    height: 5vh;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;    /*var(--template-text-color)*/
}
.productHeader .title {
    font-family: 'fontName2';
    font-size: 1.375rem;
    letter-spacing: -0.026rem;
    line-height: 2.8rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
}


#iconFullscreen {
    justify-content: center;
    align-items: center;
    width: 2.8vh;
    height: 2.8vh;
    min-height: 2.8vh;
    min-width: 2.8vh;
    display: flex;
}
#iconFullscreen svg {
    width: 100%;
    height: 100%;
    z-index: 2;
}





/* Icons */

#menuTopIcons {
    display: flex;
    justify-content: center;
    padding: 2vh;
}

.menuTopIcon {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 4rem;
    height: 4rem;
    max-height: 40px;
    max-width: 40px;
}
.menuTopIcon:hover {
    opacity: 0.6;
    transition: 0.3s;
}
.menuTopIcon img {
    width: 100%;
    height: 100%;
}


.shadow {
    -webkit-filter: drop-shadow( 1px 1px 2px rgba(0, 0, 0, .3));
    filter: drop-shadow( 1px 1px 2px rgba(0, 0, 0, .3));
}

.shadow1 {
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}

#btnExpand {
    right: 12px;
    top: 47px;
    width: 2.5vh;
    height: 2.5vh;
    min-height: 2.5vh;
    min-width: 2.5vh;
    position: absolute;
}
#btnExpand svg {
    width: 100%;
    height: 100%;
}

.main.expand-menu-bottom #btnExpand {
    top: 8px;
}

.main.expand-menu-bottom #slickHeader {
    display: none;
}

.mobile .productHeader .title {
    font-size: 1.6rem;
    letter-spacing: .01rem;
    line-height: 1.8rem;
}


.main {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    margin: 0;
    padding: 0;
}

#div-3d {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0;
    position: absolute;
}
#div-3d canvas {
    position: absolute;
}

#logo {
    display: none;
}
#logo img {
    max-height: 7vh;

}


.accessoryDiv {
    padding: 3px;
    width: 6vh;
    height: 6vh
}

.mobile .accessoryDiv {
    padding: 1.5px;
    width: 5.1vh;
    height: 5.1vh
}

.mobile .menuBottomSubHeader {
    height: unset;
}

.menuBottomE {
    width: 100%;
}


.font1 {
    font-family: 'fontName2';
    font-size: 1.1rem;
    letter-spacing: .05rem;
    color: #393939;
    line-height: 1.5rem;
    text-transform: uppercase;
    text-align: right;
}

.font2 {
    font-family: 'fontName2';
    font-size: 0.875rem;            /* 16px = 1rem if root-font-size = 16px */
    letter-spacing: .05rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.067;
    word-break: break-word;
    text-align: center;
    text-transform: uppercase;
}

.font3 {
    font-family: 'fontName1';
    font-size: 0.675rem;
    letter-spacing: .1rem;
    line-height: 1.5rem;
}

.font4 {
    font-family: "fontName1";
    text-align: center;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    letter-spacing: -0.026rem;
    line-height: 1.375rem;
    text-transform: uppercase;
    color: #333333;
}

.font5 {
    font-family: 'fontName2';
    text-align: center;
    font-weight: 700;
    font-size: 0.625rem;
    line-height: 0.762rem;
    text-transform: uppercase;
    font-style: normal;
    color: #333333;
}