@font-face {
  font-family: 'NobelRegular';
  src: url('../fonts/Nobel-Regular.otf') format('woff'), url('../fonts/Nobel-Regular.ttf') format('truetype'), url('../fonts/Nobel-Regular.woff') format('woff');
}

:root {
  --blue0076ce: rgb(0, 118, 206);
  --blue006bbd: rgb(0, 107, 189);
  --blue467ace: #467ace;
  --whiteffffff: rgb(255, 255, 255, 0.9);
  --greycccccc: rgb(204, 204, 204);
  --black000000OP087: rgb(0, 0, 0, 0.87);
  --black000000OP000: rgb(255, 255, 255, 0.0);
  --black000000: rgb(0, 0, 0, 1);
  --grey969696OP089: rgb(150, 150, 150, 0.9);
  --whiteOP00: rgb(255, 255, 255, 0.0);
  --grey0e0e0e: #0e0e0e;
  --grey7c7c7c: #7c7c7c;
  --grey708090: #708090;
  --grey767676: #767676;
  --greyc5c4c4: #c5c4c4;
  --greyc7c9c7: #c7c9c7;
  --greycf5f6f7: #f5f6f7;
  --grey585858: #585858;
  --grey787878: #787878;
  --grey878787: #878787;
  --greyd8d9e0: #d8d9e0;
  --lightblued9f5fd: #d9f5fd;
  --greydbdddf: rgb(219, 221, 223);
  --greyeeeeee: rgb(238, 238, 238);
  --grey444444: rgb(68, 68, 68);
  --grey858585: rgb(133, 133, 133);
  --grey808080: rgb(128, 128, 128);
  --grey80808057: rgb(128, 128, 128, 0.57);
  --greybababa: #bababa;
  --mainFontFamily: 'NobelRegular', Arial, sans-serif;
  --resetInfoBtnGap: 40px;
  --navContainerMarginLeft: 110px;
  --zoomSliderContainerWidth: 450px;
  --exteriorInteriorBtnWidth: 150px;
  --exteriorInteriorBtnHeight: 64px;
  --colorSwatchWidthHeight: 32px;
  --colorSwatchArrowHeight: 7px;
  --colorSwatchArrowScale: 1;
  --exteriorIconHeight: 42px;
  --interiorIconHeight: 46px;
  --exteriorIconScale: 1;
  --interiorIconScale: 1;
  --navContainerScale: 1;
  --qrContainerScale: 1;
  --resetIconHeight: 33px;
  --resetIconScale: 1;
  --infoIconScale: 1;
  --colorSwatchContainerLeft: 160px;
  --zoomSliderContainerPaddingTop: 11px;
  --colorSwatchContainerBottom: 64px;
  --lineSliderContainerPaddingTop: 17px;
  --zoomLevelLinesBottom: 37px;
  --colorSwatchContainerHeight: 290px;
  --colorSwatchContainerRowGap: 25px;
  --sliderThumbHeight: 27px;
  --sliderThumbScale: 1;
  --howtouseScale: 1;
}



*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

#divRTSkinMain{display: none;}

html, body {
	background-color: #ffffff;
	width:  100%;
	height: 100%;
	margin: 0px;
    font-family: var(--mainFontFamily);
    overflow: hidden;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

/*Webgl error*/
#sirtErrorContainer {
    position: absolute;
    background-color: var(--greyd8d9e0);
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    clear: both;
    box-sizing: border-box;
    z-index: 13;
}

#sirtErrorContainer #errorContent {
    max-width: 545px;
    height: auto;
    background-color: var(--whiteffffff);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

#sirtErrorContainer #errorContent h4 {
    font-size: 26px;
    color: var(--black000000);
    margin-bottom: 25px;
}

#sirtErrorContainer #errorContent p {
    font-size: 18px;
    color: var(--black000000);
}


/*Webgl error end*/

/**************** LOADER ****************/
.card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: #ffffff; */
    margin: 0 20px;
    width: 280px;
    height: 350px;
    border-radius: 5px;
    /* box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2); */
}

.card .percent {
    position: relative;
    transform: rotate(180deg);
    height: 210px;
}

.card svg {
    position: relative;
    width: 210px;
    height: 210px;
    transform: rotate(-90deg);
}

.card svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: transparent;
    stroke-width: 5;
    stroke-linecap: round;
}

