@charset "UTF-8";
/* reset */
/* main variables */
.lightTheme .test-css {
  color: #fff;
  background-color: #fff;
}
.darkTheme .test-css {
  color: #050d1f;
  background-color: #050d1f;
}

/* reset */
/* main variables */
.lightTheme .test-css {
  color: #fff;
  background-color: #fff;
}
.darkTheme .test-css {
  color: #050d1f;
  background-color: #050d1f;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  height: 100%;
  line-height: 1.6;
  position: relative;
  font-size: 15px !important;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lightTheme {
  background: #f7fbff;
  color: #081024;
}
body.darkTheme {
  background: #071129;
  color: #fff;
}

/*MAIN*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

input,
textarea {
  color: #333;
  font-family: "Montserrat", sans-serif;
  outline: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}

input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

td {
  margin: 0px;
  padding: 0px;
}

form {
  padding: 0px;
  margin: 0px;
}

a {
  transition: all 0.2s linear;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
span,
div,
button {
  outline: none !important;
}

button {
  background: none;
  border: transparent;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  outline: none;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 7px;
}
.lightTheme *::-webkit-scrollbar-track {
  background: #ebf1ff;
}
.darkTheme *::-webkit-scrollbar-track {
  background: #101d39;
}
*::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #5578cb;
  -webkit-transition: 0.5ms ease-in-out all;
  transition: 0.5ms ease-in-out all;
}
*::-webkit-scrollbar-thumb:hover {
  background: #ff6864;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99993;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #081024;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.8;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #c4c4c4;
  cursor: pointer;
  opacity: 1;
  padding: 5px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
  transition: all 0.2s linear;
}

.fancybox-close-small:hover {
  color: #000;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: #ff6864;
  padding: 0px;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  padding: 9px;
}
.lightTheme .fancybox-slide--html .fancybox-close-small {
  background: #fff;
  border: 1px solid #ebf1ff;
}
.darkTheme .fancybox-slide--html .fancybox-close-small {
  background: #050d1f;
  border: 1px solid #101d39;
}

.fancybox-slide--html .fancybox-close-small:hover {
  color: #5578cb;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/*
================================================================================
|                                     HEADER                                   |
================================================================================
*/
.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  height: 101px;
}
.lightTheme .header {
  background: #fff;
  border-bottom: 1px solid #ebf1ff;
}
.darkTheme .header {
  background: #050d1f;
  border-bottom: 1px solid #101d39;
}
.header-btn {
  height: 60px;
  width: 60px;
  border-radius: 15px;
  display: block;
  line-height: 60px;
  text-align: center;
  color: #5578cb;
  position: relative;
  margin-right: 20px;
}
.lightTheme .header-btn {
  background: #f8faff;
}
.darkTheme .header-btn {
  background: #000715;
}
.header-btn:hover {
  color: #ff6864;
}
.header-btn:last-child {
  margin-right: 0;
}
.header-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  fill: currentColor;
  width: 30px;
  height: 30px;
}
.header__right {
  flex: none;
}

.logo {
  width: 217px;
  display: block;
}
.logo img {
  max-width: 100%;
  height: auto;
}

.toggle-theme {
  width: 120px;
  height: 60px;
  border-radius: 15px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  margin-right: 40px;
}
.lightTheme .toggle-theme {
  background: #f8faff;
}
.darkTheme .toggle-theme {
  background: #000715;
}
.toggle-theme__link {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  line-height: 50px;
  text-align: center;
  color: #5578cb;
}
.toggle-theme__link:hover {
  color: #ff6864;
}
.toggle-theme__link svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.lightTheme .toggle-theme__link.js-toggle-light {
  color: #ff6864;
  background: #fff;
}

.darkTheme .toggle-theme__link.js-toggle-dark {
  color: #ff6864;
  background: #050d1f;
}

.hamburger {
  display: block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  border: 0;
  margin: 0;
  overflow: visible;
  width: 22px;
  height: 16px;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hamburger-box {
  width: 22px;
  height: 16px;
  display: block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  width: 22px;
  height: 3px;
  background-color: #5578cb;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-property: transform, background;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::after, .hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  top: -14px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
}

.is-active .hamburger--collapse .hamburger-inner {
  transform: rotate(45deg);
  bottom: 8px;
  right: -1px;
}

.is-active .hamburger--collapse .hamburger-inner::after {
  opacity: 0;
}

.is-active .hamburger--collapse .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
}

.header-btn:hover .hamburger-inner, .header-btn:hover .hamburger-inner::after, .header-btn:hover .hamburger-inner::before {
  background: #ff6864;
}

body.overflow {
  overflow: hidden !important;
  position: fixed;
}

.sidebar {
  position: fixed;
  top: 101px;
  left: 105%;
  right: -105%;
  bottom: 0;
  transition: all 0.3s;
  z-index: -1;
  overflow: hidden;
  overflow: auto;
  box-shadow: 0px 10px 30px 0px rgba(0, 43, 144, 0.1);
}
.lightTheme .sidebar {
  background: #fff;
  border-left: 1px solid #ebf1ff;
}
.darkTheme .sidebar {
  background: #050d1f;
  border-left: 1px solid #101d39;
}
.sidebar.active {
  overflow-y: auto;
  z-index: 12;
  left: calc(50% + 265px);
  right: 0;
}

.sidebar-inner {
  padding: 20px 0 20px 20px;
  top: 0;
  width: 319px;
  bottom: 0;
  max-width: 100%;
  min-height: 100%;
  position: relative;
}
.sidebar-inner-item {
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.lightTheme .sidebar-inner-item {
  border-bottom: 1px solid #ebf1ff;
}
.darkTheme .sidebar-inner-item {
  border-bottom: 1px solid #101d39;
}
.sidebar-inner-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none !important;
}
.sidebar-inner-item .social {
  padding-top: 20px;
}
.sidebar-inner .toggle-theme {
  margin: 0;
}

.btn-start {
  display: block;
  background: #ff6864;
  padding: 13px 20px;
  border-radius: 15px;
  font-size: 13px;
  text-align: center;
  color: #fff;
}
.btn-start b {
  font-size: 15px;
}
.btn-start:hover {
  background: #5578cb;
  color: #fff;
}

.main-nav {
  font-size: 18px;
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: -7px;
}
.main-nav-item {
  margin-bottom: 20px;
}
.main-nav-item:last-child {
  margin-bottom: 0;
}
.main-nav-item__link {
  color: inherit;
  position: relative;
  padding-left: 35px;
}
.main-nav-item__link svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  fill: #ff6864;
  transition: all 0.2s linear;
}
.main-nav-item__link:hover {
  color: #ff6864;
}
.main-nav_sm {
  font-size: 15px;
  font-weight: normal;
}
.main-nav_sm .main-nav-item {
  margin-bottom: 12px;
}
.main-nav_sm .main-nav-item:last-child {
  margin-bottom: 0;
}

.social {
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.social-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}
.social-item__link {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  color: #5578cb;
}
.social-item__link:hover {
  color: #ff6864;
}
.social-item__link svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.search {
  height: 60px;
  background: #f5f5f5;
  width: 100%;
  margin-bottom: 36px;
  display: flex;
  border-radius: 15px;
}
.lightTheme .search {
  background: #f8faff;
}
.darkTheme .search {
  background: #000715;
}
.search--header {
  width: 360px;
  margin-bottom: 0;
}
.search__input {
  width: calc(100% - 60px);
  height: 100%;
  padding: 0 0 0 20px;
  background: none;
  border-radius: 15px;
  border: none;
  font-size: 13px;
  color: #838fab;
}
.search__input:-moz-placeholder, .search__input::-moz-placeholder {
  color: #838fab;
  opacity: 1;
}
.search__input::-webkit-input-placeholder {
  color: #838fab;
}
.search__btn {
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 15px;
  line-height: 60px;
  color: #5578cb;
  text-align: center;
  background: none;
  border: none;
  transition: all 0.2s linear;
}
.search__btn svg {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-top: -3px;
}
.search__btn:hover {
  color: #ff6864;
}
.map-section {
  color: #000;
}

