* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style: none;
}

svg {
  display: block;
}

.btn-link {
  display: block;
  color: #212a2f;
  font-weight: 700;
  text-align: center;
  padding: 15px 20px;
  background: #fff;
  font-size: 20px;
  margin: 15px auto;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
}

.btn-link--animation {
  transition: 0.9s;
  opacity: 0;
}

.btn-link--float {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.btn-link--purple {
  color: whitesmoke;
  background-color: rgb(90, 33, 232);
}

.btn-link--dark {
  color: #fff;
  background-color: #212a2f;
}

.header {
  width: 100%;
}

.header__primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  position: fixed;
  width: 100%;
  background-color: white;
  box-sizing: border-box;
  z-index: 2;
}

.header__menu-btn {
  cursor: pointer;
}

.header__search-box {
  position: relative;
  display: none;
}

/*
.header__search-box{
    position: relative;
    display: none;
    flex: 0 1 40%;
}
*/
.header__search-box--small {
  display: block;
  position: absolute;
  top: 60px;
  width: 90%;
  margin: 0 5%;
}

.header__search-box--large {
  flex: 0 1 40%;
}

.header__search-input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  font-size: 1.2rem;
}

.header__search-svg {
  position: absolute;
  top: 8px;
  right: 6px;
}

.header__img {
  display: block;
}

.header__list {
  list-style: none;
  display: flex;
}

.header__item {
  margin: 0px 4px;
}

.header__link {
  display: block;
  padding: 4px;
  height: 24px;
  width: 24px;
}

.header__svg {
  display: block;
}

/*
.header__carousel{
    width: 100%;
    height: 300px;
    position: relative;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: start;
}
.header__carousel-box{

}
.header__carousel-radio{
    display: none;
}
.header__carousel-img{
    width: 100%;
    height: 300px;
    opacity: 0;
    transition: .9s;
    position: absolute;
    top: 60px;
    left: 0;   
}
.header__carousel-box-btn{
    position: absolute;
    top: 80px;
    left: 10px;
}
.header__carousel-btn{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 8px;
    background-color: white;
    display: block;
    z-index: 1;
    position: relative;
    border: 2px solid black;
    cursor: pointer;
}
input[type="radio"]:checked ~ img{
    opacity: 1;
}
input[type="radio"]:checked + label{
    background-color: black;
    border: 2px solid white;
}
input[type="radio"]:checked ~ a{
    opacity: 1;
}
*/
.header__menu-checkbox {
  display: none;
}

.header__content {
  transform: translatex(-100%);
  position: fixed;
  transition: all 0.1s;
  height: 100vh;
  background-color: white;
  padding: 10px;
  top: 60px;
  z-index: 2;
}

.header__content-item {
  display: block;
  line-height: 50px;
  border-bottom: 1px solid #55A;
  letter-spacing: 3px;
  font-size: 1.2rem;
  font-weight: 600;
}

.header__content-link {
  display: block;
  padding: 6px;
}

#header__menu-btn:checked ~ .header__content {
  transform: translatex(0);
  transition: all 0.2s;
}

/*
mobile 576
table 768
desktop 992
desktop large 1200
*/
.content {
  padding-top: 60px;
}

.footer__newsletter {
  background-color: rgb(248, 247, 245);
  width: 100%;
  padding: 20px 0px;
}

.footer__newsletter-box {
  text-align: center;
  padding: 15px;
  max-width: 700px;
  margin: 30px auto 0px;
  /*
  background-color: #fff;
  border: solid 1px black;
  */
}

.footer__newsletter-title {
  font-size: 24px;
  padding: 10px;
}

.footer__newsletter-text {
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 10px;
  text-align: justify;
}

.footer__newsletter-form {
  width: 90%;
  margin: 15px auto;
  box-sizing: border-box;
}

.footer__newsletter-data {
  display: flex;
  flex-direction: column;
}

.footer__newsletter-accept {
  display: flex;
  flex-direction: column;
  text-align: initial;
  padding: 10px 15px 15px 0px;
}

.footer__newsletter-note {
  margin-top: 7px;
}

.footer__info {
  background-color: #212a2f;
  padding: 20px;
}

.footer__menu {
  text-align: center;
  margin: 20px 0px;
}

.footer__menu-box {
  margin: 30px 0px;
}

.footer__menu-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 18px 0px;
  box-sizing: border-box;
}

