.size-16 {
  font-size:14px;
}


.draft-ribbon {
  position: absolute;
  right: -0.5em; top: -0.5em;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}

#checkout-video {
  left:22em;
  top:-2.8em;
  position:relative;
}

@media only screen and (min-width: 1000px) {
	.draft-ribbon {
		right: -0.5em; top: -0.5em;
	}
  #checkout-video {
    left:28em;
    top:-2.8em;
    position:relative;
  }
}

.draft-ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #939393;
  position: absolute;
  top: 19px; right: -21px;
}
.draft-ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #a3a3a3;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #a3a3a3;
}
.draft-ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #a3a3a3;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #a3a3a3;
}


.premium-ribbon {
  position: absolute;
  right: -0.5em; top: -0.5em;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
@media only screen and (min-width: 1000px) {
	.premium-ribbon {
		right: -0.5em; top: -0.5em;
	}
}

.premium-ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #e94963;
  position: absolute;
  top: 19px; right: -21px;
}
.premium-ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #e94964;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #e94964;
}
.premium-ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #e94964;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #e94964;
}

#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 100;
}
#modal-container.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.one .modal-background .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.one.out .modal-background .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two {
  transform: scale(1);
}
#modal-container.two .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two + .content {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}
#modal-container.two.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out .modal-background .modal {
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out + .content {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.three {
  z-index: 0;
  transform: scale(1);
}
#modal-container.three .modal-background {
  background: rgba(0, 0, 0, .6);
}
#modal-container.three .modal-background .modal {
  animation: moveUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.three + .content {
  z-index: 1;
  animation: slideUpLarge 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.three.out .modal-background .modal {
  animation: moveDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.three.out + .content {
  animation: slideDownLarge 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four {
  z-index: 0;
  transform: scale(1);
}
#modal-container.four .modal-background {
  background: rgba(0, 0, 0, .7);
}
#modal-container.four .modal-background .modal {
  animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four + .content {
  z-index: 1;
  animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four.out .modal-background .modal {
  animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four.out + .content {
  animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.five {
  transform: scale(1);
}
#modal-container.five .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.five .modal-background .modal {
  transform: translateX(-1500px);
  animation: roadRunnerIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.five.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}
#modal-container.five.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.five.out .modal-background .modal {
  animation: roadRunnerOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six {
  transform: scale(1);
}
#modal-container.six .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six .modal-background .modal {
  background-color: transparent;
  animation: modalFadeIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six .modal-background .modal h2, #modal-container.six .modal-background .modal p {
  opacity: 0;
  position: relative;
  animation: modalContentFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six .modal-background .modal .modal-svg rect {
  animation: sketchIn 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}
#modal-container.six.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six.out .modal-background .modal {
  animation: modalFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six.out .modal-background .modal h2, #modal-container.six.out .modal-background .modal p {
  animation: modalContentFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.six.out .modal-background .modal .modal-svg rect {
  animation: sketchOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.seven {
  transform: scale(1);
}
#modal-container.seven .modal-background {
  background: rgba(0, 0, 0, .0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.seven .modal-background .modal {
  height: 75px;
  width: 75px;
  border-radius: 75px;
  overflow: hidden;
  animation: bondJamesBond 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.seven .modal-background .modal h2, #modal-container.seven .modal-background .modal p {
  opacity: 0;
  position: relative;
  animation: modalContentFadeIn 0.5s 1.4s linear forwards;
}
#modal-container.seven.out {
  animation: slowFade 0.5s 1.5s linear forwards;
}
#modal-container.seven.out .modal-background {
  background-color: rgba(0, 0, 0, .7);
  animation: fadeToRed 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.seven.out .modal-background .modal {
  border-radius: 3px;
  height: 162px;
  width: 227px;
  animation: killShot 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.seven.out .modal-background .modal h2, #modal-container.seven.out .modal-background .modal p {
  animation: modalContentFadeOut 0.5s 0.5 cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, .8);
  text-align: center;
  vertical-align: middle;
}
#modal-container .modal-background .modal {
  background: white;
  padding: 50px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 300;
  position: relative;
}
#modal-container .modal-background .modal h2 {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 15px;
}
#modal-container .modal-background .modal p {
  font-size: 18px;
  line-height: 22px;
}
#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}
#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
 }
  50% {
    transform: scaleY(0.005) scaleX(1);
 }
  100% {
    transform: scaleY(1) scaleX(1);
 }
}
@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
 }
  50% {
    transform: scaleY(0.005) scaleX(1);
 }
  100% {
    transform: scaleY(0.005) scaleX(0);
 }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
 }
  100% {
    transform: scale(1);
 }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
 }
  100% {
    transform: scale(0);
 }
}
@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, .0);
 }
  100% {
    background: rgba(0, 0, 0, .7);
 }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, .7);
 }
  100% {
    background: rgba(0, 0, 0, .0);
 }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
 }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
 }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
 }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
 }
}
@keyframes scaleBack {
  0% {
    transform: scale(1);
 }
  100% {
    transform: scale(0.85);
 }
}
@keyframes scaleForward {
  0% {
    transform: scale(0.85);
 }
  100% {
    transform: scale(1);
 }
}
@keyframes quickScaleDown {
  0% {
    transform: scale(1);
 }
  99.9% {
    transform: scale(1);
 }
  100% {
    transform: scale(0);
 }
}
@keyframes slideUpLarge {
  0% {
    transform: translateY(0%);
 }
  100% {
    transform: translateY(-100%);
 }
}
@keyframes slideDownLarge {
  0% {
    transform: translateY(-100%);
 }
  100% {
    transform: translateY(0%);
 }
}
@keyframes moveUp {
  0% {
    transform: translateY(150px);
 }
  100% {
    transform: translateY(0);
 }
}
@keyframes moveDown {
  0% {
    transform: translateY(0px);
 }
  100% {
    transform: translateY(150px);
 }
}
@keyframes blowUpContent {
  0% {
    transform: scale(1);
    opacity: 1;
 }
  99.9% {
    transform: scale(2);
    opacity: 0;
 }
  100% {
    transform: scale(0);
 }
}
@keyframes blowUpContentTwo {
  0% {
    transform: scale(2);
    opacity: 0;
 }
  100% {
    transform: scale(1);
    opacity: 1;
 }
}
@keyframes blowUpModal {
  0% {
    transform: scale(0);
 }
  100% {
    transform: scale(1);
 }
}
@keyframes blowUpModalTwo {
  0% {
    transform: scale(1);
    opacity: 1;
 }
  100% {
    transform: scale(0);
    opacity: 0;
 }
}
@keyframes roadRunnerIn {
  0% {
    transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
 }
  70% {
    transform: translateX(30px) skewX(0deg) scaleX(0.9);
 }
  100% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
 }
}
@keyframes roadRunnerOut {
  0% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
 }
  30% {
    transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
 }
  100% {
    transform: translateX(1500px) skewX(30deg) scaleX(1.3);
 }
}
@keyframes sketchIn {
  0% {
    stroke-dashoffset: 778;
 }
  100% {
    stroke-dashoffset: 0;
 }
}
@keyframes sketchOut {
  0% {
    stroke-dashoffset: 0;
 }
  100% {
    stroke-dashoffset: 778;
 }
}
@keyframes modalFadeIn {
  0% {
    background-color: transparent;
 }
  100% {
    background-color: white;
 }
}
@keyframes modalFadeOut {
  0% {
    background-color: white;
 }
  100% {
    background-color: transparent;
 }
}
@keyframes modalContentFadeIn {
  0% {
    opacity: 0;
    top: -20px;
 }
  100% {
    opacity: 1;
    top: 0;
 }
}
@keyframes modalContentFadeOut {
  0% {
    opacity: 1;
    top: 0px;
 }
  100% {
    opacity: 0;
    top: -20px;
 }
}
@keyframes bondJamesBond {
  0% {
    transform: translateX(1000px);
 }
  80% {
    transform: translateX(0px);
    border-radius: 75px;
    height: 75px;
    width: 75px;
 }
  90% {
    border-radius: 3px;
    height: 182px;
    width: 247px;
 }
  100% {
    border-radius: 3px;
    height: 162px;
    width: 227px;
 }
}
@keyframes killShot {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
 }
  100% {
    transform: translateY(300px) rotate(45deg);
    opacity: 0;
 }
}
@keyframes fadeToRed {
  0% {
    background-color: rgba(0, 0, 0, .6);
 }
  100% {
    background-color: rgba(255, 0, 0, .8);
 }
}
@keyframes slowFade {
  0% {
    opacity: 1;
 }
  99.9% {
    opacity: 0;
    transform: scale(1);
 }
  100% {
    transform: scale(0);
 }
}

/* force scrollbar */
.modal {
  overflow-y: scroll;
  width: 600px;
}

/* ---- grid ---- */

