/*SCSS VARIABLES*/
/*ADAPTIVE DESIGN*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #007abc;
}

@media all and (max-width: 50em) {
  .desktop {
    display: none !important;
  }
}

@media all and (min-width: 50em) {
  .mobile {
    display: none !important;
  }
}

/*END ADAPTIVE DESIGN*/
/*HELPERS*/
/*html5 support*/
header,
nav,
section,
article,
aside,
footer {
  display: block;
  margin: 0;
}

a {
  text-decoration: none;
}

/*MENU*/
.body-wrapper .top-menu ul {
  width: 100%;
  display: table;
  margin: 0 auto;
  padding-top: 5px !important;
  padding-bottom: 15px !important;
}
.body-wrapper .top-menu ul li {
  display: table-cell;
  vertical-align: top;
}
.body-wrapper .top-menu ul li a .wrap {
  width: 97%;
  margin: auto;
  background: -webkit-linear-gradient(left, #ffffff 0%, #e5e5e5 100%);
  border-radius: 10px;
  padding: 3px;
  border: 1px solid #eeeeee;
}
@-moz-document url-prefix() {
  .body-wrapper .top-menu ul li a .wrap {
    width: 70%;
    display: table-cell;
  }
}
.body-wrapper .top-menu ul li a .wrap:hover {
  background: -webkit-linear-gradient(right, #ffffff 0%, #e5e5e5 100%);
}
.body-wrapper .top-menu ul li a:hover {
  text-decoration: none;
}
.body-wrapper .top-menu ul li a .wrap div {
  text-align: center;
  height: 35px;
  width: 100%;
  margin: auto;
  line-height: 34px;
  color: #1584c1;
  font-weight: 400;
  font-size: 14px;
  padding: 0 6px;
  background: linear-gradient(to right, #ebebeb 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ebebeb", endColorstr="#ffffff",GradientType=1 );
  border-radius: 8px;
}
@-moz-document url-prefix() {
  .body-wrapper .top-menu ul li a .wrap div {
    padding: 0;
  }
}
.body-wrapper .top-menu ul li:hover a .wrap div {
  background: -webkit-linear-gradient(right, #ebebeb 0%, #ffffff 100%);
}
.body-wrapper .top-menu .tourists-login div {
  background: #009846 !important;
}
.body-wrapper .top-menu .tourists-login div {
  color: #fff !important;
}
.body-wrapper .top-menu .online-order div {
  background: #e5097f !important;
}
.body-wrapper .top-menu .online-order div {
  color: #fff !important;
}

#my-menu {
  color: #1584c1;
}

/*SEARCHFILTER*/
#sort_hot_index_tours {
  color: #007abc;
}

/*   __
  / /_____  __  _______
 / __/ __ \/ / / / ___/
/ /_/ /_/ / /_/ / /
\__/\____/\__,_/_/

 */
.fa-star {
  color: #fff;
  text-shadow: 0 0 6px #444;
  cursor: pointer;
}

/*CONTENT*/
/*COUNTRY*/
.modal-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  opacity: 0.6;
}

/*  ADAPTIVE   http://bradfrostweb.com/blog/post/7-habits-of-highly-effective-media-queries/#content   */
/* Mobile-first styles */
/* Desktop-first styles: Avoid */
@media all and (min-width: 50em) {
  .languages {
    display: flex;
  }
}
.lang {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/static/index/img/lang.jpg);
  border-radius: 19px;
  background-size: 62px;
  border: 1px solid #efefef;
}
.lang--ru {
  background-position: 0 -1px;
}
.lang--blrs {
  background-position: 19px -1px;
}
.lang--kz {
  background-position: 41px -1px;
}

