.tour-btn {
  cursor: pointer;
}
.tour-btn.center {
  text-align: center;
}
.tour-btn.left {
  text-align: left;
  margin-left: 20px;
}
.tour-btn.right {
  text-align: right;
  margin-right: 20px;
}
.tour-btn a.cta-primary,
.tour-btn button.cta-primary {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-align: center;
  color: #1c2a33;
  border: 1px solid #f37120;
  padding: 10px 23px;
  outline: none;
  background-color: #ffffff;
  transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: auto;
}
@media screen and (min-width: 2700px) {
  .tour-btn a.cta-primary,
  .tour-btn button.cta-primary {
    font-size: 3.6rem;
    line-height: 0rem;
    padding: 36px 60px;
    border-radius: 50px;
  }
}
.tour-btn a.cta-primary::before,
.tour-btn button.cta-primary::before {
  content: "";
  position: absolute;
  background: #f37120;
  bottom: 0;
  left: auto;
  right: -100%;
  top: 0;
  z-index: -1;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 25px;
  width: 100%;
  -webkit-transition: right 0.3s ease-in, opacity 0.3s ease-in;
  -o-transition: right 0.3s ease-in, opacity 0.3s ease-in;
  transition: right 0.3s ease-in, opacity 0.3s ease-in;
  opacity: 0;
  border: none;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .tour-btn a.cta-primary:hover,
  .tour-btn button.cta-primary:hover {
    color: #ffffff;
    background-color: #f37120;
  }
  .tour-btn a.cta-primary:hover::before,
  .tour-btn button.cta-primary:hover::before {
    -webkit-animation-name: cta-primary-in;
    animation-name: cta-primary-in;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    right: 0;
    opacity: 1;
    -webkit-transition: right 0.3s ease-in, opacity 0.3s ease-in;
    -o-transition: right 0.3s ease-in, opacity 0.3s ease-in;
    transition: right 0.3s ease-in, opacity 0.3s ease-in;
  }
}
.tour-btn a.cta-primary.active,
.tour-btn button.cta-primary.active,
.tour-btn a.cta-primary:active,
.tour-btn button.cta-primary:active {
  background-color: #1c2a33;
  color: #ffffff;
  outline: none;
  border: 1px solid #1c2a33;
  z-index: 2;
}
.tour-btn a.cta-primary.active::before,
.tour-btn button.cta-primary.active::before,
.tour-btn a.cta-primary:active::before,
.tour-btn button.cta-primary:active::before {
  background-color: #1c2a33;
}
@-webkit-keyframes cta-primary-in {
  from {
    right: 100%;
    opacity: 1;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes cta-primary-in {
  from {
    right: 100%;
    opacity: 1;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
#virtual-tour-form form {
  text-align: left;
}
