@charset "UTF-8";

/*** Дизайн ***/

#pageVerticalBlock  { overflow: hidden; }

/* Содержимое фильтра организации располагается на общем расстоянии от заголовка */
#pageVerticalBlock.box #filter { padding-top: 8px; }

#pageVerticalBlock #filter ul.values {
    padding: 0;
    list-style: none;
}

#pageVerticalBlock #filter ul.values li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #888888;
}

#pageVerticalBlock #filter ul.values li label {
    width: 100%;
    margin: 0;
    font-weight: normal;
}

#pageVerticalBlock #filter ul.values li label .count {
    font-size: 0.6em;
    opacity: 0.6;
}

/* Кнопка очистки занимает всю ширину любого зрительского фильтра */
#pageVerticalBlock #filter .filter-reset,
#cityFilter .filter-reset {
    width: 100%;
}

.inlineDotsSpinner {
  display: inline-flex;
  gap: 0.3em;
  align-items: center;
  vertical-align: middle;
  height: 1em;
}
.inlineDotsSpinner span {
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  background-color: #f37334;
  border-radius: 50%;
  animation: inlineDotsSpinner 1.4s ease-in-out infinite both;
}
.inlineDotsSpinner span:nth-child(1) { animation-delay: -0.32s; }
.inlineDotsSpinner span:nth-child(2) { animation-delay: -0.16s; }

@keyframes inlineDotsSpinner {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/*** Достижения ***/

#achievementsArticle {
    padding: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
    -moz-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
    box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
    margin: 0 -15px 40px -15px;
}

#achievementsArticle #achievementsCategorys .category {
    position: relative;
    margin-bottom: 10px;
    background-color: #b82c37;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
}

#achievementsArticle #achievementsCategorys a:hover { text-decoration: none; }
#achievementsArticle #achievementsCategorys .category .level { padding: 6px 10px 6px 10px; }
#achievementsArticle #achievementsCategorys .category .level.current { background-color: #53973c !important; }
#achievementsArticle #achievementsCategorys .category .level.level1 { padding-left: 10px; background-color: rgba(0, 0, 0, 0.1); }
#achievementsArticle #achievementsCategorys .category .level.level2 { padding-left: 20px; background-color: rgba(0, 0, 0, 0.3); }
#achievementsArticle #achievementsCategorys .category .level.level3 { padding-left: 30px; background-color: rgba(0, 0, 0, 0.5); }
#achievementsArticle #achievementsCategorys .category .level.level4 { padding-left: 40px; background-color: rgba(0, 0, 0, 0.7); }

#achievementsArticle .achievement {
    position: relative;
    z-index: 100;
    margin-bottom: 10px;
    min-height: 90px;
    color: rgb(68, 68, 68);
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
}

#achievementsArticle .achievement.hiddenAchievement { color: rgb(0, 153, 85); }
#achievementsArticle .achievement.secret { color: rgb(136, 0, 221); }
#achievementsArticle .achievement.normal.notComplete { color: rgba(68, 68, 68, 0.4); }
#achievementsArticle .achievement.hiddenAchievement.notComplete { color: rgba(0, 153, 85, 0.4); }
#achievementsArticle .achievement.secret.notComplete { color: rgba(136, 0, 221, 0.4); }

#achievementsArticle .achievement .shadow {
    position: absolute;
    z-index: 102;
    width: 100%;
    height: 100%;
}

#achievementsArticle .achievement.normal .shadow { background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 4px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0.1) 8px); }
#achievementsArticle .achievement.hiddenAchievement .shadow { background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.2) 0px, rgba(0, 0, 0, 0.2) 4px, rgba(0, 0, 0, 0.15) 4px, rgba(0, 0, 0, 0.15) 8px); }
#achievementsArticle .achievement.secret .shadow { background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0px, rgba(0, 0, 0, 0.25) 4px, rgba(0, 0, 0, 0.2) 4px, rgba(0, 0, 0, 0.2) 8px); }

#achievementsArticle .achievement .name {
    width: 100%;
    height: 26px;
    padding: 4px;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    background-color: #f5f5f5;
}

#achievementsArticle .achievement .description {
    width: 100%;
    padding: 4px 88px;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

#achievementsArticle .achievement .image {
    position: absolute;
    z-index: 103;
    top: 4px;
    left: 4px;
    width: 80px;
    height: 80px;
}

#achievementsArticle .achievement .score {
    position: absolute;
    z-index: 101;
    top: 4px;
    left: calc(100% - 4px - 80px);
    width: 80px;
    height: 56px;
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

#achievementsArticle .achievement.normal .score { background: url("/files/achievements/score_normal.png"); }
#achievementsArticle .achievement.hiddenAchievement .score { background: url("/files/achievements/score_secret1.png"); }
#achievementsArticle .achievement.secret .score { background: url("/files/achievements/score_secret2.png"); }

#achievementsArticle .achievement .datetimeComplete {
    position: absolute;
    z-index: 101;
    top: 64px;
    left: calc(100% - 4px - 80px);
    width: 80px;
    height: 20px;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}

.achievement-rating-table > thead > tr > th {
    text-align: center;
    vertical-align: middle;
}

/*** Аудит ***/

.audit {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 4px;
    background-color: #ffffff;
}

.audit__title {
    margin-top: 0;
    margin-bottom: 30px;
}

.audit__section {
    margin-bottom: 20px;
    box-shadow: none;
}

.audit__section:last-child { margin-bottom: 0; }

.audit__item { margin-bottom: 20px; }
.audit__item:last-child { margin-bottom: 0; }

.audit__item-title {
    display: flex;
    align-items: center;
}

.audit .checkbox-icon {
    flex: 0 0 auto;
    margin-right: 10px;
}

.audit .description {
    margin-top: 8px;
    color: #6c757d;
    font-size: 0.9em;
}

.audit .comment {
    margin-top: 8px;
    color: #17a2b8;
    font-size: 0.9em;
    font-style: italic;
}

.audit .point-item {
    margin-bottom: 8px;
    font-weight: 500;
}

.audit .qxf-checkboxOn {
    color: #28a745;
    font-size: 1.5em;
}

.audit .qxf-checkboxOff {
    color: #000000;
    font-size: 1.5em;
}


/*******************************************************************************************************************
 * todo: далее не рефакторилось
 */

@media (max-width: 991.999px) {
  .container {
    width: auto; } }
.clear {
  clear: left; }

.clear-both {
  clear: both; }

