@font-face {
  font-family: 'HelveticaNeuBold';
  font-style: normal;
  font-weight: normal;
  src: local("HelveticaNeuBold.ttf"), url("../fonts/HelveticaNeuBold.ttf") format("woff");
}

@font-face {
  font-family: 'HelveticaNeueLTStd-Bd';
  font-style: normal;
  font-weight: normal;
  src: local("HelveticaNeueLTStd-Bd.otf"), url("../fonts/HelveticaNeueLTStd-Bd.otf") format("woff");
}

@font-face {
  font-family: 'HelveticaNeueMed';
  font-style: normal;
  font-weight: normal;
  src: local("HelveticaNeueMed.ttf"), url("../fonts/HelveticaNeueMed.ttf") format("woff");
}

textarea {
  resize: none;
}

.text-primary {
  color: #3E6626 !important;
}

.btn-primary {
  background-color: #3E6626;
  border-color: #3E6626;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:disabled {
  background-color: #3E6626;
  border-color: #3E6626;
  opacity: 0.8;
}

.fc-shadow {
  border-radius: 10px;
  -webkit-box-shadow: inset 1px 0px 8px #0000004d;
          box-shadow: inset 1px 0px 8px #0000004d;
  text-align: center;
  font-weight: bold;
}

.fade-in {
  -webkit-animation: fadeIn ease 1s;
          animation: fadeIn ease 1s;
}

.fade-top {
  -webkit-animation: fadeTop ease 1s;
          animation: fadeTop ease 1s;
}

.fade-left {
  -webkit-animation: fadeLeft ease 1s;
          animation: fadeLeft ease 1s;
}

.fade-right {
  -webkit-animation: fadeRight ease 1s;
          animation: fadeRight ease 1s;
}

.fade-bottom {
  -webkit-animation: fadeBottom ease 1s;
          animation: fadeBottom ease 1s;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    border-radius: 50%;
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    border-radius: 0;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    border-radius: 50%;
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    border-radius: 0;
  }
}

@-webkit-keyframes blur {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blur {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

.main .button-primary.bounce, .main .button-photobooth.bounce, .main .button-friendship.bounce, .main .button-plenary.bounce, .main .button-game.bounce, .main .button-partners.bounce {
  -webkit-animation-name: bouncingEffect;
          animation-name: bouncingEffect;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes flow {
  from {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: .20;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}

@keyframes flow {
  from {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: .20;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}

.modal-backdrop {
  background-color: rgba(255, 255, 255, 0.4);
}

body {
  background-color: #000000;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

* {
  font-family: "HelveticaNeueMed", sans-serif;
}

.background-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: scroll;
}

.background-wrapper#registration {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #F7F6C0;
}

.background-wrapper#registration label {
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}

.background-wrapper#registration .form-control {
  background-color: transparent !important;
  border: 2px solid #000000;
  border-radius: 0;
  color: #000;
}

.background-wrapper#registration .checkbox {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.1;
}

.background-wrapper#registration .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.background-wrapper#registration .checkbox input:checked ~ .checkmark {
  background-color: #3E6626;
  border: 2px solid #000 !important;
}

.background-wrapper#registration .checkbox input:checked ~ .checkmark:after {
  display: block;
}

.background-wrapper#registration .checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.background-wrapper#registration .checkbox .checkmark:after {
  left: 6px;
  top: 0;
  width: 11px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.background-wrapper#registration .checkmark {
  position: absolute;
  top: 0;
  height: 25px;
  width: 26px;
  border: 2px solid #000;
  border-radius: 0;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

.background-wrapper#registration .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.background-wrapper#registration .checkmark-invalid {
  position: absolute;
  top: 0;
  left: -10px;
  font-size: 1.5rem;
  line-height: .5;
}

.background-wrapper#registration .text-sm {
  font-size: .8rem;
  white-space: normal;
}

.background-wrapper .background-container {
  height: auto;
  width: 100%;
  position: relative;
  overflow-y: scroll;
}

.background-wrapper .background-container picture img {
  width: 100%;
  height: auto;
  position: relative;
}

.background-wrapper #regAvatar, .background-wrapper #loginAvatar {
  position: absolute;
  bottom: 0%;
  left: 5%;
  width: 26%;
  height: 85%;
  cursor: pointer;
  z-index: 3;
  -webkit-animation: fadeLeft ease .5s;
          animation: fadeLeft ease .5s;
}