.grid {
  background: #DDD;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 33.333%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

h1 span::before{
  content: '';
  color: #435de2;
  animation: profile 20s infinite;
  z-index:9999;
}
@keyframes profile {
  0% { content: 'Getting your deck ready'}
  80% { content: 'Your deck is now ready'}
}

.lds-dual-ring.hidden {
display: none;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 5% auto;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #e7e7e79e;
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}

/* * Hover.css (https://ianlunn.co.uk/) * Version: 1.0 * Author: Ian Lunn @IanLunn * Author URL: https://ianlunn.co.uk/ * Github: https://github.com/IanLunn/Hover * Made available under a MIT License: * https://www.opensource.org/licenses/mit-license.php * Hover.css Copyright Ian Lunn 2014. */

/* 2D TRANSITIONS */
/* Grow */
 .grow {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .grow:hover {
	 transform: scale(1.1);
}
/* Shrink */
 .shrink {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .shrink:hover {
	 transform: scale(0.9);
}
/* Pulse */
 @keyframes pulse {
	 25% {
		 transform: scale(1.1);
	}
	 75% {
		 transform: scale(0.9);
	}
}
 .pulse {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .pulse:hover {
	 animation-name: pulse;
	 animation-duration: 1s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
}
/* Pulse Grow */
 @keyframes pulse-grow {
	 to {
		 transform: scale(1.1);
	}
}
 .pulse-grow {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .pulse-grow:hover {
	 animation-name: pulse-grow;
	 animation-duration: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: alternate;
}
/* Pulse Shrink */
 @keyframes pulse-shrink {
	 to {
		 transform: scale(0.9);
	}
}
 .pulse-shrink {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .pulse-shrink:hover {
	 animation-name: pulse-shrink;
	 animation-duration: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: alternate;
}
/* Push */
 @keyframes push {
	 50% {
		 transform: scale(0.8);
	}
	 100% {
		 transform: scale(1);
	}
}
 .push {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .push:hover {
	 animation-name: push;
	 animation-duration: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: 1;
}
/* Pop */
 @keyframes pop {
	 50% {
		 transform: scale(1.2);
	}
	 100% {
		 transform: scale(1);
	}
}
 .pop {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .pop:hover {
	 animation-name: pop;
	 animation-duration: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: 1;
}
/* Rotate */
 .rotate {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .rotate:hover {
	 transform: rotate(4deg);
}
/* Grow Rotate */
 .grow-rotate {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .grow-rotate:hover {
	 transform: scale(1.1) rotate(4deg);
}
/* Float */
 .float {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .float:hover {
	 transform: translateY(-5px);
}
/* Sink */
 .sink {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .sink:hover {
	 transform: translateY(5px);
}
/* Hover */
 @keyframes hover {
	 50% {
		 transform: translateY(-3px);
	}
	 100% {
		 transform: translateY(-6px);
	}
}
 .hover {
	 display: inline-block;
	 transition-duration: 0.5s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .hover:hover {
	 transform: translateY(-6px);
	 animation-name: hover;
	 animation-duration: 1.5s;
	 animation-delay: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: alternate;
}
/* Hang */
 @keyframes hang {
	 50% {
		 transform: translateY(3px);
	}
	 100% {
		 transform: translateY(6px);
	}
}
 .hang {
	 display: inline-block;
	 transition-duration: 0.5s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .hang:hover {
	 transform: translateY(6px);
	 animation-name: hang;
	 animation-duration: 1.5s;
	 animation-delay: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: alternate;
}
/* Skew */
 .skew {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .skew:hover {
	 transform: skew(-10deg);
}
/* Skew Forward */
 .skew-forward {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 transform-origin: 0 100%;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .skew-forward:hover {
	 transform: skew(-10deg);
}
/* Wobble Vertical */
 @keyframes wobble-vertical {
	 16.65% {
		 transform: translateY(8px);
	}
	 33.3% {
		 transform: translateY(-6px);
	}
	 49.95% {
		 transform: translateY(4px);
	}
	 66.6% {
		 transform: translateY(-2px);
	}
	 83.25% {
		 transform: translateY(1px);
	}
	 100% {
		 transform: translateY(0);
	}
}
 .wobble-vertical {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .wobble-vertical:hover {
	 animation-name: wobble-vertical;
	 animation-duration: 1s;
	 animation-timing-function: ease-in-out;
	 animation-iteration-count: 1;
}
/* Wobble Horizontal */
 @keyframes wobble-horizontal {
	 16.65% {
		 transform: translateX(8px);
	}
	 33.3% {
		 transform: translateX(-6px);
	}
	 49.95% {
		 transform: translateX(4px);
	}
	 66.6% {
		 transform: translateX(-2px);
	}
	 83.25% {
		 transform: translateX(1px);
	}
	 100% {
		 transform: translateX(0);
	}
}
 .wobble-horizontal {
	 display: inline-block;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .wobble-horizontal:hover {
	 animation-name: wobble-horizontal;
	 animation-duration: 1s;
	 animation-timing-function: ease-in-out;
	 animation-iteration-count: 1;
}
/* Wobble Top */
 @keyframes wobble-top {
	 16.65% {
		 transform: skew(-12deg);
	}
	 33.3% {
		 transform: skew(10deg);
	}
	 49.95% {
		 transform: skew(-6deg);
	}
	 66.6% {
		 transform: skew(4deg);
	}
	 83.25% {
		 transform: skew(-2deg);
	}
	 100% {
		 transform: skew(0);
	}
}
 .wobble-top {
	 display: inline-block;
	 transform-origin: 0 100%;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .wobble-top:hover {
	 animation-name: wobble-top;
	 animation-duration: 1s;
	 animation-timing-function: ease-in-out;
	 animation-iteration-count: 1;
}
/* Wobble Bottom */
 @keyframes wobble-bottom {
	 16.65% {
		 transform: skew(-12deg);
	}
	 33.3% {
		 transform: skew(10deg);
	}
	 49.95% {
		 transform: skew(-6deg);
	}
	 66.6% {
		 transform: skew(4deg);
	}
	 83.25% {
		 transform: skew(-2deg);
	}
	 100% {
		 transform: skew(0);
	}
}
 .wobble-bottom {
	 display: inline-block;
	 transform-origin: 100% 0;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .wobble-bottom:hover {
	 animation-name: wobble-bottom;
	 animation-duration: 1s;
	 animation-timing-function: ease-in-out;
	 animation-iteration-count: 1;
}
/* BORDER TRANSITIONS */
/* Border Fade */
 .border-fade {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: box-shadow;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: inset 0 0 0 4px #ececec, 0 0 1px rgba(0, 0, 0, 0);
	/* Hack to improve aliasing on mobile/tablet devices */
}
 .border-fade:hover {
	 box-shadow: inset 0 0 0 4px #666, 0 0 1px rgba(0, 0, 0, 0);
	/* Hack to improve aliasing on mobile/tablet devices */
}
/* Hollow */
 .hollow {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: background;
	 transform: translateZ(0);
	/* Hack to improve performance on mobile/tablet devices */
	 box-shadow: inset 0 0 0 4px #ececec, 0 0 1px rgba(0, 0, 0, 0);
	/* Hack to improve aliasing on mobile/tablet devices */
}
 .hollow:hover {
	 background: none;
}
/* Trim */
 .trim {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .trim:before {
	 content: '';
	 position: absolute;
	 border: white solid 4px;
	 top: 4px;
	 left: 4px;
	 right: 4px;
	 bottom: 4px;
	 opacity: 0;
	 transition-duration: 0.3s;
	 transition-property: opacity;
}
 .trim:hover:before {
	 opacity: 1;
}
/* Outline Outward */
 .outline-outward {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .outline-outward:before {
	 content: '';
	 position: absolute;
	 border: #ececec solid 4px;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 transition-duration: 0.3s;
	 transition-property: top right bottom left;
}
 .outline-outward:hover:before {
	 top: -8px;
	 right: -8px;
	 bottom: -8px;
	 left: -8px;
}
/* Outline Inward */
 .outline-inward {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .outline-inward:before {
	 content: '';
	 position: absolute;
	 border: #ececec solid 4px;
	 top: -16px;
	 right: -16px;
	 bottom: -16px;
	 left: -16px;
	 opacity: 0;
	 transition-duration: 0.3s;
	 transition-property: top right bottom left;
}
 .outline-inward:hover:before {
	 top: -8px;
	 right: -8px;
	 bottom: -8px;
	 left: -8px;
	 opacity: 1;
}
/* Round Corners */
 .round-corners {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: border-radius;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .round-corners:hover {
	 border-radius: 1em;
}
/* SHADOW/GLOW TRANSITIONS */
/* Glow */
 .glow {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: box-shadow;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .glow:hover {
	 box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}
/* Box Shadow Outset */
 .box-shadow-outset {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: box-shadow;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .box-shadow-outset:hover {
	 box-shadow: 2px 2px 2px rgba(0, 0, 0, .6);
}
/* Box Shadow Inset */
 .box-shadow-inset {
	 display: inline-block;
	 transition-duration: 0.3s;
	 transition-property: box-shadow;
	 box-shadow: inset 0 0 0 rgba(0, 0, 0, .6), 0 0 1px rgba(0, 0, 0, 0);
	/* Hack to improve aliasing on mobile/tablet devices */
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
}
 .box-shadow-inset:hover {
	 box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .6), 0 0 1px rgba(0, 0, 0, 0);
	/* Hack to improve aliasing on mobile/tablet devices */
}
/* Float Shadow */
 .float-shadow {
	 display: inline-block;
	 position: relative;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .float-shadow:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 top: 100%;
	 left: 5%;
	 height: 10px;
	 width: 90%;
	 opacity: 0;
	 background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 80%);
	/* W3C */
	 transition-duration: 0.3s;
	 transition-property: transform opacity;
}
 .float-shadow:hover {
	 transform: translateY(-5px);
	/* move the element up by 5px */
}
 .float-shadow:hover:before {
	 opacity: 1;
	 transform: translateY(5px);
	/* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
/* Hover Shadow */
 @keyframes hover {
	 50% {
		 transform: translateY(-3px);
	}
	 100% {
		 transform: translateY(-6px);
	}
}
 @keyframes hover-shadow {
	 0% {
		 transform: translateY(6px);
		 opacity: 0.4;
	}
	 50% {
		 transform: translateY(3px);
		 opacity: 1;
	}
	 100% {
		 transform: translateY(6px);
		 opacity: 0.4;
	}
}
 .hover-shadow {
	 display: inline-block;
	 position: relative;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .hover-shadow:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 top: 100%;
	 left: 5%;
	 height: 10px;
	 width: 90%;
	 opacity: 0;
	 background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 80%);
	/* W3C */
	 transition-duration: 0.3s;
	 transition-property: transform opacity;
}
 .hover-shadow:hover {
	 transform: translateY(-6px);
	 animation-name: hover;
	 animation-duration: 1.5s;
	 animation-delay: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: alternate;
}
 .hover-shadow:hover:before {
	 opacity: 0.4;
	 transform: translateY(6px);
	 animation-name: hover-shadow;
	 animation-duration: 1.5s;
	 animation-delay: 0.3s;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: alternate;
}
/* Shadow Radial */
 .shadow-radial {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .shadow-radial:before, .shadow-radial:after {
	 pointer-events: none;
	 position: absolute;
	 content: '';
	 left: 0;
	 width: 100%;
	 box-sizing: border-box;
	 background-repeat: no-repeat;
	 height: 5px;
	 opacity: 0;
	 transition-duration: 0.3s;
	 transition-property: opacity;
}
 .shadow-radial:before {
	 bottom: 100%;
	 background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 80%);
}
 .shadow-radial:after {
	 top: 100%;
	 background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 80%);
}
 .shadow-radial:hover:before, .shadow-radial:hover:after {
	 opacity: 1;
}
/* SPEECH BUBBLES */
/* Bubble Top */
 .bubble-top {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-top:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 border-style: solid;
	 transition-duration: 0.3s;
	 left: calc(50% - 10px);
	 border-width: 0 10px 10px 10px;
	 border-color: transparent transparent #ececec transparent;
	 transition-property: top;
}
 .bubble-top:hover:before {
	 top: -10px;
}
/* Bubble Right */
 .bubble-right {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-right:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 border-style: solid;
	 transition-duration: 0.3s;
	 transition-property: right;
	 top: calc(50% - 10px);
	 right: 0;
	 border-width: 10px 0 10px 10px;
	 border-color: transparent transparent transparent #ececec;
}
 .bubble-right:hover:before {
	 right: -10px;
}
/* Bubble Bottom */
 .bubble-bottom {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-bottom:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 border-style: solid;
	 transition-duration: 0.3s;
	 transition-property: bottom;
	 left: calc(50% - 10px);
	 bottom: 0;
	 border-width: 10px 10px 0 10px;
	 border-color: #ececec transparent transparent transparent;
}
 .bubble-bottom:hover:before {
	 bottom: -10px;
}
/* Bubble Left */
 .bubble-left {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-left:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 border-style: solid;
	 transition-duration: 0.3s;
	 transition-property: left;
	 top: calc(50% - 10px);
	 left: 0;
	 border-width: 10px 10px 10px 0;
	 border-color: transparent #ececec transparent transparent;
}
 .bubble-left:hover:before {
	 left: -10px;
}
/* Bubble Float Top */
 .bubble-float-top {
	 display: inline-block;
	 position: relative;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-float-top:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 left: calc(50% - 10px);
	 top: 0;
	 border-style: solid;
	 border-width: 0 10px 10px 10px;
	 border-color: transparent transparent #ececec transparent;
	 transition-duration: 0.3s;
	 transition-property: top;
}
 .bubble-float-top:hover {
	 transform: translateY(5px) translateZ(0);
}
 .bubble-float-top:hover:before {
	 top: -10px;
}
/* Bubble Float Right */
 .bubble-float-right {
	 display: inline-block;
	 position: relative;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-float-right:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 top: calc(50% - 10px);
	 right: 0;
	 content: '';
	 border-style: solid;
	 border-width: 10px 0 10px 10px;
	 border-color: transparent transparent transparent #ececec;
	 transition-duration: 0.3s;
	 transition-property: right;
}
 .bubble-float-right:hover {
	 transform: translateX(-5px);
}
 .bubble-float-right:hover:before {
	 right: -10px;
}
/* Bubble Float Bottom */
 .bubble-float-bottom {
	 display: inline-block;
	 position: relative;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-float-bottom:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 left: calc(50% - 10px);
	 bottom: 0;
	 border-style: solid;
	 border-width: 10px 10px 0 10px;
	 border-color: #ececec transparent transparent transparent;
	 transition-duration: 0.3s;
	 transition-property: bottom;
}
 .bubble-float-bottom:hover {
	 transform: translateY(-5px) translateZ(0);
}
 .bubble-float-bottom:hover:before {
	 bottom: -10px;
}
/* Bubble Float Left */
 .bubble-float-left {
	 display: inline-block;
	 position: relative;
	 transition-duration: 0.3s;
	 transition-property: transform;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .bubble-float-left:before {
	 pointer-events: none;
	 position: absolute;
	 z-index: -1;
	 content: '';
	 top: calc(50% - 10px);
	 left: 0;
	 border-style: solid;
	 border-width: 10px 10px 10px 0;
	 border-color: transparent #ececec transparent transparent;
	 transition-duration: 0.3s;
	 transition-property: left;
}
 .bubble-float-left:hover {
	 transform: translateX(5px);
}
 .bubble-float-left:hover:before {
	 left: -10px;
}
/* CURLS */
/* Curl Top Left */
 .curl-top-left {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .curl-top-left:before {
	 pointer-events: none;
	 position: absolute;
	 content: '';
	 height: 0;
	 width: 0;
	 top: 0;
	 left: 0;
	 background: white;
	/* IE9 */
	 background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
	 filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
	/*For IE7-8-9*/
	 z-index: 1000;
	 box-shadow: 1px 1px 1px rgba(0, 0, 0, .4);
	 transition-duration: 0.3s;
	 transition-property: width height;
}
 .curl-top-left:hover:before {
	 width: 25px;
	 height: 25px;
}
/* Curl Top Right */
 .curl-top-right {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .curl-top-right:before {
	 pointer-events: none;
	 position: absolute;
	 content: '';
	 height: 0;
	 width: 0;
	 top: 0;
	 right: 0;
	 background: white;
	/* IE9 */
	 background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
	 box-shadow: -1px 1px 1px rgba(0, 0, 0, .4);
	 transition-duration: 0.3s;
	 transition-property: width height;
}
 .curl-top-right:hover:before {
	 width: 25px;
	 height: 25px;
}
/* Curl Bottom Right */
 .curl-bottom-right {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .curl-bottom-right:before {
	 pointer-events: none;
	 position: absolute;
	 content: '';
	 height: 0;
	 width: 0;
	 bottom: 0;
	 right: 0;
	 background: white;
	/* IE9 */
	 background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
	 box-shadow: -1px -1px 1px rgba(0, 0, 0, .4);
	 transition-duration: 0.3s;
	 transition-property: width height;
}
 .curl-bottom-right:hover:before {
	 width: 25px;
	 height: 25px;
}
/* Curl Bottom Left */
 .curl-bottom-left {
	 display: inline-block;
	 position: relative;
	 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	 transform: translateZ(0);
	 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
 .curl-bottom-left:before {
	 pointer-events: none;
	 position: absolute;
	 content: '';
	 height: 0;
	 width: 0;
	 bottom: 0;
	 left: 0;
	 background: white;
	/* IE9 */
	 background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
	 box-shadow: 1px -1px 1px rgba(0, 0, 0, .4);
	 transition-duration: 0.3s;
	 transition-property: width height;
}
 .curl-bottom-left:hover:before {
	 width: 25px;
	 height: 25px;
}
 /* .link {
	 display: block;
	 width: 100%;
	 text-align: center;
}
 .link a {
	 font-weight: bold;
} */
 #forkongithub a {
	 background: #000;
	 color: #fff;
	 text-decoration: none;
	 font-family: arial, sans-serif;
	 text-align: center;
	 font-weight: bold;
	 padding: 5px 40px;
	 font-size: 1rem;
	 line-height: 2rem;
	 position: relative;
	 transition: 0.5s;
}
 #forkongithub a:hover {
	 background: #060;
	 color: #fff;
}
 #forkongithub a::before, #forkongithub a::after {
	 content: "";
	 width: 100%;
	 display: block;
	 position: absolute;
	 top: 1px;
	 left: 0;
	 height: 1px;
	 background: #fff;
}
 #forkongithub a::after {
	 bottom: 1px;
	 top: auto;
}
 @media screen and (min-width: 800px) {
	 #forkongithub {
		 position: absolute;
		 display: block;
		 top: 0;
		 right: 0;
		 width: 200px;
		 overflow: hidden;
		 height: 200px;
	}
	 #forkongithub a {
		 width: 200px;
		 position: absolute;
		 top: 60px;
		 right: -60px;
		 transform: rotate(45deg);
		 -webkit-transform: rotate(45deg);
		 box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
	}
}

.tab button.active {
  color: #fff;
  background: #e94963;
  transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #e94963;
}



/* GOOGLE MODAL CSS */
.google-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.google-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.google-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.google-close:hover,
.google-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* VIDEO ALERT MODAL CSS */
.videoDone-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.videoDone-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.videoDone-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.videoDone-close:hover,
.videoDone-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* PDF ALERT MODAL CSS */
.PDF-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.PDF-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.PDF-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.PDF-close:hover,
.PDF-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.PDF-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.PDF-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.PDF-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.PDF-close:hover,
.PDF-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.edit-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.edit-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.edit-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.edit-close:hover,
.edit-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.edit-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.edit-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.edit-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.edit-close:hover,
.edit-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width:801px)  {
  .videoDone-modal-content {
    width: 60%;
  }
  .PDF-modal-content {
    width: 60%;
  }
  .google-modal-content {
    width: 60%;
  }
  .edit-modal-content {
    width: 75%;
  }
}

audio {
display:none;
}

#audiowrap,
#plwrap {
margin:0 auto;
}

#tracks {
font-size:0;
position:relative;
text-align:center;
}

#nowPlay {
display:block;
font-size:0;
}

#nowPlay span {
display:inline-block;
font-size:1.05rem;
vertical-align:top;
}

#nowPlay span#npAction {
padding:21px;
width:30%;
}

#nowPlay span#npTitle {
padding:21px;
text-align:right;
width:70%;
}

#plList li {
cursor:pointer;
display:block;
margin:0;
padding:21px 0;
}

#plList li:hover {
background-color:rgba(0, 0, 0, .1);
}

.plItem {
position:relative;
}

.plTitle {
left:50px;
overflow:hidden;
position:absolute;
right:65px;
text-overflow:ellipsis;
top:0;
white-space:nowrap;
}

.plNum {
padding-left:21px;
width:25px;
}

.plLength {
padding-left:21px;
position:absolute;
right:21px;
top:0;
}

.plSel,
.plSel:hover {
background-color:rgba(0, 0, 0, .1);
color:#fff;
cursor:default !important;
}

#tracks a {
border-radius:3px;
color:#fff;
cursor:pointer;
display:inline-block;
font-size:2.3rem;
height:40px;
line-height:.2;
margin:0 5px 30px;
padding:12px;
text-decoration:none;
transition:background .3s ease;
}

#tracks a:hover,
#tracks a:active {
background-color:rgba(0, 0, 0, .1);
color:#fff;
}

#tracks a::-moz-focus-inner {
border:0;
padding:0;
}


/* Plyr Overrides
================================================== */

.plyr--audio .plyr__controls {
background-color:transparent;
border:none;
color:#fff;
font-family:"Source Sans Pro", arial, sans-serif;
padding:20px 20px 20px 13px;
width:100%;
}

a.plyr__controls__item.plyr__control:hover,
.plyr--audio .plyr__controls button:hover,
.plyr--audio .plyr__controls button.tab-focus:focus,
.plyr__play-large {
background-color:rgba(0, 0, 0, .1);
}

.plyr__progress--played,
.plyr__volume--display {
color:rgba(0, 0, 0, .1);
}

.plyr--audio .plyr__progress--buffer,
.plyr--audio .plyr__volume--display {
background-color:rgba(0, 0, 0, .1);
}

.plyr--audio .plyr__progress--buffer {
color:rgba(0, 0, 0, .1);
}

.plyr__controls .plyr__controls__item.plyr__time {
font-size:14px;
margin-left:7px;
}

.job-reference {
  margin-left: 0;
  font-size:13px;
}

.hidden {
  display:none;
}


/* Media Queries
================================================== */

@media only screen and (max-width:600px) {
    #nowPlay span#npAction { display:none; }
    #nowPlay span#npTitle { display:block; text-align:center; width:100%; }
}
.alert-warning {
  color: #000;
  border-width: 1px;
  border-style: solid;
  padding: 0.6em;
  margin: 5px 0 15px;
  border-radius: 3px;
  background-color: #ffffe0;
  border-color: #e6db55;
  color: #8a6d3b;
}

/* The alert message box */
.top-alert {
    padding: 1px;
    background-color: #6dedcb;
    color: #6b6b6b;
    margin-bottom: 0px;
    position: sticky;
    top: 0;
    z-index: 9999999999999999999999999999999999999;
}

/* The close button */
.top-closebtn {
    margin-left: 15px;
    color: #6b6b6b;
    font-weight: bold;
    float: right;
    font-size: 17px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 3px;
}
/* When moving the mouse over the close button */
.top-closebtn:hover {
    color: black;
}

.pdfHover {
  color:#e94963;
}

.pdfHover:hover {
  color:#fee085;
}

/* NOTIFICATION BELL */
.circle-notification {
  -moz-border-radius: 50px/50px;
  -webkit-border-radius: 50px 50px;
  border-radius: 50px/50px;
  border: solid 2px red;
  background-color:red;
  color:white;
  width: 50px;
  height: 50px;
  font-size:10px;
  font-weight:600;
}

.notification-wrap-outer {
	position: relative;
	height: 40px;
	display: inline-block;
}
.notification-wrap {
	position: absolute;
	top: 100%;
	right: -8.5em;
	width: 70vw;
	max-width: 440px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 12%);
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 12%);
        z-index: 10000;
}
.notification-wrap:before {
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	position: absolute;
	top: -8px;
	right: 100px;
}
.notification-wrap-outer.active .notification-wrap {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.hideDiv {
  display:none;
}

.notification-p {
  color: #000 !important;
}

.bulb-wrap {
    display: block;
    padding: 5px 0px 4px 0px;
    text-align: center;
    color: #959698;
    line-height: 1;
    margin-top: -32px;
    width: 45px;
    margin-bottom: 15px;
    height: 28px;
    margin-left: auto;
    border-bottom-right-radius: 6px;
    z-index: 10;
    position: relative;
    font-size: 8px;
    overflow: hidden;
    transform: translateY(5.5em);
}
.fontweight {
  font-weight:600;
}
.fontweight:hover {
  font-weight:600 !important;

  cursor: pointer;
}

.owl-dot {
  color:#435de2;
  background-color: #435de2;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin:2px;
}

.pulsate-fwd {
	-webkit-animation: pulsate-fwd 1s ease-in-out infinite both;
	        animation: pulsate-fwd 1s ease-in-out infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-11-25 11:34:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


/* END NOTIFICATION BELL */


.fade-in-bottom{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) both}

@-webkit-keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

.fade-out-bottom{-webkit-animation:fade-out-bottom 1s cubic-bezier(.25,.46,.45,.94) both;animation:fade-out-bottom 1s cubic-bezier(.25,.46,.45,.94) both}

/* ----------------------------------------------
 * Generated by Animista on 2021-12-1 16:55:24
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes fade-out-bottom{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}}@keyframes fade-out-bottom{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}}

@media only screen and (max-width:600px) {
  .pdf-popup {
    left: -80px;
  }
  .pdf-popup:after {
      left: 100px;
  }
}

.in{-webkit-animation:in 1s cubic-bezier(.25,.46,.45,.94) both;animation:in 1s cubic-bezier(.25,.46,.45,.94) both}

@-webkit-keyframes in{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes in{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

.out{-webkit-animation:out 1s cubic-bezier(.55,.085,.68,.53) both;animation:out 1s cubic-bezier(.55,.085,.68,.53) both}

@-webkit-keyframes out{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}}@keyframes out{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}}

.span-tooltip {
	transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
	background-color: #435de2;
	color: #fff;
	padding-top: 4px;
	padding-bottom: 4px;
	width: 230px;
	border-radius: 0px 0px 6px 6px;
	position: absolute;
	top: 100%;
	left: 50%;
	text-align: center;
	font-size: 11px;
	margin-left: -115px;
	margin-top: -1px;
	font-weight: 600;
}
.span-tooltip:hover {
	background: #e94963;
}
.tooltip-wrap {
	position: relative;
}

/* WIZARD JOB ADD MODAL CSS */
.wizard-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.wizard-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  border-radius: 10px;
}

/* The Close Button */
.wizard-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.wizard-close:hover,
.wizard-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* STEP TWO MODAL CSS */
.stepTwo-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.stepTwo-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.stepTwo-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.stepTwo-close:hover,
.stepTwo-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* STEP THREE MODAL CSS */
.stepThree-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.stepThree-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.stepThree-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.stepThree-close:hover,
.stepThree-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* STEP FOUR MODAL CSS */
.stepFour-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.stepFour-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.stepFour-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.stepFour-close:hover,
.stepFour-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.loader-wrap {
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
}
 .loader-text {
	 color: #435de2;
	 display: inline-block;
	 margin-left: 5px;
}
 .loader-bounceball {
	 position: relative;
	 display: inline-block;
	 height: 37px;
	 width: 15px;
}
 .loader-bounceball:before {
	 position: absolute;
	 content: '';
	 display: block;
	 top: 0;
	 width: 15px;
	 height: 15px;
	 border-radius: 50%;
	 background-color: #435de2;
	 transform-origin: 50%;
	 animation: bounce 500ms alternate infinite ease;
}
 @keyframes bounce {
	 0% {
		 top: 30px;
		 height: 5px;
		 border-radius: 60px 60px 20px 20px;
		 transform: scaleX(2);
	}
	 35% {
		 height: 15px;
		 border-radius: 50%;
		 transform: scaleX(1);
	}
	 100% {
		 top: 0;
	}
}

.text-center {
  text-align:center;
}
@media only screen and (min-width: 768px) {
  .form-wrap .form-col {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 70%;
    padding-left: 20px;
  }
}

#Number {
  animation-duration: 1s;
  animation-name: NumberOne;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  animation-fill-mode: both;
}
#PhoneGroup {
  animation-duration: 2s;
  animation-name: Phone;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  animation-fill-mode: both;
}
#Phone {
  animation-duration: 2s;
  animation-name: Phone;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  animation-fill-mode: both;
}
#Cross1 {
  animation-delay: 2.5s;
  animation-duration: 2s;
  animation-name: CrossOne;
  animation-iteration-count: infinite;
  transform-origin: center;
  transform-box: fill-box;
  transition-timing-function: ease-in-out;
  animation-direction: alternate;
}
#Cross2 {
  animation-delay: 2.5s;
  animation-duration: 1.5s;
  animation-name: CrossTwo;
  animation-iteration-count: infinite;
  transform-origin: center;
  transform-box: fill-box;
  transition-timing-function: ease-in-out;
  animation-direction: alternate;
}
#Cross3 {
  animation-delay: 2.5s;
  animation-duration: 2.5s;
  animation-name: CrossThree;
  animation-iteration-count: infinite;
  transform-origin: center;
  transform-box: fill-box;
  transition-timing-function: ease-in-out;
  animation-direction: alternate;
}
#Shape1 {
  animation-delay: 2.5s;
  animation-duration: 2s;
  animation-name: Shapes;
  animation-iteration-count: infinite;
  transform-origin: center;
  transform-box: fill-box;
  transition-timing-function: ease-in-out;
  animation-direction: alternate;
}
#Shape2 {
  animation-delay: 2.5s;
  animation-duration: 2.5s;
  animation-name: Shapes;
  animation-iteration-count: infinite;
  transform-origin: center;
  transform-box: fill-box;
  transition-timing-function: ease-in-out;
  animation-direction: alternate;
}
#line1 {
  animation-delay: 2.5s;
  animation-duration: 2s;
  animation-name: Text1;
  animation-fill-mode: both;
}
#line2 {
  animation-delay: 3s;
  animation-duration: 2s;
  animation-name: Text2;
  animation-fill-mode: both;
}
#line3 {
  animation-delay: 3.5s;
  animation-duration: 2s;
  animation-name: Text3;
  animation-fill-mode: both;
}
#Play_Button {
  animation-delay: 2s;
  animation-duration: 1s;
  animation-name: Playbutton;
  animation-fill-mode: both;
}
#Assets {
  animation-delay: 2.3s;
  animation-duration: 1s;
  animation-name: AssetOpacity;
  animation-fill-mode: both;
}