@media screen and (max-width: 1199px) {
  .sidebar.active {
    left: calc(100% - 340px);
  }

  .sidebar-inner-item .social {
    padding-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .sidebar-inner-item .social-item {
    margin: 0 10px 0 0;
  }

  .search--header {
    width: 335px;
  }

  .sidebar-inner-item .social {
    text-align: left;
  }

  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
  body.menu-open .main-wrapper:before {
    z-index: 8;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .logo {
    width: 140px;
    flex: none;
  }

  .header {
    height: 65px;
    padding: 10px 0;
  }

  .header-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-right: 10px;
  }
  .header-btn svg {
    width: 25px;
    height: 25px;
  }

  .search--header {
    width: 260px;
    height: 45px;
    border-radius: 10px;
  }
  .search--header .search__input {
    border-radius: 10px;
    width: calc(100% - 45px);
    padding-left: 15px;
  }
  .search--header .search__btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    line-height: 45px;
  }

  .sidebar {
    top: 65px;
  }

  .sidebar.active {
    left: 0;
  }

  .sidebar-inner {
    width: 100%;
    padding: 15px;
  }

  .sidebar-inner-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .main-nav {
    margin-bottom: 0;
  }

  .main-nav {
    font-size: 16px;
    padding-left: 0;
  }

  .main-nav_sm {
    font-size: 14px;
  }

  .btn-start b {
    font-size: 14px;
  }

  .toggle-theme__link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
  }
  .toggle-theme__link svg {
    width: 24px;
    height: 24px;
  }

  .toggle-theme {
    width: 100px;
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .search--header {
    width: 100%;
    margin-top: 20px;
  }
}
/*
================================================================================
|                                     FOOTER                                   |
================================================================================
*/
.footer {
  position: relative;
  z-index: 2;
}
.lightTheme .footer {
  background: #fff;
  border-top: 1px solid #ebf1ff;
}
.darkTheme .footer {
  background: #050d1f;
  border-top: 1px solid #101d39;
}
.footer__top {
  padding: 25px 0 20px;
}
.footer__bottom {
  padding: 25px 0;
  font-size: 13px;
}
.lightTheme .footer__bottom {
  border-top: 1px solid #ebf1ff;
  color: #838fab;
}
.darkTheme .footer__bottom {
  border-top: 1px solid #101d39;
  color: #838fab;
}
.footer__bottom a {
  color: inherit;
}
.footer__bottom a:hover {
  color: #ff6864;
}
.footer__bottom .col-12:nth-child(2) {
  text-align: center;
}
.footer__bottom .col-12:nth-child(3) {
  text-align: right;
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.footer__links {
  font-weight: 500;
}
.footer__links a {
  color: inherit;
  display: inline-block;
  margin-bottom: 5px;
}
.footer__links a:last-child {
  margin-bottom: 0;
}
.footer__links a:hover {
  color: #ff6864;
}
.footer .social {
  width: auto;
}

.footer-age {
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin: -4px 16px 0 0;
  color: #5578cb;
}
.lightTheme .footer-age {
  background: #e0e9ff;
}
.darkTheme .footer-age {
  background: #000715;
}

@media screen and (max-width: 1199px) {
  .footer {
    font-size: 14px;
  }

  .footer-nav-item__icon {
    top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .footer-age {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 0px;
    font-size: 12px;
  }

  .footer__logo {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    text-align: center;
  }

  .footer__logo {
    width: 140px;
    margin-bottom: 20px;
  }

  .footer .social {
    margin-bottom: 20px;
  }

  .footer__bottom .col-12:nth-child(n) {
    padding-bottom: 10px;
    text-align: center;
  }

  .footer__bottom {
    padding-bottom: 5px;
  }
}
.body-overflow {
  overflow: hidden;
}

.main-wrapper {
  padding: 0;
  min-width: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding-top: 100px;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

input::-ms-clear {
  display: none;
}

/* loader */
a {
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/*
================================================================================
|                                     CONTENT                                 |
================================================================================
*/
.content {
  position: relative;
}

.container {
  max-width: 1200px;
}

@media (min-width: 1440px) {
  .col-x2l {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-x2l-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-x2l-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-x2l-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-x2l-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-x2l-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-x2l-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-x2l-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-x2l-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-x2l-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-x2l-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-x2l-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-x2l-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-x2l-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-x2l-first {
    order: -1;
  }

  .order-x2l-last {
    order: 13;
  }

  .order-x2l-0 {
    order: 0;
  }

  .order-x2l-1 {
    order: 1;
  }

  .order-x2l-2 {
    order: 2;
  }

  .order-x2l-3 {
    order: 3;
  }

  .order-x2l-4 {
    order: 4;
  }

  .order-x2l-5 {
    order: 5;
  }

  .order-x2l-6 {
    order: 6;
  }

  .order-x2l-7 {
    order: 7;
  }

  .order-x2l-8 {
    order: 8;
  }

  .order-x2l-9 {
    order: 9;
  }

  .order-x2l-10 {
    order: 10;
  }

  .order-x2l-11 {
    order: 11;
  }

  .order-x2l-12 {
    order: 12;
  }

  .offset-x2l-0 {
    margin-left: 0;
  }

  .offset-x2l-1 {
    margin-left: 8.333333%;
  }

  .offset-x2l-2 {
    margin-left: 16.666667%;
  }

  .offset-x2l-3 {
    margin-left: 25%;
  }

  .offset-x2l-4 {
    margin-left: 33.333333%;
  }

  .offset-x2l-5 {
    margin-left: 41.666667%;
  }

  .offset-x2l-6 {
    margin-left: 50%;
  }

  .offset-x2l-7 {
    margin-left: 58.333333%;
  }

  .offset-x2l-8 {
    margin-left: 66.666667%;
  }

  .offset-x2l-9 {
    margin-left: 75%;
  }

  .offset-x2l-10 {
    margin-left: 83.333333%;
  }

  .offset-x2l-11 {
    margin-left: 91.666667%;
  }

  .d-x2l-block {
    display: block !important;
  }

  .justify-content-x2l-between {
    justify-content: space-between !important;
  }

  .offset-x2l-1 {
    margin-left: 8.333333%;
  }
  .filter-map-categories__category-filter {
    width: 50% !important;
  }
  .filter-map-categories__date-filter {
    width: 45% !important;
  }
}
.btn {
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 34px;
  color: #fff;
  display: inline-block;
  transition: all 0.2s linear;
  text-align: center;
  white-space: nowrap;
  border-radius: 15px;
  background: #ff6864;
  position: relative;
  z-index: 2;
  overflow: hidden;
  line-height: 60px;
  height: 60px;
  box-shadow: none !important;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
  background: #5578cb;
}
.btn--center {
  display: flex;
  margin: auto;
}

.form div.error {
  position: absolute;
  bottom: 14px;
  color: #ff6864;
  display: none;
  font-size: 11px;
  width: 100%;
  white-space: nowrap;
  text-align: left;
  padding-left: 16px;
}
.form--cabinet label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.form--cabinet label span {
  color: #ff6864;
  margin-left: 5px;
}
.form--cabinet div.error {
  position: relative;
  padding-left: 0;
  margin-top: 0.5rem;
  bottom: unset;
}
.form-control {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 15px;
  box-shadow: none !important;
  font-size: 15px;
  transition: all 0.2s linear;
}
.lightTheme .form-control {
  background: #f7fbff;
  border: 1px solid #f7fbff;
  color: #081024;
}
.lightTheme .form-control:-moz-placeholder, .lightTheme .form-control::-moz-placeholder {
  color: #838fab;
  opacity: 1;
}
.lightTheme .form-control::-webkit-input-placeholder {
  color: #838fab;
}
.darkTheme .form-control {
  background: #071129;
  border: 1px solid #071129;
  color: #fff;
}
.darkTheme .form-control:-moz-placeholder, .darkTheme .form-control::-moz-placeholder {
  color: #838fab;
  opacity: 1;
}
.darkTheme .form-control::-webkit-input-placeholder {
  color: #838fab;
}
.form-control.error {
  border-color: #ff6864;
}
.lightTheme .form-control.error:focus {
  border-color: #ff6864;
}
.darkTheme .form-control.error:focus {
  border-color: #ff6864;
}
.lightTheme .form-control:focus {
  background: #f7fbff;
  border: 1px solid #f7fbff;
}
.darkTheme .form-control:focus {
  background: #071129;
  border: 1px solid #071129;
}
.form .row {
  margin: 0 -10px -10px;
}
.form .col-12 {
  padding: 0 10px 10px;
  position: relative;
}
.form .btn {
  margin-top: 10px;
}
.form-col {
  position: relative;
}
.form-radio {
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  display: inline-block;
}
.form-radio input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.form-radio input + span {
  padding-left: 35px;
  position: relative;
  display: inline-block;
}
.form-radio input + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.lightTheme .form-radio input + span:before {
  background: #fff;
  border: 1px solid #ebf1ff;
}
.darkTheme .form-radio input + span:before {
  background: #050d1f;
  border: 1px solid #101d39;
}
.form-radio input + span:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg height='556' viewBox='0 -46 417.813 417' width='556' xmlns='http://www.w3.org/2000/svg' fill='%23ff6864'%3E%3Cpath d='M159.988 318.582c-3.988 4.012-9.43 6.25-15.082 6.25s-11.094-2.238-15.082-6.25L9.375 198.113c-12.5-12.5-12.5-32.77 0-45.246l15.082-15.086c12.504-12.5 32.75-12.5 45.25 0l75.2 75.203L348.104 9.781c12.504-12.5 32.77-12.5 45.25 0l15.082 15.086c12.5 12.5 12.5 32.766 0 45.246zm0 0'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}
.form-radio input:checked + span:after {
  opacity: 1;
}
.form-radio__test-choised {
  color: #ff6864;
}
.form-radio__img {
  max-width: 100%;
  width: 294px;
  height: auto;
}
.form-radios__item {
  margin-bottom: 15px;
  display: block;
  line-height: 20px;
}
.form-radios__item:last-child {
  margin-bottom: 0;
}
.form-radios_flex {
  margin-right: -50px;
  margin-bottom: -30px;
}
.form-radios_flex .form-radios__item {
  margin-right: 50px;
  margin-bottom: 30px;
}
.form-link {
  font-size: 13px;
  color: inherit;
  text-decoration: underline;
}
.form-link:hover {
  color: #ff6864;
}

textarea.form-control {
  height: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: none;
}

.error-content .tox-tinymce {
  border-color: #ff6864;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:-internal-autofill-selected {
  color: #fff !important;
}
.lightTheme input:-internal-autofill-selected {
  -webkit-text-fill-color: #081024;
  background-color: #ebf1ff;
}
.darkTheme input:-internal-autofill-selected {
  -webkit-text-fill-color: #fff;
  background-color: #101d39;
}

.select2-container--default .select2-selection--single {
  border-radius: 15px;
  transition: all 0.2s linear;
  height: 60px;
}
.lightTheme .select2-container--default .select2-selection--single {
  background: #f7fbff;
  border: 1px solid #f7fbff;
  color: #081024;
}
.darkTheme .select2-container--default .select2-selection--single {
  background: #071129;
  border: 1px solid #071129;
  color: #fff;
}
.lightTheme .select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #081024 transparent !important;
}
.darkTheme .select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #fff transparent !important;
}

.select2-dropdown {
  border-radius: 15px;
}
.lightTheme .select2-dropdown {
  background: #f7fbff;
  border: 1px solid #f7fbff;
  color: #081024 !important;
}
.darkTheme .select2-dropdown {
  background: #071129;
  border: 1px solid #071129;
  color: #fff !important;
}
.select2-search__field {
  border: 1px solid #5578cb !important;
}
.lightTheme .select2-search__field {
  background: #f8faff;
  color: #081024 !important;
}
.darkTheme .select2-search__field {
  background: #000715;
  color: #fff !important;
}
.select2-results__option--selected {
  background-color: #ff6864 !important;
  color: #fff !important;
}
.select2-selection__rendered {
  font-size: 15px;
  line-height: 60px !important;
  padding-left: 20px !important;
}
.lightTheme .select2-selection__rendered {
  color: #081024 !important;
}
.darkTheme .select2-selection__rendered {
  color: #fff !important;
}
.select2-selection__arrow {
  height: 60px !important;
  padding: 0 20px;
}
.lightTheme .select2-selection__arrow b {
  border-color: #081024 transparent transparent transparent !important;
}
.darkTheme .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent !important;
}

.select2-selection--multiple {
  font-size: 15px;
}
.lightTheme .select2-selection--multiple {
  color: #081024 !important;
  background: #f7fbff;
  border: 1px solid #f7fbff !important;
}
.darkTheme .select2-selection--multiple {
  color: #fff !important;
  background: #071129;
  border: 1px solid #071129 !important;
}
.select2-selection--multiple .select2-selection__rendered {
  line-height: 40px !important;
  padding-left: 0 !important;
}
.select2-selection__choice {
  border-color: #5578cb !important;
}
.lightTheme .select2-selection__choice {
  color: #081024 !important;
  background: #f8faff !important;
}
.darkTheme .select2-selection__choice {
  color: #fff !important;
  background: #000715 !important;
}
.select2-selection__choice__remove {
  color: #5578cb !important;
  border-color: #5578cb !important;
}
.select2-selection__choice__remove:hover, .select2-selection__choice__remove:focus {
  background-color: #5578cb !important;
  color: #fff !important;
}
.select2-selection .select2-search__field {
  height: 42px !important;
  line-height: 42px !important;
}

.error-content .select2-selection--multiple {
  border-color: #ff6864 !important;
}

.section-main {
  padding: 20px 0 60px 0;
}
.section-main__content {
  width: calc(100% - 300px);
  padding-right: 30px;
}
.section-main__aside {
  width: 300px;
}

.nav {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
.lightTheme .nav {
  border-bottom: 1px solid #ebf1ff;
}
.darkTheme .nav {
  border-bottom: 1px solid #101d39;
}
.nav-item {
  margin-bottom: -1px;
}
.nav-item:hover .nav-item__link, .nav-item.opened .nav-item__link {
  color: inherit;
}
.lightTheme .nav-item:hover .nav-item__link, .lightTheme .nav-item.opened .nav-item__link {
  border-color: #ebf1ff;
  background: #fff;
}
.darkTheme .nav-item:hover .nav-item__link, .darkTheme .nav-item.opened .nav-item__link {
  border-color: #101d39;
  background: #050d1f;
}
.nav-item:hover .nav-item__link svg, .nav-item.opened .nav-item__link svg {
  fill: #ff6864;
}
.nav-item:hover .nav-item__link.active, .nav-item.opened .nav-item__link.active {
  color: inherit;
  background: none;
  border-color: transparent;
}
.nav-item__link {
  color: inherit;
  position: relative;
  display: block;
  padding: 20px 28px;
  border-radius: 15px 15px 0 0;
  border: 1px solid transparent;
  z-index: 8;
}
.nav-item__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #5578cb;
  opacity: 0;
}
.nav-item__link svg {
  width: 16px;
  height: 16px;
  fill: #5578cb;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 4px;
  transition: all 0.2s linear;
}
.nav-item__link:hover {
  color: inherit;
}
.lightTheme .nav-item__link:hover {
  border-color: #ebf1ff;
  background: #fff;
}
.darkTheme .nav-item__link:hover {
  border-color: #101d39;
  background: #050d1f;
}
.nav-item__link:hover svg {
  fill: #ff6864;
}
.nav-item__link.active:after {
  opacity: 1;
}
.nav-item__link.active:hover {
  color: inherit;
  background: none;
  border-color: transparent;
}
.nav-trigger {
  display: none;
}

.subnav-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0px 10px 30px 0px rgba(0, 43, 144, 0.1);
  padding: 45px 50px 40px;
  z-index: 8;
  display: none;
}
.lightTheme .subnav-wrapper {
  border: 1px solid #ebf1ff;
  background: #fff;
}
.darkTheme .subnav-wrapper {
  border: 1px solid #101d39;
  background: #050d1f;
}

