@charset "UTF-8";

/*-- CART --*/
.cart_options {
	margin-bottom: 15px;
}
.toggle_radio input[type="radio"], .img_radios input[type="radio"] {
	display: none;
}
.toggle_radio input[type="radio"] + label {
	background: #D9D9D9;
	border-radius: 6px;
	color: #5c5c5c;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	padding: 13px;
	min-width: 180px;
	text-align: center;
}
.toggle_radio input[type="radio"]:checked + label {
	background: #878889;
	color: #FFF;
}
ul.toggle_radio, ul.img_radios {
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
}
ul.toggle_radio li, .img_radios li {
	padding: 0 2px;
	line-height: 1;
	font-size: 0;
}
.img_radios li {
	margin: 0 3px;
	padding: 1px 0;
	text-align: left;
}
.img_radios li:first-child {
	margin-left: 0;
}
.img_radios li:last-child {
	margin-right: 0;
}
.img_radios:not(.toggle_radio) input[type="radio"] + label {
	display: block;
	border-radius: 100%;
	width: 55px;
	height: 55px;
}
.img_radios input[type="radio"] + label img, .img_radios input[type="radio"]:checked + label img {
	height: auto;
	width: 100%;
	overflow: hidden;
	border-radius: 100%;
	padding: 10px;
}

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

.cart_options {
	margin: 12px 0 4px;
}

.toggle_radio input[type="radio"] + label {
		font-size: 13px;
		padding: 12px 12px;
		min-width: auto;
		min-width: none;
}
.img_radios li {
  margin: 0 2px;
}
}



/*-- MODAL --*/
.modaal-wrapper {
	z-index: 10001 !important;
	background-color: rgba(241, 250, 251, 0.8) !important;
}
.modaal-container {
	max-width: 600px !important;
}
.modaal-content-container {
	padding: 0 !important;
	background-color: transparent;
	position: relative;
}
.modaal-content-container p {
	margin: 0 !important;
}
.inline_close {
	color: #666;
	cursor: pointer;
	font-size: 40px;
	font-weight: 100;
	font-weight: normal;
	position: absolute;
	top: 20px;
	right: 20px;
}

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

.modaal-inner-wrapper {
    padding: 0 10px!important;
}
.modaal-content-container {
padding: 5px 5px 5px 5px!important;
}
.inline_close {
cursor: pointer;
font-size: 20px;
font-weight: 100;
font-weight: normal;
position: absolute;
top: 15px;
right: 15px;
}

}