html, body {
	margin: 0px;
	padding: 0px;
	font-family: 'Quicksand', sans-serif;
	color: #333;
}

body * {
	font-family: 'Quicksand', sans-serif;
}


a {
	text-decoration: none;
	color: #333;
}

.banner {
    height: 80px;
    border-bottom: 2px solid rgb(199, 211, 190);
    padding: 0px 100px;
}

.banner-frame {
	/*width: calc(100% - 200px);*/
    display: table;
    /*max-width: 1366px;*/
    /*margin: auto;*/
    height: 100%;
    width: 100%;
}

.user-opt {
    width: 200px;
	height: 100%;
    position: relative;
    display: flex;
}

.banner-name {
	width: calc(100% - 60px);
	text-align: right;
	padding: 27px 3px;
}

.user-opt-link {
	height: 100%;
    display: block;
    transition: 0.5s;
    width: 60px;
    text-align: center;
}

.user-opt img{
	width: 40px;
	margin-top: 17px;
}

.user-opt-container {
	position: absolute;
    top: 73px;
    right: -15px;
    margin: 0px;
    padding: 0px;
    background: #ffffff;
    list-style-type: none;
    display: none;
    padding: 8px;
    z-index: 999;
    box-shadow: 0px 2px 13px 0px #9a9999
}

.user-opt-container:after {
	content: " ";
    position: absolute;
    width: 0px;
    height: 0px;
    top: -28px;
    right: 32px;
    border-top: 18px solid transparent;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 15px solid white;
}

.user-opt:hover .user-opt-container {
	display: block;
}

.user-opt-container li{
    width: 200px;
    border-bottom: 1px solid #d6d6d6;
}

.user-opt-container a{
	padding: 8px 10px;
	display: block;
}

.user-opt-container li:last-child{
    border-bottom: none;
}

@media(min-width: 1600px) {
	.banner-frame {
		width: calc(100% - 200px);
	    max-width: 1366px;
	    margin: auto;
	}
}

.logo-container {
	height: 100%;
    display: table-cell;
    width: 300px;
    vertical-align: middle;
}

.logo-container img {
	width: 220px;
	margin-left: 33px;
}

.content {
	width: calc(100% - 200px);
    height: calc(100% - 80px);
    padding: 15px 100px;
    max-width: 1366px;
    margin: auto;
}

.home-content {
    display: flex;
}

.div-attributes {
    width: 300px;
}

.panel {
	overflow: hidden;
	border-radius: 3px;
	background-color: #dddddd;
	margin-bottom: 10px;
}

.panel .panel-head {
	padding: 3px;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    background-color: #e8e8e8;
}

.panel .panel-body>ul{
	padding: 0px;
	margin: 0px;
    text-transform: uppercase;
    list-style-type: none;
}

.panel .panel-body>ul>li {
	/* padding: 3px 10px; */
	padding: 5px 10px;
}

.list-striped li:nth-child(even) {
	background-color: #e8e8e8;
}

.panel-material .panel-body>ul>li>ul {
	margin: 0px -10px;;
	padding: 0px;
	display: none;
}

.panel-material .panel-body>ul>li>ul>li {
	padding: 3px 10px;
	padding-left: 30px;
}

.panel-material .panel-body>ul>li:nth-child(odd)>ul>li {
	background-color: #dddddd;
}

.panel-material .panel-body>ul>li:nth-child(even)>ul>li {
	background-color: #e8e8e8;
}

.panel-material .panel-body>ul>li>ul>li a{
	text-transform: none;
}

/*thickness*/
.panel-material .panel-body>ul>li>ul>li>ul {
	margin: 0px -10px;;
	padding: 0px;
	list-style-type: none;
	display: none;
}

.panel-material .panel-body>ul>li>ul>li>ul>li {
	padding: 3px 10px;
	padding-left: 30px;
}

.panel-material .panel-body>ul>li>ul>li>ul>li a{
	display: block;
}

