/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
.d-flex {display:flex;}
.align-items-center {align-items:center;}
.gap-1 {gap: 0.15rem;}
.m-0 {margin:0px;}
.mr-1 {margin-right:1rem!important;}
.col-1 {width: calc(100% / 12);}
.col-2 {width: calc((100% / 12) * 2);}
.col-3 {width: calc((100% / 12) * 3);}
.col-4 {width: calc((100% / 12) * 4);}
.col-5 {width: calc((100% / 12) * 5);}
.col-6 {width: calc((100% / 12) * 6);}
.col-7 {width: calc((100% / 12) * 7);}
.col-8 {width: calc((100% / 12) * 8);}
.col-9 {width: calc((100% / 12) * 9);}
.col-10 {width: calc((100% / 12) * 10);}
.col-11 {width: calc((100% / 12) * 11);}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  .col-1 {width: 100%;}
  .col-2 {width: 100%;}
  .col-3 {width: 100%;}
  .col-4 {width: 100%;}
  .col-5 {width: 100%;}
  .col-6 {width: 100%;}
  .col-7 {width: 100%;}
  .col-8 {width: 100%;}
  .col-9 {width: 100%;}
  .col-10 {width: 100%;}
  .col-11 {width: 100%;}
  .col-12 {width: 100%;}
}


/* form control */
.form-control {
	display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.form-control .form-control-label {
	margin: 0px;
	font-size: 16px;
}
/* form control end */

/* number inputs */
.number-inputs {
    display: flex;
	align-items: center;
	list-style-type: none;
  	margin: 0;
  	padding: 0;
}

.number-inputs li {
  	float: left;
	position: relative;
  	margin: 0 5px 0 0;
	overflow: hidden;
}

.number-inputs input {
	display: block;
    height: 35px;
  	border: 2px solid #CCC;
	padding: 0px 6px;
}

.number-inputs li.ribbon:after {
	position: absolute;
    right: -16px;
    bottom: -12px;
    content: "";
    height: 26px;
    width: 26px;
    transform: rotate(312deg);
    background: #b1ce57;
}

/* radio buttons */
.radio-buttons {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.radio-buttons li {
  float: left;
  margin: 0 5px 0 0;
  position: relative;
  cursor: pointer;
}

.radio-buttons li:hover {
  background: #cccccc3d;
}

.radio-buttons input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
	
}

.radio-buttons input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
}

.radio-buttons label {
  overflow: hidden;
  position: relative;
  transition: 0.15s;
  display: block;
  padding: 4px 10px;
  border: 2px solid #CCC;
  border-radius: 4px;
  z-index: 90;
  margin: 0px;
  cursor: pointer;
  color: #757575;
  font-weight: bold;
}

.radio-buttons input[type="radio"]:checked+label,
.Checked+label {
	transition: 0.15s;
	border: 2px solid #b1ce57;
  	color: #2e6139;
}

.radio-buttons input[type="radio"]:checked+label:after,
.Checked+label:after {
	position: absolute;
    right: -16px;
    bottom: -16px;
    content: "";
    height: 26px;
    width: 26px;
    transform: rotate(312deg);
    background: #b1ce57;
}

/* radio buttons end */

/* product */
.product-attributes {
	display: flex;
    flex-direction: column;
    gap: 10px;
}
/* product end */