/*// KEYFRAMES //*/
@keyframes Playbutton {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes AssetOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes NumberOne {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes Assets {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
@keyframes Phone {
  from{
    transform: scale(0.6);
    opacity: 0;
    }
  to{
    transform: scale(1);
    opacity: 1;
    }
  }
  @keyframes Phone1 {
    from{
      opacity: 1;
      }
    to{
      opacity: 0;
      }
    }
@keyframes CrossOne {
  from{
    transform: rotate(0deg) scale(1);
  }
  to{
    transform: rotate(90deg) scale(1.3);
  }
}
@keyframes CrossTwo {
  from{
    transform: rotate(0deg) scale(1);
  }
  to{
    transform: rotate(-90deg) scale(1.3);
  }
}
@keyframes CrossThree {
  from{
    transform: rotate(0deg) scale(1);
  }
  to{
    transform: rotate(90deg) scale(1.3);
  }
}
@keyframes Shapes {
  from{
    transform: scale(1);
  }
  to{
    transform: scale(1.6);
  }
}
@keyframes Text1 {
  from{
   transform: translateX(1000px);
  }
}
@keyframes Text2 {
  from{
   transform: translateX(-1000px);
  }
}
@keyframes Text3 {
  from{
   transform: translateX(1000px);
  }
}

#Land {
  animation-duration: 30s;
  animation-name: Rotation;
  transform-origin: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
#Plane_1 {
  animation-duration: 3s;
  animation-name: PlaneOne;
  transform-origin: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  opacity: 1;
}
#Plane_2 {
  animation-delay: 0s;
  animation-duration: 3s;
  animation-name: PlaneTwo;
  transform-origin: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: reverse;
  opacity: 1;
}
#Land {
  opacity: 1;
}
#pins {
  animation-duration: 30s;
  animation-name: Rotation;
  transform-origin: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: reverse;
}
#rotationPin{
  animation-duration: 30s;
  animation-name: Rotation;
  transform-origin: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: reverse;
}
#Pins1{
  animation-duration: 2.5s;
  animation-name: scales;
  transform-origin: center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}
