* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  background: #E74191;
  color: #000000;
}

::selection {
  background: #E74191;
  color: #000000;
}

::-moz-selection {
  background: #E74191;
  color: #000000;
}

body {
  background: #000000 url(../images/bg.png) center center repeat;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
}
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

h1 {
  color: #ffffff;
  font-size: 3rem;
  font-style: italic;
  padding: 0 0 1rem;
}

h2 {
  color: #ffffff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0;
  margin-top: 3rem;
}

#site-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  padding: 2rem 3rem;
}
@supports (-webkit-touch-callout: none) {
  #site-main {
    min-height: -webkit-fill-available;
  }
}
#site-main #site-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 1rem;
}
#site-main #site-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
#site-main #site-content .site-content-heading {
  padding: 0 0 1rem;
  text-align: left;
}
#site-main #site-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#site-main #site-footer .site-footer-left a {
  color: #E74191;
  font-size: 0.7rem;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  -webkit-transition: 250ms;
  transition: 250ms;
  padding-left: 0.5rem;
  text-decoration: none;
}
#site-main #site-footer .site-footer-left a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#site-main #site-footer .site-footer-right a {
  color: #E74191;
  font-size: 1rem;
  margin: 0 0 0 1rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
#site-main #site-footer .site-footer-right a.social {
  position: relative;
  top: 2px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
#site-main #site-footer .site-footer-right a.social:hover {
  display: inline-block;
  -webkit-transform: translateY(-5px) scale(1.1);
          transform: translateY(-5px) scale(1.1);
}
#site-main #site-footer .site-footer-right a.ae-custom-cta {
  text-transform: uppercase;
  text-decoration: none;
}
#site-main #site-footer .site-footer-right a.ae-custom-cta:hover {
  text-decoration: underline;
}
#site-main #site-footer .site-footer-right a:hover {
  color: #ffffff;
}

