@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../fonts/roboto/Roboto-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/roboto/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../fonts/roboto/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Italic.woff2") format("woff2"), url("../fonts/roboto/Roboto-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../fonts/roboto/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../fonts/roboto/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../fonts/roboto/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../fonts/roboto/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../fonts/roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../fonts/roboto/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../fonts/roboto/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/roboto/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 22px;
}

body {
  position: relative;
  min-height: 100vh;
  background: #FFFFFF;
  font-family: "Roboto", sans-serif;
  color: #000000;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
}

hr {
  width: 100%;
  display: block;
  border: none;
  border-bottom: 1px solid #8E8E93;
}

.whitespace {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 20px;
}

.content {
  width: 100%;
  max-width: 1132px;
  margin: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

.margin-t30 {
  margin-top: 30px !important;
}

.margin-t50 {
  margin-top: 50px !important;
}

@media only screen and (max-width: 767px) {
  .no-mobile {
    display: none;
  }
}
#preloader {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* фоновый цвет */
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1001;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

header {
  padding: 0 30px;
  width: 100%;
  height: 80px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
header p {
  margin: 0;
  padding: 0;
}
header .header-nav {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
header .header-nav a {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  opacity: 0.7;
  text-decoration: none;
}
header .header-nav a:hover {
  opacity: 1;
}
header .header-nav .active {
  opacity: 1;
  color: #51C357;
}

.pagination {
  padding: 12px 4px;
  border-radius: 10px;
  margin: 34px auto 0;
  max-width: 500px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.pagination a:hover {
  text-decoration: none;
}
.pagination .round-btn {
  margin: 0 16px;
}
.pagination p {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 10px !important;
  color: #FFFFFF;
  text-align: center;
  margin: 0 16px;
}
.pagination .page-link {
  transition: all 0.2s ease;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 10px !important;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  background: #8E8E93;
  border-radius: 10px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0 4px;
}
.pagination .page-link:hover {
  color: white;
}
.pagination .active-page {
  background: #5755d9;
  color: white;
  cursor: not-allowed;
}

#login {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}
#login .empty {
  max-width: 500px;
  margin: 0 auto 0;
  padding: 20px;
}
#login .empty .form-group .form-input {
  margin-top: 10px;
}
#login .empty .form-group .btn {
  width: 100%;
  margin-top: 10px;
}

#search-profile {
  padding: 10px 30px;
}

#choose-profile {
  padding: 0 30px;
}
#choose-profile .table .map-link {
  font-size: 16px;
  color: gray;
  font-style: italic;
  font-weight: normal;
  text-decoration: underline;
}
#choose-profile .table .edit {
  position: relative;
  min-width: 200px;
  overflow: hidden;
}
#choose-profile .table .edit .need-moderate {
  position: absolute;
  background: darkred;
  color: white;
  top: 25px;
  right: -37px;
  transform: rotate(45deg);
  padding: 2px 10px;
  text-align: center;
  width: 160px;
}

#pp-users {
  padding: 0 30px;
}

#chat-form textarea {
  resize: none;
}

#check-chats {
  padding: 0 30px;
}
#check-chats img {
  height: 100%;
  max-height: 150px;
  width: auto;
}

#chat-statistic {
  padding: 0 30px;
  margin-top: 40px;
}

#geolocation {
  padding: 0 30px;
  margin-top: 40px;
}
#geolocation #os-map {
  height: 500px;
  z-index: 100;
}

#day-data {
  margin-top: 40px;
  margin-bottom: 20px;
}

#day-chats {
  margin-top: 20px;
  margin-bottom: 20px;
}
#day-chats .chat-message {
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px 20px 20px 20px;
}

#user-info {
  margin-top: 40px;
}

#first-chart-wrapper {
  margin-top: 40px;
}

#promotion {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: #10001B;
}
#promotion .for-img {
  padding: 20px;
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
#promotion .for-img .for-rects {
  position: absolute;
  width: 323px;
  height: 345px;
  z-index: 1;
}
#promotion .for-img .for-rects .top-rect {
  position: absolute;
  top: 0;
  right: 0;
  width: 204px;
  height: 307px;
  border: 1px solid #FFFFFF;
}
#promotion .for-img .for-rects .bot-rect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 169px;
  height: 254px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#promotion .for-img img {
  display: block;
  width: auto;
  height: 316px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 0 40px 0 rgba(255, 252, 252, 0.2509803922);
  z-index: 2;
}
#promotion .for-text {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px 11px 70px;
  text-align: center;
  background: url(../img/blur.png) no-repeat top;
  background-size: cover;
}
#promotion .for-text .name {
  font-family: "SF Pro Text";
  font-size: 35px;
  font-weight: 700;
  line-height: 41.77px;
  text-transform: uppercase;
}
#promotion .for-text .central-block p {
  font-family: "SF Pro Text";
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
#promotion .for-text .central-block .rest {
  font-family: "SF Pro Text";
  font-size: 35px;
  font-style: italic;
  font-weight: 400;
  line-height: 41.77px;
  text-transform: uppercase;
}
#promotion .for-text .bot-block {
  width: 100%;
  padding-top: 15px;
  border-top: 0.5px solid #FFFFFF;
}
#promotion .for-text .bot-block .ya {
  font-family: "SF Pro Text";
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 25px;
  text-transform: uppercase;
}
#promotion .for-text #comment {
  margin: 22px auto;
  width: 300px;
  height: 56px;
  min-height: 56px;
  padding: 10px;
  background: none;
  outline: none;
  border: 0.5px solid #FFFFFF;
  border-radius: 16px;
  font-family: "SF Pro Text";
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #FFFFFF;
}
#promotion .for-text button {
  display: block;
  width: 300px;
  padding: 14px 21px;
  border: none;
  outline: none;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2509803922);
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: "SF Pro Text";
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.4079999924px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */