/* The CSS that doesn't come from the scss files. */

* {
  box-sizing: border-box;
}

#animated-charlie {
  width: auto;
  display: none;
  position: absolute;
  /*-webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);*/
  bottom: -100px;
  left: 0;
  height: 100%;
  z-index: 997; }
  @media (min-width: 480px) {
    #animated-charlie {
      /*-webkit-transform: scale(1.3);
          -ms-transform: scale(1.3);
              transform: scale(1.3);*/
      bottom: -50px; } }
  @media (min-width: 768px) {
    #animated-charlie {
      bottom: 0;
      right: 0;
      left: -webkit-calc(20% / 2);
      left: calc(20% / 2);
      height: 100%; } }

.animated-charlie-part-1 {
    -webkit-transform: scale(1.6);
        -ms-transform: scale(1.6);
            transform: scale(1.6);
} @media (min-width: 480px) {
    .animated-charlie-part-1 {
        -webkit-transform: scale(1.3);
            -ms-transform: scale(1.3);
                transform: scale(1.3);
    }
} @media (min-width: 768px) {
    .animated-charlie-part-1 {
        margin-right: 0;
        -webkit-transform: scale(1.7);
            -ms-transform: scale(1.7);
                transform: scale(1.7);
    }
}

/* Different positioning/scaling for second portion of the animated intro */
.animated-charlie-part-2 {
    margin-right: 30%;
    -webkit-transform: scale(2);
        -ms-transform: scale(2);
            transform: scale(2);
} @media (min-width: 480px) {
    .animated-charlie-part-2 {
        -webkit-transform: scale(.8);
            -ms-transform: scale(.8);
                transform: scale(.8);
    }
} @media (min-width: 768px) {
    .animated-charlie-part-2 {
        margin-right: 0;
        -webkit-transform: scale(.9);
            -ms-transform: scale(.9);
                transform: scale(.9);
    }
}

.get-started {
    height: 100vh;
    background-color: white;
}


/* Modified ValueProp properties */
.pg-animation-quote-container {
    /*border: solid 1px red;*/
    /*margin-top: 25vh;*/
} @media (min-width: 768px) {
    .pg-animation-quote-container {
        /*margin-top: 95%;*/
    }
} @media (min-width: 992px) {
    .pg-animation-quote-container {
        /*margin-top: 90%;*/
    }
} @media (min-width: 1200px) {
    .pg-animation-quote-container {
        /*margin-top: 80%;*/
    }
}

.pg-value-prop-quote {
    /*border: solid 1px purple;*/
    position: relative;
    margin-top: 0%;
    margin-left: 25%;
    width: 50%;
    top: 0%;
    z-index: 7;
} @media (min-width: 768px) {
    .pg-value-prop-quote {
        font-size: 18px;
        width: 300px;
        padding: 20px;
    }
} @media (min-width: 992px) {
    .pg-value-prop-quote {
        font-size: 22px;
        width: 400px;
    }
}


/* Custom scale for these images. */
.pg-value-prop-quote:before {
    /*Right triangle, placed bottom right side slightly in*/
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
    left: auto;
	right: 30px;
	bottom: -11px;
	border: 11px solid;
	border-color: #000 #000 transparent transparent;
    border-radius: 10px;
    transform: rotate(-225deg);
}

.pg-value-prop-quote:after {
    /*Right triangle, placed bottom right side slightly in*/
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
    left: auto;
	right: 34px;
	bottom: -10px;
	border: 10px solid;
	border-color: #fff #fff transparent transparent;
    border-radius: 10px;
    transform: rotate(-225deg);
}

/* Changes */
.pg-animation-quote-container {
    overflow: hidden;  /* Otherwise page is horizontally scrollable. */
    height: 70vh;
}

.pg-animation-quote-container-last {
    height: 100vh;
}

.pg-get-started-button-container {
    z-index: 999;
}

#waitlist-link{
    cursor: pointer !important;
    font-size: 14px !important;
    color:  #474c54 !important;
    font-weight: bold;
  }

.modal-header{
    border-bottom: none;
    padding: 10px 15px 0px 15px;
}

.modal-content{
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 280px;
    max-width: 350px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.modal-sub-content{
    padding: 0px 15px 10px 15px;
    text-align: right;
}

.modal-copy{
    font-size: 36px;
    line-height: 40px;
    color: white;
    margin-bottom: 40px;
}
.modal-italic{
    font-style: italic;
}

.modal-cta{
    background: #FDDC55;
    padding: 12px 15px 10px;
    border-radius: 8px;
    font-size: 18px;
    color: #4A4A4A;
    top: 20px;
    position: relative;
    margin-right: 20px;
}
