/*  
*   Title:          fonts.scss
*   Description:    This file is created to contain all font-face definitions for global.scss.
*/
@font-face {
  font-family: PermanentMarker;
  src: url("/css/fonts/PermanentMarker.ttf");
}

@font-face {
  font-family: GothamLight;
  src: url("/css/fonts/Gotham/Gotham-Light.otf") format("opentype");
}

@font-face {
  font-family: GothamMedium;
  src: url("/css/fonts/Gotham/Gotham-Medium.otf") format("opentype");
}

@font-face {
  font-family: GothamBold;
  src: url("/css/fonts/Gotham/Gotham-Bold.otf") format("opentype");
}

@font-face {
  font-family: GothamRndBold;
  src: url("/css/fonts/Gotham Rounded/GothamRnd-Bold.otf") format("opentype");
}

@font-face {
  font-family: GothamRndMedium;
  src: url("/css/fonts/Gotham Rounded/GothamRnd-Medium.otf") format("opentype");
}

@font-face {
  font-family: GothamRndLight;
  src: url("/css/fonts/Gotham Rounded/GothamRnd-Light.otf") format("opentype");
}

@font-face {
  font-family: Nunito;
  src: url("/css/fonts/Nunito/Nunito-Regular.ttf");
}

@font-face {
  font-family: NunitoLight;
  src: url("/css/fonts/Nunito/Nunito-Light.ttf");
}

@font-face {
  font-family: NunitoBold;
  src: url("/css/fonts/Nunito/Nunito-Bold.ttf");
}

@font-face {
  font-family: RubikLight;
  src: url("/css/fonts/Rubik/Rubik-Light.ttf");
}

@font-face {
  font-family: RubikLight-Italic;
  src: url("/css/fonts/Rubik/Rubik-LightItalic.ttf");
}

@font-face {
  font-family: RubikRegular;
  src: url("/css/fonts/Rubik/Rubik-Regular.ttf");
}

@font-face {
  font-family: RubikMedium;
  src: url("/css/fonts/Rubik/Rubik-Medium.ttf");
}

@font-face {
  font-family: RubikMediumItalic;
  src: url("/css/fonts/Rubik/Rubik-MediumItalic.ttf");
}

@font-face {
  font-family: RubikItalic;
  src: url("/css/fonts/Rubik/Rubik-Italic.ttf");
}

@font-face {
  font-family: RubikBoldItalic;
  src: url("/css/fonts/Rubik/Rubik-BoldItalic.ttf");
}

@font-face {
  font-family: RubikBold;
  src: url("/css/fonts/Rubik/Rubik-Bold.ttf");
}

@font-face {
  font-family: RubikMedium;
  src: url("/css/fonts/Rubik/Rubik-Medium.ttf");
}

@font-face {
  font-family: OpenSans-Light;
  src: url("/css/fonts/OpenSans/OpenSans-Light.ttf");
}

@font-face {
  font-family: OpenSans-LightItalic;
  src: url("/css/fonts/OpenSans/OpenSans-LightItalic.ttf");
}

@font-face {
  font-family: OpenSans-Regular;
  src: url("/css/fonts/OpenSans/OpenSans-Regular.ttf");
}

@font-face {
  font-family: OpenSans-Italic;
  src: url("/css/fonts/OpenSans/OpenSans-Italic.ttf");
}

@font-face {
  font-family: OpenSans-SemiBold;
  src: url("/css/fonts/OpenSans/OpenSans-SemiBold.ttf");
}

@font-face {
  font-family: OpenSans-SemiBoldItalic;
  src: url("/css/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf");
}

@font-face {
  font-family: OpenSans-Bold;
  src: url("/css/fonts/OpenSans/OpenSans-Bold.ttf");
}

@font-face {
  font-family: OpenSans-BoldItalic;
  src: url("/css/fonts/OpenSans/OpenSans-BoldItalic.ttf");
}