.subnav {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: 15px;
  font-weight: normal;
}
.subnav-item {
  margin-bottom: 12px;
}
.subnav-item__link {
  color: inherit;
}
.subnav-item__link:hover {
  color: #ff6864;
}

.topics-tests {
  margin-bottom: 30px;
}
.topics-tests__btn {
  text-align: center;
  margin-bottom: 60px;
}

.topic {
  padding: 30px 30px 25px 30px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.topic:last-child {
  margin-bottom: 0;
}
.lightTheme .topic {
  border: 1px solid #ebf1ff;
  background: #fff;
}
.darkTheme .topic {
  border: 1px solid #101d39;
  background: #050d1f;
}
.topic__top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.topic__category {
  min-width: 80px;
  height: 33px;
  flex: none;
  line-height: 33px;
  padding: 0 5px;
  text-align: center;
  border-radius: 10px;
  margin-right: 30px;
  font-size: 13px;
  background: #ff68ac;
}
.lightTheme .topic__category {
  color: #fff;
}
.darkTheme .topic__category {
  color: #000a21;
}
.topic__category_violet {
  background: #b368ff;
}
.topic__category_blue {
  background: #68a1ff;
}
.topic__category_green {
  background: #5dd69c;
}
.topic__title {
  font-size: 18px;
  font-weight: 600;
  min-height: 44px;
  margin-top: -5px;
  display: flex;
  align-items: center;
  line-height: 22px;
}
.topic__title a {
  color: inherit;
}
.topic__title a:hover {
  color: #ff6864;
}
.topic__title h1 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.topic__title h1 span {
  font-weight: normal;
}
.topic__text {
  margin-bottom: 20px;
}
.topic__bottom {
  display: flex;
  justify-content: space-between;
}
.topic__bottom--edit {
  margin-top: 10px;
}
.topic__info {
  font-size: 13px;
}
.lightTheme .topic__info {
  color: #838fab;
}
.darkTheme .topic__info {
  color: #838fab;
}
.topic__info a {
  color: inherit;
}
.topic__info a:hover {
  color: #ff6864;
}
.topic__info a svg {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 0;
  fill: #ff6864;
  width: 15px;
  height: 15px;
}
.topic__info_rubrics a svg {
  fill: #ffe380;
}
.topic-banner {
  margin-top: 30px;
  margin-bottom: 30px;
}
.topic-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}
.topic-single .topic__title {
  font-size: 24px;
  line-height: 28px;
}
.topic-single__bottom {
  padding: 22px 30px;
  margin-top: 35px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.lightTheme .topic-single__bottom {
  background: #f7fbff;
  color: #838fab;
}
.darkTheme .topic-single__bottom {
  background: #071129;
  color: #838fab;
}
.topic-single__info {
  display: inline-block;
  vertical-align: middle;
  margin-right: 55px;
  white-space: nowrap;
}
.topic-single__info:last-child {
  margin-right: 0;
}
.topic-single__info svg {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 12px 0 0;
  width: 15px;
  height: 15px;
}
.topic-single__info a {
  color: inherit;
  text-decoration: underline;
}
.topic-single__info a:hover {
  color: #ff6864;
  text-decoration: underline;
}
.topic-single__info b {
  font-size: 18px;
  color: #5578cb;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 8px 0 0;
}
.topic-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.topic-share-link {
  font-size: 13px;
  display: flex;
  align-items: center;
}
.lightTheme .topic-share-link {
  color: #838fab;
}
.darkTheme .topic-share-link {
  color: #838fab;
}
.topic-share-link--comment-like {
  display: inline-block;
}
.topic-share-link__icon {
  fill: #f44336;
}
.topic-share-link__icon .liked-path {
  display: none;
}
.active .topic-share-link__icon .liked-path {
  display: flex !important;
}
.topic-share-link svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-right: 15px;
}
.topic-share-link__text {
  padding: 0 8px;
  border-radius: 5px;
  position: relative;
  height: 28px;
  line-height: 26px;
  transition: all 0.2s linear;
}
.lightTheme .topic-share-link__text {
  border: 1px solid #ebf1ff;
}
.darkTheme .topic-share-link__text {
  border: 1px solid #101d39;
}
.topic-share-link__text--like {
  min-width: 70px;
  text-align: center;
}
.topic-share-link__text:before {
  content: "";
  position: absolute;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  top: calc(50% - 7px);
  transition: all 0.2s linear;
}
.lightTheme .topic-share-link__text:before {
  border-right: 10px solid #ebf1ff;
}
.darkTheme .topic-share-link__text:before {
  border-right: 10px solid #101d39;
}
.topic-share-link__text:after {
  content: "";
  position: absolute;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  top: calc(50% - 6px);
  transition: all 0.2s linear;
}
.lightTheme .topic-share-link__text:after {
  border-right: 8px solid #fff;
}
.darkTheme .topic-share-link__text:after {
  border-right: 8px solid #050d1f;
}
.lightTheme .topic-share-link:hover .topic-share-link__text {
  background: #f7fbff;
}
.darkTheme .topic-share-link:hover .topic-share-link__text {
  background: #071129;
}
.lightTheme .topic-share-link:hover .topic-share-link__text:after {
  border-right: 8px solid #f7fbff;
}
.darkTheme .topic-share-link:hover .topic-share-link__text:after {
  border-right: 8px solid #071129;
}
.topic-tags {
  padding-top: 25px;
  font-size: 13px;
  margin-bottom: -10px;
}
.lightTheme .topic-tags {
  border-top: 1px solid #ebf1ff;
}
.darkTheme .topic-tags {
  border-top: 1px solid #101d39;
}
.topic-tags__item {
  color: inherit;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  margin-bottom: 10px;
}
.topic-tags__item:last-child {
  margin-right: 0;
}
.topic-tags__item span {
  color: #ff6864;
}
.topic-tags__item:hover {
  color: #ff6864;
}
.topic-survey {
  padding: 30px;
  margin: 30px 0;
  border-radius: 15px;
}
.lightTheme .topic-survey {
  background: #f7fbff;
}
.darkTheme .topic-survey {
  background: #071129;
}
.topic-hr {
  height: 1px;
  margin: 30px 0;
}
.lightTheme .topic-hr {
  background: #ebf1ff;
}
.darkTheme .topic-hr {
  background: #101d39;
}
.topic-tests .topic-survey {
  margin-bottom: 5px;
  margin-top: 25px;
}
.topic-tests .topic__category {
  min-width: 50px;
}

