/*//////////////////////////////////////////////
//
//	MASTER CSS FOR MIGHTY JS APP
//
/////////////////////////////////////////*/

:root {
  --background: #F4F4F4;
  --highlight: #72A7CC;
  --darklight: #003057;
  --softgrey: #89A6BB;
  --darkgrey: #5A7F9A;
}

*:focus {
outline: none;
}

*:not(input):not(textarea) /*select all (the * character in this comment has no relation to the * selector in this css command*/
{
	font-family : "Roboto", sans-serif; /*choose default font*/
	font-weight: 200s;
	margin : 0; /*control margins for all html objects*/
	text-align : center; /*main page*/
	/*color : black;*/
	-webkit-touch-callout: none; 
	-webkit-user-select: none; 
	-khtml-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none; 
	user-select: none;
}

html
{
	-ms-touch-action: manipulation;
}

*::-webkit-scrollbar
{ 
    display: none; 
}

html, body 
{
	width: 100%;
	height: 100%;
	background-color : white;
	overflow:scroll;
	/*cursor: url('../../images/cursor.png') 17 17, auto !important;*/
}

body
{
	position:relative;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	/*font-size: 18px;*/
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


h1,h2,h3,h4,h5,h6,p {
 line-height: 1.45;
}

h1
{
	line-height : 1em;
}

blockquote
{
	line-height : 1em;
	padding : 4%;
	font-size : 0.8em;
}

header
{
	/*touch-action: none;*/
}

footer
{
	background-color:var(--darkgrey);
}

main
{
	background-color: var(--background);
}

input[type="checkbox"]{   
    opacity:0 !important;
    pointer-events: all !important;
}

input[type="checkbox"]+span
{
	padding-left: 22px!important;
	padding-right: 12px!important;
}

[type="checkbox"]:checked+span:not(.lever):before
{

    border-right: 2px solid black !important;
    border-bottom: 2px solid black !important;
  
}

.pulse
{
	z-index: 1;
}

.select-wrapper
{
 	/*z-index:2999;*/
}

.input-field label
{
	position: absolute!important;
  	pointer-events: auto !important;
	font-style:italic;
	font-weight:300;
}

.input-field input
{
	margin-top: 4px !important;

}



.range-field input::-webkit-slider-thumb{
  background-color: #000;
}
/*img{-webkit-user-drag: none;}*/

.color-pick
{
    border:#ccc solid .5px!important;
}


.sidenav
{
    box-shadow: none !important;
}

.prerelease
{
    display: none;
}

.appnow-stagger-reveal
{
	display: none;
}


.appnow-master-clone
{
    display: none !important;
	
}
.appnow-master-clone span
{
    display:block;
	color:transparent !important;
	background-color:#E6E6E6;
	border:1px #F7F6F6 solid;	
}

.character-counter
{
    position:absolute;
    top:0;
    right:10px;
}

@media only screen and (min-width: 600px)
{
    #toast-container
    {
        top: 5vw !important;
        right: .5vh;
        bottom: auto !important;
        left: auto !important;
       
    }
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #CCC;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}


#ptr {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	z-index: 10;
	text-align: center;
	height: 50px;
}

#ptr .genericon {
	opacity: .6;
	font-size: 34px;
	width: auto;
	height: auto;
	transition: all .25s ease;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-top: 5px;
}
.ptr-refresh #ptr .genericon {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}
.ptr-loading #ptr .genericon,
.ptr-reset #ptr .genericon {
	display: none;
}

.loading {
	display: inline-block;
	text-align: center;
	opacity: .4;
	margin: 12px 0 0 5px;
	display: none;
}
.ptr-loading .loading {
	display: block;
}

#homeanimation
{
	/*cursor: url('../../images/cursor.png') 17 17, auto !important;*/
}

.dropdown-content{
    overflow: visible !important;
}

ul.dropdown-content li span
{
	text-align: left !important;
	color: #000 !important;
	font-weight: 300 !important;
}

