@CHARSET "ISO-8859-1";

@font-face {
    font-family: 'Source Sans Pro';
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    src: url('fonts/SourceSansPro-Regular.eot') format('embedded-opentype'),
         url('fonts/SourceSansPro-Regular.otf.woff') format('woff'),
         url('fonts/SourceSansPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro Semibold';
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    src: url('fonts/SourceSansPro-Semibold.eot') format('embedded-opentype'),
         url('fonts/SourceSansPro-Semibold.otf.woff') format('woff'),
         url('fonts/SourceSansPro-Semibold.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro Bold';
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    src: url('fonts/SourceSansPro-Bold.eot') format('embedded-opentype'),
         url('fonts/SourceSansPro-Bold.otf.woff') format('woff'),
         url('fonts/SourceSansPro-Bold.ttf') format('truetype');
}

/*
 GENERAL
*/







html, body {
    height: 100%;
}

body {
    font-family: Roboto, sans-serif;
    color: #585858;
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #f9f9f9;
    letter-spacing: 0.3px;
}

form {
    display: grid;
}

a {
    outline: none;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    color: #838383;
}

img { border: 0px; }

p {
    margin-top: 0px;
    padding-top: 0px;
    font-size: 12px;
    line-height: 1.5em;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: outside none none;
}

hr {
    height: 2px;
    border: 0;
    background-color: #e8ecef;
    margin: 30px 0;
}

#logo {
    position: absolute;
    left: 80px;
    top: 20px;
}

#logo img {
    width: 100px;
    height: 30px;
}

.link-header {
    position: absolute;
    display: block;
    padding: 0 30px;
    border: 1px solid #90681b;
    right: 80px;
    top: 15px;
    height: 40px;
    box-sizing: border-box;
    min-width: 198px;
}

.link-header span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.65px;
    text-align: center;
    color: #8e6f00;
    text-transform: uppercase;
    line-height: 40px;
}

#modal-overlay-background,
#modal-overlay-background-sub {
    background: none repeat scroll 0 rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.icon-magnifier {
    bottom: 5px;
    position: absolute;
    right: 5px;
    padding: 5px;
    background-color: #fff;
    border-radius: 50%;
}

.txt-button {
    font-size: 14px;
    font-weight: 700;
    color: #274865;
    text-transform: uppercase;
}


::-webkit-scrollbar {
    width: 5px;
}


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #003057;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #cbd4dc; 
}



.switch {
    position: absolute;
    display: inline-block;
    right: 0;
}


.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    height: 15px;
    width: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -6px;
    bottom: -2px;
    background-color: #003057;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #a8a9ab;
}

input:focus + .slider {
    box-shadow: 0 0 1px #a8a9ab;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}


.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


input[type='radio']::after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: ' ';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

input[type='radio']:checked::after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #003057;
    content: ' ';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

/*
 BASIC STRUCTURE
*/

#header-box {
    position: absolute;
    z-index: 1;
    text-align: center;
    height: 75px;
    width: 100%;
    background-color: #fff;
}

#content-box {
    position: absolute;
    width: 100%;
    height: 100%;
    touch-action: none;
}

div.framePanel.selected {
    border: 1px solid #003057;
}

div.framePanel:nth-child(8n+8) {
	margin-right: 0;
}

div.framePanel,
span.colorPane {
    width: 85px;
    height: 85px;
    box-sizing: border-box;
}

.tab, 
.tab > ul {
    display: none;
}

.overlay .show-only-mobile {
    display: none;
}

/*
 CONTENTBOX
*/

#image-box {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

#image-box a {
    cursor: default;
    width: 100%;
    height: 100%;
}

#image-box a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#surface-anchors > span {
    position: absolute;
    display: block;
}





#surface-anchors .item-box {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

#surface-anchors .item-box .current-item {
    position: relative;
    display: block;
}

#surface-anchors .item-box.color .current-item-border {
    display: block;
    background-color: #fff;
    padding: 3px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid #003057;
}

#surface-anchors .item-box.color .current-item div {
    height: 32px;
    width: 32px;
}

#surface-anchors .item-box .current-item img.current-item-image {
    position: relative;
    display: block;
    height: 32px;
    width: 32px;
    overflow: hidden;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid #003057;
    background-color: #fff;
    padding: 3px;
}


#surface-anchors .item-box .additional img.current-item-image {
    position: relative;
    top: -40px;
    left: 45px;
    height: 22px;
    width: 22px;
    margin-bottom: 5px;
}

#surface-anchors .item-box .item1.strip img.current-item-image {
    height: 38px;
    margin: 0;
    width: 38px;
}

#surface-anchors .item-box .item2.strip img.current-item-image {
    height: 28px;
    margin: 0;
    width: 28px;
}

#surface-anchors .item-box .current-item-description,
#surface-anchors .item-box .current-pattern-box,
#surface-anchors .item-box .sub-title,
#surface-anchors .item-box .item-index,
#surface-anchors .anchor-favorites-title {
    display: none;
}

#surface-anchors div.anchor-favorites-title {
	width: 251px;
	box-sizing: border-box;
	bottom: 200px;
	left: calc(-50% + 20px);
}

#surface-anchors .anchor-favorites-title .title {
    margin: 0 0px 10px 0;
	font-family: Georgia;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #53565a;
}

#surface-anchors .anchor-favorites-title .text {
    margin: 10px 0 10px 0px;
	font-family: Roboto;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: 0.3px;
	text-align: left;
	color: #53565a;
}

#surface-anchors .anchor-favorites-title a {
	font-family: Roboto;
	font-size: 12px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: 0.3px;
	text-align: left;
	color: #8e6f00;
}


#surface-anchors  .anchor-subtitle {
    position: relative;
    bottom: 70px;
    left: -50%;
    padding: 13px 15px 14px 15px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-top: 3px solid #658299;
    font-size: 12px;
    line-height: 2.08;
    letter-spacing: normal;
    text-align: left;
    color: #53565a;
    box-shadow: 0 1px 4px 0 rgba(114, 114, 114, 0.16);
    border-radius: 3px;
}