.aside .btn-start {
  margin-bottom: 20px;
}
.aside-banner {
  margin-bottom: 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.aside-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}
.aside-table {
  border-radius: 15px;
  margin-bottom: 20px;
}
.lightTheme .aside-table {
  border: 1px solid #ebf1ff;
  background: #fff;
}
.darkTheme .aside-table {
  border: 1px solid #101d39;
  background: #050d1f;
}
.aside-table__title {
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px 15px 0 0;
  padding: 20px 30px;
}
.lightTheme .aside-table__title {
  background: #e0e9ff;
}
.darkTheme .aside-table__title {
  background: #000715;
}
.aside-topic {
  padding: 20px;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
}
.lightTheme .aside-topic {
  border-color: #ebf1ff;
}
.darkTheme .aside-topic {
  border-color: #101d39;
}
.aside-topic:last-child {
  border-bottom: none;
}
.aside-topic__category {
  min-width: 66px;
  height: 30px;
  flex: none;
  line-height: 30px;
  padding: 0 5px;
  text-align: center;
  border-radius: 10px;
  margin-right: 20px;
  font-size: 11px;
  background: #ff68ac;
}
.lightTheme .aside-topic__category {
  color: #fff;
}
.darkTheme .aside-topic__category {
  color: #000a21;
}
.aside-topic__category_violet {
  background: #b368ff;
}
.aside-topic__category_blue {
  background: #68a1ff;
}
.aside-topic__category_orange {
  background: #ff9d68;
}
.aside-topic__category_yellow {
  background: #ffcb68;
}
.aside-topic__category_sm {
  min-width: 50px;
}
.aside-topic__category_green {
  background: #5dd69c;
}
.aside-topic__title {
  line-height: 1.2;
  font-weight: 500;
  min-height: 36px;
  margin-top: -3px;
  margin-bottom: -3px;
  display: flex;
  align-items: center;
}
.aside-topic__title a {
  color: inherit;
}
.aside-topic__title a:hover {
  color: #ff6864;
}