span.required, .error {
  color: #ff0000; }

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

img {
  max-width: 100%; }

.image_hall_background {
  max-width: unset;
}

/* Основные ссылки используют единый фирменный оранжевый цвет */
a, a:hover, a:focus {
  color: #f37334;
  outline: none; }

a.dashed, a.dashed:hover, a.dashed:focus {
  border-bottom: 0;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px; }

/* Поля формы отображаются без внутренней тени */
.form-control {
  border-color: #ccc;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none; }

/* Активное поле выделяется фирменной рамкой без свечения */
.form-control:focus {
  border-color: #f37334;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 none; }

.table > thead > tr > th {
  background: #f37334;
  color: #fff;
  font-weight: normal !important;
  border-bottom: none;
  padding: 8px 15px; }

.table tr td {
  padding: 8px 15px !important; }

.table-striped > tbody > tr:nth-child(2n) > td, .table-striped > tbody > tr:nth-child(2n) > th {
  background-color: #ebebeb; }

.center {
  text-align: center; }

.input-group input {
  border-right: none !important; }

.input-group-addon {
  color: #cccccc;
  font-size: 20px;
  background: #fff;
  padding: 5px 12px 6px 12px; }

.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
               supported by Chrome and Opera */ }

/* Кнопки используют единое плоское оформление */
.btn {
  background-image: none;
  border-radius: 4px;
  filter: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none; }

/* Дополнительные кнопки отображаются на нейтральном фоне */
.btn-default {
  background-color: #fff;
  border-color: #ccc;
  color: #333; }

/* Наведение связывает белые кнопки зрительской части с основным оранжевым акцентом */
.btn-default:hover {
  background-color: #fff7f2;
  border-color: #e2652b;
  color: #333; }

.btn-default:focus {
  background-color: #fff;
  border-color: #f37334;
  color: #333;
  outline: 2px solid rgba(243, 115, 52, 0.35);
  outline-offset: 1px; }

.btn-default:active,
.btn-default.active {
  background-color: #e6e6e6;
  border-color: #adadad;
  color: #333;
  outline: none; }

.btn-default.disabled,
.btn-default[disabled] {
  background-color: #fff;
  border-color: #ccc;
  color: #777; }

/* Контрастные кнопки отображаются без градиента и внутреннего свечения */
.btn-inverse {
  color: #fff;
  background-color: #86807A;
  border-color: #86807A; }

.btn-inverse:hover {
  background-color: #756f69;
  border-color: #756f69;
  color: #fff; }

.btn-inverse:focus {
  background-color: #86807A;
  border-color: #86807A;
  color: #fff;
  outline: 2px solid rgba(134, 128, 122, 0.35);
  outline-offset: 1px; }

.btn-inverse:active,
.btn-inverse.active {
  color: #fff;
  background-color: #68635e;
  border-color: #68635e;
  outline: none; }

.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #fff;
  background-color: #86807A;
  border-color: #86807A; }

/* Основные кнопки используют единый фирменный оранжевый цвет */
.btn-orange {
  color: #fff;
  background-color: #f37334;
  border-color: #f37334; }

.btn-orange:hover {
  background-color: #e2652b;
  border-color: #e2652b;
  color: #fff; }

.btn-orange:focus {
  background-color: #f37334;
  border-color: #f37334;
  color: #fff;
  outline: 2px solid rgba(243, 115, 52, 0.35);
  outline-offset: 1px; }

.btn-orange:active,
.btn-orange.active {
  color: #fff;
  background-color: #d45c23;
  border-color: #d45c23;
  outline: none; }

.btn-orange.disabled,
.btn-orange[disabled] {
  color: #fff;
  background-color: #f37334;
  border-color: #f37334; }

/* Кнопки сброса фильтра дат отображаются без теней */
.btn-orange.afisha-filter-date-clear,
.btn-orange.afisha-filter-date-clear:hover,
.btn-orange.afisha-filter-date-clear:focus,
.btn-orange.afisha-filter-date-clear:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none; }

/* Иконка сброса выравнивается по центру кнопки */
.btn-orange.afisha-filter-date-clear .qxf-reset {
  vertical-align: middle; }

/* Красные кнопки используют плоские состояния без внутреннего свечения */
.btn-red {
  color: #fff;
  background-color: #da4f49;
  border-color: #da4f49; }

.btn-red:hover {
  background-color: #c74640;
  border-color: #c74640;
  color: #fff; }

.btn-red:focus {
  background-color: #da4f49;
  border-color: #da4f49;
  color: #fff;
  outline: 2px solid rgba(218, 79, 73, 0.35);
  outline-offset: 1px; }

.btn-red:active,
.btn-red.active {
  color: #fff;
  background-color: #b93f39;
  border-color: #b93f39;
  outline: none; }

/* Недоступные красные кнопки сохраняют основной цвет */
.btn-red.disabled,
.btn-red[disabled] {
  color: #fff;
  background-color: #da4f49;
  border-color: #da4f49; }

/* Синие кнопки используют плоские состояния без внутреннего свечения */
.btn-blue {
  color: #fff;
  background-color: #49afcd;
  border-color: #49afcd; }

.btn-blue:hover {
  background-color: #399dbb;
  border-color: #399dbb;
  color: #fff; }

.btn-blue:focus {
  background-color: #49afcd;
  border-color: #49afcd;
  color: #fff;
  outline: 2px solid rgba(73, 175, 205, 0.35);
  outline-offset: 1px; }

.btn-blue:active,
.btn-blue.active {
  color: #fff;
  background-color: #318da9;
  border-color: #318da9;
  outline: none; }

/* Недоступные синие кнопки сохраняют основной цвет */
.btn-blue.disabled,
.btn-blue[disabled] {
  color: #fff;
  background-color: #49afcd;
  border-color: #49afcd; }

.btn-link {
  color: #f37334;
  text-decoration: underline; }

.btn-link:hover, .btn-link:focus {
  text-decoration: none;
  color: #f37334; }

.alert {
  border-radius: 0; }

.alert-danger {
  background: #ffb5b1;
  color: #9a100f; }

.nav-btn .btn-orange {
  position: relative; }

/* Стрелка активной кнопки повторяет цвет соответствующего состояния */
.nav-btn .btn-orange > span {
  position: absolute;
  left: 50%;
  bottom: -18px;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f37334;
  z-index: 1;
  margin-left: -10px; }

.nav-btn .btn-orange:hover > span {
  border-top: 10px solid #e2652b; }

.nav-btn .btn-orange:active > span {
  border-top: 10px solid #d45c23; }

.modal-dialog {
  max-width: 100%;
  min-width: 380px;
  background: #363636;
  padding: 10px;
  color: #fefefe;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin: 10px;
  margin-left: 0; }

.modal-content {
  max-width: 1000px;
  min-width: 320px;
  margin: auto;
  background: none;
  box-shadow: none;
  border: none; }

.modal-content .close-modal, .modal-header .close-modal {
  font-size: 45px;
  margin-top: -9px; }

.modal-header {
  border-bottom: 1px solid #4c4c4c; }

.modal-header h4 {
  color: #fff;
  font-family: "Roboto Slab", sans-serif;
  font-size: 24px; }

.modal-body {
  position: relative;
  padding: 5px 10px; }

.modal-body input[type="text"] {
  color: #666666; }

.modal-footer {
  border-top: 1px solid #4c4c4c; }

.bs-modal-lg .modal-dialog {
  width: 100%; }

.breadcrumbs {
  margin: 0 -15px 15px -15px;
  padding: 3px 0;
  background: none;
}

.breadcrumb > li + li:before { display: none; }

.breadcrumbs li:first-child a,
.breadcrumbs li:first-child > span[aria-current="page"] {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px; }

/* Стрелки хлебных крошек вырезаются прозрачными шевронами с перекрытием соседней метки при дробном масштабировании */
.breadcrumbs li > .divider {
  background: none;
  height: 23px;
  width: 15px;
  margin-left: -1px;
  margin-right: -1px;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  position: relative; }

.breadcrumbs li > .divider:before,
.breadcrumbs li > .divider:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.breadcrumbs li > .divider:before {
  background-color: #f37334;
  -webkit-clip-path: polygon(0 0, 3px 0, 10px 50%, 3px 100%, 0 100%);
  clip-path: polygon(0 0, 3px 0, 10px 50%, 3px 100%, 0 100%); }

.breadcrumbs li > .divider:after {
  background-color: #f37334;
  -webkit-clip-path: polygon(7px 0, 100% 0, 100% 100%, 7px 100%, 14px 50%);
  clip-path: polygon(7px 0, 100% 0, 100% 100%, 7px 100%, 14px 50%); }

.breadcrumbs a,
.breadcrumbs li > span[aria-current="page"] {
  color: #fff;
  font-size: 13px;
  background-color: #f37334;
  padding: 3px 15px 0 15px;
  text-decoration: none;
  height: 23px;
  vertical-align: bottom;
  display: inline-block; }

@-moz-document url-prefix() {
  .breadcrumbs a,
  .breadcrumbs li > span[aria-current="page"] { padding: 2px 15px 0 15px; } }
@media screen and (min-width: 0 \0 ) {
  .breadcrumbs a,
  .breadcrumbs li > span[aria-current="page"] { padding: 2px 15px 0 15px; } }
.breadcrumbs li:last-child a,
.breadcrumbs li:last-child > span[aria-current="page"] {
  background-color: #ffffff;
  color: #363636;
  left: 0;
  position: relative;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0; }

.breadcrumbs li:nth-last-child(2) > .divider:after {
  background-color: #ffffff; }

.breadcrumbs li:last-child > .divider {
  display: none; }

#pagination {
  text-align: center; }

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background: #f37334;
  border-color: #f37334; }

.pagination > li > a, .pagination > li > span {
  color: #f37334; }

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  color: #f34b00; }

/* Кликабельный рейтинг отображает пять векторных звёзд и количество голосов */
.rating-score {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  border-radius: 4px;
  color: inherit;
  line-height: 1;
}

a.rating-score,
a.rating-score:hover,
a.rating-score:focus {
  text-decoration: none !important;
}

a.rating-score:hover,
a.rating-score:focus {
  color: inherit;
}

a.rating-score:focus {
  outline: 2px solid #a33d0d !important;
  outline-offset: 2px;
}

.rating-score__tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 7px);
  z-index: 20;
  padding: 5px 8px;
  border-radius: 4px;
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  visibility: hidden;
  white-space: nowrap;
}

.rating-score__tooltip::after {
  position: absolute;
  top: 100%;
  right: 18px;
  border: 5px solid transparent;
  border-top-color: #333;
  content: '';
}

.rating-score:hover .rating-score__tooltip,
.rating-score:focus .rating-score__tooltip {
  opacity: 1;
  visibility: visible;
}

/* Звёзды размещаются в шестнадцатипиксельных ячейках с двухпиксельными интервалами */
.rating-score__stars {
  position: relative;
  flex: 0 0 80px;
  width: 80px;
  height: 14px;
  overflow: hidden;
  color: #b7b7b7;
}

.rating-score__stars-svg {
  display: block;
  width: 80px;
  height: 14px;
  fill: currentColor;
}

.rating-score__stars-active {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  color: #f7941d;
}

/* Количество голосов отделяется от звёзд небольшим читаемым отступом */
.rating-score__votes {
  margin-left: 4px;
  color: #666;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

#head {
  height: 80px;
  border-bottom: 1px solid #c9c9c7;
  -webkit-box-shadow: 0 1px 5px 0 rgba(56, 56, 56, 0.4);
  -moz-box-shadow: 0 1px 5px 0 rgba(56, 56, 56, 0.4);
  box-shadow: 0 1px 5px 0 rgba(56, 56, 56, 0.4);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 0 10px 0;
  margin-bottom: 15px;
  z-index: 1; }

#head .logo {
  color: #656566;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  outline: none;
  white-space: nowrap; }

#head .logo img {
  width: 233px;
  height: 60px;
  margin-right: 10px; }

#head .counter-tickets {
  white-space: nowrap;
  text-align: center; }

#head .counter-tickets p {
  color: #363636;
  font-size: 12px;
  margin-bottom: 3px; }

#head .counter-tickets .number {
  display: inline-block;
  width: 31px;
  height: 34px;
  -webkit-border-radius: 3px/3px 3px 4px 4px;
  -moz-border-radius: 3px/3px 3px 4px 4px;
  border-radius: 3px/3px 3px 4px 4px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(56, 56, 56, 0.4);
  -moz-box-shadow: 0px 1px 5px 0px rgba(56, 56, 56, 0.4);
  box-shadow: 0px 1px 5px 0px rgba(56, 56, 56, 0.4);
  margin-right: 3px; }

#head .counter-tickets .number .in {
  display: inline-block;
  width: 30px;
  height: 32px;
  -webkit-border-radius: 3px/3px 3px 4px 4px;
  -moz-border-radius: 3px/3px 3px 4px 4px;
  border-radius: 3px/3px 3px 4px 4px;
  background-color: #464545;
  -webkit-box-shadow: 1px 2px #232323;
  -moz-box-shadow: 1px 2px #232323;
  box-shadow: 1px 2px #232323;
  font-family: "Roboto Slab", sans-serif;
  font-size: 22px;
  color: #fdfdfd;
  text-shadow: 0 1px 1px rgba(59, 78, 81, 0.75);
  text-align: center; }

#head .phone {
  color: #575759;
  font-weight: bold;
  font-size: 18px;
  padding: 25px 0 0 0;
  white-space: nowrap; }

#userlogin {
  padding: 18px 0 0 0;
  text-align: right;
}

#userlogin .btn {
  margin-right: 10px;
}

#userlogin .bonus {
  font-size: 12px;
}

#userlogin .btn-group .btn {
  margin-right: 0;
}

#footer {
  position: relative;
  flex: 0 0 auto;
  padding: 15px 0 0 0;
  clear: both;
  background: #252525;
  color: #ffffff;
}

#footer a {
  color: #fff;
  text-decoration: underline;
}

/* Серые информационные блоки подвала выравнивают пиктограмму и текст независимо от ширины экрана */
#footer .quick-tickets-footer__meta {
  color: #858585;
  font-size: 12px;
}

#footer .quick-tickets-footer__meta-icon {
  width: 40px;
  height: auto;
}

#footer #copyright .quick-tickets-footer__meta-text span {
  color: #6f6f6f;
  font-size: 20px;
  font-weight: bold;
}

#footer .quick-tickets-footer__meta a { color: inherit; }

#footer .bottom {
  margin-top: 15px;
  padding-top: 15px; }

#footer .header {
  color: #6f6f6f;
  font-size: 18px;
  padding-bottom: 10px; }

#footer .menu {
  padding: 0;
  margin: 0; }

#footer .menu li {
  list-style: none;
  padding-bottom: 10px; }

#footer .menu li a {
  color: #fff;
  text-decoration: underline;
  font-size: 12px; }

#footer .menu li a:hover {
  text-decoration: underline; }

