@charset "utf-8";
.c-dialog {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 2.4rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, 0.75);
  transition: .2s;
}
.c-dialog__box {
  flex: 1;
  max-width: 48rem;
  margin: auto;
  padding: 2.4rem;
  background-color: white;
	border-radius: 25px;
}
.c-dialog[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
}
.dialog-title {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -1px;
  color: #B01351;
}
.dialog-sub-title {
  font-size: 16px;
  line-height: 25px;
  font-weight: medium;
  color: #666;
}
.dialog-close {
  position: absolute;
  top: 10%;
  right: 90%;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #999;
}
.close:hover {
  color: #777D82;
}
.button-box {
  font-size: 1em;
  padding: 10px;
  font-family: 'Comfortaa', sans-serif;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 40px;
  background-color: #B01351;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button-box:hover {
  background: #777D82;
  border: 2px solid #fff;
  color: #fff;
}
/* Phone form
================================================== */
.form-phone {
  box-shadow: none;
  border: 2px solid #dadada;
  padding: 5px 20px;
  width: 100%;
  height: 54px;
  background: none;
  color: #666;
  font-size: 20px;
  border-radius: 0;
}
.phone-form input {
  background: none;
  font-size: 25px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0);
}
.space-phone {
  box-shadow: none;
  width: 100%;
  height: 20px;
  background: none;
}
.space-button {
  box-shadow: none;
  width: 100%;
  height: 40px;
  background: none;
  text-align: center;
}
.form-phone:active {
  box-shadow: none;
  border: 2px solid #007766;
}
.phone-text {
  font-size: 20px;
  color: #007766;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -.2px;
}
.phone-block .phone-control {
  background-color: #fff;
  border: none;
  color: #fff;
  width: 100%;
  height: 40px;
  padding: 0 12px;
}
.ts-boxphone {
  background: #b7b7b7;
  position: relative;
  min-height: 115px;
  padding: 15px 0 0 50px;
}
@media (max-width: 991px) {
  .ts-boxphone {
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 40px;
  }
}
@media (max-width: 575px) {
  .ts-boxphone {
    padding: 30px 5px 15px 5px;
    min-height: auto;
    text-align: center;
  }
}
.ts-boxphone:after {
  content: "";
  position: absolute;
  background: #b7b7b7;
  display: block;
  width: 100%;
  height: 100%;
  right: -100%;
  top: 0;
}
@media (max-width: 767px) {
  .ts-boxphone:after {
    background: transparent;
  }
}
@media (max-width: 991px) {
  .ts-boxphone .boxphone-introtext p {
    font-size: 14px;
  }
}
.boxphone-form input {
  background: none;
  font-size: 18px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.overlay-main {
  background-image: url("../assets/img/overlay.png");
  background-size: 2px 2px;
  height: 100%;
  width: 100%;
  background-position: 0 0, 2px 2px;
  position: absolute;
  top: 0;
}
.overlay-main:hover {
  background-size: 0 0, 0 0, cover;
}