/* ========== CART ==================== */

:root {
	--main-color: #0b9247;
	--text-color: #171427;
	--bg-color: #fff;
}

.header{
	top:0;
	/* position: relative; */
}
/*
.cart {
	position: fixed;
	top: 0;
	right: -100%;
	width: 360px;
	width: 40%;
	min-height: 100vh;
	padding: 35px 35px;
	background-color: var(--bg-color);
	box-shadow: -2px 0 4px hsl(0 4% 15% / 10%);
	transition: right 0.3s;
}

.cart.active {
	right: 0;
    z-index:2;
}
*/

.cart-inner{
	scrollbar-width: none;
    /* height: 850px;
    height: 650px;
    overflow-y: scroll;
    overflow-x: hidden; */
    /* padding-bottom: 180px; */
}
.cart-content{
	height: 150px;
    overflow-x: scroll;
}
.cart-title {
	font-size: 0.8rem;
    font-weight: 500;
    text-align: left;
    margin-top: 0;
    padding-bottom: 10px;
}

.cart-box {
	display: grid;
    grid-template-columns: 20% 75%;
    gap: 1rem;
    align-items: start;
    margin-top: 1rem;
	margin-bottom: 1rem;
    position: relative;
}

/*
.cart img.cart-img {
	width: 115px;
    height: auto;
    max-height: 140px;
	object-fit: contain;
	padding: 0;

    border-radius: 0;
    margin: 0 10px 0 0;

	display:inline-block;
}
*/

.wrap-warranty{
	display: block;
    width: 100%;
    text-align: left;
    margin: 20px 0 10px;
	position:relative;
}
.wrap-warranty p{
	font-size:13px;
}


.wrap-recommend{
    display: block;
    text-align: left;
    margin: 50px 0 0;
}
.wrap-recommend h3{
	font-size: 16px;
}
.wrap-recommend .btn-add{
	padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 500;
    border: none;
    background-color: var(--main-color);
    color: var(--bg-color);
    margin: 5px 0 0;
}



.detail-box {
	display: grid;
	row-gap: 0.5rem;
	display:inline-block;
}

.cart-product-title {
	font-size: 13px;
    text-transform: capitalize;
    text-align: left;
    margin: 0 0 5px 0;
    line-height: 19px;
	width: 70%;
    float: left;
}

.cart-price {
    font-weight: 500;
    text-align: right;
    font-size: 11px;
    margin-bottom: 10px;
    width: 30%;
    float: right;
}

.cart-quantity {
	width: 4.4rem;
	font-size: 1rem;
	text-align: center;
	margin-top:10px;
}
.cart-quantity button{

}

.cart-quantity {
	display: flex;
	border-radius: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
	text-align: center;
	font-size: 11px;
}

.cart-quantity * {
	border: none;
	width: 20px;
	flex: 1;
}

.cart-quantity button {
	cursor: pointer;
	background: transparent;
}
  



.cart-color{
	font-size:11px;
	text-align: left;
    color: #969696;
}
.cart-size{
	font-size:11px;
	text-align: left;
    color: #969696;
}
.cart-action{
	position: absolute;
    right: 10px;
    bottom: 5px;
}
.cart-remove , .header .item-right a.cart-remove {
	cursor: pointer;
	font-size: 9px;
    color: #aeaeae;
	display:inline-block;
}
.cart-remove:hover , .header .item-right a.cart-remove:hover {
	color:#222222;
}
.wrapper-total{
	/* position: absolute; */
    bottom: 0;
    width: 93%;
    width: 100%;
	background-color: #ffffff;
}
.total {
	display: flex;
	justify-content: flex-end;
	/* margin-top: 1.5rem; */
    display: block;
    width: 100%;
    padding: 15px 0 0 0;
}

.total-title {
	font-weight: 400;
    text-align: left;
    display: inline-block;
    width: 48%;
    margin: 0;
    font-size: 12px;
}
.total-title span{
	font-size:11px;
	display: block;
    color: #aeaeae;
}

.total-price {
	margin-left: 0;
    display: inline-block;
    text-align: right;
    width: 50%;
}

.btn-buy, .btn-dark {
	width:100%;
	display: block;
	margin: 1rem auto 0 auto;
	padding: 15px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
	font-weight: 500;
	border: none;
	background-color: #2e2e2e;
	color: var(--bg-color);
	cursor: pointer;
	transition: background-color 0.3s;
}

