body,
html {
  font-family: Arial, sans-serif;
  color: black;
  margin: 0;
  height: 90vh;
  /* mobile viewport bug fix */
  width: 100vw;
  background-color: #FFF1E2;
  overflow-x: hidden;
}

body.disable-scroll {
  overflow: hidden;
  position: fixed;
  touch-action: none;
}

#modal-overlay {
  opacity: 0;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((var(--vh) * 100));
  z-index: 50;
  flex-direction: column;
  align-items: center;
  background: rgba(33, 55, 95, 0.8);
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  background-size: cover;
  z-index: 1;
  position: absolute;
  width: 100%;
  padding: 3vh 15px 2vh;
}

.main .page-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main .page-wrapper h1 {
  font-size: 1.3em;
  color: black;
}

.main .page-wrapper .content-block {
  display: none;
  opacity: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding-top: 1vh;
}

.main .page-wrapper #messages {
  width: 90%;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px;
  margin-top: 25px;
  border-radius: 5px;
  max-height: 100px;
  overflow-y: scroll;
  margin-bottom: 20px;
}

.main .page-wrapper #messages p {
  margin-top: 10px;
}

.main .page-wrapper #send {
  background: lightgreen;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid black;
}

h1,
h2,
h3,
h4,
h5,
li,
p,
span {
  font-family: Arial, sans-serif;
}

ul.bullet-list {
  list-style: none;
  margin: 10px 0;
  align-self: flex-start;
}

ul.bullet-list li {
  display: flex;
  font-size: 14px;
  margin: 8px 0;
  line-height: 1.3;
}

ul.bullet-list li span.bullet {
  display: flex;
  align-items: center;
  height: 14px;
  font-size: 16px;
  min-width: 15px;
}





html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

sup {
  line-height: 0;
  vertical-align: super;
  font-size: 0.6em;
}

sub {
  line-height: 0;
  vertical-align: sub;
  font-size: 0.6em;
}

textarea:focus,
input:focus {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

a {
  text-decoration: none;
}
.all-caps {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 600;
}

.hidden {
  display: none !important;
  pointer-events: none !important;
}
.canvas-container .canvas {
  width: 88%;
  height: 443px;
  position: relative;
  background-color: white;
}

.canvas-container .canvas .painting-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.canvas-container .canvas .painting-img.start {
  opacity: 1;
  z-index: 20;
}

.canvas-container .canvas .painting-img.end {
  z-index: 30;
}

.canvas-container .look-up {
  width: 60%;
  margin-top: 25px;
}
#color-selector {
  width: 87%;
  margin: 1vh 0 4vh;
}

#color-selector .colors-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

#color-selector .colors-container .color {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 8px solid white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

#color-selector .colors-container .color.selected {
  border: 13px solid white;
}

#color-selector .colors-container .color.inactive {
  background: #CBCCCE !important;
  border: 4px solid white;
  transition: all 0.2s linear;
  pointer-events: none;
}

#color-selector .colors-container[data-asset-id="the_dance"] .layer-1 {
  background: #00A1DE;
}

#color-selector .colors-container[data-asset-id="the_dance"] .layer-2 {
  background-color: #E799D0;
}

#color-selector .colors-container[data-asset-id="the_dance"] .layer-3 {
  background: #522F2C;
}

#color-selector .colors-container[data-asset-id="my_journey"] .layer-1 {
  background: #B1059D;
}

#color-selector .colors-container[data-asset-id="my_journey"] .layer-2 {
  background-color: #00AF3F;
}

#color-selector .colors-container[data-asset-id="my_journey"] .layer-3 {
  background: #00A1DE;
}

#color-selector .colors-container[data-asset-id="my_journey"] .layer-4 {
  background: #FDD100;
}

#color-selector .colors-container[data-asset-id="crossing_high_waters"] .layer-1 {
  background: #00A1DE;
}

#color-selector .colors-container[data-asset-id="crossing_high_waters"] .layer-2 {
  background-color: #253E6A;
}

#color-selector .colors-container[data-asset-id="crossing_high_waters"] .layer-3 {
  background: #D52B1E;
}

#color-selector .colors-container[data-asset-id="crossing_high_waters"] .layer-4 {
  background: #00AF3F;
}

#color-selector .colors-container[data-asset-id="light_to_dark"] .layer-1 {
  background: #253E6A;
}

#color-selector .colors-container[data-asset-id="light_to_dark"] .layer-2 {
  background-color: #00AF3F;
}