#footer .footer-payment-logo {
  display: block;
  width: auto;
  max-width: 100px;
  height: 24px; }

/* Кнопки социальных сетей используют шрифтовые иконки вместо растровых изображений */
#footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
  opacity: 0.8;
  text-decoration: none;
  outline: none; }

#footer .social-icons a:hover,
#footer .social-icons a:focus {
  opacity: 1;
  text-decoration: none; }

#footer .quick-tickets-footer-social--vkontakte { color: #0077ff; }

#footer .quick-tickets-footer-social--odnoklassniki { color: #ee8208; }

#footer .quick-tickets-footer-social--instagram { color: #e4405f; }

#footer .quick-tickets-footer-social--facebook { color: #1877f2; }

#footer .quick-tickets-footer-social--youtube { color: #ff0000; }

html, body {
  height: 100%; }

body > #wrap {
  flex: 1 0 auto;
  position: relative;
  z-index: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100% auto; }

/* JPEG остаётся запасным фоном для браузеров без поддержки image-set */
body > #wrap.site-background {
  background-image: url(../images/bg.jpg);
  background-image: image-set(
    url(../images/bg.avif) type("image/avif"),
    url(../images/bg.webp) type("image/webp"),
    url(../images/bg.jpg) type("image/jpeg")
  ); }

/* Мобильные варианты сохраняют композицию фона без загрузки исходника шириной 3072 пикселя */
@media (max-width: 767.999px) {
  body > #wrap.site-background {
    background-image: url(../images/bg-mobile.jpg);
    background-image: image-set(
      url(../images/bg-mobile.avif) type("image/avif"),
      url(../images/bg-mobile.webp) type("image/webp"),
      url(../images/bg-mobile.jpg) type("image/jpeg")
    ); }
}

/* Слой перехода располагается между фоновым изображением и содержимым страницы */
body > #wrap > .site-background-transition {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none; }

/* Мягкая дуга с короткой областью забеления плавно завершает фоновое изображение */
body > #wrap > .site-background-transition--arc {
  background: radial-gradient(ellipse 150vw 48vw at 50% 0, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0.35) 96%, #fff 97%, #fff 100%); }

body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif; }

#no-cookies {
  display: none; }

/* Общий блок подписки использует одинаковую разметку во всех зрительских разделах */
.subscription-block {
  margin-top: 10px;
  text-align: right; }

.subscription-block__content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 10px; }

.subscription-block__prompt {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: inherit;
  font-size: 16px;
  line-height: 18px;
  text-align: right; }

.subscription-block__prompt-line {
  display: block;
  white-space: nowrap; }

.subscription-block--light .subscription-block__prompt {
  color: #fff; }

.subscription-block__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #fff;
  border: 2px solid;
  border-radius: 6px;
  text-decoration: none !important; }

.subscription-block__button--vkontakte {
  border-color: #0077ff;
  color: #0077ff; }

.subscription-block__button--vkontakte:hover,
.subscription-block__button--vkontakte:focus {
  color: #0077ff; }

.subscription-block__button--max {
  border-color: #5865f2;
  color: #5865f2; }

.subscription-block__button--max:hover,
.subscription-block__button--max:focus {
  color: #5865f2; }

.subscription-block__button:hover,
.subscription-block__button:focus {
  background-color: #f7f7f7;
  outline: 2px solid rgba(243, 115, 52, 0.3);
  outline-offset: 2px; }

.subscription-block__icon {
  display: block;
  width: auto;
  height: 20px; }

.subscription-block__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1; }

@media print {
  .subscription-block__button {
    display: none !important; }
}

#content {
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  margin: 0 -15px 40px -15px; }

.col-left {
  background: #ebebeb;
  -webkit-box-shadow: inset -1px 0 3px rgba(156, 153, 122, 0.2);
  -moz-box-shadow: inset -1px 0 3px rgba(156, 153, 122, 0.2);
  box-shadow: inset -1px 0 3px rgba(156, 153, 122, 0.2);
  padding: 10px; }

.col-right {
  padding: 10px;
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0; }

.col-content {
  background: rgba(250, 247, 243, 0.95) !important; }

#article {
  padding: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  margin: 0 -15px 40px -15px; }

#article h1 {
  color: #000;
  font-family: "Roboto Slab", sans-serif;
  font-size: 24px;
  margin: 0 0 20px 0;
  font-weight: 500; }

#article h2 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-top: 0; }

#article h3 {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  margin-top: 0; }

#article h4 {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-top: 0; }

#article h5 {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin-top: 0; }

#article h6 {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0; }

#how-text .how-header {
  color: #DC4400;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  margin: 0 0 10px;
  text-align: right; }

#how-text .how-number {
  color: #DC4400;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  margin: 0 0 10px; }

