/*
*   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: NunitoSemiBold;
  src: url("/css/fonts/Nunito/Nunito-SemiBold.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: RubikSemiBold;
  src: url("/css/fonts/Rubik/Rubik-SemiBold.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");
}
.standard-popup {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(44, 44, 44, 0.9);
  opacity: 1;
  z-index: 10800;
}
.standard-popup > .close-button {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  cursor: pointer;
}
.standard-popup > .close-button:hover {
  opacity: 1;
}
.standard-popup > .close-button:before, .standard-popup > .close-button:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 5px;
  background-color: #FFFFFF;
}
.standard-popup > .close-button:before {
  transform: rotate(45deg);
}
.standard-popup > .close-button:after {
  transform: rotate(-45deg);
}
.standard-popup .content-container {
  background-color: #FFFFFF;
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: auto;
  overflow-x: hidden;
  max-width: 600px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 24px;
  border-radius: 8px;
}
.standard-popup .content-container .h2-heading {
  font-size: 32px;
  font-family: RubikMedium, sans-serif;
  color: #000080;
  text-align: center;
  margin: 0 24px 24px 24px;
}
.standard-popup .content-container .content {
  min-height: 5vh;
  max-width: 450px;
}
.standard-popup .content-container .content .popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.standard-popup .content-container .content .popup-content .input-field {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 40px;
  background-color: #FBFBFB;
  line-height: 40px;
  padding: 0 12px;
  color: #2C2C2C;
  font-size: 14px;
  font-family: OpenSans-Regular, sans-serif;
  text-align: left;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  outline: none;
  border: 1px solid #e6e6e6;
  user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-out;
}
.standard-popup .content-container .content .popup-content .input-field:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.standard-popup .content-container .content .popup-content .input-field:focus {
  border: 1px solid #1AB9F4;
  background-color: #FFFFFF;
}
.standard-popup .content-container .content .popup-content .input-field:invalid, .standard-popup .content-container .content .popup-content .input-field[invalid] {
  border: 1px solid #F65D4D;
  background-color: #FFFFFF;
  box-shadow: none !important;
}
.standard-popup .content-container .content .popup-content img {
  min-width: 20%;
  max-width: 30%;
  height: auto;
  margin-bottom: 15px;
}
.standard-popup .content-container .content .popup-content .standard-popup-label {
  font-family: "OpenSans-Regular", sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
}
.standard-popup .content-container .content .popup-content .content-title {
  text-align: left;
  min-width: 100%;
  max-width: 45vw;
  font-size: 1.8rem;
}
.standard-popup .content-container .content .popup-content .content-text {
  width: 100%;
  font-size: 14px;
  color: #747474;
  font-family: OpenSans-Regular, sans-serif;
  text-align: left;
}
.standard-popup .content-container .content .popup-content .cta-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-lg {
  height: 48px;
  line-height: 48px;
  padding: 0 32px;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-sm {
  height: 32px;
  padding: 0 16px;
  line-height: 32px;
  font-size: 12px;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-lightBlue {
  color: #FFF;
  background-color: #1AB9F4;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-lightBlue:hover {
  background-color: #41c5f6;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-white {
  color: #444;
  background-color: #FFFFFF;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-white:hover {
  background-color: #fafafa;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-black {
  color: #bdbdbd;
  background-color: #2C2C2C;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-black:hover {
  background-color: #404040;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-dark {
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 0;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-dark:hover {
  background-color: #FFFFFF;
  color: #2C2C2C;
  box-shadow: none;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.primary-cta {
  width: 40%;
  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: RubikMedium, 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;
  user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-out;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.standard-popup .content-container .content .popup-content .cta-container .btn.primary-cta:hover {
  text-decoration: none;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.225);
}
.standard-popup .content-container .content .popup-content .cta-container .btn.primary-cta.btn-full-width {
  width: 100%;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.secondary-cta {
  width: 40%;
  box-shadow: none;
  color: #1AB9F4;
  background-color: transparent;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  font-family: RubikMedium, sans-serif;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  outline: none;
  border: none;
  padding: 0 24px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-out;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.secondary-cta:hover {
  background-color: rgba(153, 153, 153, 0.3);
  box-shadow: none;
  text-decoration: none;
}
.standard-popup .content-container .content .popup-content .cta-container .btn.secondary-cta.btn-full-width {
  width: 100%;
}

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