#surface-anchors .anchor-subtitle::after {
    content: "";
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: -10px;
}

#surface-anchors .color .anchor-subtitle {
    top: 38px;
    border-top: 1px solid #e3e3e3;
    border-bottom: 3px solid #658299;
    padding: 15px 15px 12px 15px;
}

#surface-anchors .color .anchor-subtitle::after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid #fff;
    top: -10px;
    bottom: auto;
}

#wait-box {
    background-color: #000;
    border-radius: 6px 6px 6px 6px;
    opacity: 0.7;
    filter: alpha(opacity=70);
    padding: 4px;
    z-index: 2;
}

#zoom-and-pan {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #0E2934;
}

#zoom-and-pan-detail {
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#zoom-and-pan-detail > img {
    width: auto;
    height: auto;
}

#zoom-and-pan-navigator {
    position: absolute;
    right: 20px;
    top: 76px;
    width: 296px;
    height: 149px;
    
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

#zoom-and-pan-navigator > img {
    width: 100%;
    cursor: pointer;
}

#zoom-and-pan-navigator > div {
    position: absolute;
    background-color: #000;
    opacity: 0.5;
    cursor: move;
}

/*
  menu-left
*/

#menu-left {
    position: absolute;
    left: 0;
    top: calc(50% + 37.5px);
    z-index: 1;
    transform: translateY(-50%);
}

#menu-left > ul > li {
    position: relative;
    margin-bottom: 1px;
    width: 70px;
    height: 70px;
    background-color: #e8ecef;
}

#menu-left li:hover,
#menu-left #dyn-rotation li:hover {
    background-color: #cad5dd;
}

#menu-left li a {
    display: block;
    text-align: center;
    color: #003057;
    height: 70px;
    width: 70px;
}

#menu-left li a#btn-gallery {
    background: url("images/btn_room.svg") no-repeat scroll center 10px/28px;
}

#menu-left li a#btn-rotation {
    background: url("images/btn_rotate.svg") no-repeat scroll center 10px/28px;
}

#menu-left li a#zoom {
    background: url("images/btn_zoom_in.svg") no-repeat scroll center 10px/36px;
}

#menu-left.zoom-mode li a#zoom {
    background: url("images/btn_zoom_out.svg") no-repeat scroll center 10px/36px;
}

#menu-left li a#zoom.selected {
    background: url("images/btn_zoom_out.svg") no-repeat scroll center 10px/36px;
}

#menu-left li a#btn-split-view {
    background: url("images/btn_compare.svg") no-repeat scroll center 10px/28px;
}

#menu-left li a#btn-object-selection {
    margin-top: 30px;
    background: url("images/share.svg") no-repeat scroll center 10px/32px;
}

#menu-left li a#btn-download-hd {
    background: url("images/btn_download.svg") no-repeat scroll center 10px/28px;
}

#menu-left li a span {
    display: block;
    /* padding: 48px 5px 10px 5px;
    height: 13px; */
    width: 70px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.28px;
    text-align: center;
    position: absolute;
    bottom: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#menu-left #dyn-rotation {
    background: none repeat scroll 0 0 #e8ecef;
    display: none;
    position: absolute;
    bottom: 0;
    left: 70px;
    z-index: 1;
    white-space: nowrap;
}

#menu-left #dyn-rotation li {
    display: inline-block;
    background: none repeat scroll 0 0 #e8ecef;
    text-align: center;
    width: 70px;
    height: 70px;
}

#menu-left #dyn-rotation li a {
    border: medium none;
    color: #a8a9ab;
    display: block;
    font-size: 20px;
    line-height: 70px;
}

#menu-left #dyn-rotation li a.selected {
    color: #003057;
}

/*
  Toolbars
*/

#btn-add-favorite {
    background: url("images/icon_add_favorite.png") no-repeat scroll center transparent;
    text-align: center;
}

#btn-add-favorite div > span {
    position: relative;
    display: inline-block;
    color: #fff;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    right: -18px;
    top: -7px;
    background-color: #ff9700;
}

#btn-rotation {
    background: url("images/icon_rotation.png") no-repeat scroll center transparent;
}

#btn-split-view {
    background: url("images/icon_split.png") no-repeat scroll center transparent;
}

#zoom-in {
    background: url("images/icon_zoom.png") no-repeat scroll center transparent;
}

#zoom-out {
    background: url("images/icon_zoom_selected.png") no-repeat scroll center transparent;
    background-size: contain;
}

#fullscreen-in {
    background: url("images/icon_fullscreen.png") no-repeat scroll center transparent;
}

#fullscreen-out {
    background: url("images/icon_fullscreen_selected.png") no-repeat scroll center transparent;
    background-size: contain;
}

/*
  Gallery
*/

#overlay-gallery {
    width: 864px;
    height: auto;
    padding-bottom: 30px;
    padding-right: 20px;
}

#gallery-box {
    grid-template-columns: 170px 3fr;
    grid-column-gap: 20px;
}

#dyn-categories {
    margin: 0;
    padding: 0;
}

#dyn-categories li {
    list-style: none outside none;
    margin: 0 0 20px;
}

#dyn-categories li a {
    display: inline-block;
    font-size: 13px;
    color: #a8a9ab;
    letter-spacing: 0.85px;
}

#dyn-categories li.selected div a {
    color: #53565a;
    font-weight: 500;
}

#gallery {
    position: relative;
}

#carousel {
    position: relative;
    width: 625px;
    height: 410px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}

#carousel .img-item {
    position: absolute;
}

#carousel .img-item a {
    display: block;
    height: 100%;
    position: relative;
    border: 1px solid #e3e3e3;
    box-sizing: border-box;
}

#carousel span.img {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#carousel span.selected  span.img-item {
    border: 2px solid #eb8932;
    margin: 0;
}
#carousel span span.img-item {
    box-sizing: border-box;
    display: block;
    height: 130px;
    overflow: hidden;
    position: relative;
    width: 205px;
}

img.carousel {
    cursor: pointer;
    position: absolute;
    bottom: -35px;
    width: 100%;
}

#carousel .portrait img.carousel {
    width: auto;
    height: 100%;
    bottom: 0;
}

