/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* variables */
/* filters https://codepen.io/sosuke/pen/Pjoqqp */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-loading {
  0% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
  50% {
    background-color: #717171;
    border-color: #717171;
  }
  100% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
}
.conditions-info {
  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;
  gap: 20px;
  border-top: 1px solid #ECECEC;
  padding: 15px 16px 0;
  max-width: 500px;
  margin: 15px auto 0;
}
@media (min-width: 768px) {
  .conditions-info {
    gap: 51px;
    padding: 20px 0 0;
  }
}
@media (min-width: 1024px) {
  .conditions-info {
    margin: 0 40px 0 auto;
  }
}
@media (min-width: 1420px) {
  .conditions-info {
    max-width: 580px;
    margin: 0 80px 0 auto;
  }
}
.conditions-item {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.35s;
}
.conditions-item:hover {
  color: #EF7D05;
}
@media (min-width: 768px) {
  .conditions-item {
    white-space: nowrap;
  }
}
.conditions-item .conditions-item__icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-size: contain;
}
@media (min-width: 768px) {
  .conditions-item .conditions-item__icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}
.conditions-item_return .conditions-item__icon {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-return.svg');
  background-position: center;
}
.conditions-item_warranty .conditions-item__icon {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-warranty.svg');
  background-position: center;
}

