:root {

    --bg-color: #122b37;
    --red-color: #ae302a ;
  
}

._container {
  max-width: 1285px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 767.98px) {
  ._container {
    padding: 0 15px;
  }
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.ui-checkbox {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--gray-color);
}

@media (max-width: 991.98px) {
  .ui-checkbox {
    height: 40px;
  }
}

@media (max-width: 767.98px) {
  .ui-checkbox {
    font-size: 16px;
  }
}

.ui-checkbox input {
  display: none;
}

.ui-checkbox input:checked+label+.ui-checkbox-box::after {
  opacity: 1;
}

.ui-checkbox input:checked+label+.ui-checkbox-box::before {
  opacity: 0;
}

.ui-checkbox .ui-checkbox-box {
  flex-shrink: 0;
  position: absolute;
  /* top: 2px; */
  left: 0;
  pointer-events: none;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 8px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .ui-checkbox .ui-checkbox-box {
    width: 40px;
    height: 40px;
  }
}

.ui-checkbox .ui-checkbox-box::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M13.1923 23.8125L7.98734 18.6075C7.40234 18.0225 6.45734 18.0225 5.87234 18.6075C5.28734 19.1925 5.28734 20.1375 5.87234 20.7225L12.1423 26.9925C12.7273 27.5775 13.6723 27.5775 14.2573 26.9925L30.1273 11.1225C30.7123 10.5375 30.7123 9.59251 30.1273 9.00751C29.5423 8.42251 28.5973 8.42251 28.0123 9.00751L13.1923 23.8125Z' fill='%238F8F8F'/%3E%3C/svg%3E");
  transition: all 0.2s ease 0s;
  opacity: 0;
  display: block;
  width: 36px;
  height: 36px;
}

@media (max-width: 991.98px) {
  .ui-checkbox .ui-checkbox-box::after {
    width: 24px;
    height: 24px;
  }
}

.ui-checkbox label {
  cursor: pointer;
  padding-left: 70px;
  display: block;
}

@media (max-width: 991.98px) {
  .ui-checkbox label {
    padding-left: 50px;
  }
}

@media (any-hover: hover) {
  .ui-checkbox label:hover+.ui-checkbox-box:before {
    border-color: red;
  }
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  margin-top: -10px;
  position: absolute;
  display: block;
  width: 20px;
  height: 36px;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #fff;
}

.lg-actions .lg-next {
  right: 20px;
  background: url("../img/icons/p-right.svg") 0 0/100% no-repeat;
}

.lg-actions .lg-prev {
  left: 20px;
  background: url("../img/icons/p-left.svg") 0 0/100% no-repeat;
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close {
  background: url("../img/icons/close.svg") center no-repeat;
}

.lg-toolbar .lg-download {
  display: none;
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #eee;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
  background-color: #0d0a0a;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toggle-thumb:hover {
  color: #fff;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #fff;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #fff;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown>li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown>li:hover a,
.lg-outer .lg-dropdown>li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "\e80d";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.group {
  *zoom: 1;
}

.group:before,
.group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../img/icons/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: var(--gray-color);
  border-radius: 3px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 8px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size>div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* 
.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background: rgba(0, 0, 0, 0.5098039216);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  transform: scale(1);
}

.popup.active {
  overflow: auto;
  visibility: visible;
}

.popup.active::before {
  opacity: 1;
}

.popup.active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}

.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background: var(--bg-color);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 540px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .popup__body {
    padding: 40px 20px;
  }
}

.popup__ttl {
  text-align: center;
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .popup__ttl {
    font-size: 30px;
  }
}

.popup__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
} */


.page {
  flex: 1 1 auto;
}

._section {
  margin-top: 104px;
  margin-bottom: 104px;
}

