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

body {
  background: #e9e9e9;
  padding-top: 50px;
  padding-bottom: 150px;
  font-family: "Lora", Georgia, serif;
}


/* ------ Headings ------- */
h1 {
  font-family: "Avenir", Arial, sans-serif;
}
h2 {
  font-weight: normal;
}
h2.sub-section-heading {
  position: relative;
  font-size: 32px;
  color: #2e2e2e;
  margin-bottom: .8em;
  font-weight: 200;
}

h2.sub-section-heading:after {
  position: absolute;
  content: "";
  bottom: -.4em;
  left: 1px;
  width: .3em;
  height: 2px;
  background: #ee6b94;
}

@media screen and (min-width: 500px){
  h2.sub-section-heading {
    font-size: 45px;
  }
}
@media screen and (min-width: 600px){
  h2.sub-section-heading {
    font-size: 50px;
  }
  h2.sub-section-heading:after {
    width: .4em;
    height: 3px;
  }
}

/* ------ Sections ------- */
section {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #a3a3a3;
}

section + section {
  margin-top: 120px;
}

.public {
  color: #a3a3a3;
}
.padded-sides {
  padding-left: 3.33%;
  padding-right: 3.33%;
}

.padded-top {
  padding-top: 60px;
}
.padded-bottom {
  padding-bottom: 90px;
}

.sub-section.hr-top {
  border-top: 1px solid #e9e9e9;
  padding-top: 40px;
}

/* -------- Rows -------- */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row-column img {
  max-width: 100%;
}

.center-content {
  text-align: center;
}

.column-third {
  margin-top: 40px;
}

@media screen and (min-width: 450px){
  .column-third {
    width: calc( (100% - 20px) / 2 );
    float: left;
  }
  .column-third:nth-of-type(2){
    margin-left: 20px;
  }
}

@media screen and (min-width: 600px){
  .column-half {
    width: 50%;
    float: left;
  }
  .padded-row .column-half:first-child {
    padding-right: 20px;
  }
  .padded-row .column-half:last-child {
    padding-left: 20px;
  }
  .column-third {
    width: calc( (100% - 20px * 2) / 3);
    float: left;
  }
  .column-third:nth-of-type(2){
    margin-left: initial;
  }

  .column-third {
    margin-top: 0;
    margin-right: 20px;
  }

  .column-third:last-of-type, .column-third:nth-child(3n+3) {
    float: right;
    margin-right: 0;
  }
}

/* -------- General -------- */
.public p {
  line-height: 1.3;
}
.public p+p {
  margin-top: 20px;
}


/* /////////////////////////////////////////
STYLEGUIDE
///////////////////////////////////////// */
/* ------- HERO ------- */
#splash {
  overflow: hidden;
}
.hero {
  width: 100%;
  background-image: url('./assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vw;
  max-height: 550px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  bottom:0;
  background: #ee6b94;
  mix-blend-mode: multiply;
}
.hero div {
  width: 40%;
  min-width: 300px;
  position: relative;
  z-index: 100;
  text-align: center;
}
.hero div object {
  width: 100%;
}
.hero div span {
  color: #fff;
  font-family: "Avenir", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: .5em;
  font-size: 17px;
  text-transform: uppercase;
}


/* ------- ABOUT ------- */
#welcome h1 {
  font-weight: 900;
  font-size: 14vw;
  line-height: 1.1;
  color: #231417;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

@media screen and (min-width: 500px){
  #welcome h1 {
    font-size: 9vw;
  }
}
@media screen and (min-width: 960px){
  #welcome h1 {
    font-size: 85px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

/* ------- LOGO ------- */
#logo-space {
  padding-top: 40px;
}

#incorrect-logo-use {
  margin-top: 120px;
  margin-bottom: 80px;
  text-align: center;
}
#incorrect-logo-use div img {
  width: 80%;
  max-width: 220px;
}

.logo-warning {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 30px;
}

