* {
  box-sizing: border-box;
  font-family: Ubuntu Mono, monospace; }

body {
  margin: 0;
  position: relative; }

.wrap-content {
  display: flex; }

main {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  @media screen and (max-width: 768px) {
    main {
      width: 100%; } }

@media screen and (max-width: 768px) {
  .main-top-margin {
    margin-top: 70px; } }

.wrapModal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  z-index: 10; }

.modal {
  max-width: 500px;
  width: 100%;
  max-height: 250px;
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 30px 30px 20px;
  background-color: white; }
  @media screen and (max-width: 768px) {
    .modal {
      max-width: 90%; } }

.headModal {
  display: flex;
  justify-content: space-between; }

.titleModal {
  font-size: 30px;
  margin-top: 7px; }
  @media screen and (max-width: 500px) {
    .titleModal {
      font-size: 20px; } }

#closeModalBtn {
  position: absolute;
  top: 0px;
  right: 20px;
  cursor: pointer;
  font-size: 50px;
  transform: rotate(45deg);
  color: black;
  user-select: none; }
  @media screen and (max-width: 500px) {
    #closeModalBtn {
      font-size: 30px; } }

.wrapModalInfo {
  display: flex;
  flex-direction: column; }

.textModal {
  font-size: 25px; }

.subTextModal {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 20px; }

header {
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media screen and (max-width: 1200px) {
    header {
      padding: 20px; } }
  @media screen and (max-width: 768px) {
    header {
      width: 100%;
      position: fixed;
      top: 0;
      z-index: 2; } }

@media screen and (max-width: 768px) {
  .white-bg {
    background-color: #FFFFFF; } }

.logo-wrap {
  display: flex;
  align-items: center; }

.logo {
  max-width: 50px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s; }
  @media screen and (max-width: 768px) {
    .logo {
      display: none; } }

.logo:hover {
  opacity: 0.3; }

.mini-logo-btn {
  display: none; }
  @media screen and (max-width: 768px) {
    .mini-logo-btn {
      display: block; } }

.mini-logo {
  width: 30px; }

.header-title {
  margin-left: 267px;
  user-select: none; }
  @media screen and (max-width: 1200px) {
    .header-title {
      margin-left: 150px; } }
  @media screen and (max-width: 768px) {
    .header-title {
      display: none; } }

.header-links {
  color: black;
  width: 130px;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .header-links {
      color: #FFFFFF; } }
  .header-links.black-links {
    color: black; }

.header-link {
  text-decoration: none;
  color: inherit; }

.header-link:hover {
  text-decoration: underline; }

.menuBar {
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: calc(100vh - 40px);
  padding: 25px 10px 0px 25px;
  border: 2px solid black;
  background-color: white;
  transition: 0.3s; }
  .menuBar.open {
    left: 0;
    transition: 0.3s; }
  .menuBar .wrapperInfoMenuBar {
    display: flex;
    flex-direction: column; }
    .menuBar .wrapperInfoMenuBar #logo-mini-black {
      cursor: pointer;
      width: 50px;
      height: 30px;
      margin-top: 10px;
      margin-bottom: 10px; }
    .menuBar .wrapperInfoMenuBar #menu-item {
      margin-top: 20px;
      margin-left: 3px;
      color: black;
      font-size: 25px;
      text-decoration: none;
      text-transform: uppercase; }
  .menuBar #closeMenuBar {
    cursor: pointer;
    font-size: 30px;
    transform: rotate(45deg);
    outline: 0;
    border: 0;
    background: transparent; }

.locationsItems {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  @media screen and (max-width: 768px) {
    .locationsItems {
      margin: 10px 0 40px 0; } }
  @media screen and (max-width: 590px) {
    .locationsItems {
      justify-content: center; } }

.pointInfoWrapper {
  margin-top: 20px;
  margin-right: 35px;
  transition: all 0.9s;
  opacity: 1;
  cursor: pointer; }

.pointInfoWrapper:hover {
  opacity: 0.4; }

.pointImage {
  width: 200px;
  height: 200px;
  object-fit: cover; }
  @media screen and (max-width: 1024px) {
    .pointImage {
      width: 200px;
      height: 200px; } }

.wrapMessageModal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  z-index: 10; }

.messageModal {
  max-width: 600px;
  width: 100%;
  max-height: 500px;
  overflow: auto;
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 30px 30px 20px;
  background-color: white;
  overflow-x: hidden; }
  @media screen and (max-width: 768px) {
    .messageModal {
      max-width: 90%; } }

.headMessageModal {
  display: flex;
  justify-content: space-between; }

.titleMessageModal {
  font-size: 35px;
  margin-top: 7px; }
  @media screen and (max-width: 500px) {
    .titleMessageModal {
      font-size: 20px; } }

#closeMessageModalBtn {
  position: absolute;
  top: 0px;
  right: 20px;
  cursor: pointer;
  font-size: 50px;
  transform: rotate(45deg);
  color: black;
  user-select: none; }
  @media screen and (max-width: 500px) {
    #closeMessageModalBtn {
      font-size: 30px; } }