#Pins2{
  animation-delay: 3.5s;
  animation-duration: 2s;
  animation-name: scales1;
  transform-origin: center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}
#Pins3{
  animation-delay: 1.5s;
  animation-duration: 2s;
  animation-name: scales2;
  transform-origin: center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate;
}


/*// KEYFRAMES //*/
@keyframes Opac {
  from {opacity: 0;
  }
  to{
    opacity: 1;
  }
}
@keyframes Rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scales {
  from {
    transform: translate(-500px,-300px) scale(0);
  }
  to {
    transform: translate(-500px,-300px) scale(1.5);
  }
}
@keyframes scales1 {
  from {
    transform: translate(100px,-550px) scale(0);
  }
  to {
    transform: translate(100px,-550px) scale(1.5);
  }
}
@keyframes scales2 {
  from {
    transform: translate(400px,200px) scale(0);
  }
  to {
    transform: translate(400px,200px) scale(1.5);
  }
}
@keyframes PlaneOne {
  0%{ transform: translateX(-500px) translateY(500px) rotateZ(0deg) scale(0.2);}
  10%{ transform: translateX(-400px) translateY(400px) rotateZ(0deg) scale(0.5);}
  20%{ transform: translateX(-300px) translateY(300px) rotateZ(0deg) scale(0.8);}
  30%{ transform: translateX(-200px) translateY(200px) rotateZ(-5deg) scale(1);}
  40%{ transform: translateX(-100px) translateY(100px) rotateZ(-10deg) scale(1.1);}
  50%{ transform: translateX(0px) translateY(0px) rotateZ(-15deg) scale(1.2);}
  60%{ transform: translateX(100px) translateY(-100px) rotateZ(-20deg) scale(1.1);}
  70%{ transform: translateX(200px) translateY(-200px) rotateZ(-25deg) scale(1);}
  80%{ transform: translateX(300px) translateY(-300px) rotateZ(-30deg) scale(0.8);}
  90%{ transform: translateX(400px) translateY(-400px) rotateZ(-35deg) scale(0.5);}
  100%{ transform: translateX(500px) translateY(-500px) rotateZ(-40deg) scale(0.2);}
  }
  @keyframes PlaneTwo {
    0%{ transform: translateX(-500px) translateY(500px) rotateZ(0deg) scale(0.2);}
    10%{ transform: translateX(-400px) translateY(400px) rotateZ(0deg) scale(0.5);}
    20%{ transform: translateX(-300px) translateY(300px) rotateZ(0deg) scale(0.8);}
    30%{ transform: translateX(-200px) translateY(200px) rotateZ(-5deg) scale(1);}
    40%{ transform: translateX(-100px) translateY(100px) rotateZ(-10deg) scale(1.1);}
    50%{ transform: translateX(0px) translateY(0px) rotateZ(-15deg) scale(1.2);}
    60%{ transform: translateX(100px) translateY(-100px) rotateZ(-20deg) scale(1.1);}
    70%{ transform: translateX(200px) translateY(-200px) rotateZ(-25deg) scale(1);}
    80%{ transform: translateX(300px) translateY(-300px) rotateZ(-30deg) scale(0.8);}
    90%{ transform: translateX(400px) translateY(-400px) rotateZ(-35deg) scale(0.5);}
    100%{ transform: translateX(500px) translateY(-500px) rotateZ(-40deg) scale(0.2);}
  }


  #Slide_1{
    animation-duration: 6s;
    animation-name: slide;
    transform-origin: center;
    transition-timing-function: linear;
    animation-fill-mode: both;
    animation-direction: forwards;
    animation-iteration-count: infinite;
  }
  #Slide_2{
    animation-delay: 3s;
    animation-duration: 6s;
    animation-name: slide2;
    transform-origin: center;
    transition-timing-function: linear;
    animation-fill-mode: both;
    animation-direction: forwards;
    animation-iteration-count: infinite;
  }
  /*// KEYFRAMES //*/
  @keyframes slide {
    0%{ transform: translateY(-600px);opacity: 0;}
    10%{opacity: 0.1;}
    20%{opacity: 0.5;}
    30%{opacity: 1;}
    40%{opacity: 1;}
    50%{ transform: translateY(0px);opacity: 1;}
    60%{opacity: 1;}
    70%{opacity: 1;}
    80%{opacity: 0.5;}
    90%{opacity: 0.1;}
    100%{ transform: translateY(650px); opacity: 0;}
  }
  @keyframes slide2 {
    0%{ transform: translateY(-600px);opacity: 0;}
    10%{opacity: 0.1;}
    20%{opacity: 0.5;}
    30%{opacity: 1;}
    40%{opacity: 1;}
    50%{ transform: translateY(0px);opacity: 1;}
    60%{opacity: 1;}
    70%{opacity: 1;}
    80%{opacity: 0.5;}
    90%{opacity: 0.1;}
    100%{ transform: translateY(650px); opacity: 0;}
  }
  .step-icon {
      width: 50px !important;
  }

  .phone-screen {
      position: relative;
      overflow: hidden;
      pointer-events: none;
  }

  .phone-screen img {
      width: 100%;
      height: auto;
      position: relative;
      z-index: 10;
  }

  .phone-screen .iframe-phone-wrap {
    display: block;
    position: absolute;
    top: 8%;
    left: 8%;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    z-index: 5;
  }

  .home-video {
    width: 91%;
  }

  @media only screen and (max-width: 1100px) {
    .home-video {
      width: 91%;
    }
  }

  .laptop-screen {
      position: relative;
      overflow: hidden;
      pointer-events: none;
  }

  .laptop-screen img {
      width: 100%;
      height: auto;
      position: relative;
      z-index: 10;
  }

  .laptop-screen .iframe-laptop-wrap {
    display: block;
    position: absolute;
    top: 2%;
    left: 11%;
    transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    z-index: 5;
  }

  .laptop-video {
    width: 88%;
  }


  /* LOADER CSS */
  #page {
	 align-items: center;
	 background: linear-gradient(to top right, #5a6ccb 10%, #435de2 65%, #5a6ccb 125%);
	 bottom: 0;
	 display: flex;
	 justify-content: center;
	 left: 0;
	 position: absolute;
	 right: 0;
	 top: 0;
	 transition: opacity 1s;
   z-index:999;
}
 #phrase_box {
	 display: flex;
	 flex-flow: column;
	 height: 150px;
	 overflow: hidden;
	 width: 260px;
}
 #phrases {
	 animation: slide-phrases-upward 20s;
}
 #footer {
	 bottom: 30px;
	 color: white;
	 display: flex;
	 justify-content: center;
	 left: 0;
	 position: fixed;
	 right: 0;
}
 @keyframes slide-phrases-upward {
	 0% {
		 transform: translateY(0px);
	}
	 5% {
		 transform: translateY(-50px);
	}
	 10% {
		 transform: translateY(-100px);
	}
	 15% {
		 transform: translateY(-150px);
	}
	 20% {
		 transform: translateY(-200px);
	}
	 25% {
		 transform: translateY(-250px);
	}
	 30% {
		 transform: translateY(-300px);
	}
	 35% {
		 transform: translateY(-350px);
	}
	 40% {
		 transform: translateY(-400px);
	}
	 45% {
		 transform: translateY(-450px);
	}
	 50% {
		 transform: translateY(-500px);
	}
	 55% {
		 transform: translateY(-550px);
	}
	 60% {
		 transform: translateY(-600px);
	}
	 65% {
		 transform: translateY(-650px);
	}
	 70% {
		 transform: translateY(-700px);
	}
	 75% {
		 transform: translateY(-750px);
	}
	 80% {
		 transform: translateY(-800px);
	}
	 85% {
		 transform: translateY(-850px);
	}
	 90% {
		 transform: translateY(-900px);
	}
	 95% {
		 transform: translateY(-950px);
	}
	 100% {
		 transform: translateY(-1000px);
	}
}
 #loadingCheckCircleSVG-0 {
	 animation: fill-to-white 5000ms;
	 animation-delay: -1.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-1 {
	 animation: fill-to-white 5000ms;
	 animation-delay: -0.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-2 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 0.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-3 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 1.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-4 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 2.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-5 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 3.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-6 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 4.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-7 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 5.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-8 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 6.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-9 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 7.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-10 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 8.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-11 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 9.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-12 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 10.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-13 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 11.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-14 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 12.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-15 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 13.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-16 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 14.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-17 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 15.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-18 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 16.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-19 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 17.5s;
	 fill: white;
	 opacity: 0;
}
 #loadingCheckCircleSVG-20 {
	 animation: fill-to-white 5000ms;
	 animation-delay: 18.5s;
	 fill: white;
	 opacity: 0;
}
 @keyframes fill-to-white {
	 0% {
		 opacity: 0;
	}
	 10% {
		 opacity: 1;
	}
	 100% {
		 opacity: 1;
	}
}
 #loadingCheckSVG-0 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: -1.5s;
}
 #loadingCheckSVG-1 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: -0.5s;
}
 #loadingCheckSVG-2 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 0.5s;
}
 #loadingCheckSVG-3 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 1.5s;
}
 #loadingCheckSVG-4 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 2.5s;
}
 #loadingCheckSVG-5 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 3.5s;
}
 #loadingCheckSVG-6 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 4.5s;
}
 #loadingCheckSVG-7 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 5.5s;
}
 #loadingCheckSVG-8 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 6.5s;
}
 #loadingCheckSVG-9 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 7.5s;
}
 #loadingCheckSVG-10 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 8.5s;
}
 #loadingCheckSVG-11 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 9.5s;
}
 #loadingCheckSVG-12 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 10.5s;
}
 #loadingCheckSVG-13 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 11.5s;
}
 #loadingCheckSVG-14 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 12.5s;
}
 #loadingCheckSVG-15 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 13.5s;
}
 #loadingCheckSVG-16 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 14.5s;
}
 #loadingCheckSVG-17 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 15.5s;
}
 #loadingCheckSVG-18 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 16.5s;
}
 #loadingCheckSVG-19 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 17.5s;
}
 #loadingCheckSVG-20 {
	 animation: fill-to-coral 5000ms;
	 animation-delay: 18.5s;
}
 @keyframes fill-to-coral {
	 0% {
		 fill: white;
	}
	 10% {
		 fill: #ff6d92;
	}
	 100% {
		 fill: #ff6d92;
	}
}