.test-error .topic-survey {
  border: 1px solid #ff6864;
}
.test-error .error {
  width: 100%;
  margin-top: 16px;
  font-size: 11px;
  color: #ff6864;
  white-space: nowrap;
  text-align: left;
}

.breadcrumb {
  background: none;
  font-size: 13px;
  padding: 0;
  margin: 0 0 25px 0;
  border-radius: 0;
  padding-top: 5px;
}
.lightTheme .breadcrumb {
  color: #838fab;
}
.darkTheme .breadcrumb {
  color: #838fab;
}
.breadcrumb a {
  color: inherit;
}
.breadcrumb a:hover {
  color: #ff6864;
  text-decoration: none;
}

.lightTheme .breadcrumb-item.active {
  color: #081024;
}
.darkTheme .breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item {
  padding-right: 6px;
  padding-left: 0 !important;
}
.breadcrumb-item:after {
  color: #ff6864;
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492.004 492.004' xml:space='preserve' fill='%23ff6864'%3E%3Cpath d='M382.678 226.804 163.73 7.86C158.666 2.792 151.906 0 144.698 0s-13.968 2.792-19.032 7.86l-16.124 16.12c-10.492 10.504-10.492 27.576 0 38.064L293.398 245.9l-184.06 184.06c-5.064 5.068-7.86 11.824-7.86 19.028 0 7.212 2.796 13.968 7.86 19.04l16.124 16.116c5.068 5.068 11.824 7.86 19.032 7.86s13.968-2.792 19.032-7.86L382.678 265c5.076-5.084 7.864-11.872 7.848-19.088.016-7.244-2.772-14.028-7.848-19.108z'/%3E%3C/svg%3E");
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 6px;
  float: none;
}
.breadcrumb-item:before {
  display: none;
}
.breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb-item:last-child:after {
  display: none;
}

.text p {
  margin-bottom: 20px;
}
.text p:last-child {
  margin-bottom: 0;
}
.text img {
  max-width: 100%;
  height: auto !important;
  margin-top: 5px;
  margin-bottom: 10px;
}
.text ol {
  margin-bottom: 25px;
  margin-left: 50px;
  list-style: decimal;
}
.text ol:last-child {
  margin-bottom: 0;
}
.text ul {
  list-style: disc;
  margin-bottom: 25px;
  margin-left: 35px;
}
.text ul:last-child {
  margin-bottom: 0;
}
.text h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.text h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
.text h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}
.text a {
  color: #ff6864;
  text-decoration: underline;
  font-weight: 500;
  text-shadow: 0 0;
}
.text a:hover {
  color: #5578cb;
}
.text table {
  width: 100%;
}
.text table:last-child {
  margin-bottom: 0;
}
.text table th {
  padding: 17px 10px;
  text-align: center;
  font-weight: 500;
  text-shadow: 0 0;
}
.lightTheme .text table th {
  border: 1px solid #ebf1ff;
  background: #f7fbff;
}
.darkTheme .text table th {
  border: 1px solid #101d39;
  background: #071129;
}
.text table td {
  padding: 17px 10px;
  text-align: center;
  font-weight: 500;
  text-shadow: 0 0;
}
.lightTheme .text table td {
  border: 1px solid #ebf1ff;
}
.darkTheme .text table td {
  border: 1px solid #101d39;
}
.text .table-wrap {
  margin-bottom: 35px;
  margin-top: 35px;
}
.text blockquote {
  margin: 35px 40px 40px;
  position: relative;
  padding: 50px 30px 40px;
  font-weight: 600;
}
.lightTheme .text blockquote {
  background: #f7fbff;
}
.darkTheme .text blockquote {
  background: #071129;
}
.text blockquote:before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 -72 512 512' xmlns='http://www.w3.org/2000/svg' fill='%23a8c2ff'%3E%3Cpath d='M207.8 0H15C6.715 0 0 6.715 0 15v192.8c0 8.286 6.715 15 15 15h81.398v129.602c0 8.282 6.715 15 15 15h48.204a14.994 14.994 0 0 0 14.226-10.257l48.2-144.602c.511-1.527.773-3.129.773-4.742V15c0-8.285-6.715-15-15-15zM497 0H304.2c-8.286 0-15 6.715-15 15v192.8c0 8.286 6.714 15 15 15h81.402v129.602c0 8.282 6.714 15 15 15H448.8a15.002 15.002 0 0 0 14.23-10.257l48.2-144.602c.507-1.527.769-3.129.769-4.742V15c0-8.285-6.715-15-15-15zm0 0'/%3E%3C/svg%3E");
  background-size: contain;
  width: 50px;
  height: 50px;
  top: -20px;
  left: calc(50% - 25px);
}