.wrapMessageModalInfo {
  display: flex;
  flex-direction: column; }

.textMessageModal {
  font-size: 20px; }

aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 35px;
  width: 15vw;
  z-index: 2;
  min-height: calc(100vh - 130px); }
  @media screen and (max-width: 1200px) {
    aside {
      margin-left: 20px; } }
  @media screen and (max-width: 768px) {
    aside {
      display: none; } }

nav {
  display: flex;
  flex-direction: column; }

.nav-link {
  color: black;
  font-size: 80px;
  text-decoration: none;
  cursor: pointer;
  margin: 30px 0px;
  line-height: 1;
  text-transform: uppercase;
  padding: 0px;
  padding-bottom: 3px; }
  .nav-link:hover {
    color: black;
    border-bottom: 3px solid #000;
    padding-bottom: 0px; }
  @media screen and (max-width: 1700px) {
    .nav-link {
      font-size: 70px; } }
  @media screen and (max-width: 1500px) {
    .nav-link {
      font-size: 60px; } }
  @media screen and (max-width: 1366px) {
    .nav-link {
      font-size: 58px; } }
  @media screen and (max-width: 1300px) {
    .nav-link {
      font-size: 50px; } }
  @media screen and (max-width: 1100px) {
    .nav-link {
      font-size: 40px; } }
  @media screen and (max-width: 900px) {
    .nav-link {
      font-size: 30px; } }

@media screen and (max-width: 1366px) {
  .rights-text {
    font-size: 15px; } }

@media screen and (max-width: 1300px) {
  .rights-text {
    font-size: 12px; } }

@media screen and (max-width: 1100px) {
  .rights-text {
    font-size: 11px; } }

@media screen and (max-width: 900px) {
  .rights-text {
    font-size: 10px; } }

.link-first {
  margin-top: 0px; }

#select {
  outline: none;
  height: 50px;
  padding: 0px 20px;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  background-color: #ffffff; }

.wrap-carousel {
  position: relative;
  width: calc(85vw - 35px);
  display: flex;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 768px) {
    .wrap-carousel {
      width: 100vw;
      height: 100vh; } }

.carousel {
  position: absolute;
  top: 0;
  right: 0;
  width: 98%;
  height: calc(100vh - 130px);
  z-index: -1; }
  @media screen and (max-width: 768px) {
    .carousel {
      width: 100%;
      height: 100vh; } }

.carousel-inner {
  width: 100%;
  height: 100%;
  overflow: hidden; }

.carousel-item {
  transition: transform 3s ease;
  width: 100%;
  height: 100%; }

.slide-img {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover; }

.logo-mobile {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: none;
  width: 45px; }
  @media screen and (max-width: 768px) {
    .logo-mobile {
      display: block; } }

.desctop-slider {
  display: block; }
  @media screen and (max-width: 768px) {
    .desctop-slider {
      display: none; } }

.mobile-slider {
  display: none; }
  @media screen and (max-width: 768px) {
    .mobile-slider {
      display: block; } }