.image-loader {
	 width: 100px;
	 height: 100px;
}
 .circular {
	 animation: rotate 2s linear infinite;
	 height: 100px;
	 position: relative;
	 width: 100px;
}
 .path {
	 stroke-dasharray: 1, 200;
	 stroke-dashoffset: 0;
	 stroke: #b6463a;
	 animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	 stroke-linecap: round;
}
 @keyframes rotate {
	 100% {
		 transform: rotate(360deg);
	}
}
 @keyframes dash {
	 0% {
		 stroke-dasharray: 1, 200;
		 stroke-dashoffset: 0;
	}
	 50% {
		 stroke-dasharray: 89, 200;
		 stroke-dashoffset: -35;
	}
	 100% {
		 stroke-dasharray: 89, 200;
		 stroke-dashoffset: -124;
	}
}
 @keyframes color {
	 100%, 0% {
		 stroke: #6dedcb;
	}
	 40% {
		 stroke: #e94963;
	}
	 66% {
		 stroke: #435de2;
	}
	 80%, 90% {
		 stroke: #fee780;
	}
}


/* EDIT MODAL TABLE */
.panel {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  position: relative;
  width: 100%;
  z-index: 10;
}

.edit-table {
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .edit-table {
    flex-direction: row;
  }
}

.edit-table * {
  text-align: center;
}

