/* Checkbox */

.left_kartochka table b {
  color: #4470CA;
  font-weight: 600;
}


/* для элемента input c type="checkbox" */

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}


/* для элемента label, связанного с .custom-checkbox */

.custom-checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}


/* создание в label псевдоэлемента before со следующими стилями */

.custom-checkbox+label::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #4fa800;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
}


/* стили для чекбокса, находящегося в состоянии checked */

.custom-checkbox:checked+label::before {
  border-color: #4fa800;
  background-color: #4fa800;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.checkbox_label {

  font-size: 20px;
  line-height: 23px;
  color: #4f6bb0;
}


/* Modal */

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 105;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-bg {
  position: absolute;
  background: rgba(92, 91, 91, 0.5);
  width: 100%;
  height: 100%;
}

.modal-container {
  border-radius: 15px;
  background: #fff;
  position: relative;
  padding: 100px;
  border-radius: 30px;
}

.modal-close {
  position: absolute;
  right: 40px;
  top: 40px;
  outline: none;
  appearance: none;
  background: none;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
}

.modal_title {

  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #4f6bb0;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .modal-container {
    height: 100%;
    width: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}


/* Profile */

.title {

  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #4f6bb0;
  margin-top: 55px;
  margin-bottom: 62px;
}

.personal-area {
  display: flex;
  justify-content: space-between;
  max-width: 1026px;
  margin: auto;
  margin-bottom: 100px;
  padding: 0 10px;
}

.tabs {
  flex-direction: column;
}

.tab {
  width: 173px;
  height: 38px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  border: 2px solid #4f6bb0;
  margin-bottom: 16px;
  color: #4f6bb0;

  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 13px;
  cursor: pointer;
  padding-right: 16px;
  text-decoration: none;
}

.tab.active {
  background: #4f6bb0;
  color: #fff;
  cursor: auto;
}

.icon {
  margin: 0 16px;
}

.logout {
  display: flex;
  align-items: center;
  color: #7694a5;

  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 13px;
  cursor: pointer;
}

.notification {
  width: 16px;
  height: 16px;
  background: #4fa800;
  border-radius: 100%;

  font-size: 11px;
  line-height: 10px;
  display: flex;
  align-items: center;
  color: #ffffff;
  justify-content: center;
  margin-left: auto;
}

.content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.content-title {

  font-size: 20px;
  line-height: 13px;
  color: #4f6bb0;
}

.content-tabs {
  display: flex;
}

.content-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6ebef;
  border-radius: 4px 4px 4px 0px;
  width: 231px;
  height: 38px;
  color: #4f6bb0;
  font-weight: normal;
  cursor: pointer;

  font-size: 20px;
  line-height: 13px;
}

.content-tab.active {
  background-color: #4f6bb0;
  color: #fff;
  cursor: auto;
  font-weight: bold;
}

.tab-content {
  width: 100%;
  margin-left: 73px;
}

.content-tab:last-child {
  margin-left: -20px;
}

.content-text {

  font-weight: normal;
  font-size: 16px;
  line-height: 13px;
  color: #4f6bb0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.columns {
  display: none;
}

.columns.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.column {
  width: 47%;
}

.column-subtitle {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 15px;
  line-height: 13px;
  text-align: center;
  color: #4f6bb0;
}

.modal .input {
  width: 100%;
  height: 38px;
  background: #ffffff;
  border: 2px solid #a6c4fc;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
}

.column .input {
  width: 100%;
  height: 38px;
  background: #ffffff;
  border: 2px solid #a6c4fc;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
}

.row-inputs {
  display: flex;
  justify-content: space-between;
}

.row-inputs>* {
  width: 48% !important;
}

.btn {
  width: 134px;
  height: 38px;

  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #ffffff;
  background: #4fa800;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.btn-save {
  margin-top: 20px;
  margin-left: auto;
}

.privacy-text {

  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  color: #898080;
  margin-top: 74px;
  margin-bottom: 30px;
}

.row-bottom .privacy-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