#how-text .how-separator {
  background-color: #E8E8E8;
  height: 1px;
  margin: 0 auto 10px;
  width: 100%; }

#how-text .s {
  color: #5F5F5F;
  margin: 0 0 10px; }

#how-text .t {
  font-size: 18px;
  line-height: 24px;
  margin-right: 480px; }

#how-text .t2 {
  margin: 0; }

#how-text .i {
  float: right; }

#how-text .i img {
  border: 1px dashed #D5BEB4;
  max-width: 450px;
  padding: 7px; }

#how-text .c {
  font-size: 12px;
  line-height: 14px;
  margin: 15px 0 0;
  text-align: justify; }

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ". ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.owl-nav > div {
  display: block;
  width: 11px;
  height: 17px;
  color: #636363;
  font-size: 0;
  line-height: 17px;
  text-align: center; }

.owl-nav > div:before {
  display: block;
  font-family: "Quick X Icons";
  font-size: 40px;
  font-style: normal;
  font-weight: normal;
  line-height: 17px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.owl-nav .owl-prev {
  position: absolute;
  top: 85px;
  left: -8px; }

.owl-nav .owl-prev:before {
  content: "\e077"; }

.owl-nav .owl-next {
  position: absolute;
  top: 85px;
  right: -8px; }

.owl-nav .owl-next:before {
  content: "\e075"; }

.owl-nav > div:hover {
  color: #F37030; }

.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item > div {
  margin: 0 10px; }

#organisation {
  margin: 0 -15px 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3); }

#organisation .head {
  margin: 0;
  z-index: 1;
  position: relative; }

#organisation .head-in {
  background: #fff;
  -moz-box-shadow: 0 2px 4px rgba(56, 56, 56, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(56, 56, 56, 0.2);
  box-shadow: 0 2px 4px rgba(56, 56, 56, 0.2);
  padding: 15px 15px 10px 15px; }

#organisation .head .info .title {
  color: inherit;
  text-decoration: none !important; }

#organisation .head .info .i {
  width: 155px;
  padding-right: 15px;
  text-align: center;
}

#organisation .head .info .i img {
  border: 1px solid #ebebeb;
}

#organisation .head .info td {
  vertical-align: top; }

/* Основная шапка организации располагает логотип и данные в независимых областях сетки */
#organisation > .head .organisation-head__layout {
  display: grid;
  grid-template-areas: "logo content";
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 15px;
  align-items: start;
  width: 100%; }

/* Логотип сохраняет исходный размер и не сжимает текстовую область */
#organisation > .head .organisation-head__layout > .organisation-head__logo {
  grid-area: logo;
  width: auto;
  min-width: 0;
  padding-right: 0; }

#organisation > .head .organisation-head__logo a,
#organisation > .head .organisation-head__logo img {
  display: block;
  max-width: 100%;
  height: auto; }

/* Правая колонка отделяет внутренний вертикальный ритм от высоты логотипа */
#organisation > .head .organisation-head__content {
  grid-area: content;
  min-width: 0; }

/* Длинное название переносится внутри доступной ширины шапки */
#organisation > .head .organisation-head__identity {
  grid-area: identity;
  min-width: 0;
  overflow-wrap: anywhere; }

#organisation > .head .organisation-head__rate {
  grid-area: rate; }

/* Контакты переносятся между логическими блоками без горизонтального переполнения */
#organisation > .head .organisation-head__contacts {
  grid-area: contacts;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  min-width: 0;
  margin-top: 10px; }

#organisation > .head .organisation-head__contacts .phones,
#organisation > .head .organisation-head__contacts .city {
  float: none;
  min-width: 0;
  margin: 0;
  padding: 0; }

#organisation > .head .organisation-head__contacts .city {
  flex: 1 1 280px;
  overflow-wrap: anywhere;
  white-space: normal; }

/* Описание и подписка занимают всю текстовую область под контактами */
#organisation > .head .organisation-head__params {
  grid-area: params;
  min-width: 0;
  margin-top: 10px;
  padding-bottom: 20px;
  overflow-wrap: anywhere; }

#organisation .head h2,
#organisation .head .organisation-head__name,
#organisation .head .event-organisation-head__name {
  color: #000;
  font-family: "Roboto Slab", sans-serif;
  font-size: 24px;
  margin: 0; }

#organisation .head .s {
  font-size: 13px; }

#organisation .contacts {
  font-size: 13px;
  padding: 0;
  margin: 0;
  font-family: 'Roboto Slab', sans-serif;
  color: #363636; }

#organisation .contacts .phones {
  white-space: nowrap;
  padding: 0;
  float: left;
  margin-right: 20px; }

#organisation .contacts .city {
  white-space: nowrap;
  padding: 0;
  float: left; }

#organisation .params {
  color: #000;
  font-size: 13px; }

#organisation .params strong {
  color: #000;
  font-size: 20px;
  font-weight: 400; }

#organisation .navigation {
  padding-top: 20px; }

#organisation .rate,
#organisation .nav-btn {
  text-align: right; }

#organisation .reviews {
  color: #888;
  font-size: 13px;
  text-decoration: underline;
}

#organisation .reviews:hover {
  text-decoration: none;
}

#organisation .body {
  margin: -5px 0 0 0;
  padding: 5px 0;
}

/* Афиша организации не использует компенсирующие отступы общего блока содержимого */
#organisation .body.organisation-afisha__body {
  margin: 0;
  padding: 0; }

#organisation .body > .row {
  margin: 0; }

/* Информеры и список мероприятий занимают только правую область афиши */
#organisation .organisation-afisha__content {
  padding: 0; }

#organisation .organisation-afisha__events {
  padding: 0 10px; }

#organisation #elems-list .sessions {
  width: 100%; }

#organisation #elems-list .sessions--hidden {
  display: none; }

#organisation #elems-list .session-sold-label {
  color: #888888; }

#organisation .reviews-list__answer-spacer {
  height: 10px; }

#organisation .organisation-contact__map {
  width: 100%;
  height: 435px; }

#organisation .loyalty-card-request__message {
  font-size: 18px; }

#organisation .loyalty-card-request__form {
  padding: 15px; }

@media (max-width: 767.999px) {
  /* На узком экране фильтр организации располагается перед результатами */
  #organisation .organisation-afisha__layout {
    display: flex;
    flex-direction: column; }

  #organisation .organisation-afisha__filter,
  #organisation .organisation-afisha__content {
    float: none;
    width: 100%; }

  /* Фильтр и результаты используют единую подложку без лишнего нижнего перехода */
  #organisation .organisation-afisha__filter {
    padding-bottom: 0;
    background: transparent; }

  #organisation .organisation-afisha__filter > .quick-tickets-filter-panel {
    margin-bottom: 0; }
}

#organisation .description {
  color: #000;
  font-size: 13px; }

/* rating */
.org-like {
  margin-right: 20px;
}
.org-like a {
  font-size: 18px;
  padding: 3px 0 3px 5px;
  text-decoration: none;
  cursor: pointer;
}
.org-like a.like { font-weight: bold; color: #179347; }
.org-like a.dislike { font-size: 14px; color: var(--quick-tickets-color-text-muted, #6f6f6f); }

#organisation .organisation-reviews {
  padding-top: 20px; }

#organisation .organisation-reviews h2 {
  font-family: "Roboto Slab", sans-serif;
  color: #000;
  font-size: 24px;
  margin: 0 35px 15px 0; }

/* Отзывы */

#organisation .review-filter {
  margin-top: 20px;
  padding: 0; }

#organisation .review-filter li {
  list-style: none; }

#organisation .review-filter li.icon-negative div {
  border-bottom: none;
}

#organisation .review-filter div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dfdddc;
  color: #b7b7b7;
  font-size: 15px;
  padding: 12px;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

/* Фильтр использует единые шрифтовые значки типов отзывов */
#organisation .review-filter .qxf {
  flex: 0 0 20px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

#organisation .review-filter li.active div, #organisation .review-filter li div:hover {
  background-color: #fff;
  border-left: 3px solid #f37133;
  color: #000;
}

#organisation .btn-review {
  width: 100%;
}

#organisation .organisation-reviews .count {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-color: #cbcbc9;
  -moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(57, 75, 79, 0.2);
  -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(57, 75, 79, 0.2);
  box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(57, 75, 79, 0.2);
  color: #fff;
  font-family: "Roboto Slab";
  font-size: 16px;
  padding: 3px 10px;
}

#organisation .reviews-list {
  padding: 20px 0;
}

#organisation .reviews-list .review {
  border: 1px solid #ececec;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
}

#organisation .reviews-list .item .h .a {
  color: #000;
  font-size: 18px;
}

#organisation .reviews-list .item .e {
  color: #888;
  font-size: 13px;
  padding: 5px 0 0 0;
}