.btn-buy:hover, .btn-dark:hover {
	background-color: var(--text-color);
}
.btn-paypal{
	border: 1px solid #2a2a2a;
    border-radius: 6px;
    width: 100%;
    display: block;
    background-color: #fff;
    margin: 15px 0 0;
    text-align: center;
    height: 50px;
}
.header .item-right a.btn-viewcart{
	border: 1px solid #2a2a2a;
    border-radius: 0;
    width: 100%;
    display: block;
    background-color: #fff;
    margin: 0 ;
    text-align: center;
    height: 50px;
	font-size:12px;
	color:#2a2a2a;
	line-height: 45px;
	text-transform: uppercase;
}

.wrapper-total a{
	font-size:12px;
	color: #888;
	text-decoration: underline;
}
.warranty-detail {
	width: 100%;
    text-align: left;
    display: block;
}
.warranty-text{
	width: 100%;
    display: inline-block;
}
.warranty-detail p{
	font-size: 10px;
    text-align: left;
    margin: 10px 0;
	color: #989898;
}
.warranty-detail a, .cart-description a{
	font-size: 10px;
	color: #989898;
	text-decoration: underline;
}

.warranty-detail span{
	background: #222;
    padding: 0;
    border-radius: 30px;
    display: inline-block;
    width: 16px;
    height: 16px;
    color: #ddd;
    text-align: center;
}
.warranty-switch{
	width: 10%;
    display: inline-block;
}
.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: 2.75rem;
    border-radius: 3rem;
	margin-top: -7px;
    margin-left: -3em;
}
.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}


.wrap-cart-description{
	margin:30px 0 80px 0;
}
.cart-description{
	margin: 0 0 20px;
	border-bottom: 1px solid #ccc;
}
.cart-description h5{
	font-size:12px;
	font-weight: 400;
	margin: 0 0 10px;
}
.cart-description p{
	font-size:10px;
	font-weight: 400;
	color:#969696;
}
.header .item-right .cart-description a {
	font-size:10px;
	font-weight: 400;
	text-decoration: underline;
	text-transform: capitalize;
}

#close-cart {
	position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-color);
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.25,.1,.25,1) 0s;
}
#close-cart:hover {
    transform: rotate(90deg);
}


.shop {
	margin-top: 80px;
	margin-top: 75px;
	/* padding-left:0; */
	/* padding-right:0; */
}

.section-title {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: left;
	margin-bottom: 1.5rem;
}

.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	/* height: 100%; */
	/* object-fit: cover; */
}

  
/* ========== SHOP CONTENT ==================== */
.shop-content {
	/* display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, auto));
	gap: 1.5rem; */
}

.row>* {
    /* padding-right: calc(var(--bs-gutter-x)* .2);
    padding-left: calc(var(--bs-gutter-x)* .2); */
}
.product-box {
	position: relative;
	margin-bottom: 2px;

	height: 100%;
}

