*
{
	margin:0;
	padding: 0;
}
.hero-image
{
	background-image: url(Gallery/pro1.jpg) !important;
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
/* .hover_rating:hover
{
  color: red !important;
} */
.fa-star:before {
  content: "\f005";
}

.rating-list li i.yellow {
  color: #FFD700;
}

.rating-list li i.gray {
  color: #bbb;
}

.list-inline>li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.rating-list li {
  padding: 0px;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.custom-radio-btn {
  width: 20px;
  height: 20px;
  border: 2px solid  rgba(244, 167, 145, 0.95);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  cursor: pointer;
}

.custom-radio-btn input {
  display: none;
}

.custom-radio-btn .checkmark {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  background: #ddd;
  opacity: 0;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.custom-radio-btn input:checked + span.checkmark {
  opacity: 1;
  background-color:  rgba(244, 167, 145, 0.95);
}
.card {
  
  margin: auto;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  margin-bottom: 30px;
  transition: 0.5s;
}
.card:hover
{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.price {
  color: grey;
  font-size: 22px;
}

.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
  opacity: 0.7;
}
.card h6
{
	font-weight: bold;
}
.card .card_icons
{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-51%, -30%);
}

.addcard a
{
	background-color: rgba(244, 167, 145, 0.95);
	color: #ffffff;
	border-radius: inherit;
  transition: 0.5s;
}
.card .addcard a:hover
{
  background-color: #ffffff !important;
  color: rgba(244, 167, 145, 0.95);
  border: 1px solid rgba(244, 167, 145, 0.95);
}
/***************************/

.aside_box
{
  padding: 10px 20px;
}
.aside_box .first_side ul
{
  list-style: none;
  font-family: 'Mulish', sans-serif;
  font-weight: bold;  
}
.aside_box .first_side p
{
  font-family: 'Mulish', sans-serif;
  letter-spacing: 4px;
  font-weight: bolder;
} 
.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  /* position: absolute; */
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.filterbtn
{
  display: flex;
  justify-content: center;
  align-items: center;
}
.filterbtn a
{
  background-color: #ffffff !important;
  color: #000000;
	border-radius: inherit;
  transition: 0.5s;
  letter-spacing: 3px;
  border: 1px solid rgb(223, 222, 222);

}
.filterbtn a:hover
{
  background-color: rgba(244, 167, 145, 0.95) !important;
	color: #ffffff;
  border: 1px solid rgba(244, 167, 145, 0.95);
}
.bestseller_box
{
background-color: #ffffff;
box-shadow: 2px 3px 5px 1px rgba(171,171,171,0.75);
-webkit-box-shadow: 2px 3px 5px 1px rgba(171,171,171,0.75);
-moz-box-shadow: 2px 3px 5px 1px rgba(171,171,171,0.75);
height: 100%;
overflow: hidden;
transition: 0.8s;
}
.bestseller_box:hover .bestseller_img
{
  transform: scale(1.5);
  overflow: hidden;
}
.bestseller_h5
{
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 0px 18px;
}
.bestseller_box .bestseller_img
{
  padding-top: 25%;
  transition: 0.8s;
  overflow: hidden;
}
.bestseller
{
  width: 80%;

}
.bestseller_row .bestseller_rate
{
  text-align: center;
  color: rgba(244, 167, 145, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bestseller .bestseller_row
{
  margin: auto;
}
.match
{
  width: 100%;
  padding-top: 140px;
}
.headings_left{
  position:relative;
  color:black;
  left:35px;
  border-left:10px solid rgba(244, 167, 145, 0.95);
  padding-left:40px;
}
.match .match_btn
{
padding: 15px 85px;
}
.mybtnn
{
  color: #ffffff;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  padding: 7px 30px;
  border-radius: 0%;
  transition: 0.5s;
  background-color: rgba(244, 167, 145, 0.95);
  border: 1px solid rgba(244, 167, 145, 0.95);
}
.mybtnn:hover
{
  border: 1px solid rgba(244, 167, 145, 0.95);
  color: #000000;
  background-color: transparent;
}


.match_div .match_box
{
  transition: 0.9s;
}
.match_div .match_box:hover
{
  box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.75);
  transform:translateY(-20px);
}
.match_content h4
{
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
}
.match_span
{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color:  rgba(244, 167, 145, 0.95);
  font-weight: 400;
}
.match_footer
{
  padding:10px 50px;
}
.match_faa
{
  padding: 4px 6px;
  float: right;
  font-size: 30px;
  border: 1px solid;
}
.match_no_style
{
  background-color: #ffffff;
  color: #000000;
  border: 1px solid rgba(244, 167, 145, 0.95);
  padding: 15px 20px;
  font-weight: 700;
  transition: 0.7s;
}
.match_no_style:hover
{
  background-color: rgba(244, 167, 145, 0.95);
  color: #ffffff;
}