ul.dropdown-content li a
{
	text-align: left !important;
	color: #000 !important;
	font-weight: 300 !important;
}
ul.dropdown-content li a:hover
{
	color: #fff !important;
	font-weight: 300 !important;
}

.select-dropdown
{
	overflow-y: auto !important;
}

input.select-dropdown
{
	color: #35383a;
	background-color:rgba(255,255,255,0.07) !important;
	padding-left: 10px !important;
	margin-top: 4px !important;
	font-weight: 600;
}
.select-wrapper input.select-dropdown:focus{
	color: var(--highlight);
	border-bottom: 1px solid #9e9e9e;
}
div.input-field label
{
	letter-spacing: 1.3px;
}

.options
{
    bottom: 12px;
}

.enlarge
{
	font-size: 1.4em;
}

.material-icons
{
    font-size: 20px;
}

mark
{
	background-color : rgba(238,109,115,1.00);
	margin : 0;
	padding : 2px;
	white-space : nowrap;
}

p
{
	font-weight : 300;
}

footer
{
	/*min-height: 420px;*/
}

footer ul li a
{
	margin: 0;
	color: white !important;
}

/*ul li
{
	background-color: rgba(121,41,103,0.28) !important;
	padding: 0% 6%;
}*/

.grey888
{
   color: #888888;
}

.detail
{
	font-weight : 100;
	display : block;
	line-height : 1.2em;
	padding : 4%;
}

.shout
{
	font-weight : 100;
	display : block;
	line-height : 1em;
	padding : 4%;
}

.desc
{
	font-weight : 100;
	display : block;
	line-height : 1em;
	padding : 4%;
}

.nomargin /*no margin*/
{
	margin : 0;
}

.pg
{
	margin: 4%;
}

.yello
{
	background-color: rgba(252,187,28,0.90);
}
.cyan
{
	background-color: rgba(35,126,162,1.00);
}
.accent-color
{
	background-color: #a28d5b;
}
.purp-text
{
	font-weight: 500;
	color: rgba(39,20,73,1.00);
}
.oran
{
	background-color: rgba(238,109,115,1.00);
}


div.close
{
	margin-bottom: 3%;
}

.blur
{
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);	
	
}

	
ul.footernav
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

ul.footernav li
{
    display: inline-block;
	margin: 0;
    padding: 6px;
}


.studio-fade-recolor
{
	/*background: linear-gradient(45deg, var(--softgrey), var(--softgrey), var(--softgrey), var(--darkgrey)) ; /* Standard syntax */
}