.card-images {
  margin: 0 auto 2rem;
  max-width: 1600px;
  width: calc(100% - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card-images .card-image {
  padding: 1rem;
  width: 25%;
  width: 33.33%;
}
.card-images .card-image img {
  cursor: pointer;
  display: block;
  height: auto;
  width: 100%;
  -webkit-transition: 250ms;
  transition: 250ms;
}
.card-images .card-image:hover img {
  -webkit-box-shadow: 0px 0px 20px #4d4d4d;
          box-shadow: 0px 0px 20px #4d4d4d;
}

@media screen and (max-width: 1200px) {
  .card-images .card-image {
    width: 33.33%;
  }
}
@media screen and (max-width: 1024px) {
  .card-images .card-image {
    width: 50%;
  }
}
@media screen and (max-width: 666px) {
  .card-images .card-image {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  #site-main #site-header {
    -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;
  }
  #site-main #site-header .site-header-left {
    padding: 0 0 1rem;
  }
  #site-main #site-header .site-header-right {
    padding: 0 0 1rem;
  }
}
@media screen and (max-width: 1130px) {
  #site-main #site-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #site-main #site-footer .site-footer-left {
    text-align: center;
  }
  #site-main #site-footer .site-footer-left a {
    margin: 0 0.5rem;
  }
  #site-main #site-footer .site-footer-right {
    padding-bottom: 0.5rem;
    text-align: center;
  }
  #site-main #site-footer .site-footer-right a {
    margin: 0 0.5rem;
  }
}
.create-your-card {
  display: none;
  background-color: #ffffff;
  background-color: #eee;
  border: 2px solid #E74191;
  max-width: 888px;
  width: calc(100% - 2rem);
  text-align: center;
}
.create-your-card .create-your-card-inner {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.create-your-card .create-your-card-inner .create-your-card-left {
  width: 58%;
}
.create-your-card .create-your-card-inner .create-your-card-right {
  width: calc(42% - 2rem);
}
.create-your-card h2 {
  color: #000000;
  margin-bottom: 3rem;
  margin-top: 0;
}
.create-your-card .form-row {
  padding: 0 0 1rem;
}
.create-your-card .form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.create-your-card .form-wrap label {
  font-weight: bold;
  padding-right: 0.5rem;
}
.create-your-card .form-wrap label.label-to, .create-your-card .form-wrap label.label-from {
  min-width: 66px;
}
.create-your-card .color {
  height: 2rem;
  width: 2rem;
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}
.create-your-card .color.selected {
  border: 3px solid #ffffff;
  outline: 1px solid #000000;
}
.create-your-card .color:hover {
  -webkit-box-shadow: 0 3px 0 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 0 0px rgba(0, 0, 0, 0.3);
}
.create-your-card .color-a {
  background: #E74191;
}
.create-your-card .color-b {
  background: #662D88;
}
.create-your-card .color-c {
  background: #000000;
}
.create-your-card .color-d {
  background: #FF0100;
}
.create-your-card .colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.create-your-card .text-field {
  border: none;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 0.3rem;
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  outline: none;
  padding: 0.5rem;
}
.create-your-card .text-field::-webkit-input-placeholder {
  color: #E74191;
  font-size: 1.1rem;
  font-weight: bold;
}
.create-your-card .text-field::-moz-placeholder {
  color: #E74191;
  font-size: 1.1rem;
  font-weight: bold;
}
.create-your-card .text-field:-ms-input-placeholder {
  color: #E74191;
  font-size: 1.1rem;
  font-weight: bold;
}
.create-your-card .text-field::-ms-input-placeholder {
  color: #E74191;
  font-size: 1.1rem;
  font-weight: bold;
}
.create-your-card .text-field::placeholder {
  color: #E74191;
  font-size: 1.1rem;
  font-weight: bold;
}
.create-your-card .error {
  display: none;
  color: red;
  font-size: 0.9rem;
  padding: 0.25rem;
}
.create-your-card .download {
  background: #000000;
  border-radius: 0.3rem;
  color: #ffffff;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.75rem 2.5rem;
  -webkit-transition: 250ms;
  transition: 250ms;
}
.create-your-card .download.download-a {
  margin: 0 0 1rem;
}
.create-your-card .download:hover {
  -webkit-box-shadow: 5px 5px 5px rgba(128, 128, 128, 0.71);
          box-shadow: 5px 5px 5px rgba(128, 128, 128, 0.71);
  background: #737373;
}

.preview-pane {
  -webkit-box-shadow: 5px 5px 25px rgba(128, 128, 128, 0.71);
          box-shadow: 5px 5px 25px rgba(128, 128, 128, 0.71);
  position: relative;
  /*

  &::before {
      content: '';
      border: 13px solid;
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      border-radius: 2rem;
  }

  */
}
.preview-pane[data-clr=E62ED9] {
  color: #000000;
}
.preview-pane[data-clr=E62ED9] .preview-pane::before {
  border-color: currentColor;
}
.preview-pane[data-clr=E62ED9] .preview-pane-to, .preview-pane[data-clr=E62ED9] .preview-pane-from {
  color: currentColor;
}
.preview-pane[data-clr=FF0100] {
  color: #662D88;
}
.preview-pane[data-clr=FF0100] .preview-pane::before {
  border-color: currentColor;
}
.preview-pane[data-clr=FF0100] .preview-pane-to, .preview-pane[data-clr=FF0100] .preview-pane-from {
  color: currentColor;
}
.preview-pane[data-clr="662D88"] {
  color: #E74191;
}
.preview-pane[data-clr="662D88"] .preview-pane::before {
  border-color: currentColor;
}
.preview-pane[data-clr="662D88"] .preview-pane-to, .preview-pane[data-clr="662D88"] .preview-pane-from {
  color: currentColor;
}
.preview-pane[data-clr="000000"] {
  color: #FF0100;
}
.preview-pane[data-clr="000000"] .preview-pane::before {
  border-color: currentColor;
}
.preview-pane[data-clr="000000"] .preview-pane-to, .preview-pane[data-clr="000000"] .preview-pane-from {
  color: currentColor;
}
.preview-pane .preview-pane-a img {
  display: block;
  height: auto;
  width: 100%;
}
.preview-pane .preview-pane-to {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  top: 58.59375%;
  left: 4.6875%;
  height: 9.375%;
  width: 95.3125%;
  text-align: left;
}
.preview-pane .preview-pane-from {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  top: 76.953125%;
  left: 4.6875%;
  height: 9.375%;
  width: 95.3125%;
  text-align: left;
}

@media screen and (max-width: 800px) {
  .create-your-card .create-your-card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .create-your-card .create-your-card-inner .create-your-card-left {
    margin: 0 auto 2rem;
    max-width: 462px;
    width: 100%;
  }
  .create-your-card .create-your-card-inner .create-your-card-right {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .preview-pane .preview-pane-to,
.preview-pane .preview-pane-from {
    font-size: 0.9rem;
  }
}
.actual-cards {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.actual-cards .actual-card-landscape {
  position: relative;
  height: 512px;
  width: 1024px;
}
.actual-cards .actual-card-landscape .actual-card-landscape-image img {
  display: block;
  height: auto;
  width: 100%;
}
.actual-cards .actual-card-landscape .actual-card-landscape-to {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  position: absolute;
  top: 58.59375%;
  left: 4.6875%;
  height: 13.671875%;
  width: 95.3125%;
  text-align: left;
}
.actual-cards .actual-card-landscape .actual-card-landscape-from {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  position: absolute;
  top: 76.953125%;
  left: 4.6875%;
  height: 13.671875%;
  width: 95.3125%;
  text-align: left;
}
.actual-cards .actual-card-portrait {
  position: relative;
  height: 1920px;
  width: 1080px;
}
.actual-cards .actual-card-portrait .actual-card-portrait-image img {
  display: block;
  height: auto;
  width: 100%;
}
.actual-cards .actual-card-portrait .actual-card-portrait-to {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  position: absolute;
  top: 52.0833333333%;
  left: 7.037037037%;
  height: 3.6458333333%;
  width: 92.962962963%;
  text-align: left;
}
.actual-cards .actual-card-portrait .actual-card-portrait-from {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  position: absolute;
  top: 56.9791666667%;
  left: 7.037037037%;
  height: 3.6458333333%;
  width: 92.962962963%;
  text-align: left;
}

.ae-cform-modal-container .ae-cform-title {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}
.ae-cform-modal-container .ae-cform-optin-label {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.ae-cform-modal-container .ae-cform-signin-button {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.ae-cform-modal-container .ae-cform-optin-terms a {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.evidon-banner {
  background: #E74191;
}

.output {
  display: none;
}

.card-images .card-image:nth-child(4n+0) img {
  background: #5e3183;
}

.card-images .card-image:nth-child(4n+1) img {
  background: #000000;
}

.card-images .card-image:nth-child(4n+2) img {
  background: #d24f8f;
}

.card-images .card-image:nth-child(4n+3) img {
  background: #e63323;
}

/*

.card-images .card-image:nth-child(3n+0) img {
    background: #5e3183;
}

.card-images .card-image:nth-child(3n+1) img {
    background: #e63323;
}

.card-images .card-image:nth-child(3n+2) img {
    background: #d24f8f;
}

*/