#color-selector .colors-container[data-asset-id="light_to_dark"] .layer-3 {
  background: #B1059D;
}

#color-selector .colors-container[data-asset-id="light_to_dark"] .layer-4 {
  background: #FDD100;
}

#color-selector .colors-container[data-asset-id="dancing_in_the_rain"] .layer-1 {
  background: #00AF3F;
}

#color-selector .colors-container[data-asset-id="dancing_in_the_rain"] .layer-2 {
  background-color: #00A1DE;
}

#color-selector .colors-container[data-asset-id="dancing_in_the_rain"] .layer-3 {
  background: #FF6D22;
}

#color-selector .colors-container[data-asset-id="dancing_in_the_rain"] .layer-4 {
  background: #522F2C;
}

#color-selector .colors-container[data-asset-id="treble_clef"] .layer-1 {
  background: #00AF3F;
}

#color-selector .colors-container[data-asset-id="treble_clef"] .layer-2 {
  background-color: #FDD100;
}

#color-selector .colors-container[data-asset-id="treble_clef"] .layer-3 {
  background: #D52B1E;
}

#color-selector .colors-container[data-asset-id="treble_clef"] .layer-4 {
  background: #B1059D;
}
#completed-box {
  background: rgba(33, 55, 95, 0.9);
  border-radius: 19px;
  opacity: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  width: 76%;
  position: absolute;
  top: 26vh;
  left: 12%;
  z-index: 30;
  padding: 20px 0 40px;
}

#completed-box .paint-more-icon {
  width: 20%;
}

#completed-box .completed-text {
  width: 84%;
  margin: 20px 0 30px;
}

#completed-box #download-btn {
  width: 80%;
  height: 52px;
  background: url("../assets/text/download-btn.svg") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
#gallery {
  display: flex;
}

#gallery .direction {
  width: 50%;
  margin-bottom: 5vh;
}

#gallery .owl-carousel {
  max-width: 100%;
}

#gallery .owl-carousel .owl-stage-outer {
  width: 100%;
}

#gallery .owl-carousel .owl-stage-outer .owl-item {
  width: 345px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
}

#gallery .owl-carousel .owl-stage-outer .owl-item.active.center {
  opacity: 1;
  pointer-events: all;
}

#gallery .owl-carousel .owl-stage-outer .owl-item:last-child {
  margin-right: 0 !important;
}

#gallery .owl-carousel .owl-stage-outer .owl-item .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#gallery .owl-carousel .owl-stage-outer .owl-item .carousel-item .gallery-img {
  width: 100%;
}

#gallery .owl-carousel .owl-stage-outer .owl-item .carousel-item .select-btn {
  position: absolute;
  bottom: 2%;
  left: 25%;
  width: 50%;
  cursor: pointer;
}

#gallery .owl-carousel .owl-dots .owl-dot span {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  width: 14px;
  height: 14px;
}

#gallery .owl-carousel .owl-dots .owl-dot.active span {
  background: #21375F;
}

#gallery .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
}

#gallery .signoff {
  width: 90%;
  margin-top: 5vh;
}
#instruct-overlay {
  opacity: 0;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((var(--vh) * 100));
  z-index: 50;
  flex-direction: column;
  align-items: center;
  background: rgba(33, 55, 95, 0.8);
  background: rgba(33, 55, 95, 0.8);
}

#instruct-overlay .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

#instruct-overlay .inner .select-color {
  position: absolute;
  width: 27%;
  left: 8%;
  top: 6%;
}

#instruct-overlay .inner .swipe {
  position: absolute;
  width: 40%;
  top: 43%;
  left: 30%;
}

#instruct-overlay .inner .flex-btns {
  display: flex;
  justify-content: space-between;
  width: 87%;
  position: absolute;
  left: 6%;
  bottom: 5%;
}

#instruct-overlay .inner .flex-btns img {
  cursor: pointer;
}

#instruct-overlay .inner .next-btn-lg {
  width: 80%;
  height: 10%;
  position: absolute;
  left: 10%;
  bottom: 5%;
  background: url("../assets/text/next-btn-lg.svg") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.popup {
  display: none;
  opacity: 0;
  position: absolute;
  top: 20vh;
  left: 15%;
  width: 70%;
  background: white;
  border-radius: 19px;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  z-index: 55;
}

.popup .icon {
  margin-bottom: 15px;
  width: 17%;
}

.popup .text {
  width: 88%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("libs/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}