* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  overflow-x: hidden;
  background: #000000;
}

body.noscroll {
  overflow-y: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/view/img/prestige-p.svg') center center no-repeat fixed;
  background-size: cover;
  opacity: 0.06;
  -moz-opacity: 0.06;
  -webkit-opacity: 0.06;
}

body,
html {
  width: 100%;
  height: auto;
  min-height: 100vh;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;  
}

a {
  cursor: pointer;
  text-decoration: none;  
}

ul,
ol {
  list-style: none;
}

*:focus {
  outline: none !important;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.vc {
  align-items: center;
}

/* -------------------------------------------------------------------------- */

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

/* -------------------------------------------------------------------------- */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1000;
  background: #000000;
}

#preloader i {
  color: #e9148d;
  font-size: 30px;
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

main {
  min-height: 100vh;
  height: auto;
  padding: 50px 0 100px 0;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */

@media only screen
and (min-width : 1100px) {
  .ease:hover {
    opacity: 0.5;
  }
  .transition {
    transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;    
  } 
  .openhours-container .openhours-wrapper .openhour:hover {
    background: rgba(233,20,141,0.5);  
  }
  .openhours-container .openhours-wrapper .openhour:hover a {
    background: #e9148d;
  }  
}

/* -------------------------------------------------------------------------- */

img.logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
  margin-top: 5px;
}

h4 {
  font-size: 16px;
}

p {
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;  
}

p.empty-list {
  color: #ffffff;
  font-weight: 500;
  width: 100%;
  background: rgba(233,20,141,0.5);
  padding: 20px;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;  
}

.openhours-container {
  width: 100%;
  margin: 50px 0;
}

.openhours-container .openhours-wrapper {
  width: calc(100% + 30px);
  margin: -30px -15px -15px -15px;
  flex-wrap: wrap;
}

.openhours-container .openhours-wrapper .openhour {
  width: calc((100% / 2) - 30px);
  margin: 30px 15px 15px 15px;
  background: rgba(33,33,33,0.7);
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  padding: 30px 30px 45px 30px;
}

.openhours-container .openhours-wrapper .openhour a {
  position: absolute;
  bottom: -25px;
  width: 300px;
  height: 50px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #000000;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);  
}

.apply-container {
  position: fixed;
  top: -100%;
  left: calc((100% - 800px) / 2);
  width: 800px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  z-index: -1;
  background: rgba(33,33,33,0.95);
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  padding: 50px 70px 50px 100px;
}

.apply-container.show {
  top: 30px;
  z-index: 200;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;  
}

.apply-container .close {
  font-size: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.apply-container p {
  color: #ffffff;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  text-align: left;
}

.apply-container p.oh-title {
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.apply-container p.oh-date,
.apply-container p.oh-length,
.apply-container p.oh-online {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
}

.apply-container p.oh-date::before,
.apply-container p.oh-length::before,
.apply-container p.oh-online::before {
  content: '';
  position: absolute;
  left: -67px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #1f1f1f;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; 
  font-size: 20px;  
}

.apply-container p.oh-date::before {
  content: '\f073';  
}

.apply-container p.oh-length::before {
  content: '\f017';  
}

.apply-container p.oh-online::before {
  content: '\f075';
}

.apply-container .oh-data-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 1px;
  height: 100%;
  background: #ffffff;
}

#apply-form {
  margin-top: 20px;
}

#apply-form .row {
  margin-top: 10px;
}

#apply-form .row label {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #e9148d;
  width: 185px;
  flex-shrink: 0;
}

#apply-form .row .phone-input-wrapper {
  width: 100%;
}
  
#apply-form .row input {
  font-family: 'Open Sans', sans-serif;  
  width: 100%;
  height: 40px;
  background: #cbcbcb;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
  border: none;
  color: #000000;
  padding: 0 15px;
}

#apply-form .checkrow {
  padding-left: 185px;
}

#apply-form .checkrow p {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
}

#apply-form .checkrow p a {
  color: inherit;
}

#apply-form a.apply {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #e9148d;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
  margin-top: 10px;
}

#apply-form .checkrow input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 30px;
  height: 30px;
  background: #cbcbcb;
  cursor: pointer;
  padding: 0;
  margin-right: 10px !important;
  border: none;
  flex-grow: 0;  
  flex-shrink: 0;
}

#apply-form .checkrow input[type="checkbox"]:checked {
  background: #e9148d !important;
}

#apply-form .checkrow input[type="checkbox"]:checked::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f00c';
  color: #ffffff;
  font-size: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#apply-form .phone-input-wrapper span {
  position: absolute;
  left: 10px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;  
  z-index: 10;
}

#apply-form .phone-input {
  padding-left: 25px !important;
}

.feedback-container {
  position: fixed;
  top: -100%;
  left: calc((100% - 800px) / 2);
  width: 800px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  z-index: -1;
  background: rgba(33,33,33,0.95);
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  padding: 50px 70px 50px 100px;
}

.feedback-container.show {
  top: 30px;
  z-index: 200;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;  
}

.feedback-container .close {
  font-size: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.feedback-data h1,
.feedback-data p.empty-list {
  margin-bottom: 30px;
}

.usc-container {
  position: fixed;
  top: -100%;
  left: calc((100% - 800px) / 2);
  width: 800px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  z-index: -1;
  background: rgba(33,33,33,0.95);
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 16px rgba(0,0,0,0.5);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  padding: 50px 70px 50px 100px;
}

.usc-container.show {
  top: 30px;
  z-index: 200;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;  
}

.usc-container .close {
  font-size: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}

/* -------------------------------------------------------------------------- */

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: #e9148d;
  z-index: 100;
}

footer.hide {
  bottom: -40px;
}

footer p {
  font-size: 14px;
  line-height: normal;
  color: #000000;
  font-weight: 400;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;  
}

footer p a {
  text-decoration: none;
  color: #000000;
}

footer p :not(:last-child)::after {
  content: '\2022';
  margin: 0 5px;
}