@media screen and (min-width:600px){
  #logo-space {
    padding-top: 0px;
  }
}

/* -------- COLORS -------- */
#our-colors {
  margin-top: 40px;
  margin-bottom: 80px;
}

#our-colors h4 {
  text-align: center;
  margin-bottom: 1em;
  color: #2e2e2e;
}

.palette {
  width: 100%;
  min-height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-family: "Avenir", Arial, sans-serif;
}

.palette .our-color {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align:center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
  background: #e9e9e9;
  min-height: 25%;
  color: #000;
  padding-top: 20px;
}

.palette .our-color:nth-of-type(1) {
  color: #fff;
}

.palette .our-color span {
  display: block;
  width: 100%;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.palette .our-color span.hover-active {
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.palette .our-color:hover {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.palette .our-color:hover span.hover-active {
  display: block;
  font-size: inherit;
  line-height: inherit;
}
.primary-colors .our-color:nth-of-type(1){background: #c83f67;}
.primary-colors .our-color:nth-of-type(2){background: #ee6b94;}
.primary-colors .our-color:nth-of-type(3){background: #f29fc5;}

.secondary-colors .our-color:nth-of-type(1){background: #d141a2;}
.secondary-colors .our-color:nth-of-type(2){background: #ee7fc9;}
.secondary-colors .our-color:nth-of-type(3){background: #ef8dd5;}

.neutral-colors .our-color:nth-of-type(1){background: #2e2e2e;}
.neutral-colors .our-color:nth-of-type(2){background: #a3a3a3;}
.neutral-colors .our-color:nth-of-type(3){background: #e9e9e9;}


/* -------- TYPOGRAPHY -------- */
#our-typography {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* margin-bottom: 90px; */
}
#avenir-sample {
  position: relative;
  left: -2.5%;
}
#lora-sample {
  margin-left: -2.7%;
  margin-top: 10px;
}

.typography-box.model {
  margin-bottom: 10px;
}
.typography-box.sample-font {
  margin-bottom: 60px;
}

.typography-box img {
  width: 100%;
}

.typography-box {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}

#avenir-model {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width:650px){
  #our-typography div {
    width: 50%;
  }
  #our-typography img {
    max-width: 100%;
  }
  #avenir-model {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #lora-sample {
    margin-left: 10px;
  }
  .typography-box.model {
    margin-bottom: 0;
  }
  .typography-box.sample-font {
    margin-bottom: 0;
  }
  .bottom-space-fix {
    margin-bottom:-5px;
  }
}


/* ////////////////////////////////
EXAMPLE BANNER
//////////////////////////////// */
#banner-container:after {
  content: "728px x 90px";
  display: block;
  text-align:right;
  max-width: 728px;
  margin: 0 auto;
}
.ad-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 728px;
  height: 90px;
  position: relative;
  overflow: hidden;
}

.ad-model-bg, .ad-model-sans-bg {
  position: absolute;
  left: 0;
  width: 50%;
  top: -40px;
  height: 400px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow: visible;
  background-position: top -60px left;
}

.ad-model-bg {
  background-image: url('./assets/images/model-bg.jpg');
  -webkit-animation: fadeMeOut 3s;
          animation: fadeMeOut 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 2;
}
.ad-model-sans-bg {
  background-image: url('./assets/images/model-sans-bg.png');
  z-index:1;
  -webkit-animation-name: scrollMe;
          animation-name: scrollMe;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  /* animation-delay: 4s; */
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.ad-wrapper:hover .ad-model-sans-bg {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.ad-bg-img, .ad-bg-clr {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
}

.ad-bg-img {
  background-image: url('./assets/images/transparency.jpg');
  z-index: 0;
  -webkit-animation: fadeMeOut 2s;
          animation: fadeMeOut 2s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.ad-bg-clr {
  background: #ee7fc9;
  z-index: 0;
  -webkit-animation: fadeIn 2s;
          animation: fadeIn 2s;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.ad-price-wrapper {
  position: absolute;
  display: block;
  z-index: 100;
  background: #fff;
  color: #000;
  display: inline-block;
  font-family: "Avenir", arial, sans-serif;
  font-weight: 900;
  padding: 10px;
  line-height: 1;
  text-align: right;
  left: 45%;
  top: 20%;
  -webkit-animation-name: flashMe;
          animation-name: flashMe;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-transition: 200ms;
  transition: 200ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  text-decoration: none;
}
.ad-price-wrapper:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

div.arrow {
  display:block;
}
.ad-price-wrapper:hover .arrow {
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  color:#ee7fc9;
}
.ad-logo {
  -webkit-animation-name: flashMe;
          animation-name: flashMe;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  left: 57%;
  top: 0px;
  width: 230px;
  height: 90px;
  position: absolute;
  z-index: 100;
  text-align: center;
}
.ad-logo:hover {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}


.animation-control {
  text-align: center;
  margin-top: 20px;
}

#replay-animation {
  text-decoration: none;
  color: #ee7fc9;
  font-weight: bold;
  -webkit-transition: 200ms;
  transition: 200ms;
  font-size: 18px;
}
#replay-animation:hover {
  color: #d141a2;
}
#replay-animation:before {
  content: "▶";
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 5px;
  font-size: 12px;
  line-height: 13px;
  border-radius: 9999px;
  font-size: 14px;
  margin-right: 8px;
  border: 2px solid;
}

#replay-animation:hover:before {
  color: #fff;
  border-color: #d141a2;
  background-color: #d141a2;
}

/* //////// animations /////// */
@-webkit-keyframes fadeMeIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
@keyframes fadeMeIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
@-webkit-keyframes fadeMeOut {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
}
@keyframes fadeMeOut {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
}


@-webkit-keyframes scrollMe {
  0% {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, -150px, 0);
            transform: translate3d(0, -150px, 0);
  }
}


@keyframes scrollMe {
  0% {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, -150px, 0);
            transform: translate3d(0, -150px, 0);
  }
}
@-webkit-keyframes flashMe {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  10% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  30% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
@keyframes flashMe {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  10% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  30% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@-webkit-keyframes dropIn {
  0% {
    -webkit-transform: translate3d(0px, -100px, 0px);
            transform: translate3d(0px, -100px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
  }
}

@keyframes dropIn {
  0% {
    -webkit-transform: translate3d(0px, -100px, 0px);
            transform: translate3d(0px, -100px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
  }
}


@media screen and (max-width: 650px){
  #banner-container:after {
    content: "336px x 280px";
    max-width: 336px;
  }
  .ad-wrapper {
    width: 336px;
    height: 280px;
  }
  .ad-logo {
    right: 10px;
    top: 10px;
    left: auto;
  }
  .ad-price-wrapper {
    right: 15px;
    top: 40%;
    bottom: auto;
    left: auto;
    font-size: 200%;
  }
  .ad-model-bg,
  .ad-model-sans-bg {
    bottom: 0;
    top: auto;
    left: -50px;
    width: 100%;
    height: 90%;
    background-position: left top;
    background-size: auto 100%;
  }
  .ad-wrapper:hover .ad-model-sans-bg {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}

@media screen and (max-width: 450px){
  #banner-container:after {
    content: "300px x 600px";
    max-width: 300px;
  }
  .ad-wrapper {
    width: 300px;
    height: 600px;
  }
  .ad-logo {
    left: 20px;
    right: auto;
  }
  .ad-price-wrapper {
    left: 15px;
    right: initial;
    top: 20%;
    font-size: 200%;
  }
  .ad-model-bg,
  .ad-model-sans-bg {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 70%;
  }
}



/* ////////////////////////////////
SIGNUP
//////////////////////////////// */
.signup-card-wrapper {
  width: 100%;
  max-width: 600px;
  height: 360px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.signup-card-bg{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url('./assets/images/signup-bg.jpg');
  background-size: cover;
  background-position: center;
}


.container {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
  display: inline-block;
  min-width:100px;
}

.front,
.back {
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	text-align: center;
	/* min-height: 100px; */
	height: auto;

}

/* .container:hover .front,
.container:hover .back, */
.container.active .front,
.container.active .back {
    -webkit-transition: -webkit-transform 900ms cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform 900ms cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 900ms cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 900ms cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 900ms cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
  position: absolute;
  top: 0;
  left: 0;
}
.back .inner {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  margin: 0 auto;
  -webkit-perspective: inherit;
          perspective: inherit;
  z-index: 2;
}

.container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/* .container:hover .back, */
.container.active .back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* .container:hover .front */
.container.active .front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}


.front, .back {
  position: absolute;
  left: 0;
  right: 0;
  /* width: 100%; */
  bottom: 0;
  top: 0;
  margin: 0 auto;
  background: #fff;
}

.front .inner {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.front {
  min-height: 180px;
  min-width: 180px;
}

.container {
  position: absolute;
  left: 5%;
  top: 20%;
}


.cta {
  font-family: "Avenir", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  color: #000;
  font-size: 40px;
  text-transform: uppercase;
}

.front:hover #flip-card {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: center;
          transform-origin: center;
  color:#ee7fc9;
}

.front #flip-card {
  text-align: right;
  padding: 5px 20px 0 0;
  font-size: 25px;
  line-height: 0;
  color: #000;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  cursor: pointer;
  font-family: "Avenir", Arial, sans-serif;
}

.front #flip-card:hover {
  color:#ee7fc9;
}

.back {
  min-height: 180px;
  min-width: 280px;
}

.back .inner {
  padding: 20px;
  width: 260px;
}


/* -------- form -------- */
.input-group {
  font-family: "Avenir", Arial, sans-serif;
  position:relative;
  margin-bottom:25px;
}

.input-group input {
  font-size:16px;
  padding:0px 5px 5px;
  display:block;
  width: 100%;
  border: none;
  -webkit-transition: 200ms ease all;
  transition:200ms ease all;
  border-bottom:2px solid #2e2e2e;
}

.input-group input:focus {
  outline:none;
  border-bottom:2px solid #ee6b94;
}

label {
  color:#2e2e2e;
  font-size:16px;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:0px;
  -webkit-transition: 200ms ease all;
  transition:200ms ease all;
}

input:focus ~ label,
input:valid ~ label,
input.filled ~ label {
  top:-20px;
  left: 0;
  font-size:14px;
  color:#ee6b94;
}

#password-strength {
  font-size: 12px;
  padding-top: 3px;
  position: absolute;
}


input[type="submit"] {
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #ee6b94;
  color: #fff;
  font-size: 15px;
  padding: 0.6em 1.2em;
  cursor: pointer;
  -webkit-transition: ;
  transition:
}
input[type="submit"]:hover {
  background-color: #c83f67;
}




/* ////////////////////////////////
NOTES
//////////////////////////////// */
.notes {
  -webkit-transition: 300ms;
  transition: 300ms;
  height: 0;
  overflow: hidden;
}
.notes.active {
height: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  background: yellow;
  color: #000;
  padding: 20px 3.333%;
  text-align: center;
}
.notes li {
  list-style-position: inside;
}

.notes a {
  color: inherit;
}
.notes a:hover {
  text-decoration: none;
}

#extras-trigger {
  z-index: 10000;
  position: fixed;
  top: auto;
  right: 20px;
  bottom: 20px;
  left: 20px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  text-transform: uppercase;
  font-family: "Avenir", sans-serif;
  background: #fff;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(11, 64, 116,.1), 0 5px 15px rgba(1,0,0,.07);
  border: 2px solid yellow;
}

@media screen and (min-width: 651px){
  #extras-trigger {
    display: inline-block;
    left: auto;
  }
}