.upload-file {
  padding: 30px;
  background: rgba(212, 225, 255, 0.34);
  border: 3px dashed rgba(79, 107, 176, 0.63);
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.upload-title {

  font-size: 20px;
  line-height: 24px;
  color: #4f6bb0;
  text-align: center;
  margin-bottom: 20px;
}

.upload-text {

  font-size: 15px;
  line-height: 13px;
  text-align: center;
  color: #4f6bb0;
}

.row-bottom {
  width: 100%;
}

.content-title .icon {
  display: none;
}

.menu-mobile {
  display: none;
}

.backdrop {
  display: none;
}

.backdrop.active {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  cursor: auto;
  display: block;
}

@media (max-width: 768px) {
  .row-bottom .privacy-text {
    margin-top: 10px;
  }
  .personal-area {
    margin-bottom: 50px;
  }
  #private .column {
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
  }
  #private .column:first-child .input-placeholder:nth-child(4) {
    width: 100%;
  }
  #private .column:first-child .input-placeholder:nth-child(2),
  #private .column:first-child .input-placeholder:nth-child(3),
  #private .column:first-child .input-placeholder:nth-child(5),
  #private .column:first-child .input-placeholder:nth-child(6) {
    width: 48%;
  }
  #private .column:nth-child(2) .input-placeholder:nth-child(2) {
    width: 100%;
  }
  #private .column:nth-child(2) .input-placeholder:nth-child(5) {
    width: 100%;
  }
  #private .column:nth-child(2) .input-placeholder:nth-child(3),
  #private .column:nth-child(2) .input-placeholder:nth-child(4),
  #private .column:nth-child(2) .input-placeholder:nth-child(6) {
    width: 48%;
  }
  #private .row-inputs {
    width: 100%;
  }
  .column-subtitle {
    width: 100%;
  }
  .content-top {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .content-tab {
    width: 48%;
    text-align: center;
    font-size: 16px;
    border-radius: 0px 4px 0px 0px;
  }
  .content-title {
    width: 100%;
    z-index: 102;
  }
  .content-tabs {
    width: 100%;
  }
  .tabs {
    display: none;
  }
  .tab-content {
    margin-left: 0;
  }
  .columns {
    flex-direction: column;
    padding: 0 15px;
  }
  .column {
    width: 100%;
    margin-bottom: 0;
  }
  .content-text {
    padding: 0 15px;
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
    margin-bottom: 19px;
  }
  .content-tab:first-child {
    z-index: 2;
  }
  .content-tab:last-child {
    margin-left: -5px;
    z-index: 1;
  }
  .content-title {
    background: #4fa800;
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
  }
  .content-title .icon {
    display: block;
  }
  .arrow {
    margin-left: auto;
  }
  .menu-mobile.active {
    display: block;
    width: 80%;
    position: absolute;
    top: 56px;
    z-index: 102;
  }
  .menu-mobile .tab {
    background: #4f6bb0;
    border-bottom: 0.5px solid #ffffff;
    margin-bottom: 0;
    color: #fff;
    width: 100%;
    height: 50px;
    font-size: 20px;
    line-height: 13px;
  }
  .menu-mobile .tab:last-child {
    border-bottom: none;
  }
  .menu-mobile .tab .notification {
    border: 1px solid #fff;
    margin-left: 20px;
  }
}


/* Заказы */

.order-preview {
  padding: 20px 0;
  border-top: 2px solid #e6ebef;
}

.order-item:last-child {
  margin-bottom: 0;
}

.order-item:first-child {
  margin-top: 15px;
}

.order-name {

  font-weight: bold;
  font-size: 20px;
  line-height: 13px;
  color: #4f6bb0;
  margin-bottom: 20px;
}

.order-columns {
  display: flex;
}

.order-info {

  font-weight: normal;
  font-size: 15px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 5px;
}

.order-column:last-child {
  margin-left: 80px;
}

.order-detali-btn {
  cursor: pointer;
  display: flex;
}