.wrap-contact {
  width: calc(85vw - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px; }
  @media screen and (max-width: 768px) {
    .wrap-contact {
      width: 100%; } }

.wrapContactForm {
  width: 80%;
  margin: 50px auto 0px auto;
  display: flex;
  justify-content: center; }
  @media screen and (max-width: 768px) {
    .wrapContactForm {
      margin: 20px auto; } }
  @media screen and (max-width: 500px) {
    .wrapContactForm {
      margin: 0px auto; } }

#contactForm {
  display: flex;
  flex-direction: column;
  width: 40%; }
  @media screen and (max-width: 1500px) {
    #contactForm {
      width: 70%; } }
  @media screen and (max-width: 1366px) {
    #contactForm {
      width: 55%; } }
  @media screen and (max-width: 1000px) {
    #contactForm {
      width: 80%; } }
  @media screen and (max-width: 768px) {
    #contactForm {
      width: 100%; } }

.contact-form-label {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 400; }
  @media screen and (max-width: 600px) {
    .contact-form-label {
      margin-top: 20px; } }

.contact-form-label:first-child {
  margin-top: 0px; }

.contact-form-input {
  outline: none;
  height: 50px;
  padding: 0px 20px;
  border: 1px solid #c1c1c1;
  border-radius: 4px; }

#contact-form-message {
  outline: none;
  padding: 20px;
  border: 1px solid #c1c1c1;
  border-radius: 4px; }

#sendMessage {
  margin: 40px 0px;
  padding: 10px;
  font-size: 25px;
  color: white;
  background-color: black;
  border: 2px solid black;
  border-radius: 2px;
  transition: all 0.4s;
  outline: none; }

#sendMessage:hover {
  color: black;
  background-color: white; }

#sendMessage:disabled {
  opacity: 0.4; }

.sendResult {
  text-align: center; }

@media screen and (max-width: 320px) {
  .page-section-tilte {
    font-size: 30px; } }

.wrap-locations {
  width: calc(85vw - 40px); }
  @media screen and (max-width: 1280px) {
    .wrap-locations {
      width: calc(85vw - 50px); } }
  @media screen and (max-width: 768px) {
    .wrap-locations {
      width: 100%; } }

.mapWrapper {
  width: 100%;
  height: 86vh;
  display: flex;
  justify-content: flex-end; }

#map {
  width: 95%;
  height: 100%; }
  @media screen and (max-width: 768px) {
    #map {
      width: 100%; } }

.wrapperLocationsItems {
  margin-left: 5%;
  margin-top: 20px; }

.titleLocation {
  font-size: 21px;
  letter-spacing: 2px; }

.titleLocation:before {
  content: url("/img/before-jays-logo-mini-black.png");
  margin-right: 7px; }

.titleSity {
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 11px; }

.pointAddress {
  font-size: 14px; }

.location-empty-block-for-wrap {
  width: 200px;
  margin-top: 20px;
  margin-right: 35px; }
  @media screen and (max-width: 1024px) {
    .location-empty-block-for-wrap {
      width: 150px; } }

#mainImagePoint {
  width: 95%;
  height: 70vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 25px; }
  @media screen and (max-width: 768px) {
    #mainImagePoint {
      width: 100%;
      margin-top: 0px; } }

.infoPoint {
  display: flex;
  justify-content: space-between;
  width: 95%;
  padding: 50px 50px 50px 0px; }
  @media screen and (max-width: 860px) {
    .infoPoint {
      flex-wrap: wrap;
      justify-content: center;
      padding: 25px 25px 25px 0px; } }

.pointDataSection {
  width: 70%;
  margin-right: 40px; }
  @media screen and (max-width: 860px) {
    .pointDataSection {
      width: 100%;
      margin-right: 0; } }

.shopDataSection {
  min-width: 285px;
  padding: 20px 30px 15px 30px;
  background: #f8f8f8; }
  @media screen and (max-width: 860px) {
    .shopDataSection {
      width: 100%;
      margin: 0 auto; } }

.miniMapWrapper {
  margin-top: 20px;
  width: 100%;
  height: 250px; }

#miniMap {
  width: 100%;
  height: 100%; }