.product-box:hover {
	/* padding: 10px;
	border: 1px solid var(--text-color);
	transition: padding 0.4s; */
}
.product-detail {
	font-size: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 13px 10px 7px;
	background: rgb(255 255 255 / 70%);

	position: absolute;
    width: 100%;
    bottom: 8px;
    z-index: 1;
}
.product-detail ul{
	display: grid;
    grid-template-columns: 2fr 1fr;
}
.product-detail ul li {
    line-height: 22px;
	width: 100% !important;
	margin: 0 !important;
}
.product-img {
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
  	object-fit: cover;
}
.product-title {
	font-size: 1rem;
    font-size: 0.85rem;
    /* line-height: 26px; */
    font-weight: 400;
    text-align: left;
    line-height: 22px;
    /* min-height: 52px; */
    margin: 0;
    /* word-wrap: normal; */
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    font-family: 'Roboto', "Noto sans thai", sans-serif;
    overflow: hidden;
}
.product-image{
	position: relative;
}
.price {    
	/* font-size: 0.75rem; */
    font-weight: 300;
    display: block;
    text-align: right;
    color: #000;
}
.product-detail ul li.size{
	text-align: left !important;
	word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
	align-items: center;
    justify-content: start;
}
.product-detail ul li .price bdi span.woocommerce-Price-currencySymbol{
	font-size: 15px;
    margin-right: 3px;
}
.size span{
	display: inline-block;
    margin-right: 8px;
    font-size: 0.75rem;
}
.product-wishlist{
	text-align: right !important;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: flex;

    align-items: center;
    justify-content: end;
}
.product-wishlist i{
	font-size: 20px;
	vertical-align: bottom;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg, .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img{
	width: 20px;
	height: 20px;
}
.yith-add-to-wishlist-button-block{margin: 7px 0;}
span.yith-wcwl-add-to-wishlist-button__label{display:none;}
.product-color{
	width: 10px;
    height: auto;
    position: absolute;
    right: 15px;
    bottom: 125px;
    z-index: 3;
}
.product-color i{
	width: 10px;
    height: 10px;
    display: block;
    border-radius: 30px;
    margin-bottom: 5px;
}
.add-cart {
	position: absolute;
	top: auto;
    top: 265px;
    right: 10px;
    color: var(--bg-color);
	cursor: pointer;
    width: 25px;
    height: 25px;
    background: #dbdbdb;
    padding: 0;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
    font-size: 17px;
    line-height: 20px !important;
    color: #000;

    position: absolute;
    z-index: 2;
    top: auto;
    bottom: 96px;
    left: auto;
    right: 10px;

    bottom: 92px;
    right: 6px;
}
.add-cart:hover {
	transform: rotate(90deg);
	/* background-color: rgba(23, 20, 39, 0.8); */
}

.product-box .product-detail, .product-box .product-color ,.product-box .add-cart, .swiper-button-prev, .swiper-button-next{
	display: none;
}
.product-box:hover .product-detail, .product-box:hover .product-color ,.product-box:hover .add-cart{
	display: block;
	animation: fadeIn 0.5s;
}
.product-box:hover .swiper-button-prev, .product-box:hover .swiper-button-next{
	display:flex;
	animation: fadeIn 0.5s;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }

#openSize{
	position: absolute;
	top: 270px;
    right: 50px;
	border: 0;
	font-size: 12px;
}
.select-size{
	position: absolute;
	top:0;
	background-color: #fff;
	width: 100%;
}
.size__group{
	border:1px solid #222;
	width: 100%;
	padding: 10px 0 0;
}
.size__button {
	position: relative;
	display: block;
}
.size__button label {
	cursor: pointer;
    color: #222;
	border:1px solid transparent;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    padding: 10px 5px;
    height: 40px;
    width: 94%;
    overflow: hidden;
    display: block;
    text-align: left;
    border-radius: 0;
    margin: 0 3%;
    box-shadow: none;
    transition: all 120ms ease-in-out;
}
.size__button label p {
	font-size: 12px;
	margin: 0;    
	color: transparent;
}
.size__button label span {
	position: absolute;
    font-size: 11px;
    color: #BDBDBD;
    right: 15px;
    top: 11px;
}
.size__button label:before {

	content: attr(data-icon);
	display: block;
	line-height: 1.65;
    font-size: 0.85rem;
}
.size__button input[type=radio] {
	display: none;
}
.size__button input[type=radio]:checked + label {
	/* color: #000000;
	border: 1px solid #000000;
	background: #ffffff; */
}
.size__button input[type=radio]:disabled + label {
	cursor: not-allowed;
	color: #a8a8a8;
    background-color: #f4f4f4;
}
.size-close{
	font-size: 12px;
	margin: 10px 0 0 0;
	padding: 5px 15px;
    border-top: 1px solid #222;
}
.size-close p{
	display:inline-block;
	margin:0;
}
.size-close i{
	display:inline-block;
	font-size: 16px;
    line-height: 16px;
    vertical-align: text-bottom;
}


.wrap-collection{
    padding: 25px 20px;
    border-top: 1px solid #272727;
    border-bottom: 1px solid #272727;
}
.wrap-collection ul li{
	display: inline-block;
}
.wrap-collection ul li a{    
	font-size: 13px;
    margin: 0 10px;
	color: #a4a4a4;
}

.wrap-filter{
	border-top:0 ;
	border-bottom:0;
}
.wrap-filter ul li a {
	color:#272727;
}
.x-close{
	position: absolute;
    right: 35px;
    top: -50px;
}
.x-close:before{
	content: "";
    width: 135px;
    display: block;
    background: #fff;
    height: 30px;
    position: absolute;
    right: -20px;
}
.x-close i{
	font-size: 25px;
    rotate: 45deg;
}