/*
  Overlays
*/

.overlay {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 955px;
    height: 640px;
    padding: 0 30px;
    box-sizing: border-box;
    z-index: 1;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.overlay-title {
    font-family: Georgia;
    grid-column: 1/3;
    font-size: 25px;
    color: #003057;
    justify-self: center;
    align-self: center;
    height: 28px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.content-overlay {
    display: grid;
    position: relative;
    width: 100%;
    grid-template-rows: 90px;
}

.btn-close,
.btn-close-suboverlay {
    display: block;
    position: absolute;
    right: -18px;
    top: 30px;
    z-index: 1;
    background-color: #765c00;
    font-size: 19px;
    color: #fff;
    padding: 10px;
}

.btn-close span,
.btn-close-suboverlay span {
    display: none;
}

.title {
    display: block;
    margin-bottom: 25px;
    position: relative;
}

.title span.txt-title {
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #274865;
}

.title span.button-box {
    position: absolute;
    right: 50px;
}

.title span.button-box a {
    color: #00ace6;
}

.camera {
    position: relative;
    width: 16px;
    height: 13px;
    object-fit: contain;
    align-self: center;
    justify-self: center;
}

.btn-box.myroom {
    position: relative;
    font-size: 10px;
    color: #a8913c;
    border: 1px solid #a8913c;
    padding: 9px 0;
    display: grid;
    grid-template-columns: 1fr 3fr;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05px;
    justify-items: start;
}

.btn-box.myroom .myroom-btn-upload-mobile {
    display: none;
}

#myroom-upload-btn .icon-camera {
    font-size: 20px;
}

#myroom-upload-btn span {
    align-self: center;
}

#myroom-upload-btn input {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
}

#overlay-gallery .progress {
    display: none;
    position: absolute;
    color: #fff;
    font-size: 12px;
    top: 8px;
    font-size: 12px;
    width: 100%;
}

#overlay-gallery .bar {
    height: 18px;
    background-color: #765c00;
}

#overlay-gallery .bar-text {
    width: 100%;
    height: 18px;
    

    position: absolute;
    left: 5px;
    top: 0;
    line-height: 17px;
}

.remove-room-btn {
    right: 5px;
    top: 5px;
    padding: 0;
}



#overlay-products {
    width: 955px;
    padding-bottom: 30px;
    height: auto;
}

#overlay-products .overlay-title {
    grid-column: 1/4;
    grid-row: 1;
}

.txt-box {
    font-size: 11px;
    letter-spacing: 0.55px;
    color: #53565a;
    line-height: 1.36;
    font-weight: 500;
}

.txt-box.show-only-mobile {
    grid-row: 4;
    grid-column: 1;
}

#product-selection-box {
    grid-template-columns: 178px 450px 1fr;
    grid-column-gap: 20px;
    grid-template-rows: 1fr  82px 289px;
}

#myfloor-slider-box {
    display: flex;
    position: relative;
    font-size: 13px;
    flex-wrap: wrap;
}

#myfloor-slider-box label {
    flex: 0 1 75%;
}

#myfloor-slider-box hr {
    flex: 0 1 100%;
}

#myfloor-slider {
    width: 35px;
}

#myfloor-slider.disabled {
    opacity: 0.7;
    -webkit-transition: .2s;
}

#btn-filter-results {
    display: none;
    border: 1px solid #8e6f00;
    width: 100%;
    padding: 17px 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.31;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    text-align: center;
    color: #8e6f00;
    margin: 30px 0;
    grid-row: 4;
    grid-column: 1;
    ms-grid-row: 4;
    ms-grid-column: 1;
    z-index: 1;
}

#filter-box {
    position: relative;
    grid-column: 1;
}

#additional-products-box  {
    display: none;
}

#additional-products-box input {
    margin: 5px 15px 10px 0;
}

#additional-products-box label {
    font-size: 13px;
    cursor: pointer;
}

.filter {
    margin-bottom: 20px;
    position: relative;
}

.filter a.btn-filter {
    display: block;
    width: 200px;
}

.filter-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #274865;     
    display: block;
    margin: 0 0 9px 0;
    padding-bottom: 1px;
    background: url("images/image_separator.jpg") no-repeat scroll left bottom transparent;
}

.filter-title span {
    padding-right: 20px;
}

.outer-select {
    display: inline-block;
    position: relative;
    width: 100%;
}

.outer-select .inner-select {
    position: relative;
    border-bottom: 1px solid #a8a9ab;
    color: #a8a9ab;
    font-size: 13px;
    padding-bottom: 5px;
    background-color: #fff;
    line-height: 1.31;
    letter-spacing: 0.65px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.outer-select .inner-select img {
    position: absolute;
    right: 0;
    top: 6px;
    width: 11px;
    height: 6.7px;
    object-fit: contain;
}

.outer-select select {
    cursor: pointer;
    height: 22px;
    left: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#filter-products {
    margin: 10px 0;
}

.btn-reset-all-filter {
    text-decoration: underline;
    letter-spacing: 0.36px;
    color: #53565a;
    margin-top: 30px;
    margin-bottom: 10px;
    display: block;
}

#product-list-box {
    grid-row: 2/5;
    grid-column: 2;
    width: calc(100% - 1px);
}

#pattern-element {
    grid-row: 1;
    grid-column: 2/4;
    align-self: end;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}

#pattern-element ul {
    border-bottom: 1px solid #e8ecef;
    height: 20px;
}

#pattern-element ul {
    margin: 0;
    padding: 0;
}

#pattern-element ul li {
    position: relative;
    display: inline-block;
    list-style: none outside none;
    max-height: 31px;
}

#pattern-element ul li a {
    color: #53565a;
    display: block;
    letter-spacing: 0.3px;
    font-size: 12px;
    padding-bottom: 4px;
    text-transform: uppercase;
    margin-right: 50px;
}

#pattern-element ul li a.selected {
    color: #457eae;
    border-bottom: 2px solid #457eae;
}

#pattern-element ul li a span.txt-current-title {
    display: inline-block;
    vertical-align: super;
}

