<style>
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
form::-webkit-scrollbar {
    width: 8px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}      
  
*, *:before, *:after{
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}


.browser-wrapper{
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

.wrapper{
  display: flex;
  flex-flow: column;
  font-family: Arial, Helvetica, sans-serif;
}

.btn--partner-shop{
  cursor: pointer;
}


.single-product__container{
  max-width: 750px;
  box-sizing: border-box;
  margin: 25px 0;
  display: grid;
  column-gap: 15px;
  grid-template-areas: 
            "header header"
            "aside aside"
            "content content";
            padding: 20px;
}

.single-product__container:first-child{
  margin-top: 0;
}

.wraper main{
  margin-left: 15px;
}

.VueCarousel{
  z-index: 0;
  position: relative;
}

.wrapper-aside{
  position: relative;
  z-index: 99;
}

.wrapper-aside article{
  padding: 15px;
  margin: 20px 0;
  border: 1px solid gainsboro;
  width: 250px;
}

.wrapper-aside form{
  max-height: 160px;
  min-height: 50px;
  overflow-y: auto;
  margin: 20px 0;
  margin-bottom: 10px;
}


.single-filter header{
  position: relative;
  cursor: pointer;
}

.single-filter header:after{
  content: '';
  height: 3px;
  width: 30px;
  color: #ED174F;
  background: #ED174F;
  position: absolute;
  bottom: -10px;
}



@media screen and (min-width: 970px){

.wrapper{
 flex-flow: row;
}

}

.single-product__header{
  margin-bottom: 15px;
  grid-area: header;
  text-align: left;
  
}

.single-product__header h4{
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: -0.5px;
  margin: 0;
  text-align: left;
  width: 396px;
}

.single-product__aside{
  grid-area: aside;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 230px;
  
}

label{
  font-weight: 400;
  padding-left: 10px;
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
}

input[type="radio"] {
  -webkit-appearance: checkbox; /* Chrome, Safari, Opera */
  -moz-appearance: checkbox;    /* Firefox */
  -ms-appearance: checkbox;     /* not currently supported */
}

input[type=checkbox], input[type=radio]{
  margin: 10px 0;
}


.form-check{
  display: flex;
  flex-flow: column;
  align-items: left;
}

.single-product__aside img{
  grid-area: aside;
  width: 220px;
  margin-right: 5px;
}



.single-product__content{
  grid-area: content;
  margin-top: 10px;
}

@media screen and (min-width: 700px){
  .single-product__content{
  width: 450px;
}
}

.single-product__details{
  padding-left: 0;
  list-style: inside none;
  color: rgba(0, 0, 0, 0.5);

}

.single-product__details li{
  font-size: 0.9em;
  line-height: 20px;
  margin: 7px 0;
  
}

.single-product__details li .param{
  min-width: 50px;
  text-align: left;
  display: inline-block;
  margin-right: 15px;
  font-weight: 800;
  box-sizing: border-box;
}

.btn--partner-shop{
  padding: 10px 20px;
  padding-bottom: 8px;
  background: #ED174F;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 25px;
  margin-left: auto;
    margin-right: auto;
    text-align: center;
  display: block;
  width: 250px;
  box-sizing: border-box;
  transition: all 0.5s;
}

.btn--partner-shop span{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn--partner-shop span:after {
  content: '\00bb';
  color: white;
  position: absolute;
  opacity: 0;
  top: -1px;
  right: -20px;
  transition: 0.5s;
}

.btn--partner-shop:hover{
  color: white;
}

.btn--partner-shop:hover span {
  padding-right: 25px;
}

.btn--partner-shop:hover span:after {
  opacity: 1;
  right: 0;
}


@media screen and (min-width: 600px){
  .single-product__container{
  display: grid;
  grid-template-areas: 
            "aside header"
            "aside content"
            "aside content";
  border-bottom: 1px solid gainsboro;
}
.btn--partner-shop{
    margin-left: 0;
    margin-right: 0;
  }
}

.single-product__header--subtitle{
  font-size: 16px;
  font-weight: 400;
}

.filters{
  border: 1px solid lightslategray;
  width: 300px;
  margin: 0 auto;
}

.container--header{
  position: relative;
  padding-left: 10px;
  box-sizing: border-box;
}
.container--header h3{
  padding-left: 10px;
  padding-top: 2px;
}

.container--header::before{
  content: '';
  height: 30px;
  width: 3px;
  color: #ED174F;
  background: #ED174F;
  position: absolute;
}

.number-form{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  box-sizing: border-box;
}

.number-form input{
  width: 70px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-left: 13px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.5);
}

.show-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
  margin-top: 20px;
  margin-left: 30px;
  min-width: 300px;
  margin-bottom: 15px;
}

 .show-header form input{
   display: none;
 }
 .show-header form label{
   cursor: pointer;
 }

 .show-header form input[type="radio"]:checked+label{ 
   font-weight: bold; 
   color: #ED174F;
  } 