/* filter */
.cover-filter{
	padding: 0px 0 0;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid #272727;
    border-bottom: 1px solid #272727;
	position: relative;
    display: none;
}
.dropdown-check-list {
	display: inline-block;
	position: relative;

	padding: 30px 30px;
	width: 100%;
}

.dropdown-check-list h4{
	font-size: 12px;
	margin: 0 0 15px 7px;
	text-transform: uppercase;
	color: #585858;
}
.dropdown-check-list ul.items {
	padding: 10px 10px;
	/* display: none; */
	margin: 0;
	margin-top: -1px;
}
.dropdown-check-list ul.items li {
	list-style: none;
	margin: 5px 0 15px;
    font-size: 13px;
}
.dropdown-check-list.visible .anchor {
	color: #222222;
    border: 1px solid #222;
}
.dropdown-check-list.visible .items {
	display: block;

	display: block;
    position: absolute;
    width: 200px;
    z-index: 2;
    background: #fff;
}


.filter-toggle{
    /* position: absolute;
    right: 20px;
    top: -35px;
    font-size: 14px;    
    letter-spacing: 1px; */
}

.filter-list {
    position: absolute;
    /* right: 5px; */
    /* top: -5px; */
    z-index: 9;
    background-color: white;
    padding: 15px;
    border-radius: 0px;
    /* border: 1px solid #000; */
    width: 175px;
    margin-top: 20px;
}
.filter-list:before{
    /* content: ""; */
    position: absolute;
    top: -7px;
    right: 16px;
    z-index: 1;
    border-bottom: 9px solid #fff;
    border-right: 9px solid transparent;
    border-top: 0;
    border-left: 9px solid transparent;
}
.filter-list:after{
    /* content: ""; */
    position: absolute;
    top: -8px;
    right: 17px;
    border-bottom: 8px solid;
    border-right: 8px solid transparent;
    border-top: 0;
    border-left: 8px solid transparent;
}
.filter-list ul {
    margin:0;
    padding:0;
}
.filter-list ul li{
    list-style-type: none;
    line-height: 25px;
	margin-bottom:8px;
}
.filter-list ul li:last-child{
	margin-bottom: 0;
}
.filter-list ul li .boxed-check .boxed-check-label{
    padding: 5px 15px;
}
.filter-list ul li label{
    cursor:pointer;
    font-size:12px;
}
.filter-list strong{
    margin-bottom: 10px;
    display: block;
}
.filter-list input[type="checkbox"]{
    margin-right:5px;
    vertical-align: text-top;
}
.filter-list .col-3{
    padding:0;
}

.formrow {
	overflow:hidden;
	position:relative;
	max-width:300px;
	margin:10px ;
	padding:0;
}
.checklabel {
	display:block;
	width:100%;
	border:1px solid #000;
	background:#f2f2f2;
	border-radius:2px;
	text-align:center;
	padding:10px 3em;
	font-size:1.2rem;
}
.checklabel:hover {
	background:#ddd;
}
.checkbox {
	position:absolute;
	right:10px;
	top:15px;
	width: 2.2em;
	height: 2.2em;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	border:none;
	padding:0;
	border-radius:0;
	vertical-align: middle;
	/* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='512px' height='512px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3e%3cpath d='M448,71.9c-17.3-13.4-41.5-9.3-54.1,9.1L214,344.2l-99.1-107.3c-14.6-16.6-39.1-17.4-54.7-1.8 c-15.6,15.5-16.4,41.6-1.7,58.1c0,0,120.4,133.6,137.7,147c17.3,13.4,41.5,9.3,54.1-9.1l206.3-301.7 C469.2,110.9,465.3,85.2,448,71.9z'/%3e%3c/svg%3e");
	background-repeat:no-repeat;
	background-size:cover;
	background-color:transparent; */
	background-position:-10em -10em;
	transition:.3s ease;
	outline:0;

	border:1px solid red;
	width: 100%;
	height:100%;
}
.checkbox:focus + label{
	border-color:blue;
} 
.checkbox:active + label {
	background-color: #ddd;
}
.checkbox:checked {
	background-position: 0 0;
}