.comment-form {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}
.lightTheme .comment-form {
  border: 1px solid #ebf1ff;
  background: #fff;
}
.darkTheme .comment-form {
  border: 1px solid #101d39;
  background: #050d1f;
}
.comment-form__notice {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comment-form__notice img {
  max-width: 150px;
  margin-bottom: 10px;
}
.comment-form__notice p {
  text-align: center;
  font-size: 19px;
}
.comment-form__notice p a {
  color: #ff6864;
  text-decoration: underline;
}

.comment-form-top {
  display: flex;
  flex-wrap: wrap;
}
.comment-form-top__answer {
  padding: 12px 20px;
  border-radius: 15px;
  margin: 0 10px 0 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  line-height: 1.2;
}
.lightTheme .comment-form-top__answer {
  background: #f7fbff;
  color: #838fab;
}
.darkTheme .comment-form-top__answer {
  background: #071129;
  color: #838fab;
}
.comment-form-top__answer a {
  text-decoration: underline;
  white-space: nowrap;
}
.lightTheme .comment-form-top__answer a {
  color: #081024;
}
.darkTheme .comment-form-top__answer a {
  color: #fff;
}
.comment-form-top__answer a:hover {
  color: #ff6864;
}
.comment-form-top__remove-btn {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin-bottom: 30px;
}
.comment-form-top__remove-btn:before {
  content: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 122.87 122.87' fill='%23ff6864'%3E%3Ctitle%3Eremove%3C/title%3E%3Cpath d='M18,18A61.45,61.45,0,1,1,0,61.44,61.28,61.28,0,0,1,18,18ZM77.38,39l6.53,6.54a4,4,0,0,1,0,5.63L73.6,61.44,83.91,71.75a4,4,0,0,1,0,5.63l-6.53,6.53a4,4,0,0,1-5.63,0L61.44,73.6,51.13,83.91a4,4,0,0,1-5.63,0L39,77.38a4,4,0,0,1,0-5.63L49.28,61.44,39,51.13a4,4,0,0,1,0-5.63L45.5,39a4,4,0,0,1,5.63,0L61.44,49.28,71.75,39a4,4,0,0,1,5.63,0ZM61.44,10.54a50.91,50.91,0,1,0,36,14.91,50.83,50.83,0,0,0-36-14.91Z'/%3E%3C/svg%3E");
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.comment-form-top__remove-btn:hover {
  color: #ff6864;
}

.comments {
  margin-bottom: 30px;
}
.comments-item {
  padding: 25px 30px 25px 30px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.comments-item:last-child {
  margin-bottom: 0;
}
.lightTheme .comments-item {
  border: 1px solid #ebf1ff;
  background: #fff;
}
.darkTheme .comments-item {
  border: 1px solid #101d39;
  background: #050d1f;
}
.comments-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px 0;
  margin-bottom: 25px;
}
.lightTheme .comments-item__top {
  border-bottom: 1px solid #ebf1ff;
}
.darkTheme .comments-item__top {
  border-bottom: 1px solid #101d39;
}
.comments-item__top-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comments-item__user {
  white-space: nowrap;
}
.comments-item__user svg {
  fill: #ff6864;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 10px 0 0;
  width: 15px;
  height: 15px;
}
.comments-item__user a {
  color: inherit;
  text-decoration: underline;
}
.comments-item__user a:hover {
  color: #ff6864;
}
.comments-item__user span {
  padding-left: 10px;
}
.comments-item__user span:before {
  content: "|";
  padding-right: 10px;
}
.comments-item__for {
  padding: 12px 20px;
  border-radius: 15px;
  margin: -18px 30px -18px 0;
}
.lightTheme .comments-item__for {
  background: #f7fbff;
  color: #838fab;
}
.darkTheme .comments-item__for {
  background: #071129;
  color: #838fab;
}
.comments-item__for a {
  text-decoration: underline;
  white-space: nowrap;
}
.lightTheme .comments-item__for a {
  color: #081024;
}
.darkTheme .comments-item__for a {
  color: #fff;
}
.comments-item__for a:hover {
  color: #ff6864;
}
.comments-item__like svg {
  fill: #ff4132;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 5px 0 0;
  width: 15px;
  height: 15px;
}
.comments-item__content {
  padding: 0 30px;
}
.comments-item__content p {
  margin-bottom: 10px;
}
.comments-item__content blockquote {
  font-size: 13px;
  margin: 0 -30px 15px;
  padding: 15px 30px;
  font-weight: 400;
}
.lightTheme .comments-item__content blockquote {
  background: #f7fbff;
  color: #838fab;
}
.darkTheme .comments-item__content blockquote {
  background: #071129;
  color: #838fab;
}
.comments-item__content blockquote:before {
  display: none;
}
.comments-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.comments-item__answer-btn {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-weight: 500;
}
.comments-item__answer-btn__icon {
  display: inline-block;
  width: 14px;
  height: 13px;
  margin-right: 7px;
}
.comments-item__link-edit {
  display: flex;
  align-items: center;
}
.comments-item__link-edit svg {
  width: 20px;
  margin-right: 5px;
}

.topics-more {
  padding: 25px 30px 20px;
  border-radius: 15px;
}
.lightTheme .topics-more {
  border: 1px solid #ebf1ff;
  background: #fff;
}
.darkTheme .topics-more {
  border: 1px solid #101d39;
  background: #050d1f;
}
.topics-more__title {
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 20px 0;
  margin-bottom: 25px;
}
.lightTheme .topics-more__title {
  border-bottom: 1px solid #ebf1ff;
}
.darkTheme .topics-more__title {
  border-bottom: 1px solid #101d39;
}
.topics-more-list {
  font-weight: 500;
  padding-left: 10px;
}
.topics-more-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.topics-more-list-item:last-child {
  margin-bottom: 0;
}
.topics-more-list-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #ff6864;
  border-radius: 50%;
}
.topics-more-list-item__link {
  color: inherit;
  text-decoration: underline;
}
.topics-more-list-item__link:hover {
  color: #ff6864;
  text-decoration: underline;
}

.popup {
  background: transparent;
  padding: 20px;
  width: 100%;
  max-width: 460px;
  text-align: center;
}
.popup__inner {
  border-radius: 15px;
  padding: 20px 20px 30px 20px;
}
.lightTheme .popup__inner {
  background: #fff;
  border: 1px solid #ebf1ff;
}
.darkTheme .popup__inner {
  background: #050d1f;
  border: 1px solid #101d39;
}
.popup-tabs {
  margin-top: -20px;
}
.popup-tabs-nav {
  display: flex;
  margin-bottom: 30px;
}
.popup-tabs-nav__item {
  width: 50%;
  height: 70px;
  line-height: 70px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s linear;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.lightTheme .popup-tabs-nav__item {
  color: #838fab;
  border-bottom: 1px solid #ebf1ff;
}
.darkTheme .popup-tabs-nav__item {
  color: #838fab;
  border-bottom: 1px solid #101d39;
}
.popup-tabs-nav__item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #5578cb;
  opacity: 0;
  transition: all 0.2s linear;
}
.lightTheme .popup-tabs-nav__item:hover {
  color: #081024;
}
.darkTheme .popup-tabs-nav__item:hover {
  color: #fff;
}
.popup-tabs-nav__item.active {
  font-size: 18px;
  font-weight: 600;
}
.lightTheme .popup-tabs-nav__item.active {
  color: #081024;
}
.darkTheme .popup-tabs-nav__item.active {
  color: #fff;
}
.popup-tabs-nav__item.active:after {
  opacity: 1;
}
.popup-tabs-content {
  display: none;
}
.popup-tabs-content.active {
  display: block;
}
.popup__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}
.popup .social {
  margin-bottom: 30px;
}
.popup__text {
  font-size: 15px;
  margin-bottom: 25px;
}
.popup__text a {
  text-decoration: underline;
}
.popup__icon {
  max-width: 30%;
  margin: 20px auto;
}

.form-password {
  position: relative;
}
.form-password__toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #ff6864;
}
.form-password__toggle svg {
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}
.form-password__toggle:hover {
  color: #ff6864;
}
.lightTheme .form-password__toggle.active {
  color: #838fab;
}
.darkTheme .form-password__toggle.active {
  color: #838fab;
}
.form-password .form-control {
  padding-right: 70px;
}

.popup-loader {
  display: block;
  width: 320px;
  position: fixed;
  top: calc(50vh - 83px);
  left: calc(50vw - 184px);
  z-index: 111;
  text-align: center;
}
.popup-loader__sh1 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100px 0 0;
  border-color: #ff6864 transparent transparent transparent;
  margin: 0 auto;
  -webkit-animation: shk1 1s ease-in-out infinite normal;
          animation: shk1 1s ease-in-out infinite normal;
  z-index: 12;
}
.popup-loader__sh2 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100px;
  border-color: transparent transparent #5578cb transparent;
  margin: -100px auto 0;
  -webkit-animation: shk2 1s ease-in-out infinite alternate;
          animation: shk2 1s ease-in-out infinite alternate;
  z-index: 12;
}
.popup-loader__title {
  color: #fff;
  display: inline-block;
  margin: 30px auto 0;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 5px;
  z-index: 12;
}
.popup-loader:before {
  content: " ";
  display: block;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -2;
}