.edit-plan {
  border-bottom: 1px solid #e1f1ff;
  padding: 25px;
}

.edit-plan:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .edit-plan {
    border-bottom: none;
    border-right: 1px solid #e1f1ff;
    flex-basis: 100%;
    padding: 25px 50px;
  }

  .edit-plan:last-child {
    border-right: none;
  }
}

.edit-img {
  margin-bottom: 25px;
  max-width: 100%;
}

.edit-header {
  color: #888;
  font-weight: 600;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: #435de2;
  color: #fff;
  text-align: center;
  padding: 6px 8px;
  border-radius: 6px;
  line-height: 1.4;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -50px;
}
.tooltip .tooltiptext:after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -3px;
	display: block;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #435de2;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.custom-accordion {
  background-color: #fff;
  color: #435de2;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 16%) !important;
  box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 16%) !important;
}

/* Style the accordion panel. Note: hidden by default */
.custom-panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 16%) !important;
  box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 16%) !important;
}

/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  margin-top:0px;
  padding-left:50px;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 12px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "|";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.shop-shadow {
  box-shadow: 2px 3px 10px 5px #ebebeb;
}
.middle {
  transition: .5s ease;
  opacity: 0;
  position:absolute;
  top:40%;
  left:50%;
  transform:translate(-50%, -50%);

}

.relative {
  position:relative;
}

.shop-text {
  background-color: #435de2;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

#prodBox1:hover .middle {
    opacity: 1;
}

#prodBox2:hover .middle {
    opacity: 1;
}

#prodBox3:hover .middle {
    opacity: 1;
}

#prodBox4:hover .middle {
    opacity: 1;
}

#prodBox5:hover .middle {
    opacity: 1;
}

#prodBox6:hover .middle {
    opacity: 1;
}

/* CSS MODAL KI */
.shop-modal, .video-modal, .social-modal, .candidate-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.shop-modal-content, .video-modal-content, .social-modal-content, .candidate-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.shop-close, .video-close, .social-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.shop-close:hover,
.social-close:hover,
.shop-close:focus,
.video-close:hover,
.video-close:focus,
.social-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.shop-modal,
.video-modal, .social-modal, .candidate-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 0px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.shop-modal-content,
.video-modal-content, .social-modal-content, .candidate-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
}

/* The Close Button */
.shop-close,
.video-close, .social-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.shop-close:hover,
.shop-close:focus,
.video-close:hover,
.video-close:focus,
.social-close:hover,
.social-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* END CSS MODAL KI */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.introjs-tooltip {
  background-color: #435de2;
}

.introjs-tooltiptext {
  color:#ffffff;
}

.introjs-tooltipbuttons {
  background-color:#ffffff;
}

.introjs-skipbutton {
  color: #ffffff;
}

.intro-button {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #fff;
	background: #e94963;
	font-size: 12px;
	line-height: 20px;
	font-weight: 600;
	padding: 10px 25px 8px 25px;
	border-radius: 20px;
	border: 0;
	border: 1px solid #e94963;
	cursor: pointer;
	text-align: center;
	transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Spartan', sans-serif;
}
.intro-button:hover {
	background: #ffffff;
	color: #435de2;
	border-color: #ffffff;
}

.introjs-progressbar {
  background-color: #e94963;
}

.introjs-progress {
  background-color: #ffffff;
}

.introjs-arrow.top {
    border-bottom-color: #435de2;
}

.introjs-helperLayer {
  box-shadow: rgb(67 93 226 / 80%) 0px 0px 1px 2px, rgb(111 111 111 / 10%) 0px 0px 0px 5000px !important;
}

.introjs-prevbutton {
	display: inline-block;
	position: relative;
	text-decoration: none;
	font-size: 12px;
  background: none;
	color: #435de2;
	line-height: 20px;
	font-weight: 600;
	padding: 10px 25px 8px 25px;
	border-radius: 20px;
	border: 0;
	border: 1px solid #435de2;
	cursor: pointer;
	text-align: center;
	transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Spartan', sans-serif;
}
.introjs-prevbutton:hover {
  background: #435de2;
	border-color: #435de2;
	color: #fff;
}

.introjs-nextbutton {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #fff;
	background: #e94963;
	font-size: 12px;
	line-height: 20px;
	font-weight: 600;
	padding: 10px 25px 8px 25px;
	border-radius: 20px;
	border: 0;
	border: 1px solid #e94963;
	cursor: pointer;
	text-align: center;
	transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Spartan', sans-serif;
}
.introjs-nextbutton:hover {
	background: #435de2;
	color: #fff;
	border-color: #435de2;
}

.swal-button:not([disabled]):hover {
  background-color: #435de2 !important;
}
.swal-button:focus {
  outline: none;
  box-shadow: 0 0 0 0 #fff, 0 0 0 0 !important;
}

.swal-modal {
  border-radius: 12px;
  max-width: 700px;
  text-align:center;
}

.swal-title {
  font-weight: 600 !important;
  color: #435de2;
  font-size: 23px;
}

.swal-footer {
  text-align:center;
}

.swal-text {
  font-size: 12px;
  text-align:center;
}

.swal-overlay {
  background-color: rgba(30, 40, 88, 0.85);
}

.ten-margin {
  margin-bottom: 10px;
}

.weblinkDiv {
  background-color: #435de2;
  display:none;
  color: #ffffff;
  width: 300px;
  padding: 15px 15px 15px 15px;
  border-radius: 0px 15px 15px 15px;
}

.carousel-media-btn {
  float:right;border-color: #e4e6eb;background: #e4e6eb;color:#444444;border-radius: 7px;padding-left: 30px;padding-right: 30px;
}

.owl-carousel .item:after {
  background: #fff0 !important;
}

.loadOne {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.0s;
    animation: dot 1.3s infinite;
    animation-delay: 0.0s;
}

.loadTwo {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.2s;
    animation: dot 1.3s infinite;
    animation-delay: 0.2s;
}

.loadThree {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.3s;
    animation: dot 1.3s infinite;
    animation-delay: 0.3s;
}

@-webkit-keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.carouselHeader {
    padding-left: 110px;
}
.carouselLike {
    padding-left: 115px;
}

.carouselInteract {
    padding-left: 70px;
}

.carouselDesc {
    padding-left:40px;
    padding-right:40px;
}

.mobile-margin {
        margin-top:0px;
    }

#more {
  display: none;
}

.mobile-profile-edit {
  position:fixed;right:19%;
}

.card-body {
  text-align: center;
  border: 1px solid #8b8b8b75;
  border-radius: 15px;
  box-shadow: 5px 5px #40404073;
}
.card-body-img {
  max-width:200px;
}

@media only screen and (max-width: 1300px) and (min-width: 1000px)  {
  .mobile-profile-edit {
    position:fixed;right:10%;
  }
}


@media only screen and (min-width:1720px) {
  .mobile-profile-edit {
    position:fixed;right:23%;
  }

}

@media only screen and (max-width:600px) {
    .carouselHeader {
        padding-left: 15px;
    }

    .carouselLike {
        padding-left: 10px;
    }
    .carouselInteract {
        padding-left: 10px;
    }
    .carouselDesc {
        padding-left:15px;
        padding-right:15px;
    }
    .mobile-margin {
        margin-top:-5px;
    }
    .mobile-margin-top {
      margin-top:40px;
    }
    .mobile-profile-edit {
      position:fixed;right:17%;
    }
}


/* kyle test */

a.btn {
  background: #435de2;
  border-radius: 4px;
  box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25);
  color: #ffffff;
  display: inline-block;
  padding: 6px 30px 8px;
  position: relative;
  text-decoration: none;
  transition: all 0.1s 0s ease-out;
}
.no-touch a.btn:hover {
  background: #435de2;
  box-shadow: 0px 8px 2px 0 rgba(0,0,0,0.075);
  transform: translateY(-2px);
  transition: all 0.25s 0s ease-out;
}
.no-touch a.btn:active, a.btn:active {
  background: #435de2;
  box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25);
  transform: translate3d(0,1px,0);
  transition: all 0.025s 0s ease-out;
}
div.cards {
  margin: 80px auto;
  max-width: 960px;
  text-align: center;
}
div.card {
  background: #ffffff;
  display: inline-block;
  margin: 8px;
  max-width: 300px;
  perspective: 1000;
  position: relative;
  text-align: left;
  transition: all 0.3s 0s ease-in;
  width: 300px;
  z-index: 1;
}
div.card img {
  max-width: 300px;
}
div.card .card__image-holder {
  background: rgba(0,0,0,0.1);
  height: 0;
  padding-bottom: 75%;
}
div.card div.card-title {
  background: #ffffff;
  padding: 6px 15px 10px;
  position: relative;
  z-index: 0;
}
div.card div.card-title a.toggle-info {
  border-radius: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 10px;
  width: 32px;
}
div.card div.card-title a.toggle-info span {
  background: #ffffff;
  display: block;
  height: 2px;
  position: absolute;
  top: 16px;
  transition: all 0.15s 0s ease-out;
  width: 12px;
}
div.card div.card-title a.toggle-info span.left {
  right: 14px;
  transform: rotate(45deg);
}
div.card div.card-title a.toggle-info span.right {
  left: 14px;
  transform: rotate(-45deg);
}
div.card div.card-title h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 0;
  padding: 0;
}
div.card div.card-title h2 small {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
div.card div.card-description {
  padding: 0 15px 10px;
  position: relative;
  font-size: 14px;
}
div.card div.card-actions {
  box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075);
  padding: 10px 15px 20px;
  text-align: center;
}
div.card div.card-flap {
  background: #d9d9d9;
  position: absolute;
  width: 100%;
  transform-origin: top;
  transform: rotateX(-90deg);
}
div.card div.flap1 {
  transition: all 0.3s 0.3s ease-out;
  z-index: 0;
}
div.card div.flap2 {
  transition: all 0.3s 0s ease-out;
  z-index: -2;
}
div.cards.showing div.card {
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.88);
}
.no-touch div.cards.showing div.card:hover {
  opacity: 0.94;
  transform: scale(0.92);
}
div.card.show {
  opacity: 1 !important;
  transform: scale(1) !important;
}
div.card.show div.card-title a.toggle-info {
  background: #e94963 !important;
}
div.card.show div.card-title a.toggle-info span {
  top: 15px;
}
div.card.show div.card-title a.toggle-info span.left {
  right: 10px;
}
div.card.show div.card-title a.toggle-info span.right {
  left: 10px;
}
div.card.show div.card-flap {
  background: #ffffff;
  transform: rotateX(0deg);
}
div.card.show div.flap1 {
  transition: all 0.3s 0s ease-out;
}
div.card.show div.flap2 {
  transition: all 0.3s 0.2s ease-out;
}