.intro {
  position: relative;
  z-index: 3;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  overflow: hidden;
  display: none;
}

.intro.show {
  display: block;
  max-height: 100%;
}

.intro.show::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.intro .take-charge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: none;
  background: url(../img/take-charge.jpg) center/cover no-repeat;
  background-color: #fff;
}

.intro audio {
  display: none;
}

.login {
  background-color: white;
  position: fixed;
  height: 100%;
  width: 100%;
  display: none;
  overflow-y: scroll;
}

.login.show {
  display: block;
}

.login #loginErrMsg {
  visibility: hidden;
}

.login #loginErrMsg.show {
  visibility: visible;
}

.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: white;
  cursor: progress;
  display: none;
}

.loader.show {
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loader .dot-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70px;
}

.loader .dot-container .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #3E6626;
}

.loader .dot-container .dot-1 {
  -webkit-animation-name: flow;
          animation-name: flow;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.loader .dot-container .dot-2 {
  -webkit-animation: flow 1s ease .2s infinite alternate;
          animation: flow 1s ease .2s infinite alternate;
}

.loader .dot-container .dot-3 {
  -webkit-animation: flow 1s ease .4s infinite alternate;
          animation: flow 1s ease .4s infinite alternate;
}

.skip {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1050;
  height: 5%;
  width: 6%;
  background: url(../img/_denr/skip-button.png) center/contain no-repeat;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
  display: none;
}

.skip:hover, .skip:focus {
  opacity: .9;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.skip.show {
  display: block;
}

.play-button {
  position: fixed;
  height: 38px;
  width: 150px;
  z-index: 1050;
  right: 20px;
  top: 20px;
  background-color: white;
  border-radius: 50px;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: bold;
  color: dimgray;
  display: none;
}

.play-button.show {
  display: block;
}

.play-button .audio-label {
  font-size: .9rem;
}

.play-button:hover {
  -webkit-box-shadow: 2px 0px 10px lightblue;
          box-shadow: 2px 0px 10px lightblue;
}

.play-button svg {
  width: 38px;
  height: 38px;
  fill: #0a8010;
}

.main {
  display: none;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  overflow: hidden;
}

.main.show {
  display: block;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.main .button {
  width: 5%;
  height: 9%;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.main .button:nth-child(2n+0) {
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}

.main .button-primary, .main .button-photobooth, .main .button-friendship, .main .button-plenary, .main .button-game, .main .button-partners {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.main .button-secondary {
  display: none;
  z-index: 1;
}

.main #avatar {
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 28%;
  height: 80%;
  cursor: pointer;
  z-index: 3;
  -webkit-animation: fadeLeft ease .5s;
          animation: fadeLeft ease .5s;
}

#player2 {
  display: contents;
}

.pulse {
  background: rgba(10, 128, 16, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 43%;
  top: 105%;
  -webkit-transform: rotateX(55deg);
  transform: rotateX(55deg);
  z-index: -2;
  height: 15%;
  width: 12%;
}

.pulse::after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 37px;
  position: absolute;
  margin: -14px;
  -webkit-animation: pulseEffect 1s ease-out;
          animation: pulseEffect 1s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0.0;
  -webkit-box-shadow: 0 0 1px 2px rgba(10, 128, 16, 0.5);
          box-shadow: 0 0 1px 2px rgba(10, 128, 16, 0.5);
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.pulse2 {
  background: rgba(10, 128, 16, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 42.7%;
  bottom: -15%;
  -webkit-transform: rotateX(55deg);
  transform: rotateX(55deg);
  z-index: -2;
  height: 14%;
  width: 12%;
  display: none;
}

.pulse2.show {
  display: block;
}

.pulse2.show::after {
  content: "";
  border-radius: 50%;
  height: 33px;
  width: 30px;
  position: absolute;
  margin: -14px 0 0 -11px;
  -webkit-animation: pulseEffect 1s ease;
          animation: pulseEffect 1s ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0.0;
  -webkit-box-shadow: 0 0 1px 2px rgba(10, 128, 16, 0.5);
          box-shadow: 0 0 1px 2px rgba(10, 128, 16, 0.5);
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

/*
* Welcome Modal
*/
.sm-modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 20px;
}

.sm-modal .modal-content .modal-body .img-welcome {
  border-radius: 20px;
  -webkit-box-shadow: 0px -2px 20px #000000b0;
          box-shadow: 0px -2px 20px #000000b0;
}

.sm-modal .modal-content .continue {
  background-color: transparent;
  border-radius: 1px;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  width: 29%;
  height: 7.6%;
  position: absolute;
  top: 84.9%;
  left: 35.5%;
}

.sm-modal .modal-content .continue:hover {
  -webkit-box-shadow: 0px 0px 9px 1px #9ecb83ed;
          box-shadow: 0px 0px 9px 1px #9ecb83ed;
}

.sm-modal .modal-content .continue span {
  font-size: large;
  color: #ffffff;
}

#m-blocker {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 1049;
  display: none;
}

#m-blocker.show {
  display: block;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.custom-modal, .modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 1050;
  height: 100%;
  width: 100%;
  -webkit-animation: zoomIn ease 1s;
          animation: zoomIn ease 1s;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.custom-modal .modal-container, .modal .modal-container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-height: 100%;
  overflow-y: hidden;
  width: 100%;
  background: white;
}

.custom-modal .modal-container .button, .modal .modal-container .button {
  width: 5%;
  height: 5%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.custom-modal.show, .modal.show {
  display: block;
}

.custom-modal .close, .modal .close {
  position: absolute;
  right: 0px;
  top: 0;
  opacity: 1;
  width: 3.5%;
  font-size: 2em;
  z-index: 1051;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom-modal .close::before, .modal .close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.custom-modal .avatar-container, .modal .avatar-container {
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

.custom-modal .avatar-container.show, .modal .avatar-container.show {
  display: block;
  z-index: 2;
}

.custom-modal .booth-avatar, .modal .booth-avatar {
  position: absolute;
  bottom: 0%;
  width: 50%;
  height: 80%;
  min-height: 50%;
  cursor: help;
  z-index: 3;
  display: none;
}

.custom-modal .booth-avatar.left, .modal .booth-avatar.left {
  left: 5%;
}

.custom-modal .booth-avatar.left.animate, .modal .booth-avatar.left.animate {
  -webkit-animation: fadeLeft2 .5s alternate linear;
          animation: fadeLeft2 .5s alternate linear;
  display: block;
}

.custom-modal .booth-avatar.right, .modal .booth-avatar.right {
  right: 5%;
}

.custom-modal .booth-avatar.right.animate, .modal .booth-avatar.right.animate {
  -webkit-animation: fadeRight2 .5s ease-out;
          animation: fadeRight2 .5s ease-out;
  display: block;
}

.modal-primary .modal-content, #gameBoothModal .modal-content {
  border: 0;
}

.modal-primary .modal-content .modal-title, #gameBoothModal .modal-content .modal-title {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  padding-top: .25rem;
}

.modal-primary .modal-body, #gameBoothModal .modal-body {
  background-color: rgba(255, 255, 255, 0.6);
}

#photoBoothModal .modal-content {
  background: #fff;
}

/*
* Plenary Modal Pop Up -1
*/
#plenaryModal .modal-content {
  background-image: url(../img/plenary/plenary1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  height: 340px;
}

#plenaryModal .modal-content .continue {
  position: absolute;
  top: 72.9%;
  left: 32%;
  background-color: transparent;
  color: #fff;
  padding: 6px;
  width: 36%;
  height: 8%;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  border-radius: 20px;
}

#plenaryModal .modal-content .continue:hover {
  -webkit-box-shadow: 0px 0px 12px #F26C53;
          box-shadow: 0px 0px 12px #F26C53;
}

