/* 49. Shopping Cart
=========================*/
.cart__full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1111;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease; }
  .cart__full.opened {
    opacity: 1;
    visibility: visible; }
    .cart__full.opened .cart__container {
      transform: translateX(0); }

.cart__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 14px;
  height: 14px; }
  .cart__close:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 6px;
    height: 2px;
    transform: rotateZ(45deg);
    background-color: #000; }
  .cart__close:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 6px;
    height: 2px;
    transform: rotateZ(-45deg);
    background-color: #000; }

.cart__container {
  margin-left: auto;
  width: 390px;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: all .2s ease;
  transition-delay: .2s; }

.cart__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto; }

.cart__heading {
  padding: 17px 30px;
  text-align: center; }
  .cart__heading .title {
    font-size: 14px;
    font-weight: 700;
    color: #000000; }
  .cart__heading .time {
    color: #00bac0; }
  .cart__heading .text {
    font-size: 10px;
    font-weight: 500;
    color: #000000; }

.cart__head {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 20px 20px 30px;
  text-align: center;
  background-color: #f5f5f5;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  display: block; }
  .cart__head:hover {
    text-decoration: none; }
  .cart__head:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%; }
  .cart__head .title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2; }
  .cart__head.small {
    padding: 10px 20px; }
    .cart__head.small .title {
      display: none; }
    .cart__head.small .cart__head-img img {
      height: 50px;
      width: 50px; }

.cart__head-img {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 2; }
  .cart__head-img img {
    height: 73px;
    width: 73px;
    object-fit: contain; }

.cart__content {
  padding: 24px 30px; }

.cart__item {
  padding-bottom: 7px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e3e3e3; }
  .cart__item.details {
    margin-top: 20px; }
  .cart__item .title {
    font-size: 16px;
    font-weight: 700; }

.cart__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700; }

.cart__text {
  margin-bottom: 10px;
  font-size: 14px;
  color: #535353; }

.cart__date {
  font-size: 16px; }

.cart__place {
  font-size: 16px; }

.cart__fast {
  margin-top: 10px;
  border: 2px solid #ffd5b0;
  background-color: #fff9d8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ff421d;
  border-radius: .4rem;
  padding: 6px 0; }
  .cart__fast img {
    display: block;
    margin-right: 18px; }

.cart__info-item {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
  gap: 10px; }
  .cart__info-item:last-child {
    margin-bottom: 0; }
  .cart__info-item img {
    display: block; }

.cart__total {
  display: flex;
  justify-content: space-between; }
  .cart__total .lng:hover .lng__list {
    display: block; }
  .cart__total .lng__list {
    left: -25px;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 130px;
    overflow-y: auto; }
    @media (max-width: 992px) {
      .cart__total .lng__list {
        top: auto;
        max-height: 250px;
        overflow-y: auto;
        bottom: calc(100% + 1rem); } }

.cart__total-item .title {
  margin-bottom: 5px;
  font-size: 14px;
  color: #535353; }

.cart__total-item .price {
  font-size: 20px;
  font-weight: 700;
  color: #00bac0; }

.cart__footer {
  display: flex;
  padding: 8px 30px; }
  .cart__footer .btn {
    width: 100%;
    margin-bottom: 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    height: 44px; }

.cart__details {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .cart__details:first-child {
    margin-top: 10px; }
  .cart__details .title {
    font-size: 14px;
    font-weight: 400; }
  .cart__details .text {
    font-size: 14px;
    font-weight: 400; }

.cart__form {
  padding-top: 10px;
  padding-bottom: 10px; }
  .cart__form--more-info .products__place .item:first-child {
    display: flex; }
  .cart__form--more-info .product__title {
    margin-bottom: .5rem;
    align-items: center; }
  .cart__form--more-info .products__place {
    margin-bottom: 2rem; }
  .cart__form--more-info .btn {
    height: 50px;
    font-weight: 600;
    font-size: 1rem; }
  .cart__form .input {
    height: 47px;
    background-color: #f3f3f3;
    border: 0;
    border-radius: .8rem;
    font-size: 16px;
    font-weight: 500;
    padding: .6rem 1rem 0;
    color: #000000; }
    .cart__form .input:focus + .label {
      transform: translateY(-17px);
      font-size: 10px; }
    .cart__form .input:not(:placeholder-shown) + .label {
      transform: translateY(-17px);
      font-size: 10px; }
  .cart__form .select {
    height: auto; }
    .cart__form .select:before {
      display: none; }
    .cart__form .select:after {
      border-width: 0 1px 1px 0;
      border-style: solid;
      border-color: #707070;
      padding: 3px;
      right: 1.5rem;
      transform: rotate(45deg); }
    .cart__form .select select {
      height: 47px;
      background-color: #f3f3f3;
      border: 0;
      border-radius: .8rem;
      font-size: 16px;
      font-weight: 500;
      padding: .6rem 1rem 0; }
    .cart__form .select + .label {
      transform: translateY(-17px);
      font-size: 10px; }
  .cart__form .label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    color: #000000;
    opacity: .7;
    font-size: 16px;
    transition: all .2s ease;
    font-weight: 400;
    line-height: 1; }
  .cart__form .form__group {
    margin-bottom: 10px; }
    .cart__form .form__group.mb {
      margin-bottom: 30px; }

.cart__phone {
  display: flex; }
  .cart__phone .form__group {
    margin-right: 10px;
    margin-bottom: 0; }
    .cart__phone .form__group:last-child {
      margin-right: 0;
      flex: 1; }
  .cart__phone .select {
    height: 47px;
    background-color: #f3f3f3;
    border-radius: 2.5rem;
    width: 7rem;
    display: flex;
    align-items: center;
    padding: 0 1rem; }
    .cart__phone .select select {
      padding-top: 4px;
      box-shadow: none;
      background-color: transparent;
      border: 0; }

.cart__credits .radio {
  margin-bottom: 8px; }

.cart__credits .radio__input:checked + .radio__label {
  border-color: #00BAC0; }

.cart__credits .radio__label {
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: .4rem;
  border: 2px solid transparent;
  background-color: #F3F3F3;
  padding: 8px;
  font-size: 16px;
  gap: 18px; }
  .cart__credits .radio__label img {
    display: block;
    height: 26px;
    width: 38px;
    object-fit: contain; }
  .cart__credits .radio__label:before, .cart__credits .radio__label:after {
    display: none; }

.cart__item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000; }
  .cart__item-title:hover {
    text-decoration: none; }

@media (max-width: 992px) {
  .cart__info-container {
    position: static; } }

@media (max-width: 390px) {
  .cart__container {
    width: 100%; } }