/* KYLE LOADER */ 
@import "compass/css3";

 .loader-wrapper {
	 width: 148px;
	 height: 100px;
	 position: absolute;
	 margin: -50px 0 0 -74px;
	 left: 50%;
}
 .loader {
	 width: 148px;
	 height: 100px;
	 top: 0;
	 left: 0;
	 position: absolute;
}
 .loader:after {
	 content: "";
	 top: auto;
	 position: absolute;
	 display: block;
	 animation: shadow 1.2s infinite linear;
	 -moz-animation: shadow 1.2s infinite linear;
	 bottom: 0em;
	 left: 0;
	 height: 0.25em;
	 width: 1em;
	 border-radius: 50%;
	 background-color: #034466;
	 opacity: 0.3;
}
 .roller, .roller:last-child {
	 width: 70px;
	 height: 70px;
	 position: absolute;
	 top: 0;
	 left: 0;
	 -webkit-animation: rollercoaster 1.2s infinite linear;
	 -webkit-transform: rotate(135deg);
	 -moz-animation: rollercoaster 1.2s infinite linear;
	 -moz-transform: rotate(135deg);
	 animation: rollercoaster 1.2s infinite linear;
	 transform: rotate(135deg);
}
 .roller:last-child {
	 left: auto;
	 right: 0;
	 -webkit-transform: rotate(-45deg);
	 -webkit-animation: rollercoaster2 1.2s infinite linear;
	 -moz-transform: rotate(-45deg);
	 -moz-animation: rollercoaster2 1.2s infinite linear;
	 transform: rotate(-45deg);
	 animation: rollercoaster2 1.2s infinite linear;
}
 .roller:before, .roller:last-child:before {
	 content: "";
	 display: block;
	 width: 15px;
	 height: 15px;
	 background: #000;
	 border-radius: 50%;
}
 @-webkit-keyframes rollercoaster {
	 0% {
		 -webkit-transform: rotate(135deg);
	}
	 8% {
		 -webkit-transform: rotate(240deg);
	}
	 20% {
		 -webkit-transform: rotate(300deg);
	}
	 40% {
		 -webkit-transform: rotate(380deg);
	}
	 45% {
		 -webkit-transform: rotate(440deg);
	}
	 50% {
		 -webkit-transform: rotate(495deg);
		 opacity: 1;
	}
	 50.1% {
		 -webkit-transform: rotate(495deg);
		 opacity: 0;
	}
	 100% {
		 -webkit-transform: rotate(495deg);
		 opacity: 0;
	}
}
 @-webkit-keyframes rollercoaster2 {
	 0% {
		 opacity: 0;
	}
	 49.9% {
		 opacity: 0;
	}
	 50% {
		 opacity: 1;
		 -webkit-transform: rotate(-45deg);
	}
	 58% {
		 -webkit-transform: rotate(-160deg);
	}
	 70% {
		 -webkit-transform: rotate(-240deg);
	}
	 80% {
		 -webkit-transform: rotate(-300deg);
	}
	 90% {
		 -webkit-transform: rotate(-340deg);
	}
	 100% {
		 -webkit-transform: rotate(-405deg);
	}
}
 @-webkit-keyframes shadow {
	 0% {
		 opacity: 0.3;
		 -webkit-transform: translateX(65px) scale(0.5, 0.5);
	}
	 8% {
		 -webkit-transform: translateX(30px) scale(2, 2);
	}
	 13% {
		 -webkit-transform: translateX(0px) scale(1.3, 1.3);
	}
	 30% {
		 -webkit-transform: translateX(-15px) scale(0.5, 0.5);
		 opacity: 0.1;
	}
	 50% {
		 -webkit-transform: translateX(60px) scale(1.2, 1.2);
		 opacity: 0.3;
	}
	 60% {
		 -webkit-transform: translateX(130px) scale(2, 2);
		 opacity: 0.05;
	}
	 65% {
		 -webkit-transform: translateX(145px) scale(1.2, 1.2);
	}
	 80% {
		 -webkit-transform: translateX(120px) scale(0.5, 0.5);
		 opacity: 0.1;
	}
	 90% {
		 -webkit-transform: translateX(80px) scale(0.8, 0.8);
	}
	 100% {
		 -webkit-transform: translateX(60px);
		 opacity: 0.3;
	}
}
/* Moz */
 @-moz-keyframes rollercoaster {
	 0% {
		 -moz-transform: rotate(135deg);
	}
	 8% {
		 -moz-transform: rotate(240deg);
	}
	 20% {
		 -moz-transform: rotate(300deg);
	}
	 40% {
		 -moz-transform: rotate(380deg);
	}
	 45% {
		 -moz-transform: rotate(440deg);
	}
	 50% {
		 -moz-transform: rotate(495deg);
		 opacity: 1;
	}
	 50.1% {
		 -moz-transform: rotate(495deg);
		 opacity: 0;
	}
	 100% {
		 -moz-transform: rotate(495deg);
		 opacity: 0;
	}
}
 @-moz-keyframes rollercoaster2 {
	 0% {
		 opacity: 0;
	}
	 49.9% {
		 opacity: 0;
	}
	 50% {
		 opacity: 1;
		 -moz-transform: rotate(-45deg);
	}
	 58% {
		 -moz-transform: rotate(-160deg);
	}
	 70% {
		 -moz-transform: rotate(-240deg);
	}
	 80% {
		 -moz-transform: rotate(-300deg);
	}
	 90% {
		 -moz-transform: rotate(-340deg);
	}
	 100% {
		 -moz-transform: rotate(-405deg);
	}
}
 @-moz-keyframes shadow {
	 0% {
		 opacity: 0.3;
		 -moz-transform: translateX(65px) scale(0.5, 0.5);
	}
	 8% {
		 -moz-transform: translateX(30px) scale(2, 2);
	}
	 13% {
		 -moz-transform: translateX(0px) scale(1.3, 1.3);
	}
	 30% {
		 -moz-transform: translateX(-15px) scale(0.5, 0.5);
		 opacity: 0.1;
	}
	 50% {
		 -moz-transform: translateX(60px) scale(1.2, 1.2);
		 opacity: 0.3;
	}
	 60% {
		 -moz-transform: translateX(130px) scale(2, 2);
		 opacity: 0.05;
	}
	 65% {
		 -moz-transform: translateX(145px) scale(1.2, 1.2);
	}
	 80% {
		 -moz-transform: translateX(120px) scale(0.5, 0.5);
		 opacity: 0.1;
	}
	 90% {
		 -moz-transform: translateX(80px) scale(0.8, 0.8);
	}
	 100% {
		 -moz-transform: translateX(60px);
		 opacity: 0.3;
	}
}
/* No-prefix */
 @keyframes rollercoaster {
	 0% {
		 transform: rotate(135deg);
	}
	 8% {
		 transform: rotate(240deg);
	}
	 20% {
		 transform: rotate(300deg);
	}
	 40% {
		 transform: rotate(380deg);
	}
	 45% {
		 transform: rotate(440deg);
	}
	 50% {
		 transform: rotate(495deg);
		 opacity: 1;
	}
	 50.1% {
		 transform: rotate(495deg);
		 opacity: 0;
	}
	 100% {
		 transform: rotate(495deg);
		 opacity: 0;
	}
}
 @keyframes rollercoaster2 {
	 0% {
		 opacity: 0;
	}
	 49.9% {
		 opacity: 0;
	}
	 50% {
		 opacity: 1;
		 transform: rotate(-45deg);
	}
	 58% {
		 transform: rotate(-160deg);
	}
	 70% {
		 transform: rotate(-240deg);
	}
	 80% {
		 transform: rotate(-300deg);
	}
	 90% {
		 transform: rotate(-340deg);
	}
	 100% {
		 transform: rotate(-405deg);
	}
}
 @keyframes shadow {
	 0% {
		 opacity: 0.3;
		 transform: translateX(65px) scale(0.5, 0.5);
	}
	 8% {
		 transform: translateX(30px) scale(2, 2);
	}
	 13% {
		 transform: translateX(0px) scale(1.3, 1.3);
	}
	 30% {
		 transform: translateX(-15px) scale(0.5, 0.5);
		 opacity: 0.1;
	}
	 50% {
		 transform: translateX(60px) scale(1.2, 1.2);
		 opacity: 0.3;
	}
	 60% {
		 transform: translateX(130px) scale(2, 2);
		 opacity: 0.05;
	}
	 65% {
		 transform: translateX(145px) scale(1.2, 1.2);
	}
	 80% {
		 transform: translateX(120px) scale(0.5, 0.5);
		 opacity: 0.1;
	}
	 90% {
		 transform: translateX(80px) scale(0.8, 0.8);
	}
	 100% {
		 transform: translateX(60px);
		 opacity: 0.3;
	}
}
 #loader2:after {
	 -webkit-animation-delay: 0.15s;
	 animation-delay: 0.15s;
}
 #loader2 .roller {
	 -webkit-animation-delay: 0.15s;
	 animation-delay: 0.15s;
}
 #loader3:after {
	 -webkit-animation-delay: 0.3s;
	 animation-delay: 0.3s;
}
 #loader3 .roller {
	 -webkit-animation-delay: 0.3s;
	 animation-delay: 0.3s;
}