#pattern-element ul li a span.current-product {
    background-color: #EEEEEE;
    border: 1px solid #838383;
    display: inline-block;
    height: 20px;
    overflow: hidden;
    width: 20px;
}

#pattern-element ul li a span.current-product img {
    margin-top: -25px;
    margin-left: -25px;
}

#pattern-element ul li a.strip span.current-product img {
    height: 8px;
    margin-top: 6px;
    margin-left: 0;
    width: 20px;
}

#product-list {
    height: 402px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    margin-bottom: 5px;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}


#product-list-box ul > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

#product-list-box ul {
    padding: 0px;
    margin: 0px;
}

#product-list-box li {
    position: relative;
    width: 100px;
    height: 140px;
    list-style: none outside none;
    margin: 0 10px 10px 0;
    border: 1px solid #e3e3e3;
}

#product-list-box li:nth-child(4n+4) {
    margin-right: 5px;
}

#product-list-box li a {
    display: block;
}

#product-list-box .img-item img{
    position: relative;
    overflow: hidden;
    display: block;
    height: 100px;
}

#product-list-box li.selected {
    border-color: #003057;
}

#product-list-box li > span {
    display: block;
    width: 90px;
    height: 29px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.07px;
    text-align: left;
    color: #53565a;
    margin: 5px 5px 6px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

#product-list-box li.strip a span.img-item {
    background: #eee;
    border: 1px solid #FFFFFF;
    height: 87px;
    width: 87px;
}

#product-list-box li.strip a span.img-item img {
    height: 29px;
    margin-top: 30px;
    width: 89px;
}

#product-list-box ul li a span.selected span.imgSelected {
    display: block;
    height: 15px;
    position: absolute;
    width: 15px;
}

#product-list-box ul li span.zoom-in-image {
    display: block;
    height: 22px;
    position: absolute;
    width: 20px;
    background: url("images/zoom_in_icon.png") no-repeat scroll 0 0;
    bottom: 5px;
    right: 5px;
    z-index: 1;
    cursor: pointer;
}

#btn-search-2 {
    display: none;
    background: url("images/icon_search_2.png") no-repeat scroll left center transparent;
    padding: 15px 10px 15px 30px;
}

#position-product-list {
    bottom: 15px;
    position: absolute;
    right: 0;
}

#configuration-box {
    grid-column: 3;
    grid-row: 2/4;
}

.configuration-title {
    color: #003057;
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
    font-weight: 500;
    letter-spacing: 0.85px;
    line-height: 1.31;
}

#installation-box #current-product-installation {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 90px;
    width: 100%;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
    display: inline-block;
    line-height: 11px;
}

#dyn-patterns ul {
    margin: 0;
    padding: 0;
}

#dyn-patterns ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
    list-style: none outside none;
    position: relative;
}

#dyn-patterns ul li a,
#dyn-patterns ul li a span {
    display: block;
}

#dyn-patterns ul li a img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    opacity: 50%;
}

#dyn-patterns ul li.selected a img {
    opacity: 100%;
}

#dyn-patterns ul li.selected a span {
    box-sizing: border-box;
    border: 1px solid #003057;
}

#current-box .current-item {
    margin-bottom: 10px;
}

#configuration-box .current-item-description div {
    margin-bottom: 5px;
}

#current-box .current-item-description div:nth-child(2),
#current-box .current-item-description div:nth-child(3) {
    letter-spacing: 0.09px;
    font-size: 13px;
}

#current-box .current-item-description div:nth-child(2) {
    color: #a8a9ab;
    line-height: 1.31;
}

#current-box .current-item-description div:nth-child(3) {
    color: #53565a;
}

#current-box img.current-item-image {
    height: 50px;
    overflow: hidden;
    width: 227px;
    object-fit:cover;
    cursor: pointer;   
}

#installation-box {
    margin-bottom: 10px;
}

#customisation-box {
    margin: 20px 0 5px 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}

#customisation-box .outer-select .inner-select {
    width: 227px;
    margin-bottom: 20px;
    color: #53565a;
}

#customisation-box .filter-title {
    font-size: 12px;
    margin-bottom: 5px;
}

#customisation-box ul {
    margin: 0;
    padding: 0;
}

#customisation-box ul#select-bevel {
    margin: 0 0 16px 0;
}

#customisation-box ul li {
    list-style: none;
    display: inline;
    margin: 0 15px 0 0;
}

#customisation-box ul li:last-Child {
    margin: 0;
}

#customisation-box ul li a {
    display: inline-block;
}

#customisation-box ul li a span {
    display: block;
    padding: 3px;
}

#customisation-box ul li a.selected span {
    border: 2px solid #ff9700;
    padding: 1px;
}

#variations {
    display: none;
}



.combination-container .txt-title {
    font-size: 15px;
    letter-spacing: 0.35px;
    font-weight: 500;
    color: #53565a;
    margin-bottom: 10px;
    height: 18px;
    text-align: left;
}

.combination-container .txt-title + span {
    font-size: 15px;
    line-height: 1.67;
    letter-spacing: 0.35px;
    color: #a8a9ab;
}

#object-selection #current-room-scene img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#object-selection-box {
    border-bottom: 2px solid #e8ecef;
    grid-column: 1/3;
    padding-bottom: 30px;
}

#object-selection .scene-objects {
    display: grid;
    grid-template-columns: 220px 1fr;
}

#favorite .title {
    text-align: center;
}

#favorites-box .overlay-title {
    justify-self: start;
    letter-spacing: 0.63px;
    margin-bottom: 15px;
    display: block;
}

#favorites-box .content-favorite {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-row-gap: 20px;
    margin-top: 10px;
}

#no-favorites {
    position: relative;
    text-align: center;
    top: 130px;
}

#favorites-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
}

#favorites-wrapper .items {
    position: absolute;
    z-index: 1;
}

#favorites-wrapper .favorites {
    margin-bottom: 30px;
}

#favorites-wrapper .buttons {
    color: #00ACE6;
    margin-left: 10px;
    text-decoration: underline;
}

#favorites-wrapper .content-favorite .favorites-left-colum .scene-img {
    cursor: pointer;
}