.order-detali-btn-text {

  font-weight: bold;
  font-size: 15px;
  line-height: 13px;
  color: #4f6bb0;
  border-bottom: 2px solid #4f6bb0;
}

.order-detali-btn img {
  margin-left: 5px;
}

.order-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.btn-retry-order {
  width: 194px;
}

.order-detail {
  padding-top: 15px;
  border-top: 2px solid #e6ebef;
}

.order-detail-head {
  background: #4f6bb0;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  height: 36px;
  align-items: center;
  padding: 0 15px;
}

.order-detail-text {

  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f6bb0;
  width: 20%;
}

.order-detail-text:first-child {
  width: 30% !important;
  text-align: left;
  justify-content: flex-start !important;
}

.order-detail-text:last-child {
  text-align: right;
  justify-content: flex-end !important;
}

.order-detail-head .order-detail-text {

  font-weight: normal;
  font-size: 20px;
  line-height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 20%;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e6ebef;
}

.order-detail {
  display: none;
}

.order-detail.active {
  display: block;
}

.order-all {

  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 13px;
  color: #4f6bb0;
  text-align: right;
  padding-right: 15px;
  margin: 8px 0;
}

.btn-blue {
  width: 194px;
  height: 36px;

  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #4f6bb0;
  background: #ffffff;
  border: 1px solid #4f6bb0;
  border-radius: 4px;
  margin: auto;
  margin-top: 43px;
  cursor: pointer;
}

input::-webkit-input-placeholder:after {
  color: red;
  content: " *";
}

@media (max-width: 768px) {
  .order-columns {
    flex-direction: column;
  }
  .order-column:last-child {
    margin-left: 0;
  }
  .order-items {
    padding: 0 15px;
  }
  .order-detail-table-overflow {
    width: 700px;
  }
  .order-detail-table {
    overflow-y: hidden;
  }
  .btn-retry-order {
    width: 160px;
  }
  .order-detail-text:first-child {
    width: 40% !important;
  }
}


/* Other modal */

.btn_modal {
  margin: 24px auto 0 auto;
}

.modal_sms {

  font-weight: normal;
  font-size: 15px;
  line-height: 17px;
  text-align: center;
  color: #524a4a;
  margin-bottom: 13px;
}

.modal_title.second {
  margin-bottom: 11px;
}

.first-js,
.second-js {
  display: none;
}

.first-js.active,
.second-js.active {
  display: block;
}

.sign-up-btn {
  width: 257px;
}

.sign-up-modal {
  width: 414px;
  padding: 100px 50px;
}

.modal-checkbox .checkbox_label {

  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #4f6bb0;
}

.modal-checkbox {
  margin: 20px 0;
}

.sign-up-btn {
  margin-bottom: 25px;
}

.modal_text {

  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  text-align: center;
  color: #4f6bb0;
}

.modal_icons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sign-up-modal {
    width: 100%;
    padding: 100px 50px;
  }
}


/* Избранное */

.favorites-container {
  max-width: 1026px;
  margin: auto;
  margin-bottom: 100px;
}

.title-favorites {
  margin-left: 100px;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 13px;
  color: #4f6bb0;
  margin-top: 50px;
  margin-bottom: 30px;
}

.product-item-line-list:first-child .favorite-item {
  border-top: 1.5px solid #7594e1;
}


/* .favorite-item:first-child {
    border-top: 1.5px solid #7594e1;
  } */

.favorite-item {
  border-bottom: 1.5px solid #7594e1;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 0;
}

.favorite-info-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 13px;
  color: #4470c6;
}

.favorite-info-text {
  font-weight: normal;
  font-size: 12px;
  line-height: 13px;
  color: #182954;
  margin-top: 20px;
}

.favorite-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.favorite-price {
  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  color: #28375f;
}

.favorite-status-text {
  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  text-align: center;
  color: #4fa800;
  margin-top: 15px;
}

.favorite-status-img {
  margin: auto;
  display: block;
}

.favorite-status {
  width: 100px;
}

