@charset "UTF-8";
.smart-basket {
  width: 100%;
  font-size: 16px;
  padding: 30px 0;
  position: fixed;
  top: -25000px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow-y: scroll;
  transition: .8s
}
.smart-basket, .smart-basket button, .smart-basket div, .smart-basket form, .smart-basket input, .smart-basket label, .smart-basket p, .smart-basket span {
  box-sizing: border-box
}
.smart-basket_active {
  transition: .8s;
  top: 0;
  -webkit-animation: a ease-in-out .8s;
  animation: a ease-in-out .8s;
  opacity: 1;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #f981b8;
}
@media (max-width:1030px) {
  .smart-basket {
    padding: 10px;
    z-index: 9999;
  }
}
.smart-basket__form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 3px 25px rgba(0, 0, 0, .2);
  border-radius: 3px;
  padding-bottom: 35px;
  background: #fff;
  margin-top: 65px;
}
.smart-basket__product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 0;
  border-bottom: 1px solid #e2e2e2
}
.smart-basket__product-item:first-child {
  border-bottom: 1px dashed #d2d2d2
}
@media (max-width:1030px) {
  .smart-basket__product-item:first-child {
    display: none
  }
}
@media (max-width:1030px) {
  .smart-basket__product-item {
    box-shadow: 0 0 10px rgb(255, 156, 7);
    margin-bottom: 30px;
    padding: 15px
  }
}
.smart-basket__product-item:last-child {
  border-bottom: 1px dashed #d2d2d2!important
}
.smart-basket__product-id {
  width: 100%;
  max-width: 120px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
@media (max-width:1030px) {
  .smart-basket__product-id:before {
    content: "ID/Артикул: ";
    color: #929292;
    margin-right: 5px;
    width: 100%
  }
}
@media (max-width:1030px) {
  .smart-basket__product-id {
    max-width: 100%;
    width: 50%;
    border-left: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    height: 60px;
    padding: 15px
  }
}
@media (max-width:1030px) and (max-width:768px) {
  .smart-basket__product-id {
    border: none;
    width: 100%;
    padding: 15px 0
  }
  form {
    border-radius: 5px;
    padding: unset !important; 
    display: block;
}
}
.smart-basket__product-name {
  width: 100%;
  max-width: 360px;
  padding: 10px 0 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  box-sizing: border-box
}
@media (max-width:1030px) {
  .smart-basket__product-name {
    display: inline-block;
    max-width: 100%;
    padding: 0 0 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
    font-size: 18px
  }
}
.smart-basket__product-name img {
  margin-right: 10px
}
@media (max-width:1030px) {
  .smart-basket__product-name img {
    margin: 0 auto 10px;
    float: left;
  }
}
.smart-basket__product-quantity {
  width: 100%;
  max-width: 130px;
  text-align: center;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}
@media (max-width:1030px) {
  .smart-basket__product-quantity {
    max-width: 100%;
    padding: 15px;
    width: 50%;
    border-left: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    height: 60px
  }
}
@media (max-width:768px) {
  .smart-basket__product-quantity {
    border: none;
    width: 45%;
    max-width: 110px;
    padding: 15px 0;
    margin-left: 25px;
  }
}
.smart-basket__product-quantity_header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.smart-basket__quantity-item {
  width: 100%;
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.smart-basket__add-item, .smart-basket__quantity-item, .smart-basket__remove-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.smart-basket__add-item, .smart-basket__remove-item {
  width: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  outline: none
}
.smart-basket__add-item, .smart-basket__product-quantity-state, .smart-basket__remove-item {
  height: 30px;
  border: 1px solid #e2e2e2;
  background: #f981b8;
  color: white;
  text-shadow: 1px 1px black;
  font-weight: 700;
  -webkit-appearance: none;
  box-sizing: border-box
}
.smart-basket__product-quantity-state {
  width: calc(100% - 60px);
  text-align: center;
  -moz-appearance: textfield;
  font-size: 25px;
  color: #f981b8;
  pointer-events: none
}
.smart-basket__product-quantity-state::-webkit-inner-spin-button, .smart-basket__product-quantity-state::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}
.smart-basket__product-price {
  width: 100%;
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  position: relative
}
@media (max-width:1030px) {
  .smart-basket__product-price:before {
    content: "Цена за 1 ед.: ";
    color: #929292;
    margin-right: 5px;
    text-align: start;
    width: 100%
  }
}
@media (max-width:1030px) {
  .smart-basket__product-price {
    max-width: 100%;
    width: 50%;
    border-right: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    height: 60px;
    padding: 15px
  }
}
@media (max-width:768px) {
  .smart-basket__product-price {
    border: none;
    width: 47%;
    padding: 15px 0
  }
}
.smart-basket__info-icon {
  width: 14px;
  height: 14px;
  font-size: 12px;
  border-radius: 7px;
  background: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: 20px;
  cursor: pointer
}
.smart-basket__info-msgs {
  position: absolute;
  top: 36px;
  width: 100%;
  max-width: 320px;
  min-width: 200px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e2e2;
  z-index: 1;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .28);
  font-size: 14px;
  display: none
}
.smart-basket__info-msgs:after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: -20px;
  border: 10px solid transparent;
  border-bottom: 10px solid #d2d2d2
}
.smart-basket__info-msgs-close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  border: none;
  color: #e94e3c;
  outline: none;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  background: none;
  cursor: pointer
}
.smart-basket__info-msgs-close, .smart-basket__product-price-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.smart-basket__product-price-common {
  width: 100%;
  max-width: 140px;
  padding: 10px;
  text-align: center
}
@media (max-width:1030px) {
  .smart-basket__product-price-common {
    max-width: 100%;
    padding: 15px;
    width: 50%;
    border-right: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    height: 60px
  }
}
@media (max-width:768px) {
  .smart-basket__product-price-common {
    border: none;
    width: 47%;
    padding: 15px 0
  }
}
@media (max-width:1030px) {
  .smart-basket__product-price-common:before {
    content: "Всего, грн: ";
    color: #929292;
    margin-right: 5px;
    min-width: fit-content;
    width: 100%;
    text-align: start
  }
}
.smart-basket__product-delete {
  width: 100%;
  max-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 15px;
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer
}
@media (max-width:1030px) {
  .smart-basket__product-delete {
    /*max-width: 30px;*/
    padding: 0px;
    border: 1px solid #e2e2e2;
    height: 30px;
    margin-left: 25px;
  }
}
.smart-basket__delete-icon {
  font-size: 20px;
  font-weight: 700;
  top: -3px;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #e94e3c
}
.smart-basket__delete-icon, .smart-basket__user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.smart-basket__user-info {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 15px;
  box-sizing: border-box
}
@media (max-width:768px) {
  .smart-basket__user-info {
    padding: 30px 0
  }
}
.smart-basket__input-wrapper {
  width: 49%;
  padding-bottom: 2px;
  border-radius: 3px;
  transition: .5s
}
@media (max-width:600px) {
  .smart-basket__input-wrapper {
    width: 100%;
    margin: 10px 0
  }
}
.smart-basket__input-wrapper_focus {
  transition: .5s;
  box-shadow: inset -500px 0 0 0 #1bbc9b
}
.smart-basket__input-wrapper_error {
  box-shadow: inset -500px 0 0 0 #e94e3c
}
.smart-basket__user-input {
  width: 100%;
  padding: 0 15px;
  color: black;
  box-sizing: border-box;
  height: 60px;
  font-size: 16px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  -webkit-appearance: none;
  outline: none;
  transition: .5s;
  position: relative
}
.smart-basket__user-input:invalid {
  box-shadow: none
}
.smart-basket__result-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 15px;
  font-weight: 700;
  border-bottom: 1px dashed #d2d2d2
}
@media (max-width:1030px) {
  .smart-basket__result-common {
    padding: 0 15px 30px
  }
}
@media (max-width:768px) {
  .smart-basket__result-common {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}
.smart-basket__quantity-common {
  margin-right: 30px
}
@media (max-width:768px) {
  .smart-basket__quantity-common {
    margin: 0 0 10px;
    width: 100%;
    text-align: center
  }
}
.smart-basket__empty-title, .smart-basket__success-title {
  width: calc(100% + 30px);
  padding: 50px 15px 80px;
  font-size: 24px;
  text-align: center;
  border-bottom: 1px dashed #d2d2d2;
  margin: 0 -15px 30px
}
.smart-basket__empty-title {
  color: #e94e3c
}
.smart-basket__success-title {
  color: #1bbc9b
}
@media (max-width:768px) {
  .smart-basket__user-form {
    padding: 0 15px
  }
}
.smart-basket__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 15px
}
@media (max-width:768px) {
  .smart-basket__footer {
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}
.smart-basket__send-form {
  background: #f981b8;
  text-shadow: 1px 1px black;
  border: none;
  /*padding: 15px 25px;*/
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: 3px
}
@media (max-width:768px) {
  .smart-basket__send-form {
    width: 49%;
    /*padding: 15px 34px*/
  }
}
.smart-basket__close-form {
  background: #afafaf;
  border: none;
  padding: 2px 15px;
  margin-bottom: 20px;
  min-height: 48px;
  color: #fff;
  font-size: 16px;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: 3px;
  margin-right: 30px
}
@media (max-width:768px) {
  .smart-basket__close-form {
    width: 49%;
    padding: 13px 10px;
    margin-right: 0
  }
}
.smart-basket__alert-msg-button {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.smart-basket__input {
  -webkit-appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  pointer-events: none
}
@media (max-width:1030px) {
  .smart-basket__input {
    text-align: right
  }
}
.smart-basket__alert-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, .3);
  -webkit-animation: b ease-in-out .3s;
  animation: b ease-in-out .3s
}
.smart-basket__alert {
  width: 100%;
  max-width: 480px;
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .28);
  padding: 15px
}
@media (max-width:768px) {
  .smart-basket__alert {
    margin: 0 15px
  }
}
.smart-basket__alert-icon {
  width: 100px;
  height: 160px;
  margin: 19px auto;
  background: url(/images/cart_full.png) no-repeat top center;
}
.smart-basket__alert-icon svg {
    display: none !important;
}
/*.smart-basket__alert-icon svg {
  width: 100%;
  display: block
}*/
.smart-basket__alert-icon .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0
}
.smart-basket__alert-icon .path.circle {
  -webkit-animation: c .9s ease-in-out;
  animation: c .9s ease-in-out
}
.smart-basket__alert-icon .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: c .9s .35s ease-in-out forwards;
  animation: c .9s .35s ease-in-out forwards
}
.smart-basket__alert-icon .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: d .9s .35s ease-in-out forwards;
  animation: d .9s .35s ease-in-out forwards
}
.smart-basket__alert-text {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px
}
.smart-basket__alert-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}
@media (max-width:450px) {
  .smart-basket__alert-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}
