* {
  	/*box-sizing: border-box;*/
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
	margin: 0px;
    padding: 0px;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form #submit_login {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form #submit_login:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}


/*POPUP*/
.popup_frame {
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	background-color: #232425db;
}
.popup_main {
    position: relative;
    margin: 0 auto;
    margin-top: 7%;
    background-color: #fff;
}

@media only screen and (min-width: 981px) {
	.popup_main {
		width: 1000px;
		height: 85%;
	}
}
@media only screen and (min-width: 320px) and (max-width: 980px){
	.popup_main {
		width: 800px;
		height: 90%;
	}
}
.popup_title {
	padding: 20px;
	font-size: 24px;
	font-weight: 700;
	float: left;
	color:#4f5962;
}
.popup_close {
	float: right;
}
.popup_close i {
	cursor: pointer;
	font-size: xx-large;
	font-weight: 700;
	padding: 20px;
}
.popup_content {
	clear: both;
    padding: 10px;
    margin-top: 10px;
	height: 90%;
	overflow: auto;
}


/* WRAP */
.wrap {
	/*background-color: #dbdbdb;*/
	overflow-x: hidden;
    width: 100%;
    height: -webkit-fill-available;
    overflow-y: auto;
    position: fixed;
    min-width: 576px;
}



@media only screen and (min-width: 981px) {
	.topframe {
		clear: both;
		margin: 0 auto;
		background-color: #fff;
		width: 80%;
		min-width:1000px;
		height: 45px;
		padding: 5px;
		/*background: linear-gradient(52deg, rgb(29 28 28) 0%, rgb(137 128 128) 40%, rgba(0,0,0,1) 80%);*/
		border-bottom: 15px solid #1395da;
		box-shadow: 0px 10px 10px 4px #c4c4c4;
	}
	.logo {
		width: 300px;
		height: 50px;
		float: left;
		background: url('/images/logo_trans.png');
		background-position: left;
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: 2px 5px;
	}
	.menu_button {
		display: none;
	}
	.menu {
		margin-top: 0px;
		height: 55px;
		font-size: 18px;
		float: right;
	}
	.menu_close {
		display: none;
	}
	.menu ul {
		padding: 0;
		margin: 0;
		list-style-type: none;
		margin-top: 21px;
	}
	.menu ul li {
		float: left;
	}
	.menu ul li a {
		margin-left: 2px;
		padding: 10px;
		height: 32px;
		color: rgb(35, 35, 35);
		text-decoration: none;

	}
	.menu ul li:hover a, .menu ul li.active a {
		color: #fff;
		background: linear-gradient(#1a95da94, #1395da);
		cursor: pointer;
		height: 32px;
		font-weight: 700;
		
	}
	/*
	.menu ul li a, .menu ul li a:hover  {
		color:inherit;
		text-decoration: none;
	}
	*/



	/* MAINFRAME */
	.mainframe {
		clear: both;
		margin: 0 auto;
		background-color: #fff;
		width: 80%;
		min-width:1000px;
		height: 100% auto;
		padding: 5px;
		min-height: -webkit-fill-available;
		/* margin-top: 10px; */
		box-shadow: 0px 10px 10px 4px #c4c4c4;
		padding-top: 20px;
	}
	.content {
		padding: 10px;
	}

}







@media only screen and (min-width: 320px) and (max-width: 980px){
	.topframe {
		clear: both;
		margin: 0 auto;
		background-color: #fff;
		width: 99%;
		min-width:560px;
		height: 8%;
		padding: 5px;
		border-bottom: 15px solid #1395da;
		box-shadow: 0px 10px 10px 4px #c4c4c4;
	}
	.logo {
		width: 70%;
		height: 90px;
		float: left;
		background: url('/images/logo.jpg');
		background-position: left;
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: 2px 5px;
	}
	.menu_button {
		display: block;
		float: right;
	}
	.menu_button button {
		width: 100px;
		font-size: 65px;
		background: none;
		border: none;
	}
	.menu_close {
		display: block;
	}
	.menu_close i {
		font-size: 35px;
		padding: 10px;
	}
	.menu {
		position: absolute;
		right: 5px;
		display: none;
		height: 100%;
		float: right;
		overflow: hidden;
	}
	.menu ul {
		padding: 0;
		margin: 0;
		background-color: #232425;
		z-index: 2;
		/* margin-top: 11%; */
		height: 100%;
		min-width: 400px;
	}
	.menu ul li {
		margin-left: 5px;
		color: #fff;

	}

	.menu ul li:hover, .menu ul li.active {
		background: #ffffff;
		color: #232425;
		cursor: pointer;
		height: 52px;
	}
	.menu ul li a, .menu ul li a:hover  {
		color:inherit;
		text-decoration: none;
		font-size: 39px;
	}



	/* MAINFRAME */
	.mainframe {
		clear: both;
		margin: 0 auto;
		background-color: #fff;
		width: 99%;
		height: 100%;
		min-width: 560px;
		padding: 5px;
		padding-top: 30px;
		box-shadow: 0px 10px 10px 4px #c4c4c4;
	}
	.content {
		padding: 10px;
	}
}



/* /////////////////////////////////////////////////////////// */

.cart_holder {
	text-align: right;
    padding-right: 20px;
    font-size: 18px;
}

/* Add display popup */
.popup_content_add_display {
	list-style-type: none;
	padding: 10px;
	margin: 0px;
}

@media only screen and (min-width: 981px) {
	.popup_content_add_display li {
		width: auto;
		height: auto;
		min-height: 83px;;
		margin-bottom: 10px;
		overflow: hidden;
		border: 1px dashed rgb(168, 168, 168);
		border-radius: 5px;
		padding: 20px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 980px){
	.popup_content_add_display li {
		width: auto;
		height: auto;
		overflow: hidden;
		min-height: 83px;;
		margin-bottom: 10px;
		border: 1px dashed rgb(168, 168, 168);
		border-radius: 5px;
		padding: 20px;
	}
}
.popup_content_add_display li:hover {
	background-color: #b3cfe2;
	cursor: pointer;
}

.popup_content_add_display li div.product_image {
	background-color: #fff;
	float: left;
	overflow: hidden;
	margin: 5px;
	padding: 20px;
    width: 16%;
}
.popup_content_add_display li div.product_image img {
	width: 100%;
    box-shadow: 2px 2px 2px 2px #eaeaea;
}	
.popup_content_add_display li div.product_name {
	float: left;
	margin: 5px;
    width: 55%;
	height: 40px;
}
.popup_content_add_display li div.product_name h4 {
	padding: 0px;
    margin: 0px;
}
.popup_content_add_display li div.product_price {
	float: left;
	text-align: right;
	margin: 5px;
    width: 20%;
	height: 40px;
}
.popup_content_add_display li div.product_price .add_to_cart_section_1 {
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}
.popup_content_add_display li div.product_price .add_to_cart_section_2 {
	text-align: center;
}
.popup_content_add_display li div.product_price .add_to_cart_section_2 input[class="add_to_cart_quantity"] {
	white-space: pre;
	width: 45px;
	padding: 3px;
	margin-right: 10px;
}
.popup_content_add_display li div.product_price  .add_to_cart_section_2 button[class="add_to_cart_button"] {
	width: auto;
    padding: 3px;
}

/* CART */
.cart_proceed_ul {
	list-style-type: none;
    padding: 0px;
	margin-bottom: 10px;
    overflow: hidden;
}
.cart_proceed_ul li {
	padding-bottom: 5px;
    overflow: hidden;
    border-bottom: 1px dashed #c8c9cc;
    margin-bottom: 10px;
}
.cart_proceed_ul li:last-of-type{
	border: none;
}
.cart_proceed_name {
	text-align: left;
    float: left;
    width: 55%;
}
.cart_proceed_quantity {
	text-align: center;
    float: left;
    width: 15%;
}
.cart_proceed_price{
	text-align: right;
    float: left;
    width: 15%;
}
.cart_proceed_remove {
	text-align: right;
    float: left;
    width: 14%;
}
.cart_proceed_remove button {
	background: none;
    border: none;
}
.cart_proceed_total {
	text-align: right;
	width: 85%;
}




/* add slide popup */
.popup_content_add_slide {
	list-style-type: none;
}

.filter_addslide {
    height: 50px;
    padding: 10px;
}
.filter_addslide .filter_header_category {
	width: 50%;
	float: left;
}
.filter_addslide .filter_header_category select {
	width: 300px;
}
.filter_addslide .filter_header_search {
	width: 50%;
	float: left;
	text-align: right;
}
.filter_addslide .filter_header_search input {
	width: 300px;
}
.filter_addslide .filter_header_category select,  .filter_addslide .filter_header_search input, .filter_addslide .filter_header_search button{	
	padding: 5px;
}

@media only screen and (min-width: 981px) {
	.popup_content_add_slide li {
		float: left;
		width: 214px;
		height: 150px;
		margin-left: 30px;
		margin-bottom: 30px;
		text-align: center;
		padding: 20px;
		box-shadow: 5px 5px 10px 1px #b6b6b6;
	}
	.popup_content_add_slide li:hover {
		background-color: #1f96da;
		cursor: pointer;
	}
}

@media only screen and (min-width: 320px) and (max-width: 980px){
	.popup_content_add_slide li {
		float: left;
		width: 614px;
		height: 450px;
		margin-left: 20px;
		margin-bottom: 20px;
		text-align: center;
		padding: 20px;
		box-shadow: 5px 5px 10px 1px #b6b6b6;
	}
	.popup_content_add_slide li:hover {
		background-color: #1f96da;
		cursor: pointer;
	}
}

.popup_content_add_slide li div {
	margin: auto;
    background-color: aliceblue;
    width: 90%;
    height: 88%;
}

/* display_items_list*/
.display_items_list {
	list-style-type: none;
    padding: 0px;
    margin: 0px;
	overflow: hidden;
}

.display_items_list li {
    color: #fff;
    padding: 20px;
    /* background-color: #e8f7fff7; */
    box-shadow: 2px 2px 2px 2px #cac6c645;
    background: linear-gradient(266deg, white, #0977ad);
	height: fit-content;
	overflow: hidden;
	border-radius: 4px;

}
.display_items_list li.add_new_display {
	height: 195px;
    text-align: center;
    overflow: hidden;
	background-color: #7fe568;
}
.display_items_list li.add_new_display i {
	font-size: xxx-large;
	margin-top: 70px;
	color: #fff;
}
.display_items_list li:hover {
	background-color: #55a6dc;
	cursor: pointer;
}
.display_items_list li .display_frame_left{
	width: 50%;
	height: 20%;
	float: left;
}

.display_items_list li .display_frame_right{
	width: 50%;
	height: 20%;
	float: right;
}
.display_items_list li .display_frame_right img{
	width: 100%;
}
.display_items_list li .display_frame_right .display_tumb_rot_0,
.display_items_list li .display_frame_right .display_tumb_rot_1,
.display_items_list li .display_frame_right .display_tumb_rot_2,
.display_items_list li .display_frame_right .display_tumb_rot_3 {
	margin: 0 auto;
	overflow: hidden;
	background-color: rgb(59, 59, 60);
}


.display_header {
	padding-left: 20px;
    /* padding-right: 0px; */
    width: auto;
    float: none;
    overflow: hidden;
}
.display_header h1 {
	overflow: hidden;
    float: left;
}
.display_header .display_menu {
	width: auto;
    padding: 10px;
    overflow: hidden;
    float: right;
}
.display_header .display_menu button[id="edit_display"],
.display_header .display_menu button[id="add_display"] {
    clear: both;
    width: max-content;
    padding: 5px;
    background-color: #1795da;
    color: #fff;
    border: 0px;
	padding: 8px;
    font-weight: 700;
	border-radius: 2px;
}
.display_header .display_menu button[id="edit_display"]:hover, 
.display_header .display_menu button[id="add_display"]:hover {
	background-color: #202c36;
	cursor: pointer;

}

@media only screen and (min-width: 981px){
	.display_items_list li {
		float: left;
		margin-bottom: 20px;
		margin-left: 25px;
		width: 405px;
	}
	.display_items_list li .display_frame_left .display_title {
		font-weight: 700;
		font-size: large;
	}
	.display_items_list li .display_frame_left .display_status {
		color: chartreuse;
	}
	.display_items_list li .display_frame_left .display_count {
		color: #3e191a;
	}
	.display_items_list li .display_frame_right .display_tumb_rot_0 {
		width: 177px;
		height: 110px;
		border: 4px solid rgb(28, 27, 27);
	}
	.display_items_list li .display_frame_right .display_tumb_rot_1  {
		width: 110px;
		height: 177px;
		border: 4px solid rgb(28, 27, 27);
	}
	.display_items_list li .display_frame_right .display_tumb_rot_2  {
		width: 177px;
		height: 110px;
		border: 4px solid rgb(28, 27, 27);
	}
	.display_items_list li .display_frame_right .display_tumb_rot_3  {
		width: 110px;
		height: 177px;
		border: 4px solid rgb(28, 27, 27);
	}
	.display_holder {
		float: left;
		overflow: hidden;
	}
	.display_holder .display_holder_inner {
		position: relative;
		margin-top: 10px;
		float: left;
		overflow: hidden;
		margin-left: 5px;
		width: 720px;
		height: 420px;
		border: 15px #202c36 solid;
		background-color: #000000;
		z-index: 999;
	}
	.display_holder .display_holder_inner.live_frame_rot_0{
		width: 720px;
		height: 420px;
	}
	.display_holder .display_holder_inner.live_frame_rot_1{
		width: 420px;
		height: 720px;
	}
	.display_holder .display_holder_inner.live_frame_rot_2{
		width: 720px;
		height: 420px;
	}
	.display_holder .display_holder_inner.live_frame_rot_3{
		width: 420px;
		height: 720px;
	}
	.display_holder_slides {
		float: left;
		padding: 10px;
		background-color: aliceblue;
		width: 40%;
		height: 100%;
		margin-top: 20px;
		margin-left: 20px;
		padding-top: 20px;
	}

	.display_holder_slides ul {
		padding:0px;
		margin:0px;
		list-style-type: none;
	}

	.display_holder_slides ul li {
		width: 163px;
		height: 112px;
		background-color: #232425;
		float: left;
		margin-left: 20px;
		margin-bottom: 20px;
		cursor: pointer;
	}
	.display_holder_slides ul li .name_slide {
		margin-top: 85px;
		text-align: center;
		background-color: #1f96da;
		color: #fff;
	}
	.display_holder_slides ul li.add_new_slide {
		width: 163px;
		height: 112px;
		background-color: #7fe568;
		float: left;
		margin-left: 20px;
		cursor: pointer;
	}
	.display_holder_slides ul li.add_new_slide i {
		margin-left: 35%;
		margin-top: 20%;
		font-size: 50px;
		color: #fff;
	}

}




@media only screen and (min-width: 320px) and (max-width: 980px){
	.display_items_list li {
		float: left;
		margin-bottom: 20px;
		width: 93%;
		margin-left: 10px;
	}

	.display_items_list li .display_frame_left .display_title {
		font-weight: 700;
		font-size: 32px;
	}
	.display_items_list li .display_frame_left .display_status {
		color: chartreuse;
	}
	.display_items_list li .display_frame_left .display_count {
		color: #3e191a;
	}
	.display_items_list li .display_frame_right .display_tumb_rot_0 {
		width: 384px;
		height: 216px;
		border: 8px solid rgb(28, 27, 27);
	}
	.display_items_list li .display_frame_right .display_tumb_rot_1 {
		width: 216px;
		height: 384px;
		border: 8px solid rgb(28, 27, 27);
	}
	.display_items_list li .display_frame_right .display_tumb_rot_2 {
		width: 384px;
		height: 216px;
		border: 8px solid rgb(28, 27, 27);
	}
	.display_items_list li .display_frame_right .display_tumb_rot_3 {
		width: 216px;
		height: 384px;
		border: 8px solid rgb(28, 27, 27);
	}

	.display_holder {
		margin: 0 auto;
		padding: 10px;
		overflow: hidden;
		width: 661px;
	}
	.display_holder iframe {
		margin-top: 10px;
		overflow: hidden;
		margin-left: 5px;
		border: 10px #333333 solid;
		-moz-box-shadow: 0 0 10px 2px #3f3e3e;
		-webkit-box-shadow: 0 0 10px 2px #3f3e3e;
		box-shadow: 0 0 10px 2px #3f3e3e;
		z-index: 999;
	}
	.display_holder iframe.live_frame_rot_0{
		width: 640px;
		height: 360px;
	}
	.display_holder iframe.live_frame_rot_1{
		width: 360px;
		height: 640px;
	}
	.display_holder iframe.live_frame_rot_2{
		width: 640px;
		height: 360px;
	}
	.display_holder iframe.live_frame_rot_3{
		width: 360px;
		height: 640px;
	}

	.display_holder_slides {
		overflow: hidden;
		padding-left: 10px;
		background-color: aliceblue;
		width: 95%;
		height: 100%;
		margin-top: 20px;
		margin-left: 20px;
		padding-top: 20px;
	}

	.display_holder_slides ul {
		padding:0px;
		margin:0px;
		list-style-type: none;
	}

	.display_holder_slides ul li {
		width: 290px;
		height: 200px;
		background-color: #232425;
		float: left;
		margin-left: 10px;
		margin-bottom: 10px;
	}
	.display_holder_slides ul li .name_slide {
		margin-top: 85px;
		text-align: center;
		background-color: #1f96da;
		color:#fff;
	}
	.display_holder_slides ul li.add_new_slide {
		width: 290px;
		height: 200px;
		background-color: #7fe568;
		float: left;
		margin-left: 10px;
	}
	.display_holder_slides ul li.add_new_slide i {
		margin-left: 35%;
		margin-top: 20%;
		font-size: 85px;
		color: #fff;
	}
}





/* EDIT FRAME & ELEMENT FRAME */

#title_frame {
	width: auto;
    overflow: hidden;
    margin-bottom: 10px;
}
#title_frame h1 {
	text-align: left;
	font-size: larger;
	float: left;
}
#title_frame .menu_editor {
	float: right;
	padding: 10px;
}
#title_frame .menu_editor button[id="save_slide"] {
	clear: both;
	width: max-content;
	padding: 5px;
	cursor: pointer;
}