.show-header h5{
  padding-right: 15px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  font-style: normal;
}

.value-color{
  color:#ED174F;
  font-weight: 700;
}

.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination ul{
  list-style: none;
  padding: 0 30px;
}

.pagination ul li{
  display: inline-block;
}

.pagination ul li button, .pagination ul li span{
  background: none;
  font-weight: 700;
  border: none;
  font-size: 0.9em;
}

.prev-next{
  padding: 7px 0;
  text-align: center;
  width: 100px;
  color: white;
  background:#ED174F;
  outline: none;
  text-shadow: none;
  border: none;
}

.wrapper__main{
  margin-left: 20px;
}

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

.wrapper-aside, .wrapper-aside article{
  width: 100%;
}

.number-form{
  justify-content: left;
}


.wrapper-aside article header{
  position: relative;
}

.show-header{
  margin-left: 0;
}

.wrapper__main{
  margin-left: 0;
}

.wrapper__main div div.row{
  display: flex;
  justify-content: center;
  padding: 0 5px;
}

}

.VueCarousel-slide{
  display: flex;
  justify-content: center;
  height: 200px;
  width: 110px;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #ED174F;
  width: 50px;
  height: 50px;
  margin: 0 auto;

  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-screen{
  width: 90%;
  max-width: 300px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 250px auto;
}

.loading-screen img{
  width: 100%;
}

.custom-slider img{
  width: 200px;
}

.form-check div label, .prev-next, .pagination ul li button{
  cursor: pointer;
}

.float_IE{
  float: left;
  font-size: 11px;
}

.content_IE{
  display: block;
  margin-left: 250px;
}

.VueCarousel{
  width: 100%;
}

.emptyResults{
  min-width: 300px;
  padding-left: 20px;
  margin: 0px auto;
  margin-top: 20px;
}

.emptyResults h2{
  font-size: 18px;
}

@media screen and (max-width: 600px){
  .single-product__aside{
    width: 100%;
  }

    .VueCarousel{
    margin: 0 auto;
    width: 200px;
  }
}

@media screen and (max-width: 400px){
  .single-product__header h4{
    width: 310px;
  }

}

.VueCarousel-wrapper {
    width: 220px;
    position: relative;
    overflow: hidden;
}

.logo-aside{
  width: 200px;
  margin-top: 16px;
  display: block;
}

.hideForm{
  display: none;
}

.minimalize-form{
  position: absolute;
  right: 0;
  top: 0;
}

.arrow{
    border: solid #ED174F;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 4px;
    cursor: pointer;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top:2px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.delete-filters{
  color: #ED174F;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  
}

.number-form input:first-child{
  margin-right: 10px;
}
.number-form input:last-child{
  margin-left: 10px;
}

.filterChecking{
  list-style: none;
  padding-left: 0;
}

.filterChecking li{
  margin: 4px 0;
}

@media screen and (max-width: 1035px){
.wrapper-padding{
  padding-left: 15px;
}

}

</style>

