/*  
*   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-SemiBoldItalic;
  src: url("/css/fonts/OpenSans/OpenSans-BoldItalic.ttf"); }
@font-face {
  font-family: Roboto-Medium;
  src: url("/css/fonts/Roboto/Roboto-Medium.ttf"); }
.split-page-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  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; }
  .split-page-popup .close-button {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.3; }
  .split-page-popup .close-button:hover {
    opacity: 1; }
  .split-page-popup .close-button:before, .split-page-popup .close-button:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 5px;
    background-color: #FFFFFF; }
  .split-page-popup .close-button:before {
    transform: rotate(45deg); }
  .split-page-popup .close-button:after {
    transform: rotate(-45deg); }
  .split-page-popup .content-container {
    background-color: #FFFFFF;
    opacity: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: auto;
    overflow-x: hidden;
    margin-left: 30px;
    margin-right: 30px;
    padding: 24px;
    border-radius: 8px;
    position: relative; }
    .split-page-popup .content-container .content {
      min-height: 490px;
      min-width: 700px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      /* Split the screen */
      /* If you want the content centered horizontally and vertically */
      /* Control the left side */
      /* Control the right side */
      /* Style the h2-heading */
      /* Style the sub-heading */
      /* Style the bullet-points */ }
      .split-page-popup .content-container .content .split {
        position: absolute;
        height: 100%;
        top: 0;
        overflow-x: hidden;
        padding-top: 20px;
        background-size: cover; }
      .split-page-popup .content-container .content .centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%; }
        .split-page-popup .content-container .content .centered.centered-left {
          text-align: left; }
        .split-page-popup .content-container .content .centered.centered-right {
          text-align: right; }
      .split-page-popup .content-container .content .left {
        width: 40%;
        left: 0;
        /* Override main centered class */ }
        .split-page-popup .content-container .content .left .centered {
          width: 80%; }
      .split-page-popup .content-container .content .right {
        width: 60%;
        right: 0; }
      .split-page-popup .content-container .content .h2-heading {
        font-size: 30px;
        font-family: RubikMedium, sans serif;
        color: #FFFFFF;
        line-height: 34px; }
      .split-page-popup .content-container .content .sub-heading {
        font-size: 20px;
        font-family: OpenSans-Medium, sans-serif;
        color: #FFFFFF; }
        .split-page-popup .content-container .content .sub-heading span {
          font-family: OpenSans-Bold, sans-serif; }
        .split-page-popup .content-container .content .sub-heading .bookguide-text-part-one {
          font-family: OpenSans-Light, sans-serif;
          font-size: 24px;
          color: #FFFFFF;
          line-height: 32px;
          font-weight: 300;
          margin-bottom: 20px; }
        .split-page-popup .content-container .content .sub-heading .bookguide-text-part-two {
          font-family: OpenSans-SemiBold, sans-serif;
          font-size: 28px;
          color: #FFFFFF;
          line-height: 32px;
          font-weight: 600; }
        .split-page-popup .content-container .content .sub-heading .semi-bold {
          font-family: OpenSans-SemiBold, sans-serif;
          font-size: 24px;
          color: #FFFFFF;
          line-height: 32px;
          font-weight: 600; }
      .split-page-popup .content-container .content .bullet-points .point-cont {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
        .split-page-popup .content-container .content .bullet-points .point-cont .img-cont img {
          height: 44px; }
        .split-page-popup .content-container .content .bullet-points .point-cont .txt-cont .text {
          font-family: OpenSans, sans-serif;
          font-weight: 400;
          font-size: 16px;
          color: #FFFFFF; }
          .split-page-popup .content-container .content .bullet-points .point-cont .txt-cont .text span {
            font-family: OpenSans-Bold, sans-serif; }
      .split-page-popup .content-container .content .popup-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
        .split-page-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;
          /* 5/31/19 - CELSO - This style breaks safari */
          /*user-select: none;*/
          border-radius: 4px;
          transition: all .3s ease-out;
          width: 100%; }
          .split-page-popup .content-container .content .popup-content .input-field ::placeholder {
            color: #AEAEAE; }
          .split-page-popup .content-container .content .popup-content .input-field:hover {
            background-color: #FFFFFF;
            box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.1); }
          .split-page-popup .content-container .content .popup-content .input-field:focus {
            border: 1px solid #1AB9F4;
            background-color: #FFFFFF; }
          .split-page-popup .content-container .content .popup-content .input-field:invalid, .split-page-popup .content-container .content .popup-content .input-field[invalid] {
            border: 1px solid #F65D4D;
            background-color: #FFFFFF;
            box-shadow: none !important; }
        .split-page-popup .content-container .content .popup-content img {
          min-width: 20%;
          max-width: 30%;
          height: auto;
          margin-bottom: 15px; }
        .split-page-popup .content-container .content .popup-content .content-title {
          text-align: left;
          min-width: 100%;
          max-width: 45vw;
          font-size: 1.8rem; }
        .split-page-popup .content-container .content .popup-content .content-text {
          width: 100%;
          font-size: 14px;
          color: #747474;
          font-family: OpenSans-Regular, sans-serif;
          text-align: left; }
        .split-page-popup .content-container .content .popup-content .cta-container {
          display: flex;
          flex-direction: row;
          justify-content: flex-end;
          width: 100%;
          margin-top: 20px; }
          .split-page-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: 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;
            user-select: none;
            border-radius: 4px;
            transition: all .3s ease-out;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1); }
            .split-page-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); }
          .split-page-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: nunito, 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 .3s ease-out; }
            .split-page-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; }
          .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-lg {
            height: 48px;
            line-height: 48px;
            padding: 0 32px; }
          .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-sm {
            height: 32px;
            padding: 0 16px;
            line-height: 32px;
            font-size: 12px; }
          .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-lightBlue {
            color: #FFF;
            background-color: #1AB9F4; }
            .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-lightBlue:hover {
              background-color: #41c5f6; }
          .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-white {
            color: #444;
            background-color: #FFFFFF; }
            .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-white:hover {
              background-color: #fafafa; }
          .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-black {
            color: #bdbdbd;
            background-color: #2C2C2C; }
            .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-black:hover {
              background-color: #404040; }
          .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-dark {
            color: #FFFFFF;
            background-color: transparent;
            border: 2px solid #FFFFFF;
            border-radius: 0; }
            .split-page-popup .content-container .content .popup-content .cta-container .btn.btn-ghost-dark:hover {
              background-color: #FFFFFF;
              color: #2C2C2C;
              box-shadow: none; }
  @media (max-width: 768px) {
    .split-page-popup .content-container .content {
      min-width: 400px;
      /* Control the left side */
      /* Control the right side */ }
      .split-page-popup .content-container .content .left {
        width: 0;
        left: 0; }
      .split-page-popup .content-container .content .right {
        width: 100%;
        right: 0; } }
  @media (max-width: 375px) {
    .split-page-popup .content-container .content {
      min-width: 300px; }
      .split-page-popup .content-container .content .popup-content .cta-container {
        justify-content: center; } }

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