.smart-basket__alert-button {
  height: 50px;
  border: none;
  -webkit-appearance: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer
}
.smart-basket__alert-button_close {
  background: #afafaf;
  width: 48%;
  text-transform: uppercase;
  text-shadow: 1px 1px black;
}
.smart-basket__alert-button_close:hover {
  background: #a0a0a0
}
@media (max-width:450px) {
  .smart-basket__alert-button_close {
    width: 100%;
    margin-bottom: 15px
  }
}
.smart-basket__alert-button_by {
    background: #f981b8;
    width: 48%;
    text-transform: uppercase;
    font-size: 18px;
    text-shadow: 1px 1px black;
}
.smart-basket__alert-button_by:hover {
  background: #f1157a
}
@media (max-width:450px) {
  .smart-basket__alert-button_by {
    width: 100%
  }
}
@-webkit-keyframes a {
  0% {
    top: -2000px;
    opacity: 0;
    background: none
  }
  60% {
    top: 0;
    opacity: 1
  }
  to {
    top: 0
  }
}
@keyframes a {
  0% {
    top: -2000px;
    opacity: 0;
    background: none
  }
  60% {
    top: 0;
    opacity: 1
  }
  to {
    top: 0
  }
}
@-webkit-keyframes b {
  0% {
    top: 300px;
    opacity: 0;
    background: none
  }
  60% {
    top: 0;
    opacity: 1;
    background: none
  }
  to {
    background: rgba(0, 0, 0, .3)
  }
}
@keyframes b {
  0% {
    top: 300px;
    opacity: 0;
    background: none
  }
  60% {
    top: 0;
    opacity: 1;
    background: none
  }
  to {
    background: rgba(0, 0, 0, .3)
  }
}
@-webkit-keyframes c {
  0% {
    stroke-dashoffset: 1000
  }
  to {
    stroke-dashoffset: 0
  }
}
@keyframes c {
  0% {
    stroke-dashoffset: 1000
  }
  to {
    stroke-dashoffset: 0
  }
}
@-webkit-keyframes d {
  0% {
    stroke-dashoffset: -100
  }
  to {
    stroke-dashoffset: 900
  }
}
@keyframes d {
  0% {
    stroke-dashoffset: -100
  }
  to {
    stroke-dashoffset: 900
  }
}