.studio-fade
{
	background: var(--softgrey) no-repeat; /* For browsers that do not support gradients */
	background: linear-gradient(#F7F6F6, white); /* Standard syntax */
	background-size: 100% 100%;
	height: auto;
	/*background-repeat: no-repeat;*/
}

/*shrink for mobile view*/

@media only screen and (max-width : 750px)
{

	#logo
	{
		/*width: 100%;*/
	}
	.color-responsive{
		flex-basis: 23%!important;
	}
}

label
{
    pointer-events: none;
}
/*//////////////////////////////////////////////
//
//	showroom
//
/////////////////////////////////////////*/

.show_contain{
background-color:#fff;
	background-image:url('/images/square-1.2s-200px.svg');
	background-size:contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.show_cover{
background-color:#CACACA;
	background-image:url('/images/square-1.2s-200px.svg');
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/*//////////////////////////////////////////////
//
//	Font control
//
/////////////////////////////////////////*/

.font-cursive
{
	font-family: 'Roboto', cursive;
	font-weight: 100;
}

.font-bold
{
	font-family: 'Roboto-Black';
	/*font-weight: 600;*/
}

/*//////////////////////////////////////////////
//
//	Preloader
//
/////////////////////////////////////////*/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
	background-color:var(--darkgrey);
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 20%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
}

.favorite-item
{
	height: auto;
	position: relative;
	vertical-align:bottom;
	padding:0;
	text-align:center;
    margin-bottom:1vh;
}
.lh-2{
	line-height: 2;
}
.lh-15{
	line-height: 1.5;
}
.lh-46{
	line-height: 46px;
}
.h-60px{
	height: 60px;
}
.delete-favorite{
	position: absolute;
	left: 16px;
	top: 0;
	z-index: 5;
	background-color: #444;
	line-height: 1;
	opacity: .8;
	-webkit-transition:  .5s;
	-moz-transition:  .5s;
	-ms-transition:  .5s;
	-o-transition:  .5s;
	transition:  .5s;
	cursor: pointer;
}
.delete-favorite i {
	color: white;
}
.delete-favorite:hover{
	opacity: 1;
}
.position-relative{
	position: relative;
}
.position-fixed{
	position: fixed !important;
}
.pdf-option-header{
	position: absolute;
	margin-right: auto;
	margin-left: auto;
	left: 0;
	right: 0;
	color: #1663a0;
	font-weight: 600;
	font-size: 14px;
	top: 7px;
}
.uppercase{
	text-transform: uppercase;
}
.h-175{
	height: 175px;
}
.h-56{
	height: 56px;
}
.mt-0
{
	margin-top: 0!important;
}
.mt-25
{
	margin-top: 0.25rem!important;
}
.mt-2{
	margin-top: 0.5rem!important;
}
.mt-5, .my-5{
	margin-top: 3rem;
}
.mb
{
	margin-bottom: 2rem;
}
.mb-none
{
	margin-bottom: 0!important;
}
.mb-5, .my-5{
	margin-bottom: 3rem;
}
.pdf-option{
	opacity: 0.6;
	transition: 0.5s;
}
.pdf-option:hover{
	opacity: 0.8;
}
.cursor-pointer{
	cursor: pointer;
}
.pdf-option.active{
	opacity: 1;
}

.button:hover, .button:focus{
	background-color: transparent;
}
.button{
	border: none;
	border-radius: 20px;
	display: inline-block;
	height: 36px;
    min-width: 100%;
	line-height: 34px;
	padding: 0 16px;
	text-transform: none;
	vertical-align: middle;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
	color: #2d2d2d;
	background-color: transparent;
	text-align: center;
	letter-spacing: .5px;
	-webkit-transition: background-color .2s ease-out;
	transition: background-color .2s ease-out;
	cursor: pointer;
	font-weight:500;
	font-size: 14px;
	outline: 0;
}

.button:focus{
	outline: none;
}
.justify-content-flex-end{
	justify-content: flex-end;
}
.mb-0{
	margin-bottom: 0!important;
}
.mb-2{
	margin-bottom: 0.5rem!important;
}
.mt-4,
.my-4{
	margin-top: 3rem!important;
}
.mb-4,
.my-4{
	margin-bottom: 3rem!important;
}
.w-100px{
	width: 100px;
}
.w-110px{
	width: 110px;
}
.p-0{
	padding: 0!important;
}
.m-0{
	margin: 0!important;
}
.pb-0{
	padding-bottom: 0;
}
.pb-3, .py-3{
	padding-bottom: 1rem;
}
.pb-1{
	padding-bottom: 0.25rem;
}
.button.disabled{
	background-color: #e6e6e6;
	color: #8a8a8a;
	cursor: unset;
}
.d-none{
	display: none!important;
}
.margin-x-minus{
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}
.color-header{
	width: calc(92% - 17px);
	margin-left: 5% !important;
}
#load-colors{
	width: 90%;
	margin-left: 5%;
}
.flex-column{
	flex-direction: column;
}
.color-column{
	position: absolute;
	display: block;
	left: -3%;
	font-family: sans-serif, Raleway;
}

.switch label input[type=checkbox]:checked+.lever {
    background-color: rgba(158,137,89,0.50);
}
.switch label input[type=checkbox]:checked+.lever:after {
    background-color: var(--highlight) !important;
}

.fw-500{
	font-weight: 500;
}
.fw-600{
	font-weight: 600;
}
.fw-400{
	font-weight: 400;
}
.fw-300{
	font-weight: 300;
}

.invisible-text
{
    color:rgba(0,0,0,0.10)!important;
}

@media only screen and (max-width: 1200px) {
	#load-colors{
		width: 88%;
		margin-left: 6%;
	}
	.color-header{
		width: calc(90% - 15px);
		margin-left: 6% !important;
	}
	.color-column{
		left: -4%;
	}
}
@media only screen and (max-width: 900px) {
	#load-colors{
		width: 80%;
		margin-left: 10%;
	}
	.color-header{
		width: calc(80% - 15px);
		margin-left: 10%;
	}
	.color-column{
		left: -6%;
	}
}
@media only screen and (max-width: 500px) {
	
	.browse-tabs::-webkit-scrollbar
	{
  		display: none;
	}
	.browse-tabs
	{
		width:35vw;
		overflow:scroll-y;
	}
	.commanderV img
	{
		width: 100px;
	}
	.options-tab .tab a
	{
		font-size:.72em;
	}
	
	
	#load-colors{
		width: 80%;
		margin-left: 10%;
	}
	.color-header{
	  width: calc(80% - 15px);
	  margin-left: 10%!important;
	}
	.color-column{
		left: -7%;
	}
}
.text-center{
	text-align: center !important;
}
.favorites-placeholder
{
    position: absolute;
    /* display: inline-flex; */
    top: 14px;
    width: 100%;
    right: 0;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    border-radius: 10rem;
    color: #5f5f5f;
    font-size: 14px;
    font-weight: 600;
    padding: 0 5px;
    text-align: center;
}
.justify-content-center{
	justify-content: center;
}
.align-items-top
{
	align-items: flex-start;
}
.align-items-center{
	align-items: center;
}
.align-middle{
	vertical-align: middle;
}
.align-bottom{
	vertical-align: bottom;
}
.mr-auto,
.mx-auto{
	margin-right: auto;
}
.ml-auto,
.mx-auto{
	margin-left: auto;
}
.ml-2,
.mx-2{
	margin-left: 0.5rem!important;
}
.mr-2,
.mx-2{
	margin-right: 0.5rem!important;
}
.ml-3,
.mx-3{
	margin-left: 1rem;
}
.pl-2, .px-2{
	padding-left: 0.5rem;
}
.pr-2, .px-2{
	padding-right: 0.5rem;
}
.pl-4,
.px-4{
	padding-left: 1.5rem;
}
.pr-4,
.px-4{
	padding-right: 1.5rem;
}
.mr-3,
.mx-3{
	margin-right: 1rem!important;
}
.ml-4,
.mx-4{
	margin-left: 1.5rem;
}
.mr-4,
.mx-4{
	margin-right: 1.5rem;
}
.pr-3, .px-3{
	padding-right: 1rem;
}
.pl-3, .px-3{
	padding-left: 1rem;
}
.text-shadowed{
	text-shadow: 1px 1px #000;
}
.d-inline-block{
	display: inline-block;
}
.page-footer{
	padding-top: 0!important;
	background-color: var(--darkgrey)!important;
	background-size: 100% 100%;
	height: auto;
}
#showroom-one{
	height: calc(100vh - 26px);
}
.ff-sans-serif{
	font-family: sans-serif, Raleway;
}
.d-block{
	display: block !important;
}
.w-50{
	width: 50% !important;
}
.overflow-hidden{
	overflow: hidden!important;
}
.h-28{
	height: 28px;
}
.one-name{
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.overflow-visible{
	overflow: visible;
}
/*#carpet-viewer{*/
	/*touch-action: pinch-zoom;*/
/*}*/
#report-error-modal{
	border: 3px solid #DDDDDD;
	border-radius: 15px;
}
.text-left{
	text-align: left!important;
}
.d-flex{
	display: flex;
}
.report-button{
	background-color: #afb9b7;
	padding: 10px 20px;
	border: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.report-button:focus{
	background-color: #a4aeac;
}
.position-absolute{
	position: absolute;
}
.fullscreen-icon{
	top: 22px;
	right: 20px;
}
.mobile-fullscreen-icon{
	top: 7px;
	right: 10px;
	display: none;
}
.h-auto{
	height: auto!important;
}
.simple-button{

}
.simple-button:focus{
	background-color: unset;
}
.d-inline-flex{
	display: inline-flex;
}
.w-100{
	width: 100% !important;
}
.w-450px{
	width: 450px;
}
.h-200{
	height: 200px;
}
.h-120{
	height: 120px;
}
.w-120{
	width: 120px;
}
.w-200{
	width: 200px;
}
.mt-3,
.my-3 {
	margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
	margin-right: 1rem !important;
}
.mb-3,
.my-3 {
	margin-bottom: 1rem !important;
}
.colorway, .coordinate {
	background-size: 100%;
}
.overflow-hidden{
	overflow: hidden;
}
.float-left{
	float: left;
}
.colorways, .coordinates{
	max-height: calc(100vh - 388px);
	overflow-y: auto;
}
.fw-700{
	font-weight: 700;
}
.h-20{
	height: 20% !important;
}
.w-66{
	width: 66.6666666667%;
}
.h-80{
	height: 80% !important;
}
.order-unset{
	order: unset!important;
}
.border-top-11{
	border-top: 11px solid white!important;
}
.mt-2px{
	margin-top: 2px!important;
}
.fs-16{
	font-size: 16px;
}
.fs-24{
	font-size: 24px;
}
.fs-28{
	font-size: 28px;
}
.fs-14{
	font-size: 14px;
}
.fs-10{
	font-size: 10px;
}
.fs-38{
	font-size: 38px!important;
}
.fs-12{
	font-size: 12px!important;
}
.mb-50{
	margin-bottom: 50px !important;
}
.minh-36{
	min-height: 36px!important;
}
.h-100vh{
	height: 100vh;
}
.h-100{
	height: 100%;
}
.pinch-zoom{
	touch-action: manipulation !important;
}
.scene-viewer{
	user-select: auto !important;
}
#scene-viewer{
	user-select: auto !important;
}
#fullscreen-viewers{
	user-select: auto;
}
.h-auto{
	height: auto;
}
.top-0{
	top: 0;
}
.bottom-right{
	bottom: 0;
	right: 0;
}
.bottom-left{
	bottom: 0;
	left: 0;
}
.report-modal-button{
	height: 35px;
	background-color: rgba(129, 129, 129, 0.89);
	z-index: 1001;
	border-radius: 4px 4px 0 0;
}
.background-inherit{
    background-color: inherit!important;
}
.w-170px{
	width: 170px;
}
.z-index-1000{
	z-index: 1000;
}
.rounded{
	border-radius: 3px;
}
.rounded-button{
	border-radius: 15px;
}
.h-20px{
	height: 20px
}
.mw-20px{
	max-width: 20px;
}
.mh-20px{
	max-height: 20px;
}
.all-favorites{
	display: none;
}
.add-favorite-icon:hover .all-favorites{
	display: block;
}
.mr-5,
.mx-5 {
	margin-right: 3rem;
}
.ml-5,
.mx-5 {
	margin-left: 3rem;
}
.flex
{
  display: flex;
  flex-wrap: wrap;
}
.flex-wrap{
	flex-wrap: wrap;
}
.mt-15px{
	margin-top: 15px;
}
.pt-11px{
	padding-top: 11px;
}
.pt-3{
	padding-top: 1rem;
}
.lh-25px{
	line-height: 20px;
}
.lh-1{
	line-height: 1;
}
.w-94{
	width: 94%!important;
}
.pt-2, .py-2{
	padding-top: 0.5rem!important;
}
.pb-2, .py-2{
	padding-bottom: 0.5rem!important;
}
.w-90{
	width: 90% !important;
}
.fs-32{
	font-size: 32px!important;
}
.text-brown{
	color: var(--highlight);
}
[type="checkbox"].filled-in:not(:checked)+span:not(.lever):after{
	border: 2px solid var(--highlight);
}
[type="checkbox"].filled-in:checked+span:not(.lever):after{
	border: 2px solid var(--highlight);
	background-color: #ffffff;
}
[type="checkbox"].filled-in:checked+span:not(.lever):before{
	border-right: 2px solid var(--highlight);
	border-bottom: 2px solid var(--highlight);
}
.tabs .tab a:hover, .tabs .tab a.active{
	color: #000;/*var(--highlight);*/
}
.tabs .indicator{
	background-color: #000;/*var(--highlight);*/
	height: 6px;
}
.tabs .tab a:focus, .tabs .tab a:focus.active{
	background-color: transparent;
}
.tabs .tab a{
	color: black;
	padding: 0 20px;
}
.tabs .tab {
	text-transform: none;
}
.tabs{
	height: 42px;
    margin-bottom: 4px;
}
.mirroring{
	transform: scaleX(-1);
}