/*
* Plenary Modal Pop Up -2
*/
#plenaryModal2 .modal-content {
  background-image: url(../img/plenary/plenary2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  height: 340px;
  margin: -60% 0 0 3%;
}

#plenaryModal2 .modal-content .close {
  position: absolute;
  top: 21%;
  width: 5%;
  height: 7%;
  right: 5.3%;
  cursor: pointer;
}

#plenaryModal2 .modal-content .continue {
  position: absolute;
  top: 80%;
  left: 44%;
  width: 15%;
  height: 30%;
  cursor: pointer;
}

/*
* Photo-Booth Modal
*/
#photoBoothModal {
  -webkit-animation: zoomIn ease 1s;
          animation: zoomIn ease 1s;
  -webkit-transform-origin: 80% 75%;
          transform-origin: 80% 75%;
}

#photoBoothModal .modal-content {
  border: none;
}

#photoBoothModal .modal-content .modal-body .dot-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 43%;
}

#photoBoothModal .modal-content .modal-body .dot-container .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #D85719;
}

#photoBoothModal .modal-content .modal-body .dot-container .dot-1 {
  -webkit-animation-name: flow;
          animation-name: flow;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

#photoBoothModal .modal-content .modal-body .dot-container .dot-2 {
  -webkit-animation: flow 1s ease .2s infinite alternate;
          animation: flow 1s ease .2s infinite alternate;
}