/*********************/
.smart-basket__product-id {
    display: none;
}
button.product__add-to-cart-button {
    text-transform: uppercase;
    font-size: 27px;
    line-height: 42px;
    background: #f981b8;
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    letter-spacing: 2px;
    width: 50%;
    margin: 0 auto;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px black;
}
span.smart-basket__info-msgs {
    background: #f7f5f5;
}
span.smart-basket__info-icon {
    color: black;
    padding-bottom: 2px;
}
input.smart-basket__input {
    font-size: 16px;
}
input.smart-basket__product-quantity-state {
    background: none;
}
input[type="text"]::-webkit-input-placeholder { color: #5a5757; }
input[type="text"]:-ms-input-placeholder { color: #5a5757; }
input[type="text"]::-ms-input-placeholder { color: #5a5757; }
input[type="text"]::placeholder { color: #5a5757; } 

input[type="tel"]::-webkit-input-placeholder { color: #5a5757; }
input[type="tel"]:-ms-input-placeholder { color: #5a5757; }
input[type="tel"]::-ms-input-placeholder { color: #5a5757; }
input[type="tel"]::placeholder { color: #5a5757; } 

input[type="email"]::-webkit-input-placeholder { color: #5a5757; }
input[type="email"]:-ms-input-placeholder { color: #5a5757; }
input[type="email"]::-ms-input-placeholder { color: #5a5757; }
input[type="email"]::placeholder { color: #5a5757; } 

span.smart-basket__min-count {
    color: #fff;
    font-size: 20px;
    border: 1px solid;
    border-radius: 50%;
    padding: 0 7px;
}
button.smart-basket__min {
    background: #f1157a;
    border: 2px solid white;
    border-radius: 20px;
}
.smart-basket__quantity-item {
    display: inline-flex;
    max-width: 110px;
    margin-bottom: 20px;
}
.smart-basket__price-common {
    color: #f981b8;
    text-shadow: 1px 1px black;
    font-size: 20px;
}
form#smart-basket__form:before {
    content: 'Оформление заказа';
    text-align: center;
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    font-size: 38px;
    margin: 11px 0 30px;
    display: block;
    color: #f98c0b;
}
.smart-basket__product-name span {
    margin-left: 10px;
}

.smart-basket__input-wrapper input.smart-basket__user-input[type="email"] {
    display: none;
    padding: 0;
    margin: 0;
}