.bg_red{
	background: #ffe7e7 !important;
}
/*tooltip*/

.tooltips_botton {
	z-index: 999;
	position: absolute;
	left: 50%;
	bottom: -10px;
	-webkit-transform: translate(-50%, 100%);
	-moz-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	-o-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	padding: 8px;
	background: #41d1b8;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: 240px;
	color: #fff;
}

.tooltips_botton:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px;
	border-color: transparent transparent #41d1b8 transparent;
	position: absolute;
	left: 50%;
	top: -12px;
	margin-left: -3px;
}


/*uploadIMG*/

.uploadIMG {
	position: relative;
	box-sizing: border-box;
}

.uploadIMG_cart {
	width: 100px;
	height: 100px;
	background: #F2F2F2;
}
.uploadIMG_cart .uploadIMGLoadImg img {
	width: 100%;
	height: 100%;
}

.uploadIMG_addItem {
	width: 77px;
	height: 78px;
}

.uploadIMG input {
	display: none;
}

.uploadIMG label {
	width: 100%;
	height: 100%;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
}

.uploadIMGLoadImg {
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	position: relative;
}

.uploadIMGLoadImg:before,
.uploadIMGLoadImg:after {
	-webkit-transition: all 0.2s ;
	-moz-transition: all 0.2s ;
	-o-transition: all 0.2s ;
	transition: all 0.2s ;
}
.uploadIMGLoadImg:before {
	position: absolute;
	content: "";
	width: 34px;
	height: 34px;
	top: calc( (100% - 34px)/2 );
	left: calc( (100% - 34px)/2 );
	background: #F45050;
	opacity: 0.7;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
}
.uploadIMGLoadImg:after {
	position: absolute;
	content: "+";
	width: 14px;
	height: 14px;
	line-height: 12px;
	top: calc( (100% - 14px)/2 );
	left: calc( (100% - 14px)/2 );
	color: #ffffff;
	opacity: 0.7;
	font-size: 20px;
	font-weight: bold;
}
.uploadIMGLoadImg:hover:before,
.uploadIMGLoadImg:hover:after {
	opacity: 1;
}
.uploadIMGLoadImg.hasPic:before,
.uploadIMGLoadImg.hasPic:after {
	display: none;
}

.uploadIMGLoadImg:hover .delete {
	display: block;
}

.uploadIMGLoadImg .delete {
	cursor: pointer;
	display: none;
	position: absolute;
	height: 30px;
	width: 100%;
	line-height: 30px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	text-align: center;
	left: 0;
	bottom: 0;
}

.uploadIMGLoadImg .delete a {
	color: white;
}

.uploadIMGLoadImgBtn {
	text-align: center;
}

.uploadIMGLoadImgBtn i {
	font-size: 30px;
	color: #41D1B8;
	display: block;
}

.uploadIMGLoadImgBtn span {
	color: #c8c6c6;
	font-size: 12px;
	text-transform: lowercase;
	line-height: 1;
	display: inline-block;
	margin-top: 4px;
	word-break: break-all;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
}


/*btn*/

.btn {
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	font-weight: 400;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	padding: 4px 12px;
	/*font-size: 16px;*/
	text-align: center;
	border: 1px solid transparent;
	background: #fff;
	line-height: 1.42857143;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.btn_main {
	background: #5997e3;
	color: #fff;
}
.btn_main:hover {
	background: #2978d8;
	color: #fff;
}
.btn_main#check_order {
	background: #f57cbf;
}
.btn_main#check_order:hover {
	background: #e32626;
}

.btn_mainBor {
	border: 1px solid #41D1B8;
	color: #41D1B8;
}

.btn_black {
	background: #555;
	color: #fff;
}

.btn_back {
	background: #e4ce60;
	color: #fff;
}
.btn_back:hover {
	background: #e0c01e;
	color: #fff;
}

.btn_green {
	background: #5997e3;
	color: #fff;
	
}
.btn_green:hover {
	background: #2978d8;
	color: #fff;
}

.btn_greenBor {
	border: 1px solid #4BC101;
	color: #4BC101;
}

.btn_red {
	background: #F45050;
	color: #fff;
}
.btn_red:hover {
	color: #fff;
	background: #e90c0c;
}


.btn_blu {
	background: #00AEF3;
	color: #fff;
}

.btn_redBor {
	border-color: #ff1d5a;
	color: #ff1d5a;
}

.btn_gray {
	background: #ccc;
	color: #fff;
}

.btn_borNone {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.btn_small {
	font-size: 12px;
	padding: 2px 4px;
}

.btn_sm {
	padding: 3px 16px;
}

.btn_lg {
	width: 160px;
}


/*checkbox*/

.checkBox {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: top;
}

.checkBox input {
	visibility: hidden;
	display: none;
}

.checkBox label {
	cursor: pointer;
	box-sizing: border-box;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #ffffff;
	border: 1px solid #c6c6c6;

}

.checkBox label:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 4px;
	width: 4px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.checkBox input:checked~label {
	background: #f45050;
	border: 1px solid #f45050;
}
.checkBox input:checked~label:before {
	border-color: transparent #ffffff #ffffff transparent;
	border-width: 1px;
	border-style: solid;
}


/*radio*/

.radioBox {
	width: 20px;
	height: 20px;
}
.radioBox.radioBoxNew {
	width: 100%;
}
.radioBoxNew span {
	line-height: 16px;
	vertical-align: top;
}
.radioBoxNew input:checked~span {
	color: #f45050;;
}

.radioBox input {
	display: none;
}

.radioBox input~label {
	position: relative;
	display: inline-block;
	width: 120px;
	height: 20px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	padding-left: 20px;
	cursor: pointer;
}

.radioBox input~label:before {
	content: "";
	width: 15px;
	height: 15px;
	position: absolute;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border: 1px solid #666;
	top: 2px;
	left: 0px;
}
.radioBox input~label:after {
	content: "";
	width: 9px;
	height: 9px;
	display: inline-block;
	position: absolute;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	top: 6px;
	left: 4px;
}

.radioBox input:checked~label {
	color: #f45050;
}
.radioBox input:checked~label:after {
	background: #f45050;
}

.hide {
	display: none;
}

.show {
	display: block;
}

.fl {
	float: left;
	user-select: none;
}

.fr {
	float: right;
	user-select: none;
}

.colorRed {
	color: #ff1d5a;
}

.colorGreen {
	color: #41d1b8;
}

.verMid {
	vertical-align: middle;
	display: table-cell;
}
.cursor{
	color: #f45050;
	cursor: pointer;
}
.cursor:hover{
	color: #e32626;
}
input.changeval{
	border: none;
	width: 100%;
	text-align: center;
}
input.changeval:focus{
	border-bottom: 1px solid #333;
}
