/*---------------------------------------------------
    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;
  }
}
.masterclub-app-info {
  margin-top: 24px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .masterclub-app-info {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.masterclub-app-info__wrapper {
  border-radius: 5px;
  background: #000;
  position: relative;
}
.masterclub-app-info__wrapper picture img {
  border-radius: 5px;
}
.masterclub-app-info__text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px;
}
@media (min-width: 768px) {
  .masterclub-app-info__text {
    padding: 24px;
  }
}
@media (min-width: 1024px) {
  .masterclub-app-info__text {
    padding: 0;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    max-width: 320px;
  }
}
@media (min-width: 1240px) {
  .masterclub-app-info__text {
    max-width: 400px;
    right: 3%;
  }
}
@media (min-width: 1420px) {
  .masterclub-app-info__text {
    right: 100px;
  }
}
@media (min-width: 1024px) {
  .masterclub-app-info__title {
    display: flex;
    align-items: center;
  }
}
.masterclub-app-info__title h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .masterclub-app-info__title h3 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .masterclub-app-info__title h3 {
    text-align: left;
    font-size: 22px;
  }
}
@media (min-width: 1240px) {
  .masterclub-app-info__title h3 {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .masterclub-app-info__title h3 span {
    display: block;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .masterclub-app-info__title h3 span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .masterclub-app-info__qr {
    min-width: 128px;
    height: 128px;
    margin-right: 15px;
  }
}
@media (min-width: 1240px) {
  .masterclub-app-info__qr {
    margin-right: 30px;
  }
}
.masterclub-app-info__apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .masterclub-app-info__apps {
    gap: 24px;
  }
}
.masterclub-app-info__app {
  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;
  width: 100%;
  height: 50px;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .masterclub-app-info__app {
    max-width: 145px;
  }
}
@media (min-width: 1240px) {
  .masterclub-app-info__app {
    max-width: unset;
  }
}
.masterclub-app-info__qr {
  display: none;
}
@media (min-width: 1024px) {
  .masterclub-app-info__qr {
    display: block;
  }
}