#photoBoothModal .modal-content .modal-body .dot-container .dot-3 {
  -webkit-animation: flow 1s ease .4s infinite alternate;
          animation: flow 1s ease .4s infinite alternate;
}

#photoBoothModal .modal-content .modal-body #heading {
  background-color: transparent;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #capture {
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: block;
  position: relative;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #capture:hover, #photoBoothModal .modal-content .modal-body .web_camera_container #capture:focus {
  opacity: .6;
  outline: none;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #capture::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #retake {
  display: none;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #web_camera {
  width: 100% !important;
  position: relative;
  left: 0;
  top: 0;
  overflow: hidden;
  border: 2px solid #D85719;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #web_camera video {
  width: 100% !important;
  -webkit-transform: scaleX(1.1) scaleY(1.2) !important;
          transform: scaleX(1.1) scaleY(1.2) !important;
}

#photoBoothModal .modal-content .modal-body .web_camera_container #web_camera .frame_overlay {
  width: 100% !important;
}

#photoBoothModal .modal-content .modal-body .photo-frames img {
  -webkit-transition: .3s all;
  transition: .3s all;
  cursor: pointer;
}

#photoBoothModal .modal-content .modal-body .photo-frames img:hover {
  -webkit-box-shadow: 0px 2px 10px lightblue;
          box-shadow: 0px 2px 10px lightblue;
  opacity: .6;
}

#photoBoothModal .modal-content .modal-body .photo-frames img.selected {
  border: 3px solid #D85719;
}

#photoBoothModal .modal-content .modal-body .photo-frames #photo_download {
  line-height: 0.7;
  font-size: 1.5em;
  border-radius: 13px;
  font-weight: 900;
}

#photoBoothModal .wish-wrapper {
  position: relative;
}

#photoBoothModal .wish-wrapper #outOf {
  position: absolute;
  bottom: 0;
  right: 2px;
  margin-bottom: 0;
  height: 30px;
  width: 30px;
  font-size: x-small;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#displayPhotoModal .text-wrapper {
  width: 27%;
  position: absolute;
  z-index: 2;
  top: 65%;
  left: 9%;
  overflow-x: hidden;
}

#displayPhotoModal .text-wrapper p {
  position: relative;
  line-height: 1.3;
  font-weight: bold;
  font-size: large;
  margin-bottom: 0;
}

#partnersBoothModal .button {
  display: none;
}

#privacyModal .modal-content {
  background-image: url(../img/photo-booth/privacy.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  height: 340px;
}

#privacyModal .modal-content .continue {
  position: absolute;
  bottom: 26.2%;
  left: 36%;
  background-color: transparent;
  color: #fff;
  padding: 6px;
  width: 27.7%;
  height: 8%;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  border-radius: 8px;
}

#privacyModal .modal-content .continue:hover {
  -webkit-box-shadow: 0px 0px 12px #009ed2;
          box-shadow: 0px 0px 12px #009ed2;
}

#camera {
  height: 88% !important;
  width: 84% !important;
  position: absolute;
  top: 5.3%;
  left: 8%;
  overflow: hidden;
  background-color: #a74646;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

#camera video {
  width: 100% !important;
  height: auto !important;
  margin: auto;
}

#imageprev {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: fill;
     object-fit: fill;
}

/*
* Chat application
*/
/* Button used to open the chat form - fixed at the bottom of the page */
.btnToggleChat {
  background-color: #0A8010;
  position: fixed;
  bottom: 50px;
  right: 50px;
  height: 60px;
  width: 60px;
  z-index: 2000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: none;
  -webkit-animation: rotate225 ease 1s;
          animation: rotate225 ease 1s;
}

.btnToggleChat.show {
  display: block;
}

.btnToggleChat:hover, .btnToggleChat:focus {
  background-color: #0A8010;
}

.btnToggleChat svg, .btnToggleChat img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-animation: rotate180 ease 1s;
          animation: rotate180 ease 1s;
}

@-webkit-keyframes rotate225 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}

@keyframes rotate225 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}

@-webkit-keyframes rotate180 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

@keyframes rotate180 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