.favorite-toggle {
  background-color: #d4e1ff;
  padding: 5px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .minus,
.plus {
  width: 20px;
  height: 20px;
  background-color: #4470c6;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  cursor: pointer;
} */

.favorite-toggle {
  display: flex;
  width: 100px;
}

.favorite-close {
  position: absolute;
  right: 7px;
  top: 12px;
  width: 21px;
  height: 21px;
  background-color: #4f6bb0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
}

.favorites-text {
  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  color: #182954;
  display: inline;
}

.favorites-num {
  font-weight: normal;
  font-size: 15px;
  line-height: 13px;
  color: #4f6bb0;
  display: inline;
}

.favorites-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 33px;
}

.favorites-btn {
  width: 214px;
  height: 36px;
  border: 1px solid #4f6bb0;
  border-radius: 5px;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #4f6bb0;
  background-color: #fff;
  cursor: pointer;
}

.favorite-status-mobile-price,
.favorite-status-mobile-check {
  display: none;
}

@media (max-width: 991px) {
  .favorite-item {
    flex-wrap: wrap;
    padding-bottom: 0;
    padding-right: 0;
  }
  .favorite-info {
    width: 70%;
  }
  .favorite-price {
    display: none;
  }
  .favorites-container .number {
    margin-left: auto;
    margin-bottom: 5px;
    margin-right: 10px;
  }
  .favorite-status {
    background: #4fa800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    padding: 10px;
  }
  .favorite-status-mobile-price {

    font-weight: normal;
    font-size: 16px;
    line-height: 13px;
    color: #ffffff;
  }
  .favorite-status-img,
  .favorite-status-text {
    display: none;
  }
  .favorite-status-mobile-price,
  .favorite-status-mobile-check {
    display: block;
  }
  .favorite-status.active {
    background: #4f6bb0;
  }
  .favorites-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .favorites-item-info {
    margin-bottom: 15px;
  }
  .title-favorites {
    margin-left: 20px;
  }
}

@media (max-width: 475px) {
  .favorite-info {
    width: 50%;
  }
}


/* Counter */

.number {
  width: 103px;
  background: #f4f7ff;

  -webkit-border-radius: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  margin:0 auto;
  padding:0;
}

.number input {
  display: inline-block;
  width: 50%;
  text-align: center;
  background: none;
  outline: none;
  border: none;
  color: #363636;

  font-size: 16px;
}

.kol_list_basket_tovar .number {
  margin: auto;
}

.right_khar_tovar .number {
  margin-bottom: 7px;
}

.order-basket .number {
  margin: 0 auto;
}

.minus,
.plus {

  width: 25px;
  height: 25px;
  text-align: center;

  color: #fff;

  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  background: #719cff;
  font-size: 25px;
  line-height:93%;
  font-weight:400;
  position: relative;

  transition:0.3s;
}

/* .minus::after {
  content: '';
  position: absolute;
  background-color: white;
  height: 2px;
  width: 60%;
} */

.minus:hover,
.plus:hover {
  background: #3B5CAC;
}