#favorites-wrapper .content-favorite .scene-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options {
    width: 175px;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li {
    margin: 0 20px 13px 0;
    width: auto;
    height: auto;
    clear: both;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a {
    padding: 2px 0 2px 32px;
    font-size: 14px;
    height: 18px;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a.show-combination {
    background: url("images/btn_show_combination_bg.png") no-repeat scroll left center transparent;
    background-size: contain;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a.cad {
    background: url("images/btn_cad_bg.png") no-repeat scroll left center transparent;
    background-size: contain;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a.print {
    background: url("images/btn_print_bg.png") no-repeat scroll left center transparent;
    background-size: contain;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a.share {
    background: url("images/btn_share_bg.png") no-repeat scroll left center transparent;
    background-size: contain;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a.email {
    background: url("images/btn_email_bg.png") no-repeat scroll left center transparent;
    background-size: contain;
}

#favorites-wrapper .content-favorite .favorites-left-colum ul.favorite-options li a.delete {
    background: url("images/btn_delete_bg.png") no-repeat scroll left center transparent;
    background-size: contain;
}

#favorites-wrapper .room-scene-items {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 30px;
}

/* #favorites-wrapper .content-favorite > ul > li {
    display: grid;
    grid-template-rows: 30px 2fr;
    grid-template-columns: 1fr 1fr;
} */

/* #favorites-wrapper .room-scene-items ul{
    display: grid;
    grid-row: 1;
    grid-column: 2;
    grid-template-rows: 30px 120px;
    grid-template-columns: 1fr;
} */

#favorites-wrapper .pattern-item img {
    object-fit: cover;
    height: 40px;
    width: 40px;
    margin-right: 5px;
    border: 1px solid #4c4d4f;
    box-sizing: border-box;
}

#favorites-wrapper .content-favorite ul li .pattern-name {
    vertical-align: top;
}

#favorites-wrapper li.color .color-tile {
    width: 40px;
    height: 40px;
}

#favorites-wrapper .content-favorite ul li .img-item-box .img-item {
    float: left;
    position: relative;
    display: block;
    height: 75px;
    margin: 0 5px 5px 0;
    overflow: hidden;
    width: 75px;
}

#favorites-wrapper .content-favorite ul li .img-item-box .img-item .zoom-in-image {
    background: rgba(0, 0, 0, 0) url("images/zoom_in_icon.png") no-repeat scroll 0 0;
    bottom: 5px;
    cursor: pointer;
    display: block;
    height: 22px;
    position: absolute;
    right: 5px;
    width: 20px;
    z-index: 1;
}

#favorites-wrapper .content-favorite ul li .img-item-box .img-item img {
    width: 40px;
    width: 40px;
    object-fit: cover;
}

#favorites-wrapper .combination-item .strip {
    border: 2px solid #ff9700;
    float: left;
    margin: 0 5px 0 0;
    overflow: hidden;
    box-sizing: border-box;
}

#favorites-wrapper .combination-item .strip img {
    width: 18px;
    margin: 0;
}

#favorites-wrapper .combination-item div.selected .current-item {
    border: 2px solid #ff9700;
    box-sizing: border-box;
}

#favorites-box {
    grid-column: 1/3;
}

#favorites-box .navi-box {
    position: relative;
    margin: 25px 0 0 0;
}

#favorite-navi {
    position: absolute;
    top: -25px;
    right: 20px;
}

#favorites-box .content-favorite ul li.installation {
    display: grid;
    grid-template-rows: 30px 2fr;
    grid-template-columns: 1fr 1fr;
    grid-column: 1;
}



#overlay-color {
    max-width: 775px;
    box-sizing: border-box;
    padding-right: 20px;
    height: 407px;
    margin-top: auto;
}

#color-selection-box {
    grid-template-rows: 88px 24px 1fr;
    grid-template-columns: 1fr;
}

#reset-all-colors {
    text-decoration: underline;
    grid-row: 2/3;
    grid-column: 1/3;
}

#color-selector {
    display: block;
    height: 265px; 
    overflow-x: hidden;  
    overflow-y: scroll; 
    margin-bottom: 25px;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}



#overlay-combination-box {
    display: grid;
    grid-template-rows: 87px 1fr;
    grid-template-columns: 1fr;
}

.combination-container {
    display: grid;
    height: 425px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}

#overlay-combination {
    width: 840px;
    height: 542px;

}

#overlay-combination .object-title {
    display: block;
    grid-row: 1;
    grid-column: 1/4;
    font-size: 18px;
    line-height: 1.11;
    letter-spacing: 0.45px;
    text-align: left;
    color: #003057;
    height: 30px;
}

#overlay-combination .sub-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: 0.35px;
    text-align: left;
    color: #53565a;
}

#overlay-combination .options-element {
    color: #003057;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    display: flex;
    margin-right: 30px;
}

#overlay-combination .options-txt {
    position: relative;
    top: 8px;
    height: 14px;
}

#object-selection .options-box {
    padding-top: 12px;
}

#overlay-combination .options-box {
    display: flex;
    grid-column: 1/3;
}

#overlay-combination .options-box a {
    position: relative;
    display: flex;
    margin-right: 30px;
}

#overlay-combination .options-box .delete {
    position: absolute;
    right: 0;
    margin-right: 0;
}

#overlay-combination .option-icon  {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 3px;
    margin-right: 10px;
}

#overlay-combination .print-icon  {
    background: #f4f4f4 url("images/icon_printPDF.svg") no-repeat scroll center center/12px;
  
}

#overlay-combination .facebook-icon {
    background: #f4f4f4 url("images/icon_facebook.svg") no-repeat scroll center center/32px;
}

#overlay-combination .mail-icon {
    background: #f4f4f4 url("images/icon_mail.svg") no-repeat scroll center center/16px;
}

#overlay-combination .show-combination-icon {
    background: #f4f4f4 url("images/icon-show-combination.svg") no-repeat scroll center center/16px;
}

#overlay-combination .delete-icon {
    background: #f4f4f4 url("images/icon_delete.svg") no-repeat scroll center center/16px;
}

#overlay-combination .configuration-title
#overlay-combination .options-element {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.72px;
    margin-bottom: 0;
}