/* The popup chat - hidden by default */
.chat-box {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 2000;
  border: 1px solid #02529d;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  background: linear-gradient(45deg, #fff, transparent);
  display: none;
  width: 320px;
  -webkit-box-shadow: 1px 3px 5px #02529d;
          box-shadow: 1px 3px 5px #02529d;
}

.chat-box .btn-link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.chat-box.show {
  display: block;
}

.chat-box .chat-header {
  padding: .5rem;
  background: linear-gradient(45deg, #fff, transparent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.chat-box .chat-header .title {
  color: #aa0000;
  margin-left: .5rem;
}

.chat-box .chat-header .chat-settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chat-box .chat-header .chat-settings .cs-icon {
  width: 25px;
  -webkit-transition: all .2s;
  transition: all .2s;
  margin: 0 .25rem;
  cursor: pointer;
}

.chat-box .chat-header .chat-settings .cs-icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.chat-box .chat-body {
  height: calc(60vh - 108px);
  padding: 1rem;
  overflow-y: scroll;
  position: relative;
}

.chat-box .chat-body .msg {
  border: 1px solid #dedede;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 10px;
  margin: 1rem;
  overflow: auto;
}

.chat-box .chat-body .msg .name {
  font-size: .9rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #3E6626;
}

.chat-box .chat-body .msg .msg-text {
  font-size: .8rem;
  font-weight: 200;
  margin-bottom: .2rem;
  line-height: 1.1;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.chat-box .chat-body .msg::after {
  content: "";
  clear: both;
  display: table;
}

.chat-box .chat-body .msg .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 200px;
}

.chat-box .chat-body .msg .profile {
  float: left;
  max-width: 60px;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  border-radius: 50%;
}

.chat-box .chat-body .msg .profile.right {
  float: right;
  margin-left: 20px;
  margin-right: 0;
}

.chat-box .chat-body .msg .time {
  font-size: .5rem;
  color: #aaa;
}

.chat-box .chat-body .msg .time.time-right {
  text-align: right;
}

.chat-box .chat-body .msg .time.time-left {
  text-align: left;
}

.chat-box .chat-body .msg.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chat-box .chat-body .msg.right .profile {
  margin-right: 0;
  margin-left: 30px;
}

.chat-box .chat-body .msg.right .content {
  text-align: right;
  width: 100%;
}

.chat-box .chat-body .msg-nav {
  position: fixed;
  height: 100%;
  background-color: #fff;
  display: none;
  z-index: 2;
}

.chat-box .chat-body .msg-nav.show {
  display: block;
}

.chat-box .chat-body .msg-nav .nav-pills {
  border-radius: 0;
}

.chat-box .chat-body .msg-nav .nav-pills .nav-link.active, .chat-box .chat-body .msg-nav .nav-pills .show > .nav-link {
  color: #017BFE;
  background-color: transparent;
  border-radius: 0;
}

.chat-box .chat-body .msg-nav .nav-pills .nav-link {
  color: gray;
}

.chat-box .chat-body .tab-pane {
  position: relative;
}

.chat-box .chat-footer, .chat-box .player-footer {
  padding: 13px;
  background-color: #fff;
}

.chat-box .chat-footer #btnSubmitMessage, .chat-box .player-footer #btnSubmitMessage {
  background: transparent;
  border: 1px solid #ccc;
}

/*
* Counter
*/
.counter {
  position: fixed;
  top: 5rem;
  right: 2rem;
  z-index: 2;
  padding: .5rem 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.counter.hide {
  display: none;
}

.counter #timerCounter {
  position: relative;
  margin: .25rem 1rem 0 1rem;
  line-height: 1;
  font-size: 1.5vw;
}

.learn-more {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.learn-more img {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.learn-more img:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.modal-fullscreen {
  -webkit-animation: fadeIn ease 1s;
          animation: fadeIn ease 1s;
}

.modal-fullscreen .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
  background: url(../img/video-frame.jpg) center/cover no-repeat;
}

.modal-fullscreen .modal-content button {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.modal-fullscreen .modal-content button:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.btn.focus, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#fwdPlenaryModal #fwd-app {
  position: absolute;
  width: 13%;
  height: 9%;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  top: 86.5%;
  left: 83%;
  z-index: 3;
  display: block;
}

#fwdPlenaryModal #fwd-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#fwdPlenaryModal #fwd-app:hover, #fwdPlenaryModal #fwd-app:focus {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

#fwdPlenaryModal .img-wrapper {
  position: absolute;
  z-index: 2;
  width: 28%;
  height: 28%;
  cursor: pointer;
  overflow: hidden;
}