@-webkit-keyframes shk1 {
  0% {
    transform: rotate(-360deg);
  }
}

@keyframes shk1 {
  0% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes shk2 {
  0% {
    transform: rotate(360deg);
  }
}
@keyframes shk2 {
  0% {
    transform: rotate(360deg);
  }
}
.error-template {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}
.error-template__code {
  font-size: 9rem;
  font-weight: bold;
  color: #5578cb;
}
.error-template__desc {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.error-template__btn {
  display: flex;
  align-items: center;
}
.error-template__btn svg {
  margin-right: 8px;
}

.pagination {
  justify-content: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
}
.pagination .page-link {
  color: #5578cb;
}
.lightTheme .pagination .page-link {
  background: #fff;
  border: 1px solid #ebf1ff;
}
.darkTheme .pagination .page-link {
  background: #050d1f;
  border: 1px solid #101d39;
}
.pagination .page-item.disabled .page-link {
  color: #6c757d;
}
.lightTheme .pagination .page-item.disabled .page-link {
  background: #fff;
  border: 1px solid #ebf1ff;
}
.darkTheme .pagination .page-item.disabled .page-link {
  background: #050d1f;
  border: 1px solid #101d39;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #5578cb;
  border-color: #5578cb;
}

.empty-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}
.empty-list__icon {
  width: 100%;
  max-width: 150px;
}
.empty-list__title {
  text-align: center;
  font-size: 2.5rem;
}

.wait {
  cursor: wait;
}

.quote-btn {
  content: "Цитировать";
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #ff6864;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-radius: 6px;
}
.quote-btn:after {
  content: " ";
  position: absolute;
  display: inline-block;
  bottom: 100%;
  border: 16px solid transparent;
  border-bottom: 16px solid #ff6864;
}
.quote-btn:before {
  content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 24.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%3C/style%3E%3Cg%3E%3Cpath fill='%23fff' class='st0' d='M448,42.7H64c-17.7,0-32,14.3-32,32v256c0,17.7,14.3,32,32,32h80c20.1,0,39.1,9.5,51.2,25.6l60.8,81.1 l60.8-81.1c12.1-16.1,31.1-25.6,51.2-25.6h80c17.7,0,32-14.3,32-32v-256C480,57,465.7,42.7,448,42.7z M64,10.7 c-35.4,0-64,28.7-64,64v256c0,35.4,28.6,64,64,64h80c10.1,0,19.6,4.8,25.6,12.8l60.8,81c10.6,14.1,30.7,17,44.8,6.4l6.4-6.4 l60.8-81c6-8.1,15.5-12.8,25.6-12.8h80c35.4,0,64-28.6,64-64v-256c0-35.3-28.6-64-64-64H64z'/%3E%3Cpath fill='%23fff' d='M239,192c0,29.4-24.8,53.3-55.5,53.3c-30.6,0-55.5-23.9-55.5-53.3s24.8-53.4,55.5-53.4C214.1,138.7,239,162.5,239,192z'/%3E%3Cpath fill='%23fff' class='st0' d='M197,168.6c-2.2,7.4-9.9,11.7-17.4,9.5l-0.5-0.2c-7-2.1-11-9.4-8.9-16.4l0.1-0.4c2.6-7.4,7.4-14.1,15.3-17.5 c7.2-2.9,15.3-2.7,22.3,0.4c12.4,5.1,23,17.5,29.5,31.9c13.7,30.3,12.6,76.1-30.1,118.6c-5.4,5.3-14,5.4-19.6,0.3 c-5.3-4.8-5.7-13-0.9-18.3l0.6-0.6c35-34.8,33.9-69,24.6-89.4C207.2,175.9,200.7,170.2,197,168.6L197,168.6z'/%3E%3Cpath fill='%23fff' d='M377.7,192c0,29.4-24.8,53.3-55.5,53.3c-30.6,0-55.5-23.9-55.5-53.3s24.9-53.4,55.5-53.4 C352.9,138.7,377.7,162.5,377.7,192z'/%3E%3Cpath fill='%23fff' class='st0' d='M335.8,168.6c-2.2,7.4-9.9,11.7-17.4,9.5l-0.5-0.2c-7-2.1-11-9.4-8.9-16.4l0.1-0.4c2.6-7.4,7.4-14.1,15.3-17.5 c7.2-2.9,15.3-2.7,22.3,0.4c12.4,5.1,23,17.5,29.6,31.9c13.7,30.3,12.5,76.1-30.1,118.6c-5.4,5.3-14,5.4-19.6,0.3 c-5.3-4.8-5.7-13-0.9-18.3l0.5-0.6c35-34.8,33.9-69,24.6-89.4C345.9,175.9,339.4,170.2,335.8,168.6z'/%3E%3C/g%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.quote-btn:hover {
  background-color: #5578cb;
}
.quote-btn:hover:after {
  border-bottom: 16px solid #5578cb;
}

#cal1 {
  position: absolute;
  height: 0;
  width: 0;
  top: 100px;
  left: 100px;
  overflow: none;
  z-index: -100;
}

#cal2 {
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  overflow: none;
  z-index: -100;
}

.tox-tinymce {
  min-height: 300px !important;
  border-radius: 15px !important;
}

