*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Montserrat", sans-serif;
}

button {
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
}

header {
  display: block;
  padding-top: 40px;
  background-color: #fff;
  text-align: center;
}
header img {
  width: 200px;
  height: 65px;
}

#book-an-eye-exam {
  padding: 90px 20px 90px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#section-left {
  width: 45vw;
}
@media screen and (max-width: 1280px) {
  #section-left {
    width: 100vw;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

#section-left__iframe-container {
  position: relative;
  padding: 35.25%;
  z-index: 1;
}
#section-left__iframe-container #iframe__shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
#section-left__iframe-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
#section-left__iframe-container iframe.disable {
  pointer-events: none !important;
}

#section-right {
  width: 45vw;
}
@media screen and (max-width: 1280px) {
  #section-right {
    width: 100vw;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

#section-right__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media screen and (max-width: 830px) {
  #section-right__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#section-right__container {
  margin: auto;
  text-align: center;
}
#section-right__container h1 {
  font-size: 3.125rem;
  margin: 0 0 40px 0;
  font-weight: 400;
  color: #0460a9;
}
@media screen and (max-width: 1280px) {
  #section-right__container h1 {
    font-size: 2.5rem;
  }
}

#section-right__button--aroundme {
  max-width: 220px;
  -webkit-transition: 250ms;
  -o-transition: 250ms;
  transition: 250ms;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  width: 100%;
  font-size: 1.375rem;
  text-decoration: none;
  display: inline-block;
  background-image: -webkit-gradient(linear, right top, left top, from(#00aebe), to(#007d9e));
  background-image: -o-linear-gradient(right, #00aebe, #007d9e);
  background-image: linear-gradient(to left, #00aebe, #007d9e);
}
@media screen and (max-width: 830px) {
  #section-right__button--aroundme {
    font-size: 1.125rem;
  }
}
#section-right__button--aroundme:disabled {
  opacity: 0.25;
  cursor: default;
}
#section-right__button--aroundme img {
  vertical-align: middle;
  display: inline;
  margin-left: 10px;
  width: 30px;
  height: 30px;
}

#section-right__separator {
  margin: 0 30px;
  font-size: 1.25rem;
}
@media screen and (max-width: 830px) {
  #section-right__separator {
    margin: 30px;
  }
}

#section-right__search {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 830px) {
  #section-right__search {
    width: 80vw;
  }
}
@media screen and (max-width: 500px) {
  #section-right__search {
    width: 95vw;
  }
}

#section-right__search-input {
  border: none;
  background-color: #f2f2f2;
  padding: 20px 0 20px 20px;
  border-radius: 50px;
  font-size: 1.25rem;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 830px) {
  #section-right__search-input {
    font-size: 1rem;
  }
}
#section-right__search-buttons {
  position: absolute;
  right: 0;
  padding-right: 10px;
  top: 50%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f2f2f2;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#section-right__search-buttons button {
  background-color: transparent;
  padding: 0;
  margin: 0 10px;
}
#section-right__search-buttons button img {
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 830px) {
  #section-right__search-buttons button img {
    height: 15px;
    width: 15px;
  }
}
#section-right__search-buttons #section-right__search-separator {
  border-right: 2px solid;
  border-radius: 2px;
  height: 22px;
}

#section-right__search-alert {
  margin-top: 20px;
  opacity: 0;
  -webkit-transition: 250ms;
  -o-transition: 250ms;
  transition: 250ms;
}
#section-right__search-alert.active {
  opacity: 1;
}

footer {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  padding-bottom: 10px;
  color: #0460a9;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.1s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

/*# sourceMappingURL=main.css.map */