/* grid view */
  .filter-buttons {
	text-align: right;
    display: inline-flex;
	margin-bottom: 0;
  }
  .filter-buttons p{
	font-size:12px;
	margin-right:10px;
	margin-bottom: 0;
  }
  .third-view-button,
  .fourth-view-button ,
  .sixth-view-button {
	color: #000;
	padding: 0 5px;
	font-size: 13px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
  }
  
  .third-view-button.active,
  .fourth-view-button.active ,
  .sixth-view-button.active {
	border-bottom: 2px solid ;
  }

  .third-view-button:hover,
  .fourth-view-button:hover ,
  .sixth-view-button:hover {
	border-bottom: 2px solid ;
  }
  
  .third-view-button,
  .fourth-view-button {
	margin-right: 10px;
  }
  
  .list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
  }
  
  .list li {
	border-radius: 0;
	margin-bottom: 0;

	margin-right: 5px;
	margin-left: 5px;
	text-align: center;
	
	transition: 0.3s;
  }
  
  
  .list.third-view-filter {
	/* flex-direction: column; */
	flex-flow: row wrap;
  }
  
  .list.third-view-filter li {
	width: calc(33% - 10px);
  }
  
  /* 4 column */
  .list.fourth-view-filter {
	flex-flow: row wrap;
  }
  
  .list.fourth-view-filter li {
	width: calc(25% - 10px);
  }
  
  
  /* six column */
  .list.sixth-view-filter {
	flex-flow: row wrap;
  }
  
  .list.sixth-view-filter li {
	width: calc(16.6% - 10px);
  }
/* end grid view */

  /* end checkbox */
  .filter-toggle {
    /* top: -27px; */
  }
  .filter-toggle:after {
	/* position: absolute;
	content: "";
	border-left: 1px solid black;
	border-top: 1px solid black;
	padding: 3px;
	right: 10px;
	top: 35%;
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg); */
  }

.wrap{
	/* display: flex; */
	/* flex-wrap: wrap; */
  }
  
  .object{
	/* width:100px;
	height:100px; */
	/* margin:10px; */
	display:none;
  }
  
  .circle { border-radius: 50px;}
  .square { /* do nothing */}
  
  .show{
	display:block;
  }

  #no-results { display: none; }


/* ========== Breakpoints ==================== */
@media (max-width: 1080px) {
	.nav {
		padding: 15px;
	}

	section {
		padding: 3rem 0 2rem;
	}

	.container {
		margin: 0 auto;
		width: 90%;
	}

	.shop {
		margin-top: 2rem !important;
	}
}

@media (max-width: 400px) {
	.nav {
		padding: 11px;
	}

	.logo {
		font-size: 1rem;
	}

	.cart {
		width: 320px;
	}
}

@media (max-width: 360px) {
	.shop {
		margin-top: 1rem !important;
	}

	.cart {
		width: 280px;
	}
}


@media  (max-width: 768px) {
	.dropdown-check-list .anchor {
		padding: 5px 15px 5px 10px;
		margin-right: 0;
		font-size: 14px;
	}
	.dropdown-check-list .anchor:after{
		right: -2px;
	}
	.filter-toggle{
		top: 20px;
	}
	.filter-toggle:after{
		right: -10px;
		top: 4px;
	}
	.filter-list {
        width: 90%;
        right: -5%;
        top: 45px;
    }
	.list.third-view-filter li , .list.fourth-view-filter li ,  .list.sixth-view-filter li {
		width: calc(50% - 10px);
	}

	.product-box .product-detail{
		position: relative ;
	}
	.product-box .product-detail, .product-box .product-color ,.product-box .add-cart{
		display: block;
	}
	.cart{
		width: 100%;
	}
	
}



/* color list */
.boxed-check-group .boxed-check .boxed-check-label i.color-beige, i.color-beige{
    background-color:#bca67d;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-black,i.color-black{
    background-color:#19191b;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-brown, i.color-brown{
    background-color:#6f503c;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-blue, i.color-blue{
    background-color:#4c93b5;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-grey, i.color-grey{
    background-color:#d1d1d1;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-red, i.color-red{
    background-color:#ba0923;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-yellow, i.color-yellow{
    background-color:#f1ca1d;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-green, i.color-green{
    background-color:#038b3d;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-navy, i.color-navy{
    background-color:#101771;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-white, i.color-white{
    background-color:#fcfcfc;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-purple, i.color-purple{
    background-color:#aa60af;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-orange, i.color-orange{
    background-color:#f18911;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-pink, i.color-pink{
    background-color:#fe92b6;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-gold, i.color-gold{
    background-color:#d4bc6c;
}
.boxed-check-group .boxed-check .boxed-check-label i.color-burgundy, i.color-burgundy {
    background-color: #750e0e;
}