#editor_frame {
	position: relative;
    overflow: hidden;
    float: left;
    border: 15px solid #202c36;
    background-color: #000000;
    margin-right: 20px;
}
#editor_frame div.active {
	/*box-shadow: 0px 0px 15px 4px red;*/
	box-shadow: 0 0 0 2px rgb(219 107 107), 0.3em 0.3em 1em rgb(170 0 0 / 76%);
}

.editor_frame_rotation_0 {
	width: 720px;
	height: 420px;
}
.editor_frame_rotation_1 {
	width: 420px;
	height: 720px;
}
.editor_frame_rotation_2 {
	width: 720px;
	height: 420px;
}
.editor_frame_rotation_3 {
	width: 420px;
	height: 720px;
}

#layer_frame {
	overflow: hidden;
    width: auto;
    min-height: 570px;
    height: auto;
    border: 1px solid #cccccc;
    margin-right: 10px;
}
#layer_frame .layer_title_menu {
	background-color: #202c36;
    height: auto;
    width: auto;
    padding: 1px;
    overflow: hidden;
}
#layer_frame .layer_title_menu h1 {
    color: #ffffff;
    text-align: left;
    padding: 5px;
    font-size: x-large;
    margin: 0px;
	float: left;
}
#layer_frame .layer_title_menu > button {
	color: #fff;
	float: right;
    height: 45px;
    width: 45px;
    background-position: center;
    background-size: cover;
    border: 0px;
    background-color: unset;
	cursor: pointer;
}
#layer_frame .layer_title_menu > button:hover {
	color: rgb(99, 174, 231);
}
#layer_frame .layer_title_menu > button > i {
	font-size: x-large;
}
#layer_frame .layer_list_ul {
	clear: both;
	list-style-type: none;
    padding: 0px;
    margin: 0px;
}
#layer_frame .layer_list_ul .layer_list_li {
	padding: 0px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #c4c4c4cc;
}
#layer_frame .layer_list_ul .layer_list_li .layer_header {
	padding: 10px;
	padding-top: 5px;
	overflow: hidden;
}
#layer_frame .layer_list_ul .layer_list_li.active .layer_header {
	background-color: #1395da;
	color: floralwhite;
}
#layer_frame .layer_list_ul .layer_list_li .layer_header span {
	cursor: grab;
	float: left;
    margin-top: 15px;
    margin-right: 30px;
}
#layer_frame .layer_list_ul .layer_list_li .layer_header h2 {
	margin: 0px;
    padding: 0px;
	margin-top: 13px;
	float: left;
}
#layer_frame .layer_list_ul .layer_list_li .layer_header button {
	float: right;
    height: 45px;
    width: 45px;
    background-position: center;
    background-size: cover;
    border: 0px;
    background-color: unset;
	background-image: url('/images/layer_details_down.png');
	cursor: pointer;
}
#layer_frame .layer_list_ul .layer_list_li.active .layer_header button {
	background-image: url('/images/layer_details_up.png');
}

