
.cart-side {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding-top: 105px;
}
.cart-side__close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.cart-side__title {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: left;
}

.cart-side {
  transform: translateX(450px);
  transition: 0.5s;
}
.cart-side.open {
  transform: translateX(0px);
}
.cart-side .product {
  margin-bottom: 0;
}
.cart-side .product__cost {
  margin-bottom: 17px;
}
.cart-side .product__articul {
  margin-bottom: 40px;
}
.cart-side__btn {
  padding: 0px;
}
.cart-side__btn .btn {
    background: #fff;
    color: #000;
    border: solid 1px #000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font-size: 11px !important;
    height: 45px;
}
.cart-side__btn .btn:first-child{
    margin-bottom: 20px;
}
.cart-side__btn .btn.__light {
    border: solid 1px rgba(0,0,0,.5);
}
.cart-side__btn .btn:hover {
  background: #000;
  color:#fff;
}
.cart-side__total {
  padding: 30px 0;
  text-align: center;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
}
.cart-side .product__delete {
  right: 30px;
}
.cart-side__info {
  display: flex;
}
.product__params li {
    margin-bottom: 10px;
}
.product__params li span {
    color: #B3B3B3;
}
.product {
  display: flex;
  padding: 0px;
  margin-bottom: 60px;
  position: relative;
}
.product__delete {
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 1;
  transition: 0.5s;
  cursor: pointer;
}
.product__delete:hover {
  opacity: .8;
}
.product__image {
  width: 190px;
  height: 286px;
  display: block;
  margin-right: 20px;
  min-width: 106px;
}
.product__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.product__name {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}
.product__cost {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
}
.cart-side__bottom {
    /*position: absolute;
    bottom: 60px;*/
    width: 100%;
    background: #fff !important;
}
.product__title {
  display: block;
  margin-bottom: 13px;
  font-size: 12px;
}
.product__color {
  display: inline-flex;
  align-items: center;
  height: 30px;
  border: 1px solid rgba(38, 5, 5, 0.3);
  font-size: 12px;
  justify-content: center;
  padding: 2px;
  width: 30px;
}
.product__color span {
  display: block;
  width: 100%;
  height: 100%;
}
.product__size {
  display: inline-flex;
  align-items: center;
  display: inline-flex;
  border: 1px solid rgba(38, 5, 5, 0.3);
  height: 30px;
  font-size: 13px;
  color: rgb(38, 5, 5);
  padding: 0 14px;
  align-items: center;
  white-space: nowrap;
}
.product__number {
  display: inline-flex;
  align-items: center;
  height: 15px;
  border: 1px solid rgba(38, 5, 5, 0.1);
  font-size: 12px;
  justify-content: center;
  padding: 2px;
  min-width: 15px;
}
.product__q {
  color: #000 !important;
  width: 15px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.product__params li:nth-child(3) {
  margin-bottom: 7px;
}
.product__q.__quantity {
  width: 10px;
}
.product__q.__quantity i {
  font-size: 10px;
}
.product__q.__plus{
  cursor: pointer;
}
.product__q.__minus {
  cursor: pointer;
}
.rpanel-side .side-body {
  overflow-y: scroll;
  height: calc(100vh - 165px);
}
.product__content {
  max-width: calc(100% - 210px);
}
@media (max-width: 992px) {
  .product__info-item {
    margin-right: 32px;
  }
  .cart-side__title {
    position: absolute;
    top: 60px;
  }
  .rpanel-side .side-body {
    padding: 0 20px !important;
  }
  .rpanel-side {
    padding-top: 100px !important;
  }
  .cart-side__bottom {
    background: #fff !important;
    padding-bottom: 60px !important;
    bottom: 0 !important;
  }
}