@font-face {
  font-family: Roboto-Medium;
  src: url("/css/fonts/Roboto/Roboto-Medium.ttf");
}

.fullscreen-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10800;
  background-size: cover;
}

.fullscreen-popup .close-button {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.7;
}

.fullscreen-popup .close-button:hover {
  opacity: 1;
}

.fullscreen-popup .close-button:before, .fullscreen-popup .close-button:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 5px;
  background-color: #FFFFFF;
}

.fullscreen-popup .close-button:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.fullscreen-popup .close-button:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fullscreen-popup .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  overflow-x: hidden;
  font-size: 14px;
  color: #747474;
  font-family: OpenSans-Regular, sans-serif;
  text-align: center;
  min-width: 100vw;
  min-height: 100vh;
  padding: 24px;
  margin-top: 20vh;
  margin-bottom: 8vh;
}

.fullscreen-popup .content-container .h2-heading {
  font-size: 45px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: RubikBoldItalic, sans-serif;
  text-align: center;
}

.fullscreen-popup .content-container .h2-heading.medium {
  font-size: 32px;
  font-family: RubikMedium, sans-serif;
  text-transform: none;
}

.fullscreen-popup .content-container .h2-heading.colored {
  color: #000080;
}

.fullscreen-popup .content-container .content .popup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
  min-width: 900px;
  max-width: 1200px;
}

.fullscreen-popup .content-container .content .popup-content img {
  width: 30%;
  height: auto;
}

.fullscreen-popup .content-container .content .popup-content .content-text {
  font-family: OpenSans-Regular, sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  max-width: 70vw;
  text-align: center;
}

.fullscreen-popup .content-container .content .popup-content .content-text.colored {
  color: #2C2C2C;
}

.fullscreen-popup .content-container .content .popup-content .cta-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn-lg {
  height: 48px;
  line-height: 48px;
  padding: 0 32px;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn-sm {
  height: 32px;
  padding: 0 16px;
  line-height: 32px;
  font-size: 12px;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.primary-cta {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  padding: 0 24px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  font-family: nunito, sans-serif;
  letter-spacing: 2.4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  outline: none;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  width: 200px;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.primary-cta:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.225);
          box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.225);
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.secondary-cta {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #1AB9F4;
  background-color: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: bold;
  font-family: nunito, sans-serif;
  letter-spacing: 2.4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  outline: none;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: 200px;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.secondary-cta:hover {
  background-color: rgba(153, 153, 153, 0.3);
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.secondary-cta.disabled, .fullscreen-popup .content-container .content .popup-content .cta-container .btn.secondary-cta[disabled] {
  background-color: transparent;
  color: #AEAEAE;
  cursor: default;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-lightBlue {
  color: #FFF;
  background-color: #1AB9F4;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-lightBlue:hover {
  background-color: #41c5f6;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-light {
  color: #2C2C2C;
  background-color: transparent;
  border: 2px solid #2C2C2C;
  border-radius: 0;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-light:hover {
  background-color: #2C2C2C;
  color: #FFFFFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-dark {
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 0;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-dark:hover {
  background-color: #FFFFFF;
  color: #2C2C2C;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-blue {
  color: #1AB9F4;
  background-color: transparent;
  border: 2px solid #1AB9F4;
  border-radius: 0;
}

.fullscreen-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-blue:hover {
  background-color: #1AB9F4;
  color: #FFFFFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fullscreen-popup .content-container .disclaimer {
  margin-top: 24px;
  font-size: 11px;
  color: #FFFFFF;
  font-family: OpenSans-Regular, sans-serif;
  text-align: center;
}

@media (min-width: 1201px) {
  .fullscreen-popup .h2-heading {
    width: 50vw;
  }
}

@media (max-width: 767px) {
  .fullscreen-popup .h2-heading {
    width: 100vw;
    font-size: 34px !important;
    padding: 0px 15px;
  }
}
/*# sourceMappingURL=sp_full_screen_popup.css.map */