@media screen and (max-width: 1199px) {
  .nav-item__link {
    padding: 20px 20px;
  }

  .topic {
    padding: 20px;
  }

  .topic__category {
    margin-right: 20px;
  }

  .subnav-wrapper {
    padding: 20px 20px 10px;
  }

  .text blockquote {
    margin-left: 0;
    margin-right: 0;
  }

  .topic-single__bottom {
    padding: 20px;
  }
  .topic-share {
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: 15px;
    justify-content: flex-start;
  }
  .topic-share-link {
    margin-right: 30px;
    margin-bottom: 15px;
  }

  .comment-form {
    padding: 20px;
  }

  .comments-item {
    padding: 20px;
  }

  .comments-item__for {
    font-size: 13px;
    padding: 12px 10px;
    margin-right: 20px;
  }

  .comments-item__content {
    padding: 0 20px;
  }

  .comments-item__top {
    margin-bottom: 20px;
  }

  .text blockquote {
    padding-left: 20px;
    padding-right: 20px;
  }

  .comments-item__content blockquote {
    padding: 15px 20px;
  }

  .topics-more {
    padding: 20px;
  }

  .topics-more__title {
    margin-bottom: 20px;
  }

  .topic-tags {
    padding-top: 20px;
  }

  .topic-single__info {
    margin-right: 30px;
  }

  .topic-single__bottom {
    padding-bottom: 10px;
    flex-wrap: wrap;
  }

  .topic-single__info {
    margin-bottom: 10px;
  }
  .topic-survey {
    padding: 20px;
  }

  .topic-single .topic__title {
    font-size: 22px;
  }

  .popup__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .section-main__content {
    width: 100%;
    padding-bottom: 30px;
    padding-right: 0;
  }

  .section-main__aside {
    width: 100%;
  }

  .section-main {
    padding-bottom: 20px;
  }

  .topic-single .topic__title {
    font-size: 22px;
  }

  .popup-tabs {
    margin-top: 0;
  }

  .popup-tabs-nav__item {
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .main-wrapper {
    padding-top: 65px;
  }

  .nav-item__link {
    padding: 15px;
  }

  .nav {
    font-size: 16px;
  }

  .subnav-wrapper {
    padding: 15px;
  }

  .subnav {
    -moz-column-count: 2;
         column-count: 2;
    font-size: 14px;
  }

  .topic {
    padding: 15px;
    border-radius: 10px;
  }

  .topic__title {
    font-size: 16px;
    padding-top: 0px;
    min-height: 0;
  }

  .topic__category {
    margin-right: 15px;
  }

  .topic__top {
    margin-bottom: 15px;
    flex-direction: column;
  }

  .topic__text {
    margin-bottom: 15px;
  }

  body {
    font-size: 14px !important;
    line-height: 1.8;
  }

  .topic__category {
    height: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .topic-banner {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .aside-table {
    border-radius: 10px;
  }

  .aside-table__title {
    font-size: 16px;
    padding: 15px;
    border-radius: 10px 10px 0 0;
  }

  .aside-topic {
    padding: 15px;
  }

  .aside-topic__category {
    margin-right: 15px;
  }

  .topic-single .topic__title {
    font-size: 20px;
    line-height: 1.6;
  }

  .text p {
    margin-bottom: 20px;
  }

  .text img {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text h2 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .text h3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .text h4 {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .text ol {
    margin-bottom: 20px;
    margin-left: 15px;
  }

  .text blockquote:before {
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
  }

  .text blockquote {
    padding: 30px 15px 20px;
    margin-bottom: 25px;
  }

  .topic-single__bottom {
    padding: 15px 15px 5px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .topic-single__info {
    margin-right: 30px;
  }

  .topic-share-link__text {
    display: none;
  }

  .topic-share-link__icon {
    margin: 0;
  }

  .topic-share-link {
    margin-right: 15px;
  }

  .topic-share {
    margin-bottom: 5px;
  }

  .topic-tags {
    padding-top: 15px;
  }

  .topic-tags__item {
    margin-right: 20px;
  }

  .comment-form {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .comment-form__notice p {
    font-size: 15px;
  }

  .form-control {
    border-radius: 10px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .select2-selection__rendered {
    font-size: 14px;
  }

  .comments-item {
    padding: 15px;
    border-radius: 10px;
  }

  .comments-item__top-right {
    width: 100%;
    justify-content: space-between;
  }

  .comments-item__top {
    flex-wrap: wrap;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .comments-item__user {
    width: 100%;
  }

  .comments-item__for {
    padding: 7px 10px;
    border-radius: 10px;
    margin: 10px 0 -5px 0;
    width: 100%;
  }

  .comments-item__like {
    position: absolute;
    top: -25px;
    right: 0;
  }

  .comments-item__content {
    padding: 0;
  }

  .comments-item__content blockquote {
    padding: 15px;
  }

  .comments-item__content p {
    margin-bottom: 10px;
  }

  .comments-item__content blockquote {
    margin-bottom: 15px;
  }

  .topics-more {
    padding: 15px;
    border-radius: 10px;
  }

  .topics-more__title {
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .topics-more-list {
    padding-left: 0;
  }

  .topics-more-list-item:before {
    width: 8px;
    height: 8px;
  }

  .btn {
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
  }

  .table-wrap {
    overflow: auto;
  }

  .text .table-wrap {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .topic-survey {
    padding: 15px;
  }

  .topic-survey {
    margin: 20px 0;
  }

  .form-radio {
    font-size: 14px;
  }

  .topic-hr {
    margin: 20px 0;
  }

  .topic-tests .topic-survey {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .form-radios_flex .form-radios__item {
    margin-right: 30px;
    margin-bottom: 20px;
  }

  .form-radios_flex {
    margin-right: -30px;
    margin-bottom: -20px;
  }

  .topics-tests {
    margin-bottom: 20px;
  }

  .topics-tests__btn {
    margin-bottom: 40px;
  }

  .breadcrumb-item {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .comments-item__top-right {
    position: relative;
    padding: 0;
  }

  .nav {
    display: none;
    font-size: 16px;
    overflow: hidden;
  }
  .nav.active {
    display: block;
    border-top: none !important;
    border-radius: 0 0 10px 10px;
  }
  .lightTheme .nav.active {
    background: #fff;
    border: 1px solid #ebf1ff;
  }
  .darkTheme .nav.active {
    background: #050d1f;
    border: 1px solid #101d39;
  }

  .nav-trigger {
    display: block;
    padding: 15px;
    position: relative;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
  }
  .lightTheme .nav-trigger {
    background: #fff;
    border: 1px solid #ebf1ff;
  }
  .darkTheme .nav-trigger {
    background: #050d1f;
    border: 1px solid #101d39;
  }
  .nav-trigger svg {
    position: absolute;
    width: 14px;
    height: 14px;
    right: 15px;
    top: calc(50% - 7px);
    fill: #5578cb;
    transition: all 0.2s linear;
  }
  .nav-trigger.active {
    border-radius: 10px 10px 0 0;
  }
  .nav-trigger.active svg {
    transform: rotate(-180deg);
  }

  .nav-wrapper {
    margin-bottom: 20px;
  }

  .nav-item__link {
    padding: 10px 15px;
    border-radius: 0 !important;
    border: none !important;
  }
  .lightTheme .nav-item__link {
    border-bottom: 1px solid #ebf1ff !important;
  }
  .darkTheme .nav-item__link {
    border-bottom: 1px solid #101d39 !important;
  }
  .nav-item__link.active {
    color: #5578cb;
  }
  .nav-item__link.active:after {
    display: none;
  }

  .nav-item {
    margin-bottom: 0;
  }

  .nav-item:last-child .nav-item__link {
    border: none !important;
  }

  .subnav-wrapper {
    position: relative;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    box-shadow: none;
  }

  .popup-tabs-nav__item {
    font-size: 14px;
  }

  .popup-tabs-nav__item.active {
    font-size: 15px;
  }

  .popup__title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .fancybox-slide--html .fancybox-close-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 5px;
  }

  .popup__inner {
    padding: 15px;
    border-radius: 10px;
  }

  .popup .social {
    margin-bottom: 20px;
  }

  .popup__text {
    margin-bottom: 20px;
  }

  .popup {
    padding: 15px;
  }

  .popup__inner {
    padding: 15px;
  }
}
@media screen and (max-width: 575px) {
  .topic-single .topic__title {
    font-size: 18px;
  }

  .text h2 {
    font-size: 17px;
  }

  .topic-single__bottom-left {
    width: 100%;
  }

  .comments-item__user {
    white-space: normal;
  }
  .comments-item__user span {
    display: block;
    padding-left: 28px;
    padding-top: 5px;
  }
  .comments-item__user span:before {
    display: none;
  }

  .topic-single__info svg {
    margin-right: 8px;
  }

  .form-radios_flex .form-radios__item {
    width: 100%;
    margin-bottom: 15px;
  }

  .form-radios_flex {
    margin-bottom: -15px;
  }

  .comments-item__top {
    padding-bottom: 10px;
  }

  .comments-item__for {
    margin-bottom: 0;
  }

  .popup__title {
    font-size: 18px;
  }

  .empty-list__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .subnav {
    -moz-column-count: 1;
         column-count: 1;
  }

  .subnav-item:last-child {
    margin-bottom: 0;
  }

  .topic__bottom {
    flex-direction: column;
  }

  .topic__info {
    margin-bottom: 5px;
  }
  .topic__info:last-child {
    margin-bottom: 0;
  }

  .topic-single__info {
    width: 100%;
  }
  .filter-map-categories__category-filter {
    width: 100% !important;
  }
  .filter-map-categories__date-filter {
    width: 100% !important;
  }
  .markers-category-filter__header {
    background-color: #68a1ff !important;
    flex-direction: column;
    display: none !important;
  }
  .markers-category-filter__item {
      flex-direction: column;
      border: 1px solid #5578cb;
  }
  .markers-category-filter__title, .markers-category-filter__category, .markers-category-filter__date {
      width: 100% !important;
      padding: 0.225rem !important;
  }
}