/*
#layer_frame .layer_list_ul .layer_list_li:hover {
	background-color: #eef3fa;
	cursor: pointer;
}
*/
#layer_frame .layer_list_ul .layer_list_li.active {
	/*box-shadow: 0px 0px 5px 3px #ededed;*/
}


@keyframes closeDetails {
	0% {
	  height: 400px;
	}
	50% {
	  height: 0px;
	}
	99% {
		display: none;
	}
	100% {
		height: 0px;
		display: none;
	  }
  }
  @keyframes openDetails {
	0% {
	  height: 0%;
	}
	100% {
	  height: 400px;
	}
  }
#layer_frame .layer_list_ul .layer_list_li .layer_details {
	overflow: hidden;
	width: 100%;
	height: 0px;
	animation: closeDetails 1s;
}
#layer_frame .layer_list_ul .layer_list_li.active .layer_details {
	display: block;
	overflow: hidden;
	height: 400px;
	animation: openDetails 1s;
}
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs {
	padding: 0px;
	margin: 0px;
	border: none;
}
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs .layer_tabs_ul {
	margin: 0px;
	padding: 0px;
	background: none;
	border: none;
	border-radius: 0px;
}
#layer_frame .layer_list_ul .layer_list_li.active .layer_details .layer_tabs .layer_tabs_ul {
	margin: 0px;
	padding: 0px;
	background: none;
	background-color: #1795da;
	border: none;
	border-radius: 0px;
}
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs .layer_tabs_ul li {
	border: none;
}
/*size and position */
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs #layer_size_position > ul {
	padding: 10px;
	margin: 0px;
	list-style-type: none;
}
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs #layer_size_position > ul li {
	clear: both;
	padding: 0px;
	margin: 0px;
	padding-bottom: 20px;
	border: none;
}
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs #layer_size_position > ul li .slider_layer {
	margin-top: 8px;
	margin-right: 31px;
}
#layer_frame .layer_list_ul .layer_list_li .layer_details .layer_tabs #layer_size_position > ul li .slider_layer div{
	width: 3em;
	height: 1.6em;
	top: 50%;
	margin-top: -.8em;
	text-align: center;
	line-height: 1.6em;
}