.card svg circle:last-of-type {
    stroke-dasharray: 625px;
    stroke-dashoffset: calc(625px - (625px * var(--percent)) / 100);
    /* stroke: #3498db; */
    stroke: url(#linearColors1);
}

.card .number {
    position: absolute;
    transform: translate(5%, -80%);
    color: #000;
}

.card .number {
    font-weight: 200;
    font-size: 3.5rem;
}

.card .iconContainer {
    display: flex;
    justify-content: space-between;
    width: 270px;
}

.card .number span {
    font-size: 40px;
}

.card .title {
    margin: 45px 0 0;
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    color: #000;
}

.card .title .navIcon {
    margin-bottom: 6px;

}

.card .title .navIcon.move {
    margin-top: -5px;
    width: 38px;
    height: 37px;

}
.card .title .navIcon.moveMouse {
    margin-left: 8px;
    width: 24px;
    height: 38px;

}
.card .title .navIcon.zoom {
    margin-top: -6px;
    width: 40px;
    height: 44px;

}
.card .title .navIcon.zoomMouse {
    margin-left: 7px;
    width: 24px;
    height: 38px;
}

.card .title .navIcon.rotate {
    margin-top: -5px;
    width: 32px;
    height: 43px;

}
.card .title .navIcon.rotateMouse {
    margin-left:11px;
    width: 24px;
    height: 38px;

}

/* Mobile */
.mobile .card .title .navIcon.moveMouse, .mobile .card .title .navIcon.zoomMouse, .mobile .card .title .navIcon.rotateMouse {
    display: none;
}

.mobile .card .iconContainer {
    width: 240px;
}

.mobile .card .title .navIcon.move {
    margin-top: -6px;

}

.mobile  .card .title .navIcon.rotate {
    margin-top: -6px;

}
/* Mobile END*/
/* iPad */
.ipad .card .title .navIcon.moveMouse, .ipad  .card .title .navIcon.zoomMouse, .ipad  .card .title .navIcon.rotateMouse {
    display: none;
}

.ipad .card .iconContainer {
    width: 240px;
}

.ipad .card .title .navIcon.move {
    margin-top: -6px;

}

.ipad  .card .title .navIcon.rotate {
    margin-top: -6px;

}
/* iPad END*/
/* desktopResizeMob */
.desktopResizeMob .card .title .navIcon.moveMouse, .desktopResizeMob .card .title .navIcon.zoomMouse, .desktopResizeMob .card .title .navIcon.rotateMouse {
    display: none;
}

.desktopResizeMob .card .iconContainer {
    width: 240px;
}

.desktopResizeMob .card .title .navIcon.move {
    margin-top: -6px;

}

.desktopResizeMob  .card .title .navIcon.rotate {
    margin-top: -6px;

}
/* desktopResizeMob END*/
.marginLR25 {
    margin-left: 25px;
    margin-right: 25px;
}


.card:nth-child(2) svg circle:last-of-type {
    stroke: #2ecc71;
}


@-webkit-keyframes rotating

/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

/**************** LOADER END ****************/



/**************** HOWTOUSE START ****************/
#howToUse{
/* background: #fff; */
background: rgba(255, 255, 255, 0.90);
    padding: 20px 20px;
    border: 1px solid var(--greybababa);
    position: absolute;
    bottom: 75px;
    border-radius: 10px;
    margin-left: 50%;
    transform: translateX(-50%) scale(var(--howtouseScale));
    transform-origin: center bottom;
    /* margin-left: var(--resetInfoBtnGap); */
}
.row{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.row .icon:first-child{
        padding: 5px 30px 5px 0;
}
/**************** HOWTOUSE END ****************/

/* exit AR */
#ar-controls{position: absolute;z-index: 99;/*right:35px; bottom:75px;*/cursor:pointer;-webkit-tap-highlight-color: rgba(0,0,0,0);width: 100%;}
#exitARBtn {
    position: absolute;
    top: 0;
    background: #000;
    padding: 10px;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* #exitARBtn p {
    color: #fff;
    font-size: 12px;
    display: inline-block;
} */

#exitARBtn span {
    background-image: url("../images/exit_ar.svg");
    width: 30px;
    height: 30px;
    display: inline-block;
    background-repeat: no-repeat;
    margin-left: 15px;
}


/**************** MOBILE START ****************/

.mobile #loader {
    transform: scale(0.7);
}
.mobile .card {
    margin: 0 0px;
}
.mobile .nav-container {
    transform: scale(1);
}
#projectTitleInfoContainer{
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    right: 0;
}
.projectTitle{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.projectLogo{
    /* max-width: 120px; */
    max-width: 160px;
    margin-left: 15px;
}
.projectText{
    font-size: 14px;
    color: #fff;
    margin-left: 15px;
}
.infoMob{
    display: flex;
    justify-content: right;
    width: 50px;
}
.infoicon{
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
#howToUseMob{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2;
}
.howtouseWrapper{
    margin: auto;
}
.mobile .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile .row .icon:first-child {
    /* padding: 15px 75px 15px 0; */
    padding: 35px;
}
.closeBtn {
    right: 3%;
    position: absolute;
    display: flex;
    justify-content: end;
    font-size: 24px;
    top: 2%;
}

.mobile.landscape #projectTitleInfoContainer{
    display: none !important;
}
/**************** MOBILE END ****************/
/**************** IPAD START ****************/
.ipad .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ipad .row .icon:first-child {
    /* padding: 15px 75px 15px 0; */
    padding: 35px;
}

.ipad.landscape #projectTitleInfoContainer{
    /* display: none !important; */
}