#overlay-combination .current-pattern-description {
    font-size: 12px;
    font-weight: 500;
    line-height: 3.5;
    letter-spacing: 0.72px;
    text-align: left;
    color: #003057;
    padding-left: 10px;
}

#overlay-combination .current-pattern img {
    float: left;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid #53565a;
    box-sizing: border-box;
}

#overlay-combination .configuration-title {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.72px;
    margin-bottom: 0;
}

#overlay-combination .current-item-description div:nth-child(2){
    font-size: 13px;
    line-height: 1.31;
    letter-spacing: 0.85px;
    color: #a8a9ab;
}

#overlay-combination .current-item-description div:nth-child(3){
    font-size: 11px;
    line-height: 1.18;
    letter-spacing: 0.31px;
    color: #53565a;
}

#overlay-combination .current-item-box {
    display: flex;
    margin-bottom: 10px;
}

#overlay-combination li .current-item {
    cursor: pointer;
    flex: 0 0 50px;
}

#overlay-combination li .current-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

#dyn-scene-objects {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 30px;
}

#dyn-scene-objects > ul {
    display: grid;
    grid-row: 1;
    grid-column: 2;
    grid-template-rows: 30px 120px;
/*     grid-auto-rows: 120px;
 */}

#dyn-scene-objects > .installation {
    display: grid;
    grid-template-rows: 30px 2fr;
    grid-template-columns: 1fr 1fr;
    grid-column: 1;
}

#dyn-scene-objects li .current-pattern-box .object-pattern-title {
    float: left;
    margin-right: 20px;
}

#dyn-scene-objects li .item-box div {
    display: flex;
}

#dyn-scene-objects li.color {
    grid-column: 1;
}

#dyn-scene-objects li.color .item-box .current-item-border div {
    height: 40px;
    width: 40px;
}

.btn-box-bottom {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.btn-box-bottom a {
    color: #0e2934;
    display: block;
    font-size: 16px;
    padding: 4px 10px;
    text-align: center;
}

.btn-box-bottom a:hover {
    text-decoration: underline;
}

/*
 Overlays Filter
*/

.overlay-filter {
    background-color: #fff;
    z-index: 3;
}

/*
    Search Item Overlay
*/

#search-box {
    position: relative;
    width: 178px;
    margin-top: 10px;
}

#search-box img {
    position: absolute;
    right: 2px;
    bottom: 6px;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.search-input {
    position: relative;
    border: none;
    border-bottom: 1px solid #a8a9ab;
    color: #53565a;
    font-size: 12px;
    padding-bottom: 5px;
    background-color: #fff;
    line-height: 1.5;
    letter-spacing: 0.3px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Roboto;
    outline: none;
}

.search-input::placeholder {
    color: #a8a9ab;
    opacity: 1;
    font-size: 13px;
    letter-spacing: 0.33px;
    line-height: 1.38;
}

#overlay-search {
    position: absolute;
    background: none repeat scroll 0 0 #fff;
    display: none;
    padding: 20px;
    width: 463px;
    left: 50%;
    top: 80px;
    margin: 0 0 0 -231px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

#no-items-found-box {
    display:none;
    color: #ff0000;
}

#items-found-box {
    display: none;
}

#title-matching-items {
    font-weight: bold;
    margin-bottom: 10px;
}

#search-results-list > ul {
    margin: 0;
    padding: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 250px;
}

#search-results-list li {
    float: left;
    list-style: none outside none;
    padding-bottom: 5px;
}

#search-results-list .item-image {
    border: 1px solid #8c8c8c;
    float: left;
    height: 98px;
    overflow: hidden;
    width: 130px;
    margin-right: 15px;
}

#search-results-list .item-image span {
    border: 1px solid #fff;
    display: block;
}

#search-results-list .item-description {
    float: left;
    font-size: 11px;
    line-height: 1.5em;
    width: 200px;
}

/*
 overlay-send-to
*/

#overlay-send-to {
    background: #fff none repeat scroll 0 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    display: none;
    left: 50%;
    margin: 0 0 0 -231px;
    padding: 20px;
    position: absolute;
    top: 80px;
    width: 463px;
    z-index: 3;
}

#overlay-send-to .title {
    border-bottom: 1px solid #ccc;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

#overlay-send-to .btn-box {
    bottom: 0;
    position: absolute;
    right: 0;
}

#overlay-send-to .btn-box input {
    font-size: 11px;
    padding: 2px 10px;
}

#send-to-box {
    height: 178px;
    padding: 30px 20px 20px;
}

#send-to-box .txt-send-to {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 18px;
}

#send-to-error {
    display: none;
}

#send-to {
    display: block;
    height: 100%;
    position: relative;
}

#send-to table {
    margin-top: 20px;
    position: relative;
}

#send-to .frmText {
    font-size: 11px;
    width: 350px;
}

#send-to td {
    font-size: 11px;
    height: 35px;
    padding: 0 5px;
    vertical-align: top;
}

#send-to td span {
    color: #FF0000;
    display: block;
    font-size: 10px;
    text-align: center;
    width: 350px;
}

/*
 INFO-BANNER
*/

#info-banner {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

#info-banner > div{
    color: #fff;
    line-height: 25px;
    padding: 30px 280px;
    background-color: #003057;
    font-size: 16px;
}

.info-banner-buttons {
    display: inline-block;
    margin-left: 10px;
    margin-top: 4px;
}

.info-banner-buttons a {
    min-height: 46px;
    color: inherit;
    font-size: 14px;
    border: 2px solid #fff;
    border-radius: 100px;
    padding: 4px 10px;
}

.info-banner-buttons a:hover {
    border-color: #e8ecef;
    background-color: #e8ecef;
    color: #003057;
}

/*
    SplitPane
*/

#split-pane {
    display: none;
}

#split-pane-divider > div {
    position: absolute;
    background-color: #fff;
    content: "";
    height: 39px;
    top: 50%;
    transform: translateY(-50%);
    width: 19.5px;
}

#split-pane-divider-left {
    border-radius: 50px 0 0 50px;
    right: 2.5px;
}