.panel-material .panel-body>ul>li>ul>li>ul>li:hover {
	background-color: #c1c1c1  !important;
}

.panel-material .panel-body>ul>li:nth-child(odd)>ul>li>ul>li {
	background-color: #dddddd;
}

.panel-material .panel-body>ul>li:nth-child(even)>ul>li>ul>li {
	background-color: #e8e8e8;
}

.tree-trigger {
	position: relative;
    display: block;
}

.tree-trigger:after {
	content: "";
    background-image: url(../img/arrow_down.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 6px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: transparent;
    transition: 0.5s;
}

.tree-trigger.opened:after {
    transform: rotate(180deg);
}

.color-item {
	display: flex;
}

.color-item .color-name{
	width: 40%;
}
.color-item .color-box{
	width: 50%;
	text-align: center;
}

.panel-form .panel-body {
	padding: 30px 40px;
	padding-bottom: 0px;
}

.panel-form .panel-body .form-item {
	width: 48%;
	display: inline-block;
	text-align: center;
	margin-bottom: 30px;
}

.panel-form .panel-body .form-item img{
	width: 50px;
}

.panel-form .panel-body .form-item .form-title{
	display: block;
	text-transform: uppercase;
	font-size: 16px;
}

.panel-form .panel-body .form-item.active .form-title {
	text-decoration: underline;
}

.attr-link {
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	color: #000;
	padding: 3px 10px;
	background-color: #dddddd !important;
	width: 100%;
    box-sizing: border-box;
    border: none;
}

.attr-link:nth-child(even) {
	background-color: #e8e8e8;
}

.div-artboard {
	height: calc(100% - 80px);
	width: calc(100% - 660px);
	padding: 10px 30px;
}

.art-head {
	display: table;
	height: 70px;
	width: 100%
}

.art-head .art-head-left {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	width: 80%;
}

.art-head .art-head-right {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	width: 20%;
	text-align: right;
}

.art-head .art-head-right .zoom-btn {
	width: 20px;
	height: 20px;
}

.artboard {
	position: relative;
	width: 100%;
	height: 800px;
	overflow: hidden;
	margin: auto;
	display: block;
	background: #f3f3f3;
	background-image: url('../img/transparent.png');
	background-size: 20px, 20px;
}

#artboardCanvas {
	position: absolute;
    left: -1800px;
    top: -1800px;
    background: #fff;
    transition: transform 0.5s;
}

.line-vertical {
	position: absolute;
    width: 1px;
    height: 100%;
    background-color: #F44336;
    z-index: 99999;
    top: 0px;
    left: 0px;
}

.line-horizontal {
	position: absolute;
    height: 1px;
    width: 100%;
    background-color: #F44336;
    z-index: 99999;
    top: 0px;
    left: 0px;
}

.panel-color .panel-body li.active {
	background-color:  #e8e8e8;
}

.order-list-container {
	background: #dddddd;
    border-radius: 10px;
    padding: 25px 50px;
}

.order-list-container h1{
	margin: auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    color: #000;
    margin-bottom: 25px;
}

.order-list-container table {
	width: 100%;
	font-size: 21px;
}

.order-list-container table td {
	padding: 8px;
	text-transform: uppercase;
}

.order-list-container table td:last-child{
	text-align: right;
}

.order-list-container table tfoot td {
	padding: 5px;
}

.order-list-container table .divider {
	border-bottom: 1px solid #000;
    display: block;
}

.tr-div td {
	padding: 8px 0 !important;
}

.chkout-order-item-qty {
	width: 30px;
}

.checkout-action-container {
	display: flex;
	margin-top: 100px;
}

.checkout-action-container .checkout-user {
	width: 400px;
	padding: 20px;
	padding-right: 30px;
	border-right: 3px solid #333;
	text-transform: uppercase;
}

.checkout-action-container .checkout-payment-method-container {
	width: calc(100% - 400px);
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
}