.flex-actions {
	display:flex;
}

.b {
	fill: #e94963;
}

.c {
	fill: #6decca;
}

.b1 {
	fill: #e94963;
}

.c1 {
	fill: #6decca;
}
.b2 {
	fill: #494949;
	font-family: Poppins, sans-serif;
	font-size: 450px;
	font-weight: 600;
}

.c2 {
	fill: #cccccc;
}

.flex-action-div {
	width:20%;
	text-align:center;
}

.font-14 {
	font-size:14px;
}

.delete-icon {
	position: relative;
}

.delete-icon .trash-icon { 
	position: absolute;
	top: 10px;
	right: -3em;
  }

  .alert {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-top-style: solid;
    border-top-width: 1px;
    box-sizing: border-box;
    display: block;
    font-size: 14px;
    font-weight: 400;
    /*height: 58px;*/
    line-height: 22px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 14px;
    position: relative;
    text-align: start;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.alert a {
	color: #4350d1;
}

.alert a:hover {
	color: #e94963;
	opacity: 1;
}

.alert-primary {
    background-color: rgb(207, 226, 255);
    border: solid 1px rgb(158, 197, 254);
    color: rgb(5, 44, 101);
}

.alert-success {
    background-color: rgb(209, 231, 221);
    border: solid 1px rgb(163, 207, 187);
    color: rgb(10, 54, 34);
}

.alert-danger {
    background-color: rgb(248, 215, 218);
    border: solid 1px rgb(241, 174, 181);
    color: rgb(88, 21, 28)
}

/* Temp Styling */
.jdchat-wrapper {
    position: relative;
    left: 50%;
    width: 1000px;
    height: 800px;
    transform: translate(-50%, 0);
}
.jdchat-container {
    position: relative;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 75%;
    background-color: #fff;
    transform: translate(-50%, -50%);
}
.jdchat-container .jdchat-left {
    float: left;
    width: 37.6%;
    height: 100%;
    border: 1px solid #e6e6e6;
    background-color: #fff;
}
.jdchat-container .jdchat-left .jdchat-top {
    position: relative;
    width: 100%;
    height: 96px;
    padding: 29px;
}
.jdchat-container .jdchat-left .jdchat-top:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 80%;
    height: 1px;
    content: '';
    background-color: #e6e6e6;
    transform: translate(-50%, 0);
}
.jdchat-container .jdchat-left input {
    float: left;
    width: 188px;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #e6e6e6;
    background-color: #eceff1;
    border-radius: 21px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}
.jdchat-container .jdchat-left input:focus {
    outline: none;
}
.jdchat-container .jdchat-left a.jdchat-search {
    display: block;
    float: left;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    border: 1px solid #e6e6e6;
    background-color: #435de2;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/382994/name-type.png');
    background-repeat: no-repeat;
    background-position: top 12px left 14px;
    border-radius: 50%;
}
.jdchat-container .jdchat-left .jdchat-people {
    margin-left: -1px;
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    width: calc(100% + 2px);
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person {
    position: relative;
    width: 100%;
    padding: 12px 10% 16px;
    cursor: pointer;
    background-color: #fff;
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 80%;
    height: 1px;
    content: '';
    background-color: #e6e6e6;
    transform: translate(-50%, 0);
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person img {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person .jdchat-name {
    font-size: 14px;
    line-height: 22px;
    color: #1a1a1a;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person .jdchat-time {
    font-size: 14px;
    position: absolute;
    top: 16px;
    right: 10%;
    padding: 0 0 5px 5px;
    color: #999;
    background-color: #fff;
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person .jdchat-preview {
    font-size: 14px;
    display: inline-block;
    overflow: hidden !important;
    width: 70%;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person.active, .jdchat-container .jdchat-left .jdchat-people .jdchat-person:hover {
    margin-top: -1px;
    margin-left: -1px;
    padding-top: 13px;
    border: 0;
    background-color: #435de2;
    width: calc(100% + 2px);
    padding-left: calc(10% + 1px);
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person.active span, .jdchat-container .jdchat-left .jdchat-people .jdchat-person:hover span {
    color: #fff;
    background: transparent;
}
.jdchat-container .jdchat-left .jdchat-people .jdchat-person.active:after, .jdchat-container .jdchat-left .jdchat-people .jdchat-person:hover:after {
    display: none;
}
.jdchat-container .jdchat-right {
    position: relative;
    float: left;
    width: 62.4%;
    height: 100%;
}
.jdchat-container .jdchat-right .jdchat-top {
    width: 100%;
    height: 47px;
    padding: 15px 29px;
    background-color: #eceff1;
}
.jdchat-container .jdchat-right .jdchat-top span {
    font-size: 15px;
    color: #999;
}
.jdchat-container .jdchat-right .jdchat-top span .jdchat-name {
    color: #1a1a1a;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}
.jdchat-container .jdchat-right .jdchat-chat {
    position: relative;
    display: none;
    overflow: hidden;
    padding: 0 35px 92px;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #e6e6e6;
    height: calc(100% - 48px);
    justify-content: flex-end;
    flex-direction: column;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat {
    display: block;
    display: flex;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble {
    transition-timing-function: cubic-bezier(0.4, -0.04, 1, 1);
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(1) {
    animation-duration: 0.15s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of_type(2) {
    animation-duration: 0.3s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(3) {
    animation-duration: 0.45s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(4) {
    animation-duration: 0.6s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(5) {
    animation-duration: 0.75s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(6) {
    animation-duration: 0.9s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(7) {
    animation-duration: 1.05s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(8) {
    animation-duration: 1.2s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(9) {
    animation-duration: 1.35s;
}
.jdchat-container .jdchat-right .jdchat-chat.active-chat .jdchat-bubble:nth-of-type(10) {
    animation-duration: 1.5s;
}
.jdchat-container .jdchat-right .jdchat-write {
    position: absolute;
    bottom: 29px;
    left: 30px;
    height: 42px;
    padding-left: 8px;
    border: 1px solid #e6e6e6;
    background-color: #eceff1;
    width: calc(100% - 58px);
    border-radius: 5px;
}
.jdchat-container .jdchat-right .jdchat-write input {
    font-size: 16px;
    float: left;
    width: 347px;
    height: 40px;
    padding: 0 10px;
    color: #1a1a1a;
    border: 0;
    outline: none;
    background-color: #eceff1;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}
.jdchat-container .jdchat-right .jdchat-write .jdchat-write-link.attach:before {
    display: inline-block;
    float: left;
    width: 20px;
    height: 42px;
    content: '';
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/382994/attachment.png');
    background-repeat: no-repeat;
    background-position: center;
}
.jdchat-container .jdchat-right .jdchat-write .jdchat-write-link.smiley:before {
    display: inline-block;
    float: left;
    width: 20px;
    height: 42px;
    content: '';
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/382994/smiley.png');
    background-repeat: no-repeat;
    background-position: center;
}
.jdchat-container .jdchat-right .jdchat-write .jdchat-write-link.send:before {
    display: inline-block;
    float: left;
    width: 20px;
    height: 42px;
    margin-left: 11px;
    content: '';
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/382994/send.png');
    background-repeat: no-repeat;
    background-position: center;
}

.jdchat-container .jdchat-right .jdchat-bubble {
    font-size: 16px;
    position: relative;
    display: inline-block;
    clear: both;
    margin-bottom: 8px;
    padding: 13px 14px;
    vertical-align: top;
    border-radius: 5px;
}
.jdchat-container .jdchat-right .jdchat-bubble:before {
    position: absolute;
    top: 19px;
    display: block;
    width: 8px;
    height: 6px;
    content: '\00a0';
    transform: rotate(29deg) skew(-35deg);
}
.jdchat-container .jdchat-right .jdchat-bubble.you {
    float: left;
    color: #fff;
    background-color: #435de2;
    align-self: flex-start;
    animation-name: jdchat-slideFromLeft;
}
.jdchat-container .jdchat-right .jdchat-bubble.you:before {
    left: -3px;
    background-color: #435de2;
}
.jdchat-container .jdchat-right .jdchat-bubble.me {
    float: right;
    color: #1a1a1a;
    background-color: #eceff1;
    align-self: flex-end;
    animation-name: jdchat-slideFromRight;
}
.jdchat-container .jdchat-right .jdchat-bubble.me:before {
    right: -3px;
    background-color: #eceff1;
}
.jdchat-container .jdchat-right .jdchat-conversation-start {
    position: relative;
    width: 100%;
    margin-bottom: 27px;
    text-align: center;
}
.jdchat-container .jdchat-right .jdchat-conversation-start span {
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.jdchat-container .jdchat-right .jdchat-conversation-start span:before, .jdchat-container .jdchat-right .jdchat-conversation-start span:after {
    position: absolute;
    top: 10px;
    display: inline-block;
    width: 30%;
    height: 1px;
    content: '';
    background-color: #e6e6e6;
}
.jdchat-container .jdchat-right .jdchat-conversation-start span:before {
    left: 0;
}
.jdchat-container .jdchat-right .jdchat-conversation-start span:after {
    right: 0;
}
@keyframes jdchat-slideFromLeft {
    0% {
        margin-left: -200px;
        opacity: 0;
    }
    100% {
        margin-left: 0;
        opacity: 1;
    }
}
@-webkit-keyframes jdchat-slideFromLeft {
    0% {
        margin-left: -200px;
        opacity: 0;
    }
    100% {
        margin-left: 0;
        opacity: 1;
    }
}
@keyframes jdchat-slideFromRight {
    0% {
        margin-right: -200px;
        opacity: 0;
    }
    100% {
        margin-right: 0;
        opacity: 1;
    }
}
@-webkit-keyframes jdchat-slideFromRight {
    0% {
        margin-right: -200px;
        opacity: 0;
    }
    100% {
        margin-right: 0;
        opacity: 1;
    }
}

.applicant_email {
  cursor: pointer;
   color: #007BFF; /* Bootstrap primary color */
}

.applicant_email:hover {
  color: #0056b3; /* Slightly darker color when hovered */
}

#tippy-1 .tippy-box {
    background-color: var(--bs-body-bg);
}
#tippy-2 .tippy-box {
    background-color: red;
}
#tippy-3 .tippy-box {
    background-color: var(--bs-body-bg);
}
#tippy-4 .tippy-box {
    background-color: var(--bs-body-bg);
}
#tippy-5 .tippy-box {
    background-color: var(--bs-body-bg);
}

.timeline-label::before {
    left: 136px !important;
}