#organisation .reviews-list .item .c {
  padding: 10px 0 0 0;
}

#organisation .reviews-list .item .h .review-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

#organisation .review-filter .qxf-positiveReview,
#organisation .reviews-list .item .h .qxf-positiveReview {
  color: #179347;
}

#organisation .review-filter .qxf-negativeReview,
#organisation .reviews-list .item .h .qxf-negativeReview {
  color: var(--quick-tickets-color-text-muted, #6f6f6f);
}

#organisation .reviews-list .item .h .d {
  color: #b7b7b7;
  font-size: 13px;
  float: right;
  display: block;
}

#organisation .reviews-list .answer {
  background: #ececec;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  margin: 0 0 10px 60px;
  position: relative;
}

#organisation .reviews-list .answer-pre {
  width: 30px;
  height: 50px;
  border-bottom: 1px solid #cbcbca;
  border-left: 1px solid #cbcbca;
  float: left;
  margin-left: 20px;
}

#organisation .review-inform {
  font-size: 13px;
  color: #898989;
  text-align: center;
  margin: 10px 0;
}

.organisation__material {
  padding: 20px; }

#modalReview .modal-dialog {
  width: 100%; }

#modalReview .modal-content {
  max-width: 1000px; }

#modalReview h4 {
  color: #fff;
  font-family: "Roboto Slab", sans-serif;
  font-size: 24px; }

#modalReview .btn-type-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px; }

#modalReview .btn-type-reviews .btn {
  border: 2px solid #4f4f4f;
  margin-right: 0;
  color: #888888; }

#modalReview .btn-type-reviews .btn-active {
  background: #f37133;
  color: #fff;
  border: 2px solid #f37133; }

#organisation .organisation-contacts h2 {
  color: #000;
  font-family: "Roboto Slab", sans-serif;
  font-size: 24px;
  margin: 0 0 15px 0; }

#organisation .organisation-contacts .col-xs-6 {
  padding-top: 20px; }

#organisation .organisation-contacts .icons {
  list-style: none;
  padding: 0; }

#organisation .organisation-contacts .icons li {
  margin-bottom: 20px; }

#organisation .organisation-contacts .icons li:last-of-type {
  margin: 0; }

/* Иконка и заголовок контакта образуют единую выровненную строку */
#organisation .organisation-contacts .icons strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f37334;
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 8px; }

#organisation .organisation-contacts .organisation-contact__icon {
  flex: 0 0 28px;
  width: 28px;
  font-size: 28px;
  line-height: 1;
  text-align: center; }

#organisation .organisation-contacts .icons p {
  font-size: 14px;
  color: #000;
  margin: 10px 0 0 0; }

#organisation .organisation-contacts .icons p a {
  color: #000; }

#organisation .organisation-contacts .social {
  margin-bottom: 30px;
  line-height: 30px;
  color: #6f6f6f;
  font-size: 14px; }

.organisation-contacts__social {
  margin-bottom: 10px; }

#gallery,
#videos {
  max-width: 100% !important; }

#videos .ug-thumb-right {
  overflow: hidden;
  height: 50px; }

/* Информационные блоки отделяются нейтральной рамкой без тени */
.box {
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  -webkit-box-shadow: none;
  box-shadow: none; }

/* Заголовки информационных блоков используют фирменный цвет как спокойный акцент */
.box .header {
  position: relative;
  background: #fff;
  border: 0;
  color: #454545;
  font-family: "Roboto Slab", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 14px 11px 30px;
  text-align: left;
  text-transform: none; }

.box .header:before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 4px;
  height: 20px;
  background: #f37334;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: ""; }

.box > a {
  display: block;
  text-decoration: none; }

.box > a:hover .header,
.box > a:focus .header {
  background: #fff8f4; }

.box .in {
  background: #fff;
  padding: 14px;
  margin-bottom: 0; }

/* Информационные секции левой колонки объединяются общей белой рамкой */
.city-sidebar-boxes {
  overflow: hidden;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px; }

.city-sidebar-boxes .box {
  margin-bottom: 0;
  border: 0;
  border-radius: 0; }

.cities-list--hidden {
  display: none; }

/* Первое содержимое каждой секции располагается на едином расстоянии от заголовка */
.city-sidebar-boxes .box .in {
  padding-top: 8px; }

.news-list .item:first-child {
  padding-top: 0; }

.news-list .item {
  border-bottom: 1px solid #ececec;
  padding: 12px 0; }

.news-list .item:last-of-type {
  border-bottom: none !important; }

.news-list .item a,
.news-list .item a:hover,
.news-list .item a:focus {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px; }

.news-list .item img {
  margin-bottom: 5px; }

.news-list .item .d {
  font-size: 12px;
  color: #888888;
  margin-bottom: 10px; }

.news-list .item .t {
  margin-bottom: 7px; }

.news-list .item .t a {
  color: #f37334;
  font-size: 15px; }

.news-list .item .i {
  font-size: 13px;
  color: #000;
  margin-bottom: 7px; }

.news-list .item .i p {
  margin: 0; }

.news-list .item .i a {
  color: #f37334; }

.news-list .item .m {
  font-size: 13px; }

.news-list .text-right {
  margin: 10px 10px 0 10px; }

.archive-list .i {
  border-bottom: 1px solid #ececec;
  margin-bottom: 30px;
  padding-bottom: 20px; }

/* Список организаций, трансляций, мероприятий, шаблонов абонементов */

#elems-list .elem a:not(.quick-tickets-session-option__link):not(.quick-tickets-session-option__secondary-link) {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

#elems-list .elem a:not(.quick-tickets-session-option__link):not(.quick-tickets-session-option__secondary-link):hover,
#elems-list .elem a:not(.quick-tickets-session-option__link):not(.quick-tickets-session-option__secondary-link):focus {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

#elems-list .elem {
  padding: 20px 0;
  font-size: 18px;
}

/* Карточки города и общей афиши используют гибкую раскладку изображения и содержимого */
#elems-list.type_1 > .elem > .elem__body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Карточки мероприятий организации используют ту же двухколоночную структуру */
#organisation #elems-list > .elem {
  display: grid;
  grid-template-columns: minmax(100px, 150px) minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

#elems-list .elem .i {
  text-align: center;
}

#elems-list.type_1 > .elem > .elem__body > .i,
#organisation #elems-list > .elem > .i {
  width: 150px;
  max-width: 150px;
  min-width: 100px;
}

#elems-list.type_1 > .elem > .elem__body > .i {
  flex: 0 1 150px;
}

/* Переопределяем встроенный максимальный размер изображения при сжатии колонки */
#elems-list.type_1 > .elem > .elem__body > .i img,
#organisation #elems-list > .elem > .i img {
  display: block;
  max-width: 100% !important;
  height: auto;
  margin: 0 auto;
}

#elems-list .elem .c {
  min-width: 0;
  overflow-wrap: anywhere;
}

#elems-list.type_1 > .elem > .elem__body > .c {
  flex: 1 1 0;
}

#elems-list.type_1 > .elem > .elem__body > .clear,
#organisation #elems-list > .elem > .clear {
  display: none;
}

#elems-list .elem .r {
  float: right;
}

/* Пустой блок рейтинга не сокращает доступную ширину заголовка */
#elems-list .elem .r:empty {
  display: none;
}

#elems-list .elem .r:empty + h3 {
  margin-right: 0;
}

#elems-list .elem h3 {
  margin: 0 0 7px 0;
  font-family: "Roboto Slab", sans-serif;
  font-size: 18px;
}

#elems-list .elem .r + h3 {
  margin: 0 100px 7px 0;
  min-height: 29px;
}

/* Названия карточек сохраняют оформление заголовка во всех состояниях */
#elems-list .elem h3 a,
#elems-list .elem h3 a:hover,
#elems-list .elem h3 a:focus,
#elems-list .elem h3 a .underline,
#elems-list .elem h3 a:hover .underline,
#elems-list .elem h3 a:focus .underline {
  text-decoration: none; }

#elems-list .elem h3 .label {
  font-size: 13px;
  position: relative;
  top: -1px;
}

#elems-list .elem .more {
  font-size: 13px;
}

#elems-list .elem .b {
  margin: 10px 0 5px 0;
  color: #515151;
  font-size: 18px;
}

#elems-list .elem .b a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #515151; }

#elems-list .elem .b i {
  font-size: 22px;
  position: static;
  flex: 0 0 auto;
}

#elems-list .elem .sessions {
  font-size: 14px;
  margin: 0;
}

/* Cписок чего либо (организаций, мероприятий, трансляций) */

#elems-list.type_1 {
  margin-top: 20px;
}

#elems-list.type_1 .elem {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  padding: 0;
  margin-bottom: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}

#elems-list.type_1 .elem .elem__body {
  padding: 14px;
}