#split-pane-divider-left::before {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 8px solid #003057;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    content: "";
    top: 10px;
    right: 5px;
}

#split-pane-divider-right {
    border-radius: 0 50px 50px 0;
    left: 2.5px;
}

#split-pane-divider-right::before {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 8px solid #003057;
    content: "";
    top: 10px;
    left: 5px;
}

#split-pane-divider {
    position: absolute;
    width: 5px;
    height: 100%;
    left: 500px;
    cursor: e-resize;
    background-color: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    

    user-select: none;
}


#split-pane-right {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

#split-pane-right div {
    position: absolute;
    width: 100%;
    height: 100%;
}

#split-pane-right div img {
    position:absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#split-pane-favorites {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    max-height: 60%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 20px;
    top: 76px;
    width: 160px;
    scrollbar-color: #003057 #cbd4dc;
    scrollbar-width: thin;
}

#split-pane-favorites .no-favorites {
    display: none;
}

#split-pane-favorites .add-bookmark {
    color: #003057;
}

#split-pane-favorites>a {

    position: relative;
    display: inline-block;
}

#split-pane-favorites>a img {
    height: 90px;
}

#split-pane-favorites > a:hover:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 90px;
    content: '';
    display: block;
    background: url("images/icon_leftright.gif") no-repeat scroll 0 0 transparent;
}

@media (max-width: 1023px) {
    
    .overlay {
        width: 100%;
    }
    
    .overlay-title {
        grid-row: 1;
    }
    
    /********************************************************************
        Gallery-Overlay 
    *********************************************************************/
    
 
}