.checkout-action-container .checkout-user h1, .checkout-action-container .checkout-payment-method-container h1 {
	margin: auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    color: #000;
    margin-bottom: 0px;
}

.checkout-action-container .checkout-user p {
	margin: 0px;
	margin-bottom: 15px;
}

.checkout-action-container .checkout-user .input-group  {
	display: flex;
	margin-bottom: 8px;
}

.checkout-action-container .checkout-user .input-group  label{
	width: 130px;
}

.checkout-action-container .checkout-user .input-group  input{
	width: calc(100% - 130px);
	padding: 10px;
    border: none;
    background-color: #dddddd !important;
}

.btn {
	padding: 10px;
    color: #fff;
    background: #6fb244;
    border: none;
    font-size: 18px;
}

.checkout-action-container .checkout-user .btn{
	width: calc(100% - 124px);
	float: right;
	text-transform: uppercase;
}

.payment-method-btns {
	margin: 25px auto;
}

.btn-pm {
	width: 200px;
    padding: 5px;
    display: inline-block;
    border-radius: 8px;
    border: 2px solid #060606;
    text-align: left;
    vertical-align: middle;
    margin: 10px 5px;
    font-size: 22px;
    text-transform: uppercase;
}

.btn-pm img {
	width: 50px;
	vertical-align: middle;
}

.btn-checkout, .btn-view-orders {
	padding: 10px 30px;
    float: right;
    border-radius: 3px;
    margin-left: 10px;
}

.mgroup-label, .material-label, .color-label {
	text-transform: uppercase;
}

.line-item, .line-item-l {
	font-size: 12px;
}

.line-item:hover {
	background-color: #c1c1c1 !important;
}

.line-item input, .line-item-l input{
	width: 35px;
}

.line-item input::-webkit-outer-spin-button,
.line-item-l input::-webkit-outer-spin-button,
.line-item input::-webkit-inner-spin-button,
.line-item-l input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.line-item-l:first-of-type label:last-of-type {
	display: none !important;
}

.line-item:first-of-type label:last-of-type,
.line-item:first-of-type input:last-of-type {
	display: none !important;
}

.remove-line {
	background-color: transparent;
	border: none;
	float: right;
}

.btn-quantity-dec, .btn-quantity-inc {
	border: none;
	background-color: transparent;
	outline: none;
}

.msg-box {
	display: block;
    padding: 17px 20px;
    margin-bottom: 20px;
    background-color: #90cc6a;
    color: #fff;
    border-radius: 5px;
}

.signup-row {
	display: flex;
}

.sign-up-col  {
	width: 100%;
}

.row {
	display: flex;
	margin-bottom: 20px;
}

.col {
	display: block;
	padding-right: 15px;
	padding-left: 15px;
}

.col-1 {
	width: 100%;
}

.col-2 {
	width: 50%;
}

.col-3 {
	width: 33.33%;
}

.input-group input[type=text], 
.input-group input[type=password], 
.input-group input[type=email], 
.input-group input[type=number], 
.input-group select, 
.input-group textarea {
	width: 100%;
    box-sizing: border-box;
    padding: 10px 5px;
    border: 1px solid #9c9c9c;
    border-radius: 3px;
}

.ver-message {
	font-size: 45px;
}

.ver-img {
	width: 300px;
    margin-bottom: 20px;
}

.pre-loader {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #ffffffcf;
	z-index: 999;
	display: table;
}


.canvas-preloader-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

#canvas-preloader {
	width: 100px;
	height: 100px;
	margin: auto;
	margin-top: 200px;
	display: block;
}

.panel-material .active {
	background-color: #4d4d4d !important;
}

.panel-material .active a{
	color: #fff;
}

.div-layers {
	width: 300px;
}

.table {
	width: 100%;
}

.table thead th{
	padding: 10px;
    color: #828282;
	padding: 10px 5px;
	text-align: left;
	background-color: #e8e8e8;
}

.table tbody td{
	font-weight: normal;
	padding: 10px 5px;
	border-bottom: 1px solid #e8e8e8;
}