#fwdPlenaryModal .img-wrapper:nth-child(1) {
  top: 56%;
  left: 18%;
}

#fwdPlenaryModal .img-wrapper:nth-child(2) {
  top: 56%;
  left: 51.5%;
}

#fwdPlenaryModal .img-wrapper:hover img, #fwdPlenaryModal .img-wrapper:focus img {
  -webkit-transform: scale(1.1) translate(8px);
          transform: scale(1.1) translate(8px);
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

#fwdPlenaryModal .img-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#fwdPlenaryModal .img-wrapper img {
  height: 100%;
  width: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#fwdPlenaryModal .plenary-avatar {
  position: absolute;
  right: -17%;
  bottom: -10%;
  width: 34%;
  height: 90%;
  z-index: 1;
  display: none;
  -webkit-animation: fadeRight2 .5s ease-out;
          animation: fadeRight2 .5s ease-out;
}

#fwdPlenaryModal .plenary-avatar.animate {
  display: block;
  opacity: 1;
}

#fwdPlenaryModal .plenary-avatar img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
  border-color: #dc3545 !important;
}

@media (max-width: 767px) and (orientation: portrait) {
  #show_download, #retake {
    font-size: 2vw;
  }
  #imageprev {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .counter {
    top: 1rem;
  }
}

@media (max-width: 1024px) {
  .sidebar .sidebar-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera video {
    -webkit-transform: scaleX(1.4) scaleY(1.2) !important;
            transform: scaleX(1.4) scaleY(1.2) !important;
  }
}

@media (max-width: 991px) {
  .sidebar .sidebar-icon {
    height: 20px;
  }
  .sidebar #v-pills-tab .nav-link, .sidebar #v-pills-tab .not-tabcontent {
    padding: .25rem;
  }
  .background-wrapper#registration {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
  #denrPlenaryModal, .modal {
    zoom: 1;
  }
  #denrPlenaryModal .modal-body, .modal .modal-body {
    padding: .5rem;
  }
}

@media screen and (max-width: 991px) and (orientation: landscape) {
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera {
    height: 270px !important;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera video {
    -webkit-transform: scaleX(1) scaleY(1.3) translateY(-20%) !important;
            transform: scaleX(1) scaleY(1.3) translateY(-20%) !important;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera #imageprev {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .skip {
    min-width: 60px;
    min-height: 30px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .sidebar.show .sidebar-wrapper .tab-content {
    height: 80vh;
    min-width: 350px;
  }
  .chat .chat-body, .music-player .chat-body {
    height: calc(80vh - 108px);
  }
}

@media screen and (max-width: 991px) and (orientation: portrait) {
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera {
    height: 220px !important;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera video {
    -webkit-transform: scaleX(1.5) scaleY(1.5) !important;
            transform: scaleX(1.5) scaleY(1.5) !important;
  }
  .sm-modal .modal-content .modal-body {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pulseEffect {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes pulseEffect {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@-webkit-keyframes bouncingEffect {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bouncingEffect {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  #DBPVideo1 {
    top: calc(60% + 10%) !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .main #avatar {
    width: 25%;
    left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .main #avatar {
    left: 0;
  }
}

@media (min-width: 1200px) {
  .main #avatar {
    left: 2%;
  }
}

@media (min-width: 1200px) {
  .main #avatar {
    left: 4%;
  }
}

/*
* Custom Modal
*/
@media (min-width: 576px) {
  .custom_modal {
    max-width: 768px;
    margin: 1.75rem auto;
  }
}

@media (min-width: 1200px) {
  .custom_modal {
    max-width: 1050px;
  }
}

@media screen and (max-width: 576px) {
  #nonPromotedModal .modal-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  #nonPromotedModal .modal-content .modal-body {
    max-height: 30vh !important;
  }
}

@media (max-width: 475px) {
  .custom_modal {
    max-width: 500px;
    margin: auto;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .modal {
    zoom: 0.65;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .modal {
    zoom: 0.65;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera {
    height: 250px;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera video {
    -webkit-transform: scaleX(1.2) scaleY(1.6) translateY(-20%) !important;
            transform: scaleX(1.2) scaleY(1.6) translateY(-20%) !important;
  }
}
/*# sourceMappingURL=veap.style.css.map */