.footer__menu-link {
  display: inline-block;
  color: #fff;
  padding: 3px;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer__brandy-img {
  display: block;
  margin: auto;
}

.footer__icon-box {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer__social-item {
  padding: 8px;
  margin: 8px;
  width: 24px;
  height: 24px;
}

.footer__legal {
  margin: 40px 0px 0px 0px;
  box-sizing: border-box;
  text-align: center;
}

.footer__legal-link {
  display: block;
  padding: 5px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 18px;
}

.footer__legal-bussine {
  color: #e2e6ea;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  box-sizing: border-box;
}

.icon-svg {
  fill: #fff;
}

.text-input {
  width: 100%;
  appearance: none;
  outline: none;
  height: 48px;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 700;
  background: rgb(245, 245, 245);
  background-color: white;
  border-bottom: 2px solid rgb(33, 42, 47);
  border-top-width: 0px;
  border-right-width: 0px;
  border-left-width: 0px;
  border-top-style: solid;
  border-right-style: solid;
  border-left-style: solid;
  border-radius: 0px;
  padding: 2px 12px 0px;
  color: rgb(33, 42, 47);
  box-shadow: transparent 0px 2px 0px 0px inset, transparent 2px 0px 0px 0px inset, transparent -2px 0px 0px 0px inset;
  transition: border-color 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, background-color 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, box-shadow 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.text-input:focus {
  box-shadow: rgb(33, 42, 47) 0px 2px 0px 0px inset, rgb(33, 42, 47) 2px 0px 0px 0px inset, rgb(33, 42, 47) -2px 0px 0px 0px inset;
}

.btn-input {
  display: block;
  width: 100%;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 15px 20px;
  background-color: #212a2f;
  font-size: 18px;
  margin: 15px auto;
  cursor: pointer;
}

.label {
  font-weight: 600;
  font-size: 17px;
}

.original-link {
  text-decoration: underline;
  color: #3339FF;
}

.span {
  font-weight: 600;
}

/*
mobile 576
table 768
desktop 992
desktop large 1200
*/
.headers {
  margin: 20px 0;
  box-sizing: border-box;
}

.headers__title {
  text-align: center;
  font-size: 32px;
  color: rgb(90, 33, 232);
  font-weight: bold;
  box-sizing: border-box;
  text-transform: uppercase;
}

.headers__text {
  font-size: 26px;
  color: rgb(90, 33, 232);
  text-align: center;
}

.product__filter-form {
  flex: 1 0 48%;
  max-width: 48%;
}

.product__filter-text {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
}

.product__filter-select {
  display: block;
  width: 100%;
  height: 40px;
  font-size: 18px;
}

.product__filter {
  margin: 20px auto 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/*
@mixin selection-box-desktop-large{
    //filter
    .product__filter{
        width: 80%;
    }
}
*/
.product__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.product__box-card {
  flex: 0 1 50%;
}

.product__paginator {
  margin: 40px auto 60px;
}

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

.product__paginator-item {
  width: 40px;
  height: 40px;
  margin: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.product__paginator-link {
  display: block;
  background-color: #fff;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #000;
}

.product__paginator-link:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.product__paginator-link--active {
  background-color: #000;
  color: #fff;
}

/* SLIDER STYLE CSS */
.slider {
  position: relative;
  margin: 0px auto 30px;
  touch-action: pan-y;
  /*
  width: 500px;
  max-width: 100%;
  */
  width: 100%;
}

.slider__container {
  /*width: 100%;*/
  margin: auto;
  /*overflow-y: auto;*/
  overflow: hidden;
}

.slider__box {
  display: flex;
  user-select: none;
  /*justify-content: center;*/
  width: 100%;
  transform: translate(-200%);
}

.slider__box--event {
  pointer-events: none;
}

.slider__box-card {
  flex: 1 0 100%;
  max-width: 100%;
}

.slider__btn {
  width: 40px;
  height: 50%;
  padding: 0px 10px;
  background-color: rgba(0, 0, 0, 0);
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3rem;
  cursor: pointer;
  display: none;
}

.slider__btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.slider__btn--left {
  left: 0;
  border-radius: 0 5px 5px 0;
}

.slider__btn--right {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* mobile 576*/
/*tablet 768*/
/*desktop large 992*/
/*desktop extra large 1200*/
.card {
  position: relative;
  font-size: 20px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  margin: 4px;
  text-align: center;
}

.card__box:not(:last-child) {
  margin-right: 10px;
}

.card__img {
  display: block;
  width: 100%;
  height: auto;
  /*height: 500px;*/
}

.card__content {
  background-color: cornsilk;
  padding: 10px;
  border-top: 1px solid gainsboro;
}

.card__price {
  font-weight: 100;
}

.card__price-offer {
  text-decoration: none;
  margin-left: 5px;
  color: rgb(255, 51, 0);
  font-weight: bold;
  font-size: 24px;
}

.card__reviews-star {
  font-size: 24px;
}

.card__reviews-num {
  font-size: 15px;
}

.card__box-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  box-sizing: border-box;
  height: 40px;
}

.card__box-btn-link {
  width: 86%;
}

.card__btn-link {
  background-color: green;
  padding: 10px 0px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 18px;
  display: block;
  color: white;
  text-transform: uppercase;
}

.card__box-hear {
  cursor: pointer;
}

.card__offer {
  background-color: greenyellow;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50%;
  padding: 10px;
  color: black;
  position: absolute;
  top: 10px;
  right: 10px;
}

@media (min-width: 576px) {
  .slider__btn {
    display: flex;
  }
  .slider__box-card {
    flex-basis: 50%;
  }
}
/*tablet*/
@media (min-width: 768px) {
  .product__filter {
    width: 90%;
    max-width: 800px;
  }
  .header__box-menu-btn {
    display: none;
  }
  .header__search-box {
    display: block;
  }
  .header__item:first-child {
    display: none;
  }
  .header__content {
    transform: inherit;
    transition: none;
    position: inherit;
    height: auto;
    top: inherit;
    padding: 60px 0px 0px 0px;
  }
  .header__content-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .header__content-item {
    border-bottom: none;
  }
  .header__carousel {
    padding-top: 0;
  }
  .header__carousel-img {
    top: 0;
  }
  .slider {
    width: 90%;
  }
  .footer__menu {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .footer__legal-item {
    display: inline-block;
  }
}
/*desktops*/
@media (min-width: 992px) {
  .slider__box-card {
    flex-basis: 33.3333333333%;
  }
}
/*desktops large*/
@media (min-width: 1200px) {
  .product__list {
    width: 80%;
  }
  .product__box-card {
    flex-basis: 25%;
  }
  .slider {
    max-width: 1200px;
  }
  .slider__box-card {
    flex-basis: 25%;
  }
}

/*# sourceMappingURL=products.css.map */