._btn {
  height: 66px;
  background: linear-gradient(40deg, #ae302a -14.96%, #ae302a 137.97%);
  border-radius: 8px;
  display: flex;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: all 0.3s ease 0s;
  color: var(white);
}

@media (any-hover: hover) {
  ._btn:hover {
    /*     transform: rotate(-2deg); */
  }
}

._btn._gray {
  border: 1px solid var(--gray-color);
  background: #1e1e1e;
  color: var(--gray-color);
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  ._btn._gray:hover {
    color: var(white);
    background: linear-gradient(40deg, #ae302a -14.96%, #ae302a 137.97%);
    border-color: transparent;
  }
}

.authorization__wrapper {
  border-radius: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-color);
  padding: 60px 40px;

}

@media (max-width: 991.98px) {
  .authorization__wrapper {
    padding: 40px 25px;
  }
}

.authorization__wrapper svg {
  width: 36px;
  height: 36px;
}

.authorization__ttl {
  text-align: center;
  font-size: 58px;
  margin-bottom: 40px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .authorization__ttl {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .authorization__ttl {
    font-size: 40px;
  }
}

.authorization-form {
  display: grid;
  grid-gap: 20px;
  color: var(--gray-color);
}

.authorization-form a {
  font-weight: 700;
  color: var(--gray-color);
  transition: all 0.3s ease 0s;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .authorization-form a:hover {
    color: var(--red-color);
  }
}

.authorization-form__item {
  position: relative;
  border-radius: 8px;
  background: #222;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0px 20px !important;
  gap: 20px;
}

@media (max-width: 767.98px) {
  .authorization-form__item {
    font-size: 16px;
  }
}

.authorization-form__item input {
  background: none;
  color: white;
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding-left: 80px;
}

.authorization-form__item input ::placeholder {
  font-weight: 700;
}

.authorization-form__forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767.98px) {
  .authorization-form__forgot {
    font-size: 16px;
  }
}

.authorization-form__connect {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.authorization-form__connect a {
  border-radius: 8px;
  background: #222;
  width: 64px;
  height: 64px;
  color: var(--gray-color);
  border: 1px solid #8e8e8e;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 479.98px) {
  .authorization-form__connect a {
    width: 60px;
    height: 60px;
  }
}

@media (any-hover: hover) {
  .authorization-form__connect a:hover {
    color: var(--red-color);
    border-color: var(--red-color);
  }
}

.authorization-form__bottom {
  margin-left: auto;
  margin-right: auto;
}

.authorization-form__bottom a {
  color: var(--gray-color);
}

@media (any-hover: hover) {
  .authorization-form__bottom a:hover {
    color: var(--red-color);
  }
}

@media (max-width: 767.98px) {
  .authorization-form__bottom {
    font-size: 16px;
    display: grid;
    grid-gap: 10px;
    justify-items: center;
  }
}

/* new */
.account {
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.account__wraper {
  /* display: grid;
  grid-gap: 20px; */
}

.account-top {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .account-top {
    grid-template-columns: 1fr;
  }
}

.account-top-user {
  border-radius: 8px;
  background: linear-gradient(40deg, #ae302a -14.96%, #ae302a 137.97%);
  color: var(white);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.account-top-user__img {
  border-radius: 50%;
  overflow: hidden;
  /* background: url('../img/avatar-placeholder.jpg') center/cover; */
  background: rgba(255, 255, 255, 0.1);
  width: 78px;
  height: 78px;
}

.account-top-user__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-top-user__name {
  display: grid;
}

.account-top-user__name span:last-child {
  font-weight: 700;
}

.account-top-user__exit {
  width: 48px;
  height: 48px;
  margin-left: auto;
}

.account-top-user__exit svg {
  width: 48px;
  height: 48px;
}

.account-nav {
  border-radius: 8px;
  background: var(--bg-color);
  display: flex;
  /*gap: 70px;*/
  justify-content: space-between;
  padding: 0px 40px;
}

@media (max-width: 767.98px) {
  .account-nav {
    overflow-y: scroll;
    justify-content: start;
  }
}

.account-nav a {
  padding: 20px 10px;
  display: flex;
  align-items: center;
  color: white;
  border-bottom: 2px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767.98px) {
  .account-nav a {
    white-space: nowrap;
  }
}

@media (any-hover: hover) {
  .account-nav a:hover {
    color: var(--red-color);
  }
}

.account-nav a.is-active {
  border-color: var(--red-color);
  pointer-events: none;
}

.account-bottom {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-gap: 20px;
}

.account-additional {
    margin-top: 20px;
}

@media (max-width: 991.98px) {
  .account-bottom {
    grid-template-columns: 1fr;
  }
}

.account-bottom__left,
.account-bottom__right {
  padding: 50px 40px;
  border-radius: 8px;
  background: var(--bg-color);
  height: 100%;
  
}

@media (max-width: 767.98px) {

  .account-bottom__left,
  .account-bottom__right {
    padding: 30px 20px;
  }
}

.account-bottom__left-ttl,
.account-bottom__right-ttl {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
}

.account-bottom__right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .account-bottom__right {
    overflow-y: scroll;
  }
}

.account-bottom__right-ttl {
  text-align: left;
  margin-bottom: 20px;
}

.account-suppont-info {
  text-align: center;
}

.account-suppont-info__img {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
}

.account-suppont-info__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-suppont-info__txt {
  line-height: 175.5%;
  font-size: 18px;
}

@media (max-width: 767.98px) {
  .account-suppont-info__txt {
    font-size: 16px;
  }
}

.account-suppont-info__btn {
  margin-top: 20px;
}

.account-suppont-info__bottom {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-color);
}

  .account-suppont-info__notice {
    margin-top: 20px;
    font-size: 1.2em;
    line-height: 1.3;
    font-weight: bold;
    color: white;
  } 
  
    .account-suppont-info__notice span {
      white-space: now;
    }
    
      .account-suppont-info__notice span:before {
        content: attr(data-minutes);
        display: inline-block;
        margin-right: .35em;
      }

@media (max-width: 767.98px) {
  .account-tickets {
    overflow-y: scroll;
  }
}



@media (max-width: 991.98px) {
  .account-tickets-list {
    width: 700px;
  }
}

.account-tickets-list__top,
.account-tickets-list__item {
  display: grid;
  grid-template-columns: 20px 2fr 6fr 4fr 4fr;
  padding: 14px 20px;
  grid-gap: 20px;
  min-width: 700px;
  margin-bottom: 3px;
  align-items: center;
}

.account-tickets-list__item {
  cursor: pointer;
}

.account-tickets-list__item.closed {
  opacity: 0.5;
}

.account-tickets-list__item.has-new-messages {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.account-tickets-list__icon-new svg {
  width: 20px;
  height: 20px;
  color: var(--red-color);
}

.account-tickets-list__top {
  border-radius: 10px;
  background: #1e1e1e;
}

.account-tickets-list__top span {
  white-space: nowrap;
}

.account-tickets-empty {
  margin-top: 30px;
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 420px;
}

@media (min-width: 767.98px) {
  .account-tickets-empty {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .account-tickets-empty {
    max-width: 320px;
  }
}

.account-tickets-empty__icon {
  margin-bottom: 20px;
}

.account-tickets-empty__icon svg {
  width: 100px;
  height: 100px;
}

.account-tickets-empty__txt {
  line-height: 175.5%;
  margin-bottom: 20px;
  font-size: 18px;
}


  .account-bottom-balance {
    padding-top: .35em;
    font-size: 1.1em;
    color: var(--gray-color);
  }

    .account-bottom__balance {
      display: block;
      margin-top: 1.75em;
      font-size: 1.4em;
      color: white;
    }

  .account-bottom-buttons {
    margin-left: auto;
  }


.account-bottom__left-balance {
  height: auto;
  display: flex;
  gap: 1rem;
  padding: 1em 1.5em;
}


  .account-bottom__left:only-child {
    height: 100%;
  }
  


  .account-additional .account-bottom__left {
    background-image: url( '../img/discount-left.jpg' );
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;

  }


    @media screen and (max-width: 800px) {

      .account-additional .account-side {
            display: none;
        }    
  }


.required-block{
    padding: 50px 40px;
    border-radius: 8px;
    background: var(--bg-color);
    margin-top: 20px;
    
}

.required-block-title {
    font-size: 25px;
    font-weight: bold;
    text-align: start;
    margin-bottom: 20px;
}
.required-columns{
  display: flex;
  flex-wrap: wrap;
     gap: 24px;
}
.required-column{
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 30%;
 
} 
@media (max-width: 1032px) {
.required-column{
    flex: 1 1 40%;
 
} 

}
.required-info-items{
   display: flex;
    flex-direction: column;
    gap: 16px;
}
.required-item{
  padding: 20px;
  background-color: #183848;
  border-radius: 12px;

}
.required-item-title{
  margin-bottom: 24px;
  padding: 14px;
  width: 100%;
font-weight: 700;
font-size: 20px;
line-height: 100%;
text-align: center;
  border-radius: 6px;
  
}
.required-blue-title{
background: #4384D01A;
color: #4384D0;

}

.required-red-title{
color: #DD123D;
background: #DD123D1A;


}
.required-green-title{
  background: #34DBBF1A;
  color: #34DBBF;


}
.required-puple-title{
  background: #7A43C81A;
  color: #7A43C8;


}

.required-info-item p{
font-weight: 500;
font-size: 18px;
line-height: 140%;
color: #8F8F8F;



}
.required-info-item b{
  display: block;
}
.required-info-item span{
font-weight: 500;
font-size: 14px;
line-height: 140%;
color: #FFFFFF;
margin-top: 8px;
display: block;

}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cashback-side {
    padding: 30px;
    border-radius: 8px;
    background: var(--bg-color);
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 301px;
     display: flex;
    flex-direction: column;
}
.cashback-side p{
font-weight: 700;
font-size: 22px;
line-height: 146%;
color: #FFFFFF;
    margin-top: auto;

}




.cashback-side-img{
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
      max-width: 300px;
}
.cashback-side-gif{
    display: flex;
  position: absolute;
  left: 47px;
  top: 10px;
  z-index: -2;
    
}
.cashback-side-gif img{
       filter: grayscale(1);
    max-width: 200px;
}

.bonuses-block {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bonuses-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.bonuses-subtitle {
  font-size: 16px;
  color: #aaa;
  margin: 0;
}

.bonuses-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.bonus-card {
  background: #193d4d;
  border-radius: 8px;
  padding: 20px 30px;
  flex: 1 1 200px;
  min-width: 200px;
}

.card-label {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.card-value {
  font-size: 20px;
  font-weight: 600;
}






.modal {
  background: #171924;
  color: #fff;
      max-height: 80vh;
    overflow: auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.modal label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-top: 5px;
  background: #122b37;
  color: #fff;
}

.modal button {
  margin-top: 10px;
-webkit-text-fill-color: #fff;
    background: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #b01111;
    border-radius: 6px;
    padding: 10px 20px 11px 20px;
    background-color: #bb29293b;
}

.modal button:hover {
  opacity: .8;
}


.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #fff;
}


.vacancies-section{
  margin-top: auto;
  overflow: hidden;

}

.vacancies-section::after {
  content: "";
  position: absolute;
    bottom: -300px;
    right: -100px;
    width: 800px;
    height: 600px;
  background: #122b37;
  filter: blur(150px);
  opacity: 1;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.vacancies-button-wrapper{
display: flex;
}
.vacancies-decor{
  position: absolute;
  z-index: -2;
}
.vacancies-decor-two img{
      filter: grayscale(1);
}
.vacancies-img{
  position: absolute;
  z-index: -1;
  right: 0;
  top: 32px;
}

.vacancies-decor-two{
    right: 0;
  top: 61px;
}

.vacancies-decor-tree{
       right: 0;
    top: 100px;
    z-index: -1;
}
.vacancies-decor-tree img{
      filter: grayscale(1);
}
.vacancies-blur{
  right: 0;
    top: 22px;
}

@media (max-width: 1300px) {
.vacancies-img{
  top: unset;
  bottom: 0;
}
.vacancies-decor-two {
    top: unset;
    bottom: 0;
}

}


  .cooperation-section .cooperation-container {
    max-width: 1100px;
    margin: 0 auto;

  }

  .cooperation-section .title {
    font-size: 32px;
    font-weight: bold;
    text-align: start;
    margin-bottom: 20px;
  }

  .cooperation-section .title span {
    color: #b01111;
  }

  .cooperation-section .subtitle {
    text-align: start;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
  }

  .cooperation-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .cooperation-item {
    border-radius: 8px;
    font-size: 14px;
    flex: 1 1 40%;

  }

  .cooperation-item h3 {
   font-weight: 700;
font-size: 18px;
line-height: 100%;
text-align: center;
    
  }
  .blue-title h3{
   color: #44A9F8;

  }
  .blue-title{
background: #4384D01A;
padding: 12px 14px;
    
  }
  .green-title{
   background: #34DBBF1A;


padding: 12px 14px;
  }
    .green-title h3{
color: #34DBBF;

  }
  .purple-title{
  background: #7A43C81A;
      padding: 12px 14px;
  }
     .purple-title h3{
color: #7A43C8;

  }
  .cooperation-title{
max-width: max-content;
    border-radius: 6px;
    gap: 10px;
    display: flex;
    align-items: center;
  }
 .red-title{
    background: #FA57451A;
  padding: 12px 14px;
  }
 .red-title h3{
color: #FA5745;


  }
  .cooperation-item p{
    margin-top: 10px;
    color: #8F8F8F;
font-weight: 500;
font-size: 16px;
line-height: 140%;
    flex: 1 1 40%;

  }
  .cooperation-item-img{
    display: flex;
    max-width: 26px;
    height: 26px;
    width: 100%;
  }





  .cooperation-button-wrapper {
    text-align: center;
  }

  .cooperation-btn {
 -webkit-text-fill-color: #fff;
    background: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #b01111;
    border-radius: 6px;
    padding: 10px 20px 11px 20px;
    background-color: #bb29293b;
    transition:  0.3s;
  }



  .cooperation-btn:hover {
    opacity: .8;
  }

  @media (max-width: 767px) {
   
    .cooperation-item{
      flex: 1 1 100%;
    }
    .cooperation-item h3 {
    font-size: 16px;

}
.cooperation-item p {
    font-size: 14px;
  
}
.cooperation-section .title {
    font-size: 22px;

    margin-bottom: 15px;
}
.cooperation-section .subtitle {
    font-size: 14px;
    margin: 0 auto 20px;
    line-height: 20px;
}
.required-block {
    padding: 30px 2dvb;
    
}
 .required-column {
        flex: 1 1 50%;
}
.required-block-title {
    font-size: 18px;
  
}
.required-item-title {
    font-size: 16px;
        margin-bottom: 15px;
   
}
.required-info-item p {
 
    font-size: 14px;
 
}
.required-info-item span {
  
    font-size: 12px;
}
.required-columns {
    gap: 14px;
}
.required-column {
    gap: 14px;
 
}

}

  .cooperation-decor{
    position: absolute;
     z-index: -1;
  }
.cooperation-decor img{
filter: grayscale(1);
}
.cooperation-blur{
   position: absolute;
     z-index: -1;
     right: 0;
     top: 0;
    filter: opacity(0.5);
}
.cooperation-decor-one{
   right: 10px;
   top: 193px;
   
}
.cooperation-decor-tree{
  right: 205px;
  top: 10px;
}

.cooperation-decor-two{
   right: 0;
   top: 0;
  
}


















  .account-discount-scale,
  .account-discount-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
  }
  
    .account-discount-values {
        position: relative;
       
         left: -0.1em;
         width: 101%;

    }
  


    .account-discount-scale-item {
        position: relative;
        margin-left: 1.5rem;
        height: 1.5rem;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }   
    
        .account-discount-scale-item:before {
            position: absolute;
            background: #004363;
            border-radius: 5px;
            width: .5rem;
            display: block;
            height: 1.5rem;
            margin: 0 .5em;
            left: -1.5rem;
            content: '';
        }
            
            .account-discount-scale-item.active:before {
                background: #ae302aD0;
            }
        
        .account-discount-scale-item:after {
            content: '';
            width: 100%;
            border-radius: 3px;
            background: #1f546d;
            height: .5rem;
            display: block;
        }
            
            .account-discount-scale-item.active:not(.equal):after {
                background: #ae302a;
            }


    .account-discount-value  {
        min-width: 2em;
        text-align: center;
    }
        
        .account-discount-scale-item:last-child {
            flex: 0 0 0;
        }
        .account-discount-scale-item:last-child:after {
            display: none;
        }
    .account-discount-value {
        color: #939393;
    }

        .account-discount-value.active {
            color: white;
        }


  .account-bottom__left-balance  ._btn {
    height: 3rem;
    min-width: 9em;

  }
  .account-bottom__left-balance  ._btn._gray {
    width: 100%;
  }
  
  .account-bottom__left-balance  .account-suppont-info__btn {
    margin-top: 7px;
  }

.account-bottom__left + .account-bottom__left {
  height: auto;
  margin-top: 1em;
}

.account-bottom__left + .account-bottom__left ._btn._gray {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

    @media screen and (max-width: 374px) {
    .account-bottom__left-balance {
      flex-direction: column;
    }

    .account-bottom__balance {
      margin-top: 1em;
    }

    .account-bottom-buttons {
        margin-left: 0;
        margin-top: 2em;
    }

    .account-bottom__left-balance ._btn {
      width: 100%;
    }

    .account-bottom__left-balance .account-suppont-info__btn {
      margin-top: 1.5em;
    }
  }



@media (max-width: 767.98px) {
  .account-tickets-empty__txt {
    font-size: 16px;
  }
}

.account-tickets-empty__btn {
  margin-bottom: 20px;
}

.account-tickets-empty__bottom {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-color);
}

.account-avatar {
  margin-top: 30px;
}

.account-avatar__img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;


  background: rgba(255, 255, 255, 0.1);
  /* background: url('../img/avatar-placeholder.jpg') center/cover; */

}

.account-avatar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-avatar__btn {
  margin-top: 20px;
  cursor: pointer;
}

.form {
  display: grid;
  grid-gap: 20px;
}

.form__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: start;
}

@media (max-width: 767.98px) {
  .form__items {
    grid-template-columns: 1fr;
  }
}

.form button {
  margin-top: 10px;
}

.form-item {
  display: grid;
  grid-gap: 10px;
}

.form-item span,
.form-item label {
  font-weight: 700;
  color: white;
}

.form-item input,
.form-item textarea {
  padding: 20px;
  font-weight: 500;
  color: var(--gray-color);
  border-radius: 8px;
  background: #222;
  width: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease 0s;
}

.form-item textarea {
  resize: none;
}

.form-item.invalid input,
.form-item.invalid textarea {
  border-color: red;
}

.form-item__message {
  display: none;
}

.form-item.invalid .form-item__message {
  display: block;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}




.chat-support {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-support__top {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-color);
}

.chat-support__back {}

.chat-support__back svg {
  width: 36px;
  height: 36px;
}

.chat-support__num {
  margin-right: auto;
  font-weight: 700;
}

.chat-support__info {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.chat-support__complete {
  display: flex;
  align-items: center;
  color: var(--red-color);
  gap: 5px;
}

.chat-support__complete svg {
  width: 26px;
  height: 26px;

}

.chat-support__info span {
  color: var(--gray-color);
}

.chat-support-messages {
  overflow: hidden;
  margin: 0px -20px;
  padding: 0px 20px;
}

.chat-support-messages__wrapper {
  height: 400px;
  margin: 0px -20px;
  padding: 0px 20px;
}

.chat-support-messages__content {
  display: grid;
  grid-gap: 20px;
}

.chat-support-message {
  height: fit-content;
  display: flex;
  grid-gap: 20px;
}

.chat-support-message.mine {
  margin-left: auto;
}

.chat-support-message.mine .chat-support-message__avatar {
  order: 2;
}

.chat-support-message.mine .chat-support-message__name {
  text-align: right;
}

@media (max-width: 767.98px) {
  .chat-support-message {
    grid-gap: 10px;
  }
}

.chat-support-message__avatar {
  height: fit-content;
  position: relative;
}

.chat-support-message__avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 767.98px) {
  .chat-support-message__avatar img {
    width: 48px;
    height: 48px;
  }
}

.chat-support-message__avatar span {
  position: absolute;
  bottom: 0;
  font-size: 14px;
  left: -5px;
  right: -5px;
  text-align: center;
  background: #1e1e1e;
  color: var(--red-color);
  padding: 3px;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .chat-support-message__avatar span {
    font-size: 10px;
  }
}

.chat-support-message__content {
  display: grid;
  grid-gap: 10px;
  height: fit-content;
}

.chat-support-message__name {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .chat-support-message__name {
    display: none;
  }
}

.chat-support-message__txt {
  border-radius: 8px;
  background: #1e1e1e;
  font-size: 18px;
  padding: 15px 20px;
  word-break: break-word;
  display: grid;
  grid-gap: 10px;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .chat-support-message__txt {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.chat-support-message__imgs {
  display: flex;
  grid-gap: 10px;
  flex-wrap: wrap;

}

.chat-support-message__imgs a {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.chat-support-message__imgs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-support-message__date {
  font-size: 16px;
  color: var(--gray-color);
  text-align: right;
}

@media (max-width: 767.98px) {
  .chat-support-message__date {
    font-size: 12px;
  }
}

.chat-support-send {
  position: relative;
  margin-top: auto;
}

.chat-support-send__wrap {
  position: relative;
}

.chat-support-send__btns {
  position: absolute;
  display: flex;
  gap: 14px;
  right: 20px;
  height: fit-content;
  top: 50%;
  transform: translateY(-50%);
}

.chat-support-send__btns svg {
  width: 36px;
  height: 36px;
}


.chat-support-send__btns button {
  color: var(--red-color);
}

.chat-support-send__btns button svg {
  filter: invert(42%) sepia(93%) saturate(332%) hue-rotate(328deg) brightness(83%) contrast(199%)

}

.chat-support-send__btns button,
.chat-support-send__btns label {
  width: 36px;
  height: 36px;
}

.chat-support-send__btns label {
  cursor: pointer;
  color: var(--gray-color);
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .chat-support-send__btns label:hover {
    color: var(--red-color);
  }
}

.chat-support-send__btns label input {
  display: none;
}

.chat-support-send textarea {
  resize: none;
  width: 100%;
  border-radius: 8px;
  padding: 18px 120px 18px 20px;
  color: white;
  height: 60px;
  background: #1e1e1e;
}

.chat-support-send__imgs {
  display: flex;
  flex-wrap: wrap;
}

.chat-support-send__imgs>div {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  margin-left: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.chat-support-send__imgs>div>img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Стили для кнопки удаления изображений */
.thumb-wrapper {
  position: relative;
  display: inline-block;
}

.thumb-remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.thumb-remove-btn:hover {
  background: #d63031;
  transform: scale(1.1);
}

.thumb-remove-btn svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.thumb-remove-btn:active {
  transform: scale(0.95);
}

/* .chat-support-send__trash {}

.chat-support-send__trash svg {
  color: red;
  width: 30px;

} */

.ticket-form {
  display: grid;
}

.ticket-form__content {
  border-radius: 8px;
  overflow: hidden;
}

.ticket-form__ttl {
  padding: 20px 30px;
  background: #222;
  color: var(--gray-color);
  font-weight: 700;
}

.ticket-form__item {
  position: relative;
  color: var(--gray-color);
  font-weight: 700;
}

.ticket-form__item span {
  display: block;
  transition: all 0.3s ease 0s;
  padding: 20px 30px;
}

.ticket-form__item:nth-child(2n) input+span {
  background: #2e2e2e;
}

.ticket-form__item input {
  position: absolute;
  inset: 0;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
  cursor: pointer;
  opacity: 0;
	z-index:5;
	width:100%;
	height:100%;
}

.ticket-form__item input+span {
  background: #222;
}

.ticket-form__item input:checked+span {
  color: var(white);
  background: var(--red-color);
}

.ticket-form__item input:hover+span {
  color: var(white);
  background: var(--red-color);
}

.ticket-form button {
  margin-top: 30px;
}



.authorization-form .password-input {
  position: absolute !important;
  inset: 0 !important;
}

.show-password-input {
  top: 1em !important;
}



/* .popup-account {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
} */

.popup-account::before {
  content: "";
  background: rgba(0, 0, 0, 0.5098039216);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* opacity: 0; */
  transition: opacity 0.8s ease 0s;
}

/* .popup-account.show {
  visibility: visible;
  overflow: auto;
}

.popup-account.show::before {
  opacity: 1;
} */

/* .popup-account.show .popup-account__body {
  transform: scale(1);
}

.popup-account.active {
  overflow: auto;
  visibility: visible;
}

.popup-account.active::before {
  opacity: 1;
} */
/* 
.popup-account.active .popup-account__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}

.popup-account__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} */



.popup-account__content {
  /* transform: scale(0); */
  transition: all 0.3s ease 0s;
  background: var(--bg-color);
  border-radius: 20px;
  padding: 60px 40px !important;
  max-width: 540px;
  width: 100%;
  position: relative;
}

@media (max-width: 767.98px) {
  .popup-account__body {
    padding: 40px 20px;
  }
}

.popup-account__ttl {
  text-align: center;
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

@media (max-width: 767.98px) {
  .popup-account__ttl {
    font-size: 30px;
  }
}

.popup-account__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: red;
  color: white;
  padding: 20px 0;
  text-align: center;
  transition: all 0.3s ease 0s;
  transform: translateY(100%);
  visibility: hidden;
  z-index: 200;
  box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

.alert_success {
  background: #64bd4c;
}

.alert.active {
  transform: none;
  visibility: visible;
}

.alert.active a {
  color: white;
  border-bottom: 1px solid;
  transition: all 0.3s ease 0s;
}

.alert.active a:hover {
  border-color: transparent;
}

[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

#withdraw ._btn {
  font-size: 1.2em;
}

  #withdraw .popup-account__close {
    top: 1.9rem;
  }

  #withdraw ._btn._gray {
    margin-top: 0;
  }

  #withdraw .form-item span, 
  #withdraw .form-item label {
    color: var(--gray-color);
  }

  #withdraw .form-item input  {
    color: white;
  }


  #withdraw  .popup-account__ttl {
    text-align: left;
    font-size: 1.6em;
    margin-bottom: 2em;
  }
  
  #withdraw .popup-account__content {
    padding: 1.5rem 2rem 2rem 2rem;
    width: 26rem;
    max-width: 100%;

  }


  .single-cheat__fulfill .form-item span {
    color: var(--gray-color);
  }

 .single-cheat__fulfill   .form-item input {
    color: white;
  }

  .fulfill-prefilled-amounts {
      display: flex;
      align-items: center;
      gap: 1em;
      margin: 2em 0 3em 0;
  }
  
    .fulfill-prefilled-amount {
      flex: 1 1 auto;
    }

    .fulfill-prefilled-amount button {
        background: #222;
        border-radius: 8px;
        display: block;
        padding: .75em .75em;
        color: white;
        width: 100%;
        border: 1px solid #222;
    }
    
      .fulfill-prefilled-amount button:active,
      .fulfill-prefilled-amount button:focus,
      .fulfill-prefilled-amount button:hover {
        border-color: #fff;
      }



  .withdraw-request-wrap {
    display: flex;
    gap: 2rem;
  }
  
    .withdraw-request-wrap .fulfill-prefilled-amounts {
      margin: 1em 0
    }
    
    .withdraw-request-wrap .checkout-button {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
    
    .withdraw-request-wrap .form-item {
        grid-gap: 0;
    }
    
        .withdraw-request-wrap .form-item span {
            color: #939393;
            font-size: 1.1em;
        }


    .withdraw-request-wrap .form-item input {
      margin-top: 1em;
      color: white;
    }

    .withdraw-request__history {
      flex: 0 0 55%;
     
    } 

      .withdraw-request__history-values-wrap {
          overflow: auto;
          max-height: 25.3em;
      }

    .withdraw-request__history-row  {
      display: flex;
      justify-content: space-between;
      font-size: 1.1em;
      margin-bottom: .85em;
    } 




      .withdraw-request__history-headers {
        max-width: 93.8%;
      }
    
      .withdraw-request__history-row  li {
        flex: 0 0 28%;
        color: #939393;
        line-height: 1.4;

      }
   
        .withdraw-request__history-row  li:first-child ,
        .withdraw-request__history-row  li:nth-child(3) {
          flex-basis: 15%;
        }
        .withdraw-request__history-row  li:last-child {
          flex-basis: 17%;
          padding-right: .5em;
        }

        .withdraw-request__history-row  li.withdraw-request-sum {
          color: #FFC700;          
        }
        
        .withdraw-request__history-row  li.withdraw-request-status {
          color: #BFFF36;
        }




      .withdraw-request__history-values li {
        color: white;
      }

      .withdraw-request__history-empty {
        color: #999;
        font-size: 1.2em;
        line-height: 1.5;
        padding: 2em 1em;
        text-align: center;
      }

      .withdraw-request__history-empty svg {
            display: inline-block;
            vertical-align: middle;
            margin-right: .25em;
            margin-top: -.15em;
        }

      .withraw-note {
        margin-top: 1em;
        padding-left: 1.85em;
        position: relative;
        color: #999;
        line-height: 1.4;
      }
      
        .withdraw-request__history-empty svg,
        .withraw-note svg {
            width: 1.5rem;
            height: 1.5rem;
            filter: saturate(0) brightness(0.7);
        }
        
        .withraw-note svg {
            position: absolute;
            left: 0;
            top: 0;
        }

        .withraw-note strong {
          color: #ae302a;         
        }


    @media screen and (max-width: 767px ) {



        .withdraw-request-wrap {
            flex-direction: column;
        }

        .withdraw-request-wrap .fulfill-prefilled-amount button {
            font-size: .9em;
        }

        .withdraw-request__history-row {
            font-size: 1em;
        }

        .withdraw-request-wrap .form-item {
            grid-gap: 1rem;
        }

        .withdraw-request-wrap .form-item input {
            padding-top: 1rem;
            padding-bottom: 1rem;}

        .withdraw-request-wrap .fulfill-prefilled-amounts {
            margin: 1rem 0;
        }

         .withraw-note {
            padding-left: 2em;
         }

        .withdraw-request-wrap .checkout-button {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
    }

    @media screen and (max-width: 480px) {

 

        .account-discount-value {
            visibility: hidden;
        }
        
            .account-discount-value:first-child,
            .account-discount-value:last-child,
            .account-discount-value.equal {
                visibility: visible;
                color: #939393;
            }
            
            .account-discount-value.equal {
                color: white;
                        position: relative;
        left: .25em;
            }

            .account-discount-scale-item:before {
                display: none;
            }
            
            .account-discount-scale-item:first-child:before ,
            .account-discount-scale-item:last-child:before ,
            .account-discount-scale-item.equal:before {
                display: block;
            }

            .account-discount-scale-item + .account-discount-scale-item {
                margin-left: 0;
            }

            .account-discount-scale-item:first-child {
                margin-left: 1rem;
            }

            .account-discount-scale-item.equal:before ,
            .account-discount-scale-item:last-child:before ,
            .account-discount-scale-item:first-child:before {
                left: -1rem;
            }
                
            .account-discount-value {
                min-width: 1.4em;
            }

                .account-discount-values {
                    width: 100%;
                    left: 0;
                }

            .account-discount-scale-item:after {
                border-radius: 0;
            }

            .account-bottom__right {
                overflow: hidden;
            }
            
            .account-discount-scale {
                position: relative;
                left: -.25rem;
            }
    }



/* Orders */

.single-cheat__order li.withdraw-request-status ,
.withdraw-request__history-row li.withdraw-request-status {
  color: #fff;
}

.single-cheat__order li.withdraw-request-status_success ,
.withdraw-request__history-row li.withdraw-request-status_success {
    color: #5FC24F;
}

.withdraw-request__history-row li.withdraw-request-status_failure {
    color: #F64F4F;
}
.withdraw-request__history-row li.withdraw-request-status_warning {
    color: #c3b829;
}

.withdraw-request__history-orders {
  width: 100%;
  max-width: 100%;
}

  .withdraw-request__history-headers.withdraw-request__history-orders {
    position: relative;
    left: -1em;
    width: calc( 100% + 2em );
       padding: .75em 1em;
    background: #1a3949;
    max-width: initial;
    margin-top: 1em;
  }

.withdraw-request__history-orders li {
  flex: 0 0 28%;
}



.withdraw-request__history-orders li.withdraw-request-status {
  white-space: nowrap;  
}

.withdraw-request__history-row li.withdraw-request__action {
     
    flex-basis: 5%;
    padding: 0;
    position: relative;
    top: .1em;
    cursor: pointer;
    
}

  .withdraw-request__history-row li .order-details {
    font-size: 1.3em;
    opacity: .6;
	  display: flex;
    padding: 0;
	  align-items: center;
    line-height: 1;
    border: 0;
    appearance: none;
  }

	.withdraw-request__history-row li .order-details:before,
.withdraw-request__history-row li .order-details:after {
	display: inline-block;
  line-height: 1.1;
	vertical-align: middle;
	content: '•';
	margin: 0.05em;
}

  .withdraw-request__history-row li .order-details:hover {
    opacity: 1;
  }

.withdraw-request__history-row li.withdraw-request__date {
  flex-basis: 10%;
  white-space: nowrap;

}

.withdraw-request__history-row li.withdraw-request__order-number,
.withdraw-request__history-row li.withdraw-request__price {
  flex-basis: 9.5%;
  white-space: nowrap;
}

.withdraw-request__history-row li.withdraw-request__price {
  text-align: right;
}

.withdraw-request-item {
  display: block;
}

.withdraw-request-item-qty {
  color: #bbb;
  font-size: .9em;
}

.checkout-disclaimer_order {
  color: white;
}

  #order-details-loader[href="#"],
  #order-details-loader[href="#"] + .checkout-disclaimer {
    display: none;
  }


.single-cheat__order .tooltip {
  flex: 1 1 auto;
}

.single-cheat__order .input-group {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 1.5rem;
}


:root .single-cheat__order .btn-copy.copied {
  filter: sepia(1) hue-rotate(45.5deg);
}

:root .single-cheat__order .btn-copy,
:root .single-cheat__order .btn-copy:hover,
:root .single-cheat__order .btn-copy:active,
:root .single-cheat__order .btn-copy:focus {
   padding: 0.7em 1.5em;
    border: 0;
    
    height: 100%;
    transition: .25s filter;
    background: #1e1e1e url(../img/copy-icon.svg) no-repeat center / auto;
}

:root .single-cheat__order .btn-copy:hover,
:root .single-cheat__order .btn-copy:active,
:root .single-cheat__order .btn-copy:focus {
   
  background-color: #2f2b2b;
}


.single-cheat__order .copy-ref-link-input {
      height: auto;
    border: 1px solid #d2d2d2;
    border-radius: 3px 0 0 3px;
    position: relative;
    padding-left: 1.5rem;
    transition: opacity 0.5s;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    font-size: 1em;
    display: table-cell;
    line-height: normal;
    width: 100%;
    overflow: scroll;
    box-sizing: border-box;

      text-align: center;
    color: #8F8F8F;
    padding: 1.5em 0 1.5em 0;
    height: auto;

}

.single-cheat__order .checkout-title {
  font-size: 2em;
  font-weight: bold;
}

.single-cheat__order .checkout-disclaimer_order {
  line-height: 1.4;
  text-align: center;
}

.single-cheat__order .single-cheat__checkout-wrap {

      max-height: 100vh;
    overflow: auto;

    width: auto;
    background: var(--bg-color);
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
     width: 540px;
   box-sizing: border-box;
    max-width: 100%;
    z-index: 10001;
}

/* Стили для сообщений в попапе заказа */
.single-cheat__order .order-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.single-cheat__order .order-message__icon {
    font-size: 2.5rem;
}

.single-cheat__order .order-message__text {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.single-cheat__order .order-message__link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.single-cheat__order .refunded-message {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(76, 175, 80, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.single-cheat__order .refunded-message .order-message__link {
    background: rgba(76, 175, 80, 0.8);
    color: #fff;
}

.single-cheat__order .refunded-message .order-message__link:hover {
    background: rgba(76, 175, 80, 1);
}

.single-cheat__order .waiting-message {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.3);
}

@media screen and (max-width: 480px) {
  .single-cheat__order .single-cheat__checkout-wrap {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

  .order-details-items li {
    display: flex;
    justify-content: space-between;
    color: white;
    margin-bottom: 1em;
    align-items: center;
    font-size: 1em;
    gap: 1rem;
  }
  
  @media screen and (max-width: 480px) {
    .order-details-items li {
      font-size: 1.2em;
    }
    
    .single-cheat__order .checkout-button {
      font-size: 1.2rem;
    }
  }

    .order-details-items li:before {
      content: attr( data-title );
      margin-right: auto;
      color: #8F8F8F;
    }


    #order-details-item {
      flex: 0 0 51%;
      text-align: right;
      line-height: 1.1;
    }

@media screen and (max-width: 1200px) {
  .withdraw-request__history-row li.withdraw-request__order-number {
    flex-basis: 12%
  }

  .withdraw-request__history-row li.withdraw-request__date {
    flex-basis: 15%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .withdraw-request__history-orders li {
    font-size: .9em;    
  }
}

@media screen and (max-width: 570px) {

  .withdraw-request__history-orders {
    flex-wrap: wrap;
    padding-bottom: 1em;
    border-bottom: 1px solid #407793;
  }

  .withdraw-request__history-row li.withdraw-request__order-number + li   {
        flex: 1 1 100%;
    font-size: 1.2em;
    margin: .5em 0;
  }

  .withdraw-request__history-headers.withdraw-request__history-orders {
    display: none;
  }




}


/* Tickets pagination */

.account-tickets-pagination {

  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: .75rem;
      flex-wrap: wrap;

}

  .account-tickets-pagination:not(.active) {
    display: none;
  }

  .account-tickets-page:not(.active) {
    filter: saturate(0);
    transition: .25s filter;

  }
  
    .account-tickets-page:hover,
    .account-tickets-page:active,
    .account-tickets-page:focus {
        filter: none;
    }

  .account-tickets-page-button {
    background: linear-gradient( 40deg, #ae302a -14.96%, #ae302a 137.97% );
    padding: .5rem .25rem;
    border-radius: 50%;
    text-align: center;
    transition: .25s filter;

    width: 2.25em;
    height: 2.25em;
    line-height: 1;
  }
    

    .account-tickets-page-button:hover,
    .account-tickets-page-button:active,
    .account-tickets-page-button:focus {
        filter: saturate(1.1) brightness(1.1);
    }


/* =============================================
   Image Viewer с зумом
   ============================================= */

.image-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-viewer-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.image-viewer-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.image-viewer-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    cursor: grab;
    transition: transform 0.15s ease-out;
    user-select: none;
    -webkit-user-drag: none;
}

.image-viewer-img:active {
    cursor: grabbing;
}

/* Панель управления */
.image-viewer-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 43, 55, 0.95);
    border: 1px solid rgba(174, 48, 42, 0.4);
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.image-viewer-scale {
    min-width: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 0 8px;
}

/* Кнопки */
.image-viewer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(174, 48, 42, 0.2);
    border: 1px solid rgba(174, 48, 42, 0.5);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.image-viewer-btn:hover {
    background: rgba(174, 48, 42, 0.5);
    border-color: #ae302a;
    transform: scale(1.05);
}

.image-viewer-btn:active {
    transform: scale(0.95);
}

.image-viewer-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.image-viewer-btn svg {
    width: 20px;
    height: 20px;
}

/* Кнопка закрытия */
.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(18, 43, 55, 0.9);
    border: 1px solid rgba(174, 48, 42, 0.5);
    z-index: 2;
}

.image-viewer-close svg {
    width: 24px;
    height: 24px;
}

/* Кнопки навигации */
.image-viewer-prev,
.image-viewer-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(18, 43, 55, 0.9);
    border: 1px solid rgba(174, 48, 42, 0.5);
    border-radius: 50%;
    z-index: 2;
}

.image-viewer-prev {
    left: 20px;
}

.image-viewer-next {
    right: 20px;
}

.image-viewer-prev svg,
.image-viewer-next svg {
    width: 28px;
    height: 28px;
}

/* Мобильная адаптация */
@media (max-width: 767.98px) {
    .image-viewer-controls {
        bottom: 16px;
        padding: 8px 12px;
        gap: 6px;
    }

    .image-viewer-btn {
        width: 36px;
        height: 36px;
    }

    .image-viewer-btn svg {
        width: 18px;
        height: 18px;
    }

    .image-viewer-scale {
        font-size: 12px;
        min-width: 40px;
    }

    .image-viewer-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .image-viewer-prev,
    .image-viewer-next {
        width: 44px;
        height: 44px;
    }

    .image-viewer-prev {
        left: 12px;
    }

    .image-viewer-next {
        right: 12px;
    }

    .image-viewer-prev svg,
    .image-viewer-next svg {
        width: 24px;
        height: 24px;
    }

    .image-viewer-img {
        max-width: 95vw;
        max-height: 80vh;
    }
}