.titleLocationItems {
  font-size: 30px;
  margin-top: 20px; }

.wrap-registration {
  width: calc(85vw - 50px);
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .wrap-registration {
      width: 100%; } }

.title-registration {
  margin-top: 10px;
  font-size: 37px; }
  @media screen and (max-width: 1000px) {
    .title-registration {
      font-size: 24px; } }
  @media screen and (max-width: 500px) {
    .title-registration {
      font-size: 18px; } }
  @media screen and (max-width: 320px) {
    .title-registration {
      font-size: 16px; } }

#registrationForm {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-top: 40px; }
  @media screen and (max-width: 1500px) {
    #registrationForm {
      width: 50%; } }
  @media screen and (max-width: 1366px) {
    #registrationForm {
      width: 60%; } }
  @media screen and (max-width: 600px) {
    #registrationForm {
      margin-top: 20px;
      width: 80%; } }

label {
  margin: 0px; }

.registration-input {
  outline: none;
  min-height: 50px;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  font-size: 20px;
  padding: 0px 15px;
  margin-bottom: 20px; }

#birthdayInput {
  min-width: 100%;
  background-color: #ffffff; }

#registerSubmitBtn {
  margin: 40px 0px 20px 0px;
  padding: 10px;
  font-size: 25px;
  color: white;
  background-color: black;
  border: 2px solid black;
  border-radius: 2px;
  transition: all 0.4s;
  outline: none;
  min-height: 60px; }
  @media screen and (max-width: 768px) {
    #registerSubmitBtn {
      margin: 20px 0px 10px 0px; } }

#registerSubmitBtn:hover {
  color: black;
  background-color: white; }

#registerSubmitBtn:disabled {
  opacity: 0.4; }

.rewards-link {
  font-size: 20px;
  text-align: center; }
  @media screen and (max-width: 1366px) {
    .rewards-link {
      margin: 20px 0px; } }

.phoneError {
  color: red; }

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button {
  -webkit-appearance: none; }

.wrap-rewards {
  width: calc(85vw - 50px);
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .wrap-rewards {
      width: 100%; } }

.title-rewards {
  font-size: 70px;
  text-align: center;
  margin-top: 10px; }

.subtitle-rewards {
  text-align: center;
  width: 40%; }
  @media screen and (max-width: 1150px) {
    .subtitle-rewards {
      width: 65%; } }
  @media screen and (max-width: 768px) {
    .subtitle-rewards {
      width: 80%; } }
  @media screen and (max-width: 450px) {
    .subtitle-rewards {
      font-size: 30px;
      width: 90%; } }

#bonusesForm {
  display: flex;
  flex-direction: column;
  align-items: center; }

#phoneBonusesInput {
  width: 400px;
  min-height: 50px;
  outline: none;
  height: 50px;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  padding: 0px 50px;
  margin-top: 20px;
  font-size: 25px; }
  @media screen and (max-width: 450px) {
    #phoneBonusesInput {
      width: 300px;
      font-size: 17px; } }

.errorText {
  color: red;
  margin-bottom: 20px; }

#get-balance-btn {
  width: 400px;
  min-height: 60px;
  padding: 10px;
  font-size: 25px;
  color: white;
  background-color: black;
  border: 2px solid black;
  border-radius: 2px;
  transition: all 0.4s;
  outline: none; }
  @media screen and (max-width: 450px) {
    #get-balance-btn {
      width: 300px; } }

#get-balance-btn:hover {
  color: black;
  background-color: white; }

#get-balance-btn:disabled {
  opacity: 0.4; }

.registration-link {
  margin-top: 20px;
  font-size: 20px; }
  @media screen and (max-width: 340px) {
    .registration-link {
      padding: 0px 20px;
      text-align: center; } }

.bonusConditions-link {
  font-size: 20px;
  color: #007bff;
  cursor: pointer;
  text-align: center; }
  .bonusConditions-link:hover {
    text-decoration: underline; }

