/*---------------------------------------------------
    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;
  }
}
.select-block {
  position: relative;
}
.select-block .select-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
}
.select-block .select-custom {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  font-family: "Ubuntu", "Arial", "Helvetica Neue", sans-serif;
  line-height: 21px;
  padding: 10px 40px 10px 15px;
  height: 44px;
  color: #000;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #C1C1C1;
  border-radius: 4px;
  transition: all 0.35s;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 21px;
}
.select-block .select-custom:hover {
  border-color: #000;
}
.select-block .select-custom.active {
  border-color: #C1C1C1;
}
.select-block .select-custom.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.select-block .select-custom.selected {
  color: #000;
}
.select-block .select-custom:after {
  content: '';
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 9px;
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/Chevron_Down_24_Filled.svg');
  background-position: center;
  filter: invert(50%) sepia(71%) saturate(3526%) hue-rotate(11deg) brightness(106%) contrast(96%);
  transition: all 0.35s;
}
.select-block .up {
  position: absolute;
  text-shadow: none;
  margin-top: 0;
  left: 0;
  width: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #9D9D9D;
  font-size: 12px;
  line-height: 130%;
  top: -21px;
  z-index: 2;
  transition: all 0.35s;
}
.select-block .up span {
  color: #EF7D05;
}
.select-block .select-inner {
  display: none;
  position: absolute;
  z-index: 2;
  padding: 44px 0 0 0;
  top: 0;
  left: 0;
  width: 100%;
  filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.15));
  box-sizing: border-box;
  overflow: hidden;
}
.select-block .select-inner.open {
  display: block;
}
.select-block .select-item {
  padding: 5px 12px 5px 15px;
  background: #fff;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  transition: all 0.35s;
}
.select-block .select-item:hover {
  cursor: pointer;
  background: #F2F2F2;
}