#elems-list.type_1 .elem .d {
  font-size: 14px;
}

/* Описания мероприятий организации используют размер текста общих карточек */
#organisation #elems-list .elem .d {
  font-size: 14px;
  line-height: 20px; }

/* Нижняя панель карточки сохраняет отзывы слева и действие покупки справа */
#elems-list.type_1 .elem .footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #ececec;
  border-radius: 0 0 5px 5px;
  padding: 0 0;
}

/* Кнопка покупки использует состояния основной плоской кнопки */
#elems-list.type_1 .elem .footer .buy {
  order: 2;
  float: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: #fff;
  padding: 13px 15px;
  background: #f37334;
  border-radius: 0 0 5px 0;
  text-decoration: none;
  font-size: 14px;
}

#elems-list.type_1 .elem .footer .buy:hover {
  background: #e2652b;
  color: #fff; }

#elems-list.type_1 .elem .footer .buy:focus {
  background: #f37334;
  color: #fff;
  outline: 2px solid rgba(243, 115, 52, 0.35);
  outline-offset: 1px; }

#elems-list.type_1 .elem .footer .buy:active,
#elems-list.type_1 .elem .footer .buy.active {
  background-color: #d45c23;
  outline: none; }

#elems-list.type_1 .elem .footer .reviews {
  order: 1;
  min-width: 0;
  float: none;
  padding: 10px 15px;
}

#elems-list.type_1 .elem .footer > .clearfix {
  display: none;
}

#elems-list.type_1 .elem .footer .reviews .org-like {
  padding-right: 30px;
}

#elems-list.type_1 .elem .footer .reviews .org-like a {
  text-decoration: none;
}

#elems-list.type_1 .elem .footer .reviews .total {
  font-size: 13px;
  color: #888888;
  text-decoration: underline;
}

#elems-list.type_1 .elem .footer .reviews .total:hover {
  text-decoration: underline;
}

/* Стили для организаций */

#elems-list.organisation .elem .c a {
  color: #f37334;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

#elems-list.organisation .elem .c h3 a,
#elems-list.organisation .elem .c h3 a:hover,
#elems-list.organisation .elem .c h3 a:focus {
  text-decoration: none;
}

#elems-list.organisation .elem .c a:not(.quick-tickets-session-option__link):not(.quick-tickets-session-option__secondary-link):hover,
#elems-list.organisation .elem .c a:not(.quick-tickets-session-option__link):not(.quick-tickets-session-option__secondary-link):focus {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ... */

#elems-list .show-all, #elems-list .show-near {
  border-bottom: 0;
  text-decoration-line: underline !important;
  text-decoration-style: dashed !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px; }

#elems-list .show-all:hover, #elems-list .show-near:hover {
  border-bottom: 0; }

.event-head {
  margin: 0;
  padding-bottom: 5px;
  z-index: 1;
  position: relative; }

.event-head .event-head-in {
  background: #252525;
  padding: 15px;
  -moz-box-shadow: 0 2px 4px rgba(56, 56, 56, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(56, 56, 56, 0.2);
  box-shadow: 0 2px 4px rgba(56, 56, 56, 0.2); }

.event-head a {
  text-decoration: underline; }

.event-head a:hover {
  text-decoration: underline; }

.event-head .i {
  width: 160px;
  padding-right: 10px;
  text-align: center;
  float: left;
}

.event-head .c {
  margin-left: 175px; }

.event-head h1, .event-head h1 a {
  margin: 0 100px 7px 0;
  color: #fff;
  font-family: "Roboto Slab", sans-serif;
  font-size: 30px;
  text-decoration: none; }

.event-head h1 .label {
  font-size: 13px;
  position: relative;
  top: -3px; }

.event-head .d {
  font-size: 13px;
  color: #fff; }

.order-action .rules { margin-top: 10px; }

.order-action .rules label {
  color: #848585;
  font-size: 12px;
  font-weight: normal;
}

.order-action .rules a {
  text-decoration: underline;
}

.order-action .rules a:hover {
  text-decoration: underline;
}













.hall {
  position: relative; }

.hall * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; }

.hall .r {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 1px 1px 0 #e5e5e5;
  color: #fff; }

.hall .r i {
  line-height: inherit; }

.hall .o {
  position: absolute; }

.hall .o img {
  line-height: 0;
  margin-top: 0; }

.hall .qxf-check,
.hall .c99 > span {
  display: none; }

.hall .c99 > i {
  display: inline-block; }

.hall .disabled {
  background: #9e9a97; }

/* colors */
.color_choice, .hall .c99 {
  background: #348940; }

.color_buy, .hall .c1 {
  background: #9e9a97; }

.color_book, .hall .c2 {
  background: #9e9a97; }

.color_timebook, .hall .c8 {
  background: #F4A764; }

#profile {
  background: #faf7f3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  box-shadow: 0 1px 5px rgba(56, 56, 56, 0.3);
  margin-bottom: 40px; }

#profile h1 {
  margin-bottom: 0;
  line-height: 26px;
  margin-top: 5px;
}

#profile .col-content {
  background: #faf7f3 !important;
}

.profile-menu {
  margin: 0 -15px;
}

.profile-menu__nav {
  -moz-box-shadow: 0 0 4px rgba(56, 56, 56, 0.3);
  -webkit-box-shadow: 0 0 4px rgba(56, 56, 56, 0.3);
  box-shadow: 0 0 4px rgba(56, 56, 56, 0.3);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.profile-menu__item {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  border-right: 1px solid #ececec;
  background: #fff;
  height: 48px;
}

.profile-menu__item a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b5b5b5;
  font-size: 16px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 100%;
  height: 49px;
  text-decoration: none;
  border-bottom: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.profile-menu__item a > i {
  flex: 0 0 auto;
  line-height: 1;
}

.profile-menu__item_active > a, .profile-menu__item_active > a:hover, .profile-menu__item_active > a:focus {
  border: none !important;
  background: #f7f7f7;
  border-bottom: 3px solid #f37031 !important; }

.profile-menu__item_active > a, .profile-menu__item > a:hover {
  color: #575759; }

.profile-content {
  margin: 0 -15px;
  padding: 15px; }

.profile-content h1 {
  margin-bottom: 10px; }

.profile-content h2 {
  color: #000;
  font-family: "Roboto Slab", sans-serif;
  font-size: 26px;
  margin-top: 0; }

.profile-content label {
  color: #888888;
  font-weight: normal; }

.profile-table td {
  vertical-align: middle;
  color: #000; }

.profile-table td img {
  border: 1px solid #e8dee0;
  margin-right: 15px; }

.profile-table a {
  color: #000; }

.social-user tr td {
  padding: 10px !important;
  border-bottom: 1px solid #eaeaea; }

td.social-user__icon {
  padding: 5px !important; }

/* Пользовательское соглашение */
.profile__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.profile__user_agreement {
  max-width: 550px;
  text-align: right;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 15px;
  width: 100%;
}

.user_agreement_checkbox {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  order: 1;
}

.user_agreement_label {
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  text-align: right;
  order: 0;
}

.user_agreement_label a {
  color: #f36c2b;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.user_agreement_label a:hover {
  color: #ff490c;
  text-decoration-color: #ff490c;
}

.profile__save {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.profile__form-group {
  width: 100%;
}

.big-balance {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #f37334;
  padding: 3px; }

.big-balance .h {
  color: #fff;
  font-family: "Roboto Slab", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0; }

.big-balance .c {
  background: #fff;
  text-align: center;
  font-size: 60px; }

#organisation #order-create .head, #organisation #collective-order-view .head {
  padding-bottom: 0; }

#order-create .order-content, #collective-order-view .collective-order-content {
  min-height: 200px;
  padding: 15px;
  margin: -5px 0 0 0; }

#timer {
  float: right; }

#timer .i {
  color: #5c5c5c;
  font-size: 13px;
  padding-right: 10px; }

#timer span {
  color: #f37133;
  font-size: 38px;
  font-weight: 300;
  margin-right: 10px;
}

#orderAnytickets .t {
  color: #a8aeae;
  margin-bottom: 7px;
}

#orderAnytickets span { color: #fff; }

#order-create .payments .h:hover { border: none; }

#order-create .order-fields h4 { margin-left: -15px; }

#order-create .order-fields {
  padding: 0 30px;
}

#order-create .order-fields label {
  color: #888888;
  font-weight: normal;
}

#order-create .order-fields .required { color: #ff0000; }

#order-create .order-fields .help-block {
  margin-bottom: 0;
  font-size: 12px;
}

#order-create .order-fields .form-group { margin-bottom: 10px; }

#order-create .order-fields .form-group .alert.alert-warning {
  padding: 5px 6px 2px 6px;
  margin-bottom: 5px;
}

#order-create .order-action {
  padding-top: 12px;
}