.chip {
	background-color: black;
	border-radius: 0;
	color: white;
}
.chip i {
	color: white;
}
.chip:focus{
	background-color: black;
}
.nowrap{
	white-space: nowrap;
}
.filled-button {
	background-color: #24272a;
	border: 3px solid #24272a;
	color: white;
	text-transform: none;
	transition: 0.5s;
}
.filled-button-white {
	background-color: white;
    border: 3px solid #24272a;
	color: black;
	text-transform: none;
	transition: 0.5s;
}
.filled-button-white:hover, .filled-button-white:focus
{
	color: white !important;
	background-color: var(--highlight);
 	border-color: var(--highlight);
	
}
.filled-button:hover, .filled-button:focus
{
	color: white !important;
	background-color: var(--highlight);
 	border-color: var(--highlight);
}

.filled-button:disabled{
	opacity: 0.5;
	cursor: default;
}

.w-60px{
	width: 60px;
}

input:not([type]):focus:not([readonly]):not(.invalid)+label,
input[type=text]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=password]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=email]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=url]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=time]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=date]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=datetime]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=datetime-local]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=tel]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=number]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
input[type=search]:not(.browser-default):focus:not([readonly]):not(.invalid)+label,
textarea.materialize-textarea:focus:not([readonly]):not(.invalid)+label{
	color: var(--highlight);
}
input:not([type]):focus:not([readonly]):not(.invalid),
input[type=text]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=password]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=email]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=url]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=time]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=date]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=datetime]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=datetime-local]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=tel]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=number]:not(.browser-default):focus:not([readonly]):not(.invalid),
input[type=search]:not(.browser-default):focus:not([readonly]):not(.invalid),
textarea.materialize-textarea:focus:not([readonly]):not(.invalid){
	border-bottom: 1px solid var(--highlight);
	box-shadow: 0 1px 0 0 var(--highlight);
}
input.valid:not([type]),
input.valid:not([type]):focus,
input.valid[type=text]:not(.browser-default),
input.valid[type=text]:not(.browser-default):focus,
input.valid[type=password]:not(.browser-default),
input.valid[type=password]:not(.browser-default):focus,
input.valid[type=email]:not(.browser-default),
input.valid[type=email]:not(.browser-default):focus,
input.valid[type=url]:not(.browser-default),
input.valid[type=url]:not(.browser-default):focus,
input.valid[type=time]:not(.browser-default),
input.valid[type=time]:not(.browser-default):focus,
input.valid[type=date]:not(.browser-default),
input.valid[type=date]:not(.browser-default):focus,
input.valid[type=datetime]:not(.browser-default),
input.valid[type=datetime]:not(.browser-default):focus,
input.valid[type=datetime-local]:not(.browser-default),
input.valid[type=datetime-local]:not(.browser-default):focus,
input.valid[type=tel]:not(.browser-default),
input.valid[type=tel]:not(.browser-default):focus,
input.valid[type=number]:not(.browser-default),
input.valid[type=number]:not(.browser-default):focus,
input.valid[type=search]:not(.browser-default),
input.valid[type=search]:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus,
.select-wrapper.valid>input.select-dropdown{
	border-bottom: 1px solid var(--highlight);
	box-shadow: 0 1px 0 0 var(--highlight);
}
input:not([type]).invalid ~ .helper-text:after,
input:not([type]):focus.invalid ~ .helper-text:after,
input[type=text]:not(.browser-default).invalid ~ .helper-text:after,
input[type=text]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=password]:not(.browser-default).invalid ~ .helper-text:after,
input[type=password]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=email]:not(.browser-default).invalid ~ .helper-text:after,
input[type=email]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=url]:not(.browser-default).invalid ~ .helper-text:after,
input[type=url]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=time]:not(.browser-default).invalid ~ .helper-text:after,
input[type=time]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=date]:not(.browser-default).invalid ~ .helper-text:after,
input[type=date]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=datetime]:not(.browser-default).invalid ~ .helper-text:after,
input[type=datetime]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=datetime-local]:not(.browser-default).invalid ~ .helper-text:after,
input[type=datetime-local]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=tel]:not(.browser-default).invalid ~ .helper-text:after,
input[type=tel]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=number]:not(.browser-default).invalid ~ .helper-text:after,
input[type=number]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type=search]:not(.browser-default).invalid ~ .helper-text:after,
input[type=search]:not(.browser-default):focus.invalid ~ .helper-text:after,
textarea.materialize-textarea.invalid ~ .helper-text:after,
textarea.materialize-textarea:focus.invalid ~ .helper-text:after,
.select-wrapper.invalid ~ .helper-text:after{

}
.border-bottom-brown{
	border-bottom: 2px solid #555555;
}
.border-bottom-brown-1
{
    margin:10px 0px !important;
	border-bottom: 1px solid #555555;
}
.remove-disabled .disabled{
	display: none;
}
.bottom-bordered{
	border-bottom: 1px solid rgb(230, 230, 230);
}
.new{
	background-color: var(--highlight);
	color: white;
	font-size: 10px;
	padding: 1px 6px 0px 6px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input.invalid+label{
	color: red
}

.closenav
{
    cursor: pointer;
}

.grayscale
{
    -webkit-filter: grayscale(100%) brightness(130%) contrast(70%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%) brightness(130%) contrast(70%);
}

.sidenav
{
    -webkit-box-shadow: 0px !important;
    box-shadow: 0px !important;
}

.tile-hd-button{
	z-index: 999;
	position: absolute;
	top: 3%;
	right: 120px;
}

.tile-gride-button{
	z-index: 999;
	position: absolute;
	top: 3%;
	right: 70px;
}
.close-sidenav-button{
	line-height: 48px;
	height: 48px;
}
.close-sidenav-button:hover{
	/*background-color: rgba(0,0,0,0.05);*/
}
.round-button{
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	width: 40px;
	height: 40px;
}
.round-button i{
	line-height: 40px;
}
.p-2{
	padding: 0.5rem;
}
.p-1{
	padding: 0.25rem;
}
.scene-name{
	bottom: -20px;
	left: 0;
}
.cancel-button{
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
}
.default-background
{
	background-color:transparent;
}
.material-tooltip, .material-tooltip .tooltip-content
{
	background-color: black!important;
	font-weight: 500!important;
	color: white!important;
}
.functional-buttons
{
	bottom: 5vh;
	right: 1vw;
	width: calc(41.667% - 20px);
}
/*#scenes div .scene:hover
{
	-webkit-transform: scale(1.2) translateZ(0);
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
}*/
.product, .project
{
	height: 230px;
}
.options
{
	padding-left: 3rem;
}
.justify-content-between
{
	justify-content: space-between;
}

.colorway, .coordinate
{
	background-size: 15%;
}

.colorway-loaded, .coordinate-loaded
{
	background-size: 100%;
	transition: 0.5s;
}

.colorway-loaded:hover, .coordinate-loaded:hover
{
	background-size: 150%;
}

.align-super{
	vertical-align: super;
}
.overscroll-none{
	overscroll-behavior-y: none;
}


.lato
{
    font-family: Roboto;
}

.lato-thin
{
    font-family: Roboto;
    font-weight: 100;
}

.lato-bold
{
    font-family: Roboto;
    font-weight: 500;
}



#result_status, .status
{
	padding:0 4%;
	padding-bottom:0;
	text-align:left;
	font-size: 24px;
	font-family: Roboto;
	font-weight: 100;
}
.result-status{
	font-size: 52px;
	font-family: Roboto;
}
.filters-button span
{
	font-family: Roboto;
	font-weight: 500;
}
.browse-tabs a
{
	font-family: Roboto;
	font-weight: 100;
	letter-spacing: 2px;
}
.browse-tabs a.active
{
	font-family: Roboto;
}

@media only screen and (max-width : 1150px)
{
	.shout, .detail
	{
		padding-top: 3% !important;
	}
	.w-md-100{
		width: 100%;
	}
	.d-md-block{
		display: block;
	}
	.justify-content-md-around
    {
		justify-content: space-around;
	}
	.mt-md-3
    {
		margin-top: 1.5rem;
	}
	.ml-md-0
    {
		margin-left: 0;
	}
}

@media only screen and (max-width: 992px)
{
    
    .homebtn,
    .social-icons,
	.parentlinks,
	.legalcredits
    {
		text-align:center!important;
        float:none !important;
    }
	
    .functional-buttons
    {
		left: 0;
		width: 100%;
	}
    .mb-sm-160
    {
		margin-bottom: 160px;
	}
    
}
@media only screen and (min-width: 993px)
{
    
    .social-icons
    {
       margin-left:-14px;
    }
    
}

@media only screen and (max-width: 600px)
{	
	#brandlogo
	{
		max-width:55vw!important;
		padding-top:20px!important;
	}
	.w-sm-100{
		width: 100% !important;
	}
	#product_btns
    {
		justify-content: center;
	}
	.product, .project{
	    height: 300px;
	}
	.w-sm-100{
		width: 100%;
	}
	.filter-div
    {
		border-bottom: none;
	}
	.justify-content-sm-between
    {
		justify-content: space-between;
	}
	/*.options{*/
	/*	margin-bottom: 150px;*/
	/*	padding-left: 0.75rem!important;*/
	/*}*/
	
	#load-colors{
		margin-left: 0;
		margin-right: 0;
	}
	.justify-content-sm-around
    {
		justify-content: space-around;
	}
	.mt-sm-3{
		margin-top: 1rem;
	}
	.ml-sm-0,
	.mx-sm-0
    {
		margin-left: 0;
	}
	.mr-sm-0,
	.mx-sm-0
    {
		margin-right: 0;
	}
	.mr-sm-4
    {
		margin-right: 1.5rem;
	}
	.px-sm-0,
	.pl-sm-0
    {
		padding-left: 0;
	}
	.px-sm-0,
	.pr-sm-0
    {
		padding-right: 0;
	}
	.px-sm-1,
	.pl-sm-1
    {
		padding-left: 0.25rem;
	}
	.px-sm-1,
	.pr-sm-1
    {
		padding-right: 0.25rem;
	}
	.h-sm-full
    {
		height: calc(100% - 125px);
	}
	/*#scenes.active{*/
	/*	display: flex!important;*/
	/*}*/
}

/*.scene-viewer {*/
	/*overscroll-behavior: contain; !* or "none" *!*/
/*}*/
/*body {*/
	/*overscroll-behavior: contain; !* or "none" *!*/
/*}*/