/* ORDERS */
.order_list {
	padding: 10px;
	overflow: hidden;
}
.order_overview {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
.order_overview li {
	padding: 20px;
    border-bottom: 1px dashed #e2e2e2;
    overflow: hidden;
}
.order_overview li:first-of-type div {
	font-weight: 700;
}
.order_overview li div[class="order_number"] {
	float: left;
	width: 15%;
	overflow: hidden;
}
.order_overview li div[class="order_date"] {
	float: left;
	width: 15%;
	overflow: hidden;
}
.order_overview li div[class="order_orderlines"] {
	float: left;
	width: 13%;
	overflow: hidden;
}
.order_overview li div[class="order_total_excl"] {
	float: left;
	width: 13%;
	overflow: hidden;
}
.order_overview li div[class="order_total_incl"] {
	float: left;
	width: 14%;
	overflow: hidden;
}
.order_overview li div[class="order_status"] {
	float: left;
	width: 20%;
	overflow: hidden;
}
.order_overview li div[class="order_pay"] {
	float: left;
	width: 10%;
	overflow: hidden;
}
.order_overview li div[class="order_pay"]  button[class="overview_pay_button"] {
    padding: 9px;
    background-color: #1a95da;
    border: 1px solid #cecece;
    border-radius: 4px;
    color: #fff;
}
.order_overview li div[class="order_pay"]  button[class="overview_pay_button"]:hover {
	background-color: #202c36;
	cursor: pointer;
}



.order_holder {
	padding: 10px;
	overflow: hidden;
}
.order_header {
	padding: 25px;
	overflow: hidden;
	margin-bottom: 20px;
	border-bottom: 1px solid #1395da;

}
.order_header .order_title {
	float: left;
}
.order_header .order_status {
	float: right;
}
.order_header .order_title span, .order_header .order_status span  {
	font-weight: 700;
}
.order_details {
	padding: 25px;
	overflow: hidden;
}
.order_details .order_orderlines {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.order_details .order_orderlines li {
	padding: 5px;
	margin-bottom: 25px;
	width: 100%;
}
.order_details .order_orderlines li:first-of-type {
	font-weight: 700;
}
.order_details .order_orderlines li .orderline_number {
	float: left;
	text-align: left;
	width: 5%;
}
.order_details .order_orderlines li .orderline_name {
	float: left;
	text-align: left;
	width: 40%;
}
.order_details .order_orderlines li .orderline_quantity {
	float: left;
	text-align: center;
	width: 40%;
}
.order_details .order_orderlines li .orderline_price {
	float: left;
	text-align: right;
	width: 14%;
}
.order_details .order_orderlines li .orderline_vat {
    float: right;
    width: 35%;
    text-align: right;
    margin-right: 1%;
	font-size: small;
}

.order_details .order_orderlines li .orderline_total_ex_vat {
    float: right;
    width: 35%;
    text-align: right;
    margin-right: 1%;
	font-size: small;
}
.order_details .order_orderlines li .orderline_total_incl_vat {
    float: right;
    width: 35%;
    text-align: right;
    margin-right: 1%;
	font-size: small;
}
.order_details .order_orderlines li .orderline_vat span,
.order_details .order_orderlines li .orderline_total_ex_vat span,
.order_details .order_orderlines li .orderline_total_incl_vat span {
    overflow: hidden;
    width: 125px;
	border-top: 0.5px solid #d2d1d1;
	margin-left: 10px;
    float: right;
}
.order_pay_section {
	float: right;
    margin-top: 30px;
}
.order_pay_section button[id="paybutton"] {
    padding: 9px;
    background-color: #1a95da;
    border: 1px solid #cecece;
    border-radius: 4px;
    color: #fff;
}
.order_pay_section button[id="paybutton"]:hover {
	background-color: #202c36;
	cursor: pointer;
}


/* PAYMENT SCREEN*/
.paymentSelect {
	overflow: hidden;
	width: 500px;
	list-style-type: none;
	padding: 0px;
	padding-top: 20px;
	margin: 0 auto;
}

.paymentSelect > li {
	padding: 25px;
    border: 1px solid #e1dddd;
    border-radius: 7px;
    margin-bottom: 20px;
    overflow: hidden;
	cursor: pointer;
}
.paymentSelect > li.active div[class="paymentServices_name"] {
	background-image: url(/images/round-selection.svg);
	cursor:unset;
	
}
.paymentSelect > li:hover div[class="paymentServices_name"] {
	background-image: url(/images/round-selection.svg);
}
.paymentSelect li div[class="paymentServices_name"] {
	background-image: url(/images/round.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-size: 30px;
    padding: 10px;
    padding-left: 53px;
	width: 150px;
	float: left;
}
.paymentSelect li div[class="paymentServices_images"] {
	padding-left: 25px;
	width: 150px;
	float: left;
}
.paymentSelect li div[class="paymentServices_optionlist"] {
    display: none;
    top: 10px;
    left: 25px;
    position: relative;
    clear: both;
    width: auto;
}
.paymentSelect li.active div[class="paymentServices_optionlist"] {
    display: block;
    overflow: hidden;
    margin-top: 20px;
	margin-left: 25px;
}
.paymentSelect li.active div[class="paymentServices_optionlist"] div {
	padding: 7px;
}




.currentSlide {
	position: absolute;
	transform: translateX(-100%);
	z-index: +1;
	border: 0px;
	-webkit-transition: -webkit-transform 1.5s ease 0s;
	-moz-transition: -moz-transform 1.5s ease 0s;
	-o-transition: -o-transform 1.5s ease 0s;
	transition: transform 1.5s ease 0s;
}

.currentSlide_show {
	transform: translateX(0%);
}

.currentSlide_hide {
	transform: translateX(100%);
}
.currentSlide_reset {
	position: absolute;
	transform: translateX(-200%);
}