#order-create .order-action .btn-cancel {
  color: #808080;
  text-decoration: underline;
  margin-right: 10px;
}

#order-create .order-action .btn-cancel:hover { text-decoration: underline; }

/* Стоимость заказа и скидки */
.order-total {
  background: #363636;
  margin: 0 !important; }

.orderTotalLeft {
  background: #363636;
  color: #fff;
  text-align: right;
  padding: 10px 30px 10px 10px;
  min-height: 140px;
  margin-right: 200px;
}

.orderTotalPrices {
  float: right;
  min-width: 200px; }

/* Регистр подписи итога сохраняется из текста шаблона */
.orderTotalPricesTotal {
  border-top: 1px solid #8f8f8f;
  padding: 10px 0 0 0;
  font-size: 20px;
  text-transform: none; }

.orderTotalPricesTotal span {
  color: #f47a42; }

.orderTotalPricesTotal small, .orderTotalPricesTotal small span {
  font-size: 12px;
  text-transform: none;
  color: #ff0000; }

.orderTotalPricesRow {
  color: #8f8f8f;
  font-size: 16px;
  margin-bottom: 10px; }

.orderTotalPricesRow strong {
  font-weight: normal;
  color: #fff; }

.order-total__right {
  padding: 0;
  height: 140px;
  width: 200px;
  float: right;
}

.order-total__bonus-arrow {
  border-right: 30px solid transparent;
  border-top: 70px solid #f47a42;
  border-left: 30px solid #f47a42;
  border-bottom: 70px solid #f47a42;
  float: right;
  min-height: 140px;
  margin-right: -29px;
}

.order-total__bonus {
  background: #f47a42;
  padding: 10px 0 0 40px;
  min-height: 140px;
  margin-right: 30px;
  text-align: center; }

#profile #order .col-content {
  background: #fff !important;
  min-height: 300px; }

#order .order-btns {
  padding-bottom: 20px; }

.quick-tickets-code128 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 75px;
  height: 145px;
  margin-right: auto;
  margin-left: auto;
  line-height: 0;
}

.quick-tickets-code128__image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 145px;
  max-width: none;
  height: 75px;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}

/* Подтверждение */
.tickets-container .ticket {
  width: 600px;
  border: 1px dotted #3E3E3E;
  border-collapse: separate;
  font-size: 11px;
  margin: 0 0 20px;
  color: #000;
}

.tickets-container .ticket td { padding: 5px; }

.tickets-container .ticket .barcode,
.tickets-container .ticket .control {
  width: 90px;
  vertical-align: top;
  position: relative;
  box-sizing: content-box;
}

/* Настраиваем отображение логотипа организации по низу */
.tickets-container .ticket .control .organisationLogo {
  width: 90px;
  margin-top: 5px;
}

.tickets-container .ticket .barcode .qtf.qtf-pushkinCard,
.tickets-container .ticket .barcode .qtf.qtf-lavrentevCard {
  font-size: 6em;
}

.tickets-container .ticket .info { border-right: 1px dotted #3E3E3E; height: auto; }

.tickets-container .ticket .info td {
  padding: 0;
}

.tickets-container .ticket .info th {
  padding: 0 5px 0 0;
  text-align: right;
}

.tickets-container .ticket .additionalInfo {
  font-size: 14px;
  background-color: #eeeeee;
  color: #333333;
  text-align: center;
}
.tickets-container .ticket .additionalInfo td {
  text-align: center;
}

.tickets-container .ticket .pushkin {
  font-size: 16px;
  font-weight: bold;
  background-color: #333333;
  color: white;
  text-align: center;
}

.tickets-container .ticket .lavrentevCard {
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 51, 0.2);
  color: white;
  text-align: center;
}

.tickets-container .ticket .pushkin  td{ text-align: center; }

.tickets-container .ticket .info .pushkin td { padding: 5px; }

.tickets-container .ticket .code {
  font-size: 38px;
  line-height: 38px;
  padding: 5px 0 5px 5px;
}

/* Сокращённое подтверждение */
.short-tickets-container .ticket {
  width: 100%;
  border: 1px dotted #3E3E3E;
  border-collapse: separate;
  font-size: 11px;
  margin: 0 0 10px;
  color: #000;
}

.short-tickets-container .ticket td { padding: 5px; }

.short-tickets-container .ticket .barcode,
.short-tickets-container .ticket .control {
  width: 90px;
  vertical-align: top;
  position: relative;
  box-sizing: content-box;
}

/* Настраиваем отображение логотипа организации по низу */
.short-tickets-container .ticket .control .organisationLogo {
  width: 90px;
  margin-top: 5px;
}

.short-tickets-container .ticket .barcode .qtf.qtf-pushkinCard,
.short-tickets-container .ticket .barcode .qtf.qtf-lavrentevCard {
  font-size: 2em;
}

.short-tickets-container .ticket .info { border-right: 1px dotted #3E3E3E; height: auto; }

.short-tickets-container .ticket .info td {
  padding: 0;
}

.short-tickets-container .ticket .info th {
  padding: 0 5px 0 0;
  text-align: right;
}

.short-tickets-container .ticket .additionalInfo {
  font-size: 14px;
  background-color: #eeeeee;
  color: #333333;
  text-align: center;
}
.short-tickets-container .ticket .additionalInfo td {
  text-align: center;
}

.short-tickets-container .ticket .pushkin {
  font-size: 16px;
  font-weight: bold;
  background-color: black;
  color: white;
  text-align: center;
}

.short-tickets-container .ticket .pushkin td { text-align: center; }

.short-tickets-container .ticket .info .pushkin td { padding: 5px; }

.short-tickets-container .ticket .code {
  font-size: 38px;
  line-height: 38px;
  padding: 5px 0 5px 5px;
}

/* Стили окна подтверждения */
#checkModal .message { color: #ff0000; }

#checkModal .modal-dialog { width: 100%; }

#checkModal .modal-content { max-width: 600px; }

/* Типы оплаты */
.order-payment_method__instruction {
  font-size: 13px;
  border-bottom: 0;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px; }

.order-payment_method__instruction:hover {
  border-bottom: 0;
}

.showOtherPaymentTypes {
  cursor: pointer;
  color: #696969;
  font-size: 12px;
  text-align: left;
}
.showOtherPaymentTypes span{
  border-bottom: 1px dashed #696969;
}

.payments-types__item {
  width: 144px;
  height: 132px;
  margin: 12px 15px 0 0;
  display: inline-block;
}

.payments-type {
  width: 144px; height: 104px;
  padding: 5px;
  border: 2px solid #ececec;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
}

.payments-type_sbp {
  background: url(/files/images/logo-sbp.svg) center center no-repeat;
  background-size: 130px auto;
}
.payments-type_digital-ruble {
  background: url(/files/images/logo-digital-ruble.svg) center center no-repeat;
  background-size: auto 90px;
}
.payments-type_bankcard {
  background: url(/files/images/logo-bankcard-mir-visa-mastercard.svg) center center no-repeat;
  background-size: 130px auto;
}
.payments-type_pushkin-bankcard, .payments-type_pushkin-bankcard-for-cinema {
  background: url(/files/images/logo-pushkincard.svg) center center no-repeat;
  background-size: auto 90px;
}
.payments-type_lavrentev-card {
  background: url(/files/images/logo-lavrentevcard.svg) center center no-repeat;
  background-size: auto 90px;
}
.payments-type_settlement-solutions-citizen-card {
  background: url(/files/images/logo-settlement-solutions-citizen-card.svg) center center no-repeat;
  background-size: auto 90px;
}
.payments-type_bonus {
  background: url(/files/images/logo-quick-service-bonus.svg) center center no-repeat;
  background-size: auto 90px;
}

.payments-type:hover { border-color: #c7c7c9; }
.payments-type_selected { background-color: #fff !important; border-color: #f47a42 !important; }

.payments-types__item .payments-markup { text-align: center; font-size: 12px; line-height: 14px; }

.payments-type_more {
  background: #ececee;
  border: 2px solid #ececec;
  text-align: center;
  font-size: 12px;
  color: #999; }

/* promocode, certificate */

#orderMoroshka, #orderPromocode, #orderCertificates { margin: 0 0 20px 0; }

#orderPromocodeHow, #orderCertificatesHow {
    font-size: 13px;
    border-bottom: 0;
    text-decoration-line: underline !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 2px;
}

#orderPromocodeHow:hover, #orderCertificatesHow:hover { border-bottom: 0; }

#orderPromocodeForm #orderPromocodeCode, #orderCertificatesForm #orderCertificatesCodes {
    width: calc(100% - 110px - 6px);
    display: inline;
}

#orderPromocodeForm #orderPromocodeActivate, #orderPromocodeForm #orderPromocodeDeactivate,
#orderCertificatesForm #orderCertificatesActivate, #orderCertificatesForm #orderCertificatesDeactivate {
  min-width: 110px;
}

#orderPromocodeForm button, #orderCertificatesForm button { margin-top: -3px; }

#orderPromocodeForm #orderPromocodeDeactivate,
#orderCertificatesForm #orderCertificatesDeactivate
{ display: none; }

#orderMoroshkaForm .alert,
#orderExemptionForm .alert,
#orderPromocodeForm .alert,
#orderLoyaltySystem .alert,
#orderCertificatesForm .alert
{
  padding: 5px 6px;
  margin: 5px 0 5px 0;
}

#orderMoroshkaForm #orderMoroshkaSuccess, #orderMoroshkaForm #orderMoroshkaWarning, #orderMoroshkaForm #orderMoroshkaError,
#orderExemptionForm #orderExemptionSuccess, #orderExemptionForm #orderExemptionWarning, #orderExemptionForm #orderExemptionError,
#orderPromocodeForm #orderPromocodeSuccess, #orderPromocodeForm #orderPromocodeWarning, #orderPromocodeForm #orderPromocodeError,
#orderLoyaltySystem #orderLoyaltySystemSuccess, #orderLoyaltySystem #orderLoyaltySystemWarning, #orderLoyaltySystem #orderLoyaltySystemError,
#orderLoyaltySystem #orderLoyaltySystemPointSuccess, #orderLoyaltySystem #orderLoyaltySystemPointWarning, #orderLoyaltySystem #orderLoyaltySystemPointError,
#orderCertificatesForm #orderCertificatesSuccess, #orderCertificatesForm #orderCertificatesWarning, #orderCertificatesForm #orderCertificatesError
{ display: none; }

/* Льгота и карта лояльности */
#orderExemption,
.order-loyalty {
  margin: 0 0 20px 0; }

.order-loyalty .card {
  margin: 0; }

#orderLoyaltySystemBalanceNewPoints {
  padding: 10px 0 0 0;
  color: #848585;
}