@media (max-width: 996px) {
    
    #logo {
        left: 5px;
    }
    
    .link-header {
        right: 5px;
    }
        
    #modal-overlay-background,
    .sub-overlay-box {
        height: 100vh;
    }
    
    .overlay .show-only-mobile {
        display: block;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .tab {
        display: block;
        position: relative;
        grid-column: 1/3;
        border-bottom: 1px solid #a8a9ab;
        height: 45px;
        cursor: pointer;
    }
    
    .tab a {
        font-size: 13px;
    }
    
    .tab-list {
        
        position: relative;
        top: 16px;
        background-color: #fff;
        -webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
        -moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
        z-index: 3;
    }
    
    .tab-list li {
        padding: 15px 10px;
    }
    
    .tab img {
        position: absolute;
        right: 0;
        bottom: 20px;
        width: 15px;
    }
    
    .tab .tab-text {
        font-family: Georgia;
        font-size: 25px;
        line-height: 1.2;
        color: #53565a;
    }
    
    .overlay {
        box-sizing: border-box;
        padding: 0 15px;
        height: auto;
        top: 0;
        left: auto;
        padding-top: 30px;
        z-index: 1;
        transform: unset;
    }
    
    .overlay-title {
        grid-row: 1;
        font-size: 30px;
    }
    
    #menu-left {
        position: absolute;
        bottom: 0;
        top: auto;
        z-index: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 355px;
    }

    #menu-left > ul > li {
        float: left;
        margin-right: 1px;
    }
    
    #menu-left li a#btn-object-selection {
        margin-top: 0;
    }
    
    #menu-left #dyn-rotation {
        bottom: 70px;
        left: auto;
        direction: rtl;
    }
    
    #menu-left #dyn-rotation li {
        display: block;
    }

    .btn-close,
    .btn-close-suboverlay {
        position: relative;
        top: 0;
        right: auto;
        background-color: #fff;
        padding: 0;
    }
          
    .btn-close.icon-close::before,
    .btn-close-suboverlay.icon-close::before {
        content:"";
        border-top: 4px solid transparent;
        border-right: 5px solid #53565a;
        border-bottom: 4px solid transparent;
        float: left;        
    }
    
    .btn-close span::before,
    .btn-close-suboverlay span::before {
        display: inline-block;
        position: relative;
        content:"";
        bottom: 4px;
        right: 5px;
        width: 8px;
        background: #53565a;
        height: 1.6px;
    }
    
    .btn-close span,
    .btn-close-suboverlay span {
        font-family: Roboto;
        display: block;
        position: relative;
        bottom: 4px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.31;
        letter-spacing: 0.65px;
        color: #53565a;
        padding-left: 10px;
    }
    
    #myfloor-slider-box {
        grid-row: 3;
        grid-column: 1;
        margin: 30px 0;
    }
    
    #additional-products-box {
        grid-column: 1/3;
        grid-row: 1/2;
        background-color: #fff;
        padding: 10px 0;
    }
    
    #additional-products-box .txt-box {
        margin-top: 10px;
    }
    
    #surface-anchors .anchor-subtitle,
    #surface-anchors .anchor-favorites-title {
    	display: none;
    }
    
    /********************************************************************
        Gallery-Overlay 
    *********************************************************************/
    
    #gallery {
        width: 100%;
        grid-row: 3;
    }
    
    #gallery-box {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }
    
    #gallery-box .tab ul {
        top: 46px;
    }
    
    #overlay-gallery {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    #category {
        grid-row: 2;
        margin-bottom: 30px;
    }
    
    #category .tab {
        height: auto;
        min-height: 45px;
    }
    
    #category .tab-list {
        display: none;
        top: 0;
    }
    
    #carousel {
        width: 100%;
        height: auto;
    }
    
    #carousel .img-item {
        position: relative;
        display: block;
        width: 100%;
        height: 200px;
        margin-bottom: 30px;
    }
    
    #dyn-categories {
        position: relative;
    }
    
    .btn-box.myroom .myroom-btn-upload-mobile {
        display: block;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.31;
        letter-spacing: 0.65px;
        text-align: center;
        color: #8e6f00;
        padding: 17px 0 18px 0;
        border: 1px solid #8e6f00;
    }
    
    .btn-box.myroom {
        border: none;
        justify-items: unset;
        grid-template-columns: 1fr;
    }
    
    
    /********************************************************************
        Product-Overlay 
    *********************************************************************/
    
    #product-selection-box {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-template-rows: 111px 1fr;
    }
    
    #product-selection-box .tab {
        grid-row: 2;
        margin-bottom: 8px;
        min-height: 45px;
        height: auto;
    }

    #product-selection-box .tab img {
        top: 15px;
    }

    #search-box {
        width: 100%;
        grid-row: 3;
        grid-column: 1;
        margin-top: 30px;
    }
    
    #btn-filter-results {
        display: block;
    }
    
    #selected-filters-box {
        grid-row: 5;
        grid-column: 1;
        margin-bottom: 20px;
    }
    
    .selected-filter {
        position: relative;
        display: inline-block;
        background-color: #658299;
        color: #fff;
        padding: 11px 20px 11px 8px;
        margin-right: 20px;
        margin-bottom: 5px;
    }
    
    #selected-filters-box .remove-selection {
        position: absolute;
        top: 0px;
        width: 20px;
        height: 35px;
        display: inline-block;
        color: #fff;
        right: 0;
        font-size: 12px;
        text-align: center;
        line-height: 35px;
    }
    
    #filter-box .txt-box {
        position: relative;
        bottom: auto;
    }
       
    #pattern-element {
        grid-row: 6;
        grid-column: 1;
        padding-bottom: 10px;
    }
    
    #product-list-box {
        grid-row: 7;
        grid-column: 1;
    }
    
    #search-box input {
        font-size: 15px;
        line-height: 1.53;
        letter-spacing: 0.38px;
        width: 100%;
    }
    
    #overlay-products {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    #filter-box,
    #configuration-box {
        display: none;
    }
    
    #filter-box {
        width: 100%;
        grid-row: 1/6;
        background-color: #fff;
        padding-top: 50px;
        margin-top: 0;
        height: 100vh;
    }
    
    .filter .outer-select .inner-select {
        width: 100%;
    }
    
    #filter-products {
        position: relative;
        border-top: 1px solid #c1c6c8;
        border-bottom: 1px solid #c1c6c8;
        padding-top: 15px;
        margin-bottom: 15px;
    }
    
    .btn-reset-all-filter {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.53;
        letter-spacing: 0.38px;
        color: #53565a;
    }
    
    #filter-box .btn-reset-all-filter {
        position: absolute;
        right: 0;
        top: 0;
    }
    
    #selected-filters-box .btn-reset-all-filter  {
        display: block;
        margin-top: 20px;
    }
    
    #product-list-box ,
    #overlay-products .overlay-title {
        grid-column: 1;
    }
    
    #product-list,
    #favorite-list,
    #matched-list {
        height: auto;
    }
    
    #product-list-box  li {
        width: 162px;
        height: 214px;
        margin: 0;
    }
    
    #product-list-box ul > div {
        justify-content: center;
        grid-template-columns: repeat(auto-fill, 160px);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    
    #product-list-box  .img-item img {
        height: 162px;
        width: 160px;
    }
    
    #configuration-box {
        grid-row: initial;
        grid-column: 1;
        margin-top: 30px;
    }
    
    #current-box {
        order: 1;
    }
    
    #current-box div:first-child {
        display: flex;
    }
    
    #current-box .current-item {
        margin-right: 20px;
    }
    
    #current-box img.current-item-image {
        height: 85px;
        width: 85px;
    }
    
    #customisation-box {
        order: 2;
    }
    
    #customisation-box .outer-select .inner-select {
        width: 100%;
    }
       
    #installation-box {
        order: 4;
    }
    
    /********************************************************************
        Combination/Favorites-Overlay 
    *********************************************************************/
    
    #overlay-combination-box {
        grid-template-rows: 87px 70px 1fr;
    }
    
    .combination-container {
        height: auto;
        overflow: visible;
    }
        
    .tab-previous-setups {
        display: none;
    }
    
    #overlay-combination {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    #object-selection .scene-objects,
    #favorites-box .content-favorite {
        grid-template-rows: 220px 1fr;
    }
    
    
    #overlay-combination .options-box {
        position: relative;
        flex-direction: column;
        grid-column: 2;
        grid-row: 1;
    }
    
    #overlay-combination .options-box a {
        margin-right: auto;
        flex-basis: 35px;
    }
    
    #dyn-scene-objects,
    #favorites-wrapper {
        overflow: auto;
        height: auto;
        
    }
    
    #dyn-scene-objects,
    #favorites-wrapper .room-scene-items {
        grid-template-columns: 1fr;
        grid-column: 1/3;
        grid-column-gap: 0;
    }
    
    #favorites-wrapper .favorites {
        padding-bottom: unset;
        margin-bottom: unset;
    }
    
    #favorites-wrapper .room-scene-items ul {
        grid-row: 2;
        grid-column: 1/3;
    }
    
    #dyn-scene-objects > ul {
        grid-row: 2;
        grid-column: 1;
    }
    
    #overlay-combination .options-box .delete {
        bottom: 20px;
        right: auto;
    }
    
    #favorites-box {
        padding: 0;
    }
    
    #favorites-box .overlay-title {
        display: none;
    }
    
    /********************************************************************
        Send-to-Overlay 
    *********************************************************************/
    
    #overlay-send-to {
        left: auto;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        top: 0;
    }
    
    #send-to .frmText {
        width: 100%;
    }
    
    /********************************************************************
        Search-Overlay 
    *********************************************************************/
    
    #overlay-search {
        width: 100%;
        left: auto;
        top: 0;
        margin: 0;
    }
    
    #search-results-list > ul {
        height: 90vh;
    }
    
    /********************************************************************
        Color-Overlay 
    *********************************************************************/
        
    #overlay-color {
        height: auto;
        margin-top: 0;
    }
    
    #color-selection-box {
        width: 100%;
    }
     
    #color-selector {
        height: auto;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(auto-fill, 162px);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    
    div.framePanel,
    span.colorPane {
        width: 162px;
        height: 162px;
        margin: 0;
    }
    
    /********************************************************************
        Info-Banner
    *********************************************************************/
    
    #info-banner > div {
        line-height: 14px;
        padding: 10px;
        font-size: 14px;
    }
    
    .info-banner-buttons a {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .info-banner-buttons {
        margin-left: 0;
        margin-top: 10px;
    }
}