.policy {
  position: relative;
  width: 100%;
  background: #dedede;
  display: none;
}
.policy__text {
  max-width: 1000px;
  margin: 0 auto;
}
.policy__text p {
  line-height: 1.4em;
  color: #656565;
  font-family: "PT Sans", Arial;
  padding: 4px 20px 4px 10px;
}
@media all and (max-width: 50em) {
  .policy__text p {
    font-size: 12px;
  }
}
.policy__close {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}

.index_wrapper-howto {
  background-color: #ccc;
}

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media all and (max-width: 50em) {
  .index_wrapper.index_wrapper-howto {
    padding: 20px 10px 10px;
  }
}

.howto {
  display: flex;
  flex-direction: row;
  padding: 20px 40px;
  background-color: white;
  border-radius: 20px;
  gap: 40px;
  margin-top: 20px;
}
@media all and (max-width: 50em) {
  .howto {
    padding: 10px;
    gap: 10px;
    flex-direction: column;
  }
}
.howto__block {
  width: 50%;
}
@media all and (max-width: 50em) {
  .howto__block {
    width: 100%;
  }
}
.howto__list {
  list-style: none;
  padding: 0;
}
.howto__header {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
}
@media all and (max-width: 50em) {
  .howto__header {
    font-size: 18px;
    font-weight: normal;
  }
}
.howto__action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: linear-gradient(0deg, #ff0099 -100%, #fdddf3 196%);
  border: none;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  width: min-content;
  white-space: nowrap;
  line-height: 20px;
}
.howto__action icon {
  font-size: 16px;
  font-weight: normal;
}
.howto__action:hover {
  transform: scale(1.05);
}
@media all and (max-width: 50em) {
  .howto__action {
    font-size: 14px;
    font-weight: normal;
    padding: 5px 10px;
    width: 100%;
  }
}
.howto__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 20px;
  background-color: #f8f3f3;
  border-radius: 10px;
  transition: all 0.5s;
  min-height: 50px;
  justify-content: center;
}
@media all and (max-width: 50em) {
  .howto__item {
    min-height: unset;
    padding: 10px;
    position: relative;
  }
  .howto__item[open]:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0.5;
  }
}
.howto__item[open] .fa-chevron-down {
  transform: rotate(180deg);
}
.howto__item[open] summary ~ * {
  animation: open 0.5s;
}
.howto__item[open].howto__item_closing summary ~ * {
  animation: close 0.5s;
}
.howto__item.howto__item_closing .fa-chevron-down {
  transform: rotate(0deg);
}
.howto__item .fa-chevron-down {
  transition: transform 0.3s;
}
.howto__item-summary {
  display: flex;
  width: 100%;
  align-items: center;
  cursor: pointer;
  height: 30px;
}
@media all and (max-width: 50em) {
  .howto__item-summary {
    display: flex;
    gap: 10px;
  }
}
.howto__item-summary .fa-question {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00a3f4;
  border: 2px solid #00a3f4;
  font-size: 20px;
}
.howto__item-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  margin-right: 20px;
}
@media all and (max-width: 50em) {
  .howto__item-icon {
    margin-right: 0;
  }
}
.howto__item-header {
  font-size: 16px;
  font-weight: 400;
  flex: 1 1 auto;
  transition: all 0.3s;
}
@media all and (max-width: 50em) {
  .howto__item-header {
    font-size: 0.85rem;
    font-weight: normal;
    line-height: 1rem;
  }
}
.howto__item-content {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  overflow: visible;
  height: 90px;
  transition: all 0.5s;
}
@media all and (max-width: 50em) {
  .howto__item-content {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 280px;
    background-color: #fff;
    padding: 36px 30px 30px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 20;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .howto__item-content .howto__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007abc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
  }
  .howto__item-content-header {
    font-size: 18px;
    font-weight: bold;
  }
  .howto__item-content .howto__item-icon {
    width: 40px;
    height: 40px;
  }
}
.howto__item_closing .howto__item-content {
  margin-top: 0;
  overflow: hidden;
  height: 0;
}

/*# sourceMappingURL=index-styles.css.map */