#orderLoyaltySystemBalanceUse {
  color: #848585;
  font-weight: normal;
  padding: 10px 0 0 0; }

#orderLoyaltySystemBalanceUse .checkbox {
  padding-top: 0;
  font-weight: normal; }

.loyalty-card {
  margin: 0 0 40px 0; }

.loyalty-card__list {
  padding-bottom: 30px; }

.loyalty__header {
  padding: 0 0 30px 0; }

.loyalty-header__title {
  margin: 0 0 30px 0; }

.loyalty-header__card {
  width: 320px;
  float: left; }

.loyalty-header__info {
  margin-left: 350px; }

.loyalty-header__link {
  padding: 0 0 10px 0; }

.loyalty-header__link a {
  font-size: 18px; }

.loyalty-header__link i {
  margin-right: 5px; }

.card {
  margin: 0 auto 30px auto; }

.card__front {
  display: block;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: left;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
  border-radius: 10px;
  padding: 20px; }

.card__front_bright {
  background: #f2840f;
  background: radial-gradient(#fcbb0f, #f2840f); }

.card__code {
  font: bold 20px/24px Roboto;
  letter-spacing: 3px;
  margin: 0 0 10px 0; }

.card__level {
  font: bold 18px/24px Roboto; }

.card__footer {
  bottom: 20px;
  font-size: 1em;
  line-height: 1.2em;
}

.card_mini .card__footer {
  width: 300px;
}

.card__btn {
  text-align: center;
  padding: 5px 0; }

.card__btn a {
  color: #fff;
  font: 18px/24px Roboto; }

.card__btn_line {
  border-right: 1px solid #fff; }

.card__buttons {
  border-top: 1px solid #fff; }

/* card mini */
.card_mini {
  width: 100%;
}

.card__code_mini {
  font: bold 15px/24px Roboto; }

/* Уровни программы лояльности на непрерывной шкале */
.loyalty__level {
  display: flex;
  align-items: flex-start;
  list-style: none;
  overflow-x: auto;
  padding: 5px 0 10px;
  text-align: center; }

.loyalty-level {
  position: relative;
  display: block;
  flex: 1 0 150px;
  text-align: center;
  width: auto;
  margin: 0; }

.loyalty-level > a {
  display: block; }

.loyalty-level > a:hover,
.loyalty-level > a:focus,
.loyalty-level > a:link {
  text-decoration: none !important; }

.loyalty-level > a::after {
  position: absolute;
  top: 35px;
  content: '';
  height: 4px;
  background: #edeff0;
  margin: 0;
  left: calc(50% + 35px);
  width: calc(100% - 70px); }

.loyalty-level_last > a::after {
  display: none; }

.loyalty-level__select {
  display: inline-block;
  position: absolute;
  top: 0;
  right: calc(50% - 40px);
  background: #fff;
  color: #ee8722;
  line-height: 100%;
  padding: 5px 6px;
  border-radius: 50%;
  z-index: 10; }

.loyalty-future_level__select {
  display: inline-block;
  position: absolute;
  top: 0;
  right: auto;
  left: calc(50% - 40px);
  background: rgba(224, 224, 224, 0.69);
  color: rgb(111, 185, 12);
  line-height: 100%;
  padding: 5px 6px;
  border-radius: 50%;
  z-index: 10; }

.loyalty-level_step-1 .loyalty-level__step,
.loyalty-level_step-1 > a::after {
  background: #c21b22; }

.loyalty-level_step-2 .loyalty-level__step,
.loyalty-level_step-2 > a::after {
  background: #ee8722; }

.loyalty-level_step-3 .loyalty-level__step,
.loyalty-level_step-3 > a::after {
  background: #eda81f; }

.loyalty-level_step-4 .loyalty-level__step,
.loyalty-level_step-4 > a::after {
  background: #adcf23; }

.loyalty-level_step-5 .loyalty-level__step,
.loyalty-level_step-5 > a::after {
  background: #6fb90c; }

.loyalty-level_step-6 .loyalty-level__step,
.loyalty-level_step-6 > a::after {
  background: #1f9f8b; }

.loyalty-level_step-7 .loyalty-level__step,
.loyalty-level_step-7 > a::after {
  background: #347bbd; }

.loyalty-level__step {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  color: #ffffff;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }

.loyalty-level__step i {
  font-size: 36px;
  position: relative;
  top: 13px; }

.loyalty-level__text {
  display: block;
  font-size: 14px;
  color: #333;
  padding: 5px 0 0 0;
  white-space: normal; }

.loyalty-level_disabled > a {
  opacity: 0.4; }

.loyalty-level_active .loyalty-level__step {
  width: 80px;
  height: 80px; }

.loyalty-level_active .loyalty-level__step i {
  font-size: 44px;
  position: relative;
  top: 16px; }

.loyalty-level_active {
  top: -5px; }

.loyalty-level_active > a::after {
  top: 40px;
  left: calc(50% + 40px);
  width: calc(100% - 75px); }

.loyalty-level > a:hover {
  opacity: 1; }

.loyalty-level_select .loyalty-level__select {
  display: block !important; }

.future_loyalty-level_select .loyalty-future_level__select {
  display: block !important; }

/* loyalty_level_privilege */
.privilege-container {
  padding: 20px 0; }

.privilege-container__title {
  font: 26px/30px Roboto;
  margin: 0 0 10px 0; }

.privilege {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin: 0 0 10px 0;
  padding: 10px 10px 10px 20px;
  position: relative; }

.privilege::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 8px;
  background: #f36f2f;
  border-radius: 5px 0 0 5px; }

.privilege_disabled {
  opacity: 0.7;
  cursor: pointer; }

.privilege__title {
  font: 18px/24px Roboto;
  margin: 0 0 5px 0; }

.privilege__description {
  padding: 5px 0 0 0; }

.privilege__description-btn a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dashed #666; }

.privilege__description-btn_close {
  padding: 5px 0 0 0; }

.privilege__request {
  float: right; }

.privilege__info {
  padding: 10px 0 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.privilege__birthday {
  font-size: 24px;
  padding: 0 10px 0 0;
  color: #f5773c; }

.privilege__validity {
  padding: 0 10px 0 0;
  text-align: center; }

.privilege__comment {
  padding: 0 10px 0 0; }

.privilege__comment i {
  font-size: 24px;
  color: #f5773c; }

/* select level */
.select-level__title {
  font: bold 26px Roboto;
  text-align: center;
  margin: 0 0 20px 0; }

.select-level__child {
  padding: 20px; }

.level-child__name {
  font: bold 18px Roboto;
  margin: 0 0 10px 0; }

.level-child__description {
  font: 16px/24px Roboto;
  margin: 0 0 20px 0; }