.action-col {
	width: 300px;
}

.tbl-btn {
	display: inline-block;
	min-width: 50px;
	text-align: center;
}

.dimension-switch {
	display: inline-block;
    float: right;
    width: 25px;
    height: 10px;
    border: 1px solid #333;
    border-radius: 30px;
    margin-right: 0px;
    margin-top: 5px;
    background-color: #008000;
    position: relative;
    transition: 0.5s;
}

.dimention-switch-hold {
	display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0px;
    margin-top: -5px;
    margin-left: -2px;
    margin-right: -2px;
    border: 1px solid #333;
    transition: 0.3s;
}

.dimension-label {
	float: right;
    font-size: 10px;
    padding: 3px 5px;
    border: 1px solid;
    border-radius: 30px;
    margin-right: 8px;
    margin-top: 2px;
}

.dim-int {
	color: green;
	border-color: green;
}

.dim-ext {
	color: orange;
	border-color: orange;
}

#paint_option {
	width: 100%;
	margin:0px;
	box-sizing: border-box;
}

.color-paint-type {
	border-top: 1px solid #bdbdbd;
    padding-top: 5px;
}

.checkout-table {
	border-collapse: collapse;
	border-spacing: 0px;
	/*border: 1px solid #a5a5a5;*/
}

.checkout-table td{
	border: 1px solid #808080;
}

.checkout-table td:first-child{
	border-left: 0px;
}

.checkout-table td:last-child{
	border-right: 0px;
}

.checkout-table thead td{
	border-top: 0px;
	border-bottom: 2px solid #808080;
	font-weight: bolder;
}

.checkout-table tbody tr:last-child td{
	border-bottom: 2px solid #808080;
}

.checkout-table tfoot td{
	border-left: 0px;
	border-right: 0px;
}

.checkout-table tfoot tr:last-child td:nth-child(2), .checkout-table tfoot tr:last-child td:nth-child(3){
	border-bottom: 2px solid #808080;
}

.checkout-table tfoot td:first-child{
	border-bottom: 0px;
	border-top: 0px;
}

.checkout-table tfoot tr:first-child td:first-child{
	border-top: 1px solid #808080;
}

.check-out-comment {
	width: 100%;
    min-height: 100px;
    border: none;
    border-radius: 6px;
    background-color: #dddddd;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 15px;
}

.dim-color-box {
	display: inline-block;
	width: 12px;
	height: 12px;
}

/* Email sent to confirm account creation */
.account-confirmation-wrapper {
	width: 850px;
	max-width: 90%;
	margin: 0 auto;
	border-radius: 10px;
	box-shadow: 1px 1px 12px rgba(0,0,0,0.2);
	margin-top: 100px;
}

.confirm-icon {
	width: 80px;
}

.confirm-icon img {
	width: 100%;
}

.confrim-header {
	display: flex;
	vertical-align: middle;
	background: #6FB543;
	border-radius: 10px 10px 0 0;
	padding: 30px 70px;
}

.confirm-title {
	padding-left: 50px;
	align-self: center;
}

.confirm-title big {
	font-size: 33px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	align-items: center;
}

.confrim-body {
	padding: 70px 70px;
	text-align: left;
}

.confrim-body p {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 0;
}

.confrim-body a,
.confrim-body span {
	font-size: 18px;
	text-align: left;
}

.confrim-body a {
	padding-left: 20px;
	color: #E5E5E5;
}

.confrim-body a:hover {
	text-decoration: underline;
	color: #000;
}

.confrim-footer {
	background: #ECECEC;
	padding: 30px 70px;
	text-align: left;
}

.confrim-footer a {
	padding-left: 20px;
	color: #3366FF;
	text-transform: uppercase;
	font-weight: 600;
}

.confrim-footer a:hover {
	text-decoration: underline;
}

.confrim-footer a,
.confrim-footer span {
	font-size: 14px;
}

.btn-darker {
	background-color: #e8e8e8;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 15px;
}