.loading {
  position: relative;
  overflow: visible;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 20;
  display: block;
  width: 32px;
  height: 32px;
  transform: translateX(-50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/local/templates/tourism/custom/loading.svg");
  animation: loadingRotate 1s linear infinite;
}

@keyframes loadingRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.loading .card-guide {
  animation: opacity 3s linear infinite;
}
.loading .card-excurs {
  animation: opacity 3s linear infinite;
}
.loading .card-map {
  animation: opacity 3s linear infinite;
}
.loading .preview-card {
  animation: opacity 3s linear infinite;
}
.loading .card-news {
  animation: opacity 3s linear infinite;
}
@keyframes opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.header__search-wrapper a:last-child {
  display: none;
}
.title-search-result {
  z-index: 1000;
}
@media only screen and (max-width: 1279px) {
  .header__search-container {
    width: 100%;
  }
}
.btn-constructor.active {
  pointer-events: none;
}
.search-not-foud {
  display: flex;
  justify-content: center;
  font-family: Inter;
  font-size: 14px;
  color: rgba(0, 32, 51, 0.6);
}

#comment-name, #comment-error{
  display: none !important;
}
.input--square.is-error .input__wrapper{
  border: 1px solid #BE192D;
}
#modal--error-reviews .modal__body .s{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input.is-error .is-error{
  border: none !important;
}
input[name="stars"]{
 opacity: 0;
 overflow: hidden;
 position: absolute;
}
#stars-error{
  color: #BE192D;
}
.btn-back{
  display: block;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
  position: relative;
  padding-left: 15px;
  transition: all 0.3s ease 0s;
}
.btn-back::before {
  position: absolute;
  top: 5px;
  left: 0px;
  transform: rotate(180deg);
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M8.97495 6.50026L5.00008 10.4751L4.29297 9.76803L7.56073 6.50026L4.29297 3.2325L5.00008 2.52539L8.97495 6.50026Z' fill='black' fill-opacity='1' /></svg>");
}
.btn-back:hover{
  opacity: 0.5;
}
.article table{
  display: flex;
}
.article tbody{
  width: 100%;
  height: 100%;
  overflow: auto;
}