@media only screen and (min-width: 320px) and (max-width: 400px) {
  .number input {
    display: inline-block;
    width: 30%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 560px) {
  .right_khar_tovar .number {
    margin-bottom: 6px;
  }
  .kol_list_basket_tovar .number {
    float: right;
    overflow: hidden;
  }
  .kol_list_basket_tovar .number input {
    float: inherit;
    width: 50%;
  }
  .number input {
    width: 50%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 800px) {
  .order-basket .number {
    margin: 0 auto;
  }
}

@media only screen and (min-width: 561px) and (max-width: 800px) {
  .number input {
    width: 20%;
  }
}

@media only screen and (min-width: 1700px) {
  .number {
    margin: 0 auto;
  }
}

.input-placeholder {
  position: relative;
  width: 100%;
}

.input-placeholder input:valid+.placeholder {
  display: none;
}

.modal .input {
  font-size: 13px;
}

.column .input {
  font-size: 13px;
}

.placeholder {
  position: absolute;
  pointer-events: none;
  height: 25px;
  font-size: 25px;
  color: #787978;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
}

.placeholder span {
  color: red;
}


.tipservice {
 display: inline-block; /* Строчно-блочный элемент */
 position: relative; /* Относительное позиционирование */
}
.tipservice:hover::after {
 color:white;
 content: attr(data-title); /* Выводим текст */
 position: absolute; /* Абсолютное позиционирование */
 left: 20%; top: 30%; /* Положение подсказки */
 z-index: 1; /* Отображаем подсказку поверх других элементов */
 background: rgba(68,112,202,0.9); /* Полупрозрачный цвет фона */
 font-family: Arial, sans-serif; /* Гарнитура шрифта */
 font-size: 11px; /* Размер текста подсказки */
 padding: 5px 10px; /* Поля */
 border: 1px solid #333; /* Параметры рамки */
 border-radius:10px;
}


.questotv {
 display: inline-block; /* Строчно-блочный элемент */
 position: relative; /* Относительное позиционирование */
    padding-left: 5px;
}
.questotv:hover::after {

 content: attr(data-title); /* Выводим текст */
 position: absolute; /* Абсолютное позиционирование */
 z-index: 1; /* Отображаем подсказку поверх других элементов */
 background: #4470CA; /* Полупрозрачный цвет фона */
 padding: 5px 10px; /* Поля */
 border-radius:4px;
 color:#FFFFFF;
 width:250px;
 top:-8px;
 left: 27px;
 box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
 font-family: 'Rubik';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 17px;
}
 .questotvbtn {
   height: 19px;
    line-height: 19px;
    width: 19px;
    font-size: 14px;
    color:#4470CA;
    border-radius: 50%;
    background-color: #4CAF50;
    text-align: center;
    cursor: help;
   background:#ECECEC;
 }
 .questotvbtn:hover {
   background:#b3b3b3;
 }

 .questotvmob {
  display: inline-block; /* Строчно-блочный элемент */
  position: relative; /* Относительное позиционирование */
  padding:10px;
 }
 .questotvmob:hover::after {

  content: attr(data-title); /* Выводим текст */
  position: fixed;; /* Абсолютное позиционирование */
  z-index: 1; /* Отображаем подсказку поверх других элементов */
  background: #4470CA; /* Полупрозрачный цвет фона */
  font-size: 11px; /* Размер текста подсказки */
  padding: 5px 10px; /* Поля */
  border-radius:4px;
  color:#FFFFFF;
  font-size: 15px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width:70%;
  top: 50%;
left: 50%;
transform: translate(-50%, -50%);
 }
  .questotvbtnmob {
    height: 30px;
     line-height: 30px;
     width: 30px;
     font-size: 16px;
     color:#4470CA;
     border-radius: 50%;
     background-color: #4CAF50;
     text-align: center;
     cursor: help;
    background:#cccccc;
    bottom:-10px;
    left:10px;
  }
  .questotvbtnmob:hover {
    background:#b3b3b3;
  }

  .delBasketItemRight {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      text-align: center;
      line-height: 20px;
      color: #719CFF;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      cursor: pointer;

      position: relative;
      left:0px;
  }
.delBasketItemRight::after,
.delBasketItemRight::before {
      content: '';
      background-color: #719CFF;
      height: 1px;
      position: absolute;
      left: 2px;
      width: 80%;
  }
.delBasketItemRight::after {
      transform: rotate(135deg);
  }
.delBasketItemRight::before {
      transform: rotate(45deg);
  }

.inputQuantityRight {
text-align: center;
font-size:14px ;
  align-items: center;
  justify-content: center;
background: transparent;
border: none;
font-family: 'Rubik', Arial, Helvetica, sans-serif!important;

}

.changeQuantityRight {
  display: inline-flex;
  justify-content: center;
height: 19px;
line-height: 18px;
width: 19px;
color: white;
border-radius: 50%;
background-color: #4CAF50;
text-align: center;
cursor: pointer;
background: #719CFF;
font-size: 21px;
font-weight: 400;
}
.right_basket .total_price {display: none}