@font-face {
  font-family: 'Avenir Black';
  src: url("../fonts/avenir/AvenirLTStd-Black.otf") format("woff");
}

@font-face {
  font-family: 'Avenir Book';
  src: url("../fonts/avenir/AvenirLTStd-Book.otf") format("woff");
}

@font-face {
  font-family: 'Pragmatica ExtraLight Reg';
  font-style: normal;
  font-weight: normal;
  src: local("Saira Extra Condensed"), url("../fonts/SairaExtraCondensed-Regular.ttf") format("woff");
}

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

body {
  font-family: 'Avenir Book', sans-serif;
  background-color: #000000;
  overflow: hidden;
  margin: 0;
}

.font-1 {
  font-family: 'Avenir Book', sans-serif;
}

.font-2 {
  font-family: 'Avenir Black', sans-serif;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}

.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 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 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 .background-container .button-primary.bounce, #main .background-container .button-friendship.bounce, #main .background-container .button-plenary.bounce, #main .background-container .button-game.bounce, #main .background-container .button-partners.bounce, .custom-modal .modal-container .button.bounce, .modal .modal-container .button.bounce {
  -webkit-animation-name: bouncingEffect;
          animation-name: bouncingEffect;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

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

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

@-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);
  }
}

a {
  color: #000;
}

.btn-orange {
  background-color: #ED7E23 !important;
  border-color: #ED7E23 !important;
  color: #fff !important;
  border-radius: 2em;
  min-width: 8.5em;
  padding: 0.5em;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-orange:hover {
  opacity: 0.8;
}

.text-underline {
  text-decoration: underline;
}

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

img {
  -webkit-user-drag: none;
}

.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: #aa0000;
}

.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;
}

@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);
  }
}

#intro {
  position: fixed;
  top: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: #000;
}

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

#intro .background-container picture img {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-animation: blur ease 1s;
          animation: blur ease 1s;
}

#intro .background-container .avatar {
  position: absolute;
  bottom: 0;
  left: 5em;
  width: 30%;
  z-index: 1051;
  -webkit-animation: fadeLeft 0.5s ease;
          animation: fadeLeft 0.5s ease;
}

#intro .mobile-portrait-message {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: none;
}

#intro .mobile-portrait-message .mobile-message {
  display: block;
  color: #ffffff;
  margin: 2rem 0;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  width: 75%;
}

#intro .mobile-portrait-message .mobile-phone.animate {
  -webkit-animation: rotate 1.5s ease-in-out infinite alternate;
          animation: rotate 1.5s ease-in-out infinite alternate;
}

#introModal .modal-content {
  border: 0.25vw solid #ED7E23;
  border-radius: 2em;
}

#introModal .modal-body {
  padding: 4vw 5vw;
}

#introModal .head {
  gap: 0.5vw;
  margin-bottom: 1vw;
}

#introModal .head .welcome-text {
  font-size: 1.5vw;
  font-weight: 700;
}

#introModal .head .brand-logo {
  width: 16vw;
}

#introModal .head .virtual-hall-text {
  color: #0B5AAB;
  font-size: 3vw;
}

#introModal .continue {
  font-size: 1vw;
}

#introModal .small {
  font-size: 0.75vw;
  line-height: 1;
  white-space: nowrap;
  font-family: Arial, 'Avenir Book', sans-serif;
  margin-bottom: 2em;
}

#introModal .caption {
  font-family: Arial, 'Avenir Book', sans-serif;
  font-size: 1.25vw;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  #intro .background-container .avatar {
    left: 2em;
  }
}

@media (max-width: 991px) {
  #introModal .modal-content {
    max-width: 75%;
    margin: auto;
    border-radius: 1em;
  }
}

@media (max-width: 767px) {
  #intro .background-container .avatar {
    left: 0em;
  }
  #introModal .modal-content {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  #introModal .small {
    font-size: 1.2vw;
  }
}

#main {
  position: fixed;
  top: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-animation: blur ease 1s;
          animation: blur ease 1s;
  display: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#main.show {
  display: block;
}

#main .background-container {
  height: auto;
  width: 100%;
  position: relative;
  max-height: 100%;
}

#main .background-container picture img {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-animation: blur ease 1s;
          animation: blur ease 1s;
  max-height: 100vh;
}

#main .background-container .avatar {
  position: absolute;
  bottom: 0;
  left: 5em;
  width: 30%;
  z-index: 1051;
}

#main .background-container .button {
  height: 8%;
  width: 4%;
  -webkit-transition: ease .5s;
  transition: ease .5s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

#main .background-container .button:nth-child(even) {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

#main .background-container .button-primary, #main .background-container .button-friendship, #main .background-container .button-plenary, #main .background-container .button-game, #main .background-container .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 .mobile-portrait-message {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: none;
}

#main .mobile-portrait-message .mobile-message {
  display: block;
  color: #ffffff;
  margin: 2rem 0;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  width: 75%;
}

#main .mobile-portrait-message .mobile-phone.animate {
  -webkit-animation: rotate 1.5s ease-in-out infinite alternate;
          animation: rotate 1.5s ease-in-out infinite alternate;
}

#main .left-overlay {
  position: absolute;
  z-index: 1050;
  left: 1vw;
  top: 3vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1vw;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.85vw;
  border-radius: 0.5vw;
  display: none;
}

#main .left-overlay.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .left-overlay .lo-item .pb-wrapper {
  background-color: #0B5AAB;
  border-radius: 0.5vw;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: bold;
  color: dimgray;
  padding: 0.2em;
  width: 4vw;
  height: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main .left-overlay .lo-item .pb-wrapper img {
  max-width: 100%;
}

#main .left-overlay .lo-item .pb-wrapper:hover {
  -webkit-box-shadow: 2px 0px 10px lightblue;
          box-shadow: 2px 0px 10px lightblue;
}

#main .left-overlay .lo-item .pb-wrapper svg {
  width: 38px;
  height: 38px;
  fill: #f68d33;
}

#main .left-overlay .lo-item .pb-wrapper span {
  display: none;
}

.main-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1051;
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  border-top-left-radius: 0.5em;
  min-width: 50%;
  display: none;
}

.main-footer.show {
  display: block;
}

.main-footer .mf-links {
  padding: 1vw;
  gap: .5em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.main-footer .mf-links .item {
  list-style: none;
  text-align: center;
  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;
  border-radius: 0.5vw;
}

.main-footer .mf-links .item:nth-child(1) {
  background-color: #1BA9B2;
}

.main-footer .mf-links .item:nth-child(2) {
  background-color: #7c00a4;
}

.main-footer .mf-links .item:nth-child(3) {
  background-color: #1BA9B2;
}

.main-footer .mf-links .item a {
  text-decoration: none;
  color: #fff;
  font-size: 0.75vw;
  font-weight: bold;
  padding: 0.6em 1.5em;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  width: 100%;
  cursor: pointer;
}

.main-footer .mf-links .item a:hover {
  -webkit-filter: brightness(1.1) drop-shadow(0 0 0.05em #444);
          filter: brightness(1.1) drop-shadow(0 0 0.05em #444);
}

.modal[data-type="pdf"] iframe {
  top: -55px;
  height: calc(100% + 55px);
}

@media (max-width: 991px) and (orientation: landscape) {
  .modal#introModal {
    overflow-y: auto;
  }
}

@media screen and (max-width: 575px) {
  .modal {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.detailers .wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detailers .grid-by-2 {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1vw;
}

.detailers .d-item {
  border: 0.1em solid #1BA9B2;
  border-radius: 0.5em;
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding: 0.5em;
  width: 28vw;
  cursor: pointer;
}

.detailers .d-item img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.detailers .d-item:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.header-text {
  position: absolute;
  left: 50%;
  top: 2%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

/*
* Photo-Booth Modal
*/
#photoBoothModal {
  -webkit-animation: zoomIn ease 1s;
          animation: zoomIn ease 1s;
}

#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;
}

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

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

#photoBoothModal .modal-content .modal-body #photo_download {
  font-size: 1vw;
  background-color: #7c00a4 !important;
  border-color: #7c00a4 !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: 0.1em solid #0B5AAB;
}

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

@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 screen and (max-width: 991px) and (orientation: landscape) {
  #photoBoothModal {
    zoom: 0.65;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera {
    height: 270px !important;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera video {
    z-index: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
  }
  #photoBoothModal .modal-content .modal-body .web_camera_container #web_camera #imageprev {
    -o-object-fit: fill;
       object-fit: fill;
  }
}

@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: translate(-50%, -50%) scaleX(1.5) scaleY(1.5) !important;
            transform: translate(-50%, -50%) scaleX(1.5) scaleY(1.5) !important;
    position: absolute;
    top: 50%;
    left: 40%;
  }
}

#player2 {
  display: contents;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .link-tab {
  z-index: 2;
}

.link-tab {
  z-index: 2;
  display: -ms-grid;
  display: grid;
  max-width: 50%;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin: 0 .5rem 0 0;
}

.link-tab li {
  list-style: none;
  text-transform: uppercase;
  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;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  margin-left: -1rem;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: white;
  text-decoration: none;
  font-size: .6rem;
  padding: .25rem .5rem .25rem 1.5rem;
  white-space: nowrap;
}

.link-tab li:hover {
  -webkit-transform: scaleX(1.05);
          transform: scaleX(1.05);
}

.link-tab li:nth-child(1) {
  background-color: #950059;
  z-index: 4;
  padding-left: .5rem;
}

.link-tab li:nth-child(2) {
  background-color: #0076fd;
  z-index: 3;
}

.link-tab li:nth-child(3) {
  background-color: #e55600;
  z-index: 2;
}

.link-tab li:nth-child(4) {
  background-color: #ffa700;
  z-index: 1;
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.background-wrapper.background-wrapper-main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 80%;
  margin: auto;
  z-index: 1;
}

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

.background-wrapper.background-wrapper-main .welcome-message {
  text-align: center;
  margin-top: 2%;
  margin-bottom: 0;
}

.background-wrapper.background-wrapper-main .welcome-message .context-img {
  max-width: 80%;
}

.background-wrapper .main-front-background {
  height: auto;
  width: 100%;
  position: relative;
}

.background-wrapper .main-front-background picture img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  -webkit-box-reflect: below -20.4% linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  -webkit-animation: blur ease 1.5s;
          animation: blur ease 1.5s;
}

@media (orientation: portrait) {
  .main-background {
    background-size: contain;
  }
}

.pulse {
  background: rgba(4, 163, 255, 0.562);
  border-radius: 50%;
  height: 25%;
  width: 20%;
  position: absolute;
  left: 41%;
  top: 105%;
  -webkit-transform: rotateX(55deg);
          transform: rotateX(55deg);
  z-index: -2;
}

.pulse::after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  -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 dodgerblue;
          box-shadow: 0 0 1px 2px dodgerblue;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

/*
* Welcome Modal
*/
#welcomeModal .modal-content {
  background-image: url(../img/welcome_popup.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  height: 340px;
}

#welcomeModal .modal-content .continue {
  position: absolute;
  bottom: 13.533%;
  left: 31%;
  background-color: transparent;
  color: #fff;
  padding: 6px;
  width: 38%;
  height: 10%;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  border-radius: 20px;
}

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

.custom-modal, .modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 1050;
  height: 100%;
  width: 100%;
}

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

.custom-modal .modal-container .button, .modal .modal-container .button {
  width: 5%;
  height: 8%;
  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 .modal-container .button:nth-child(2n+0), .modal .modal-container .button:nth-child(2n+0) {
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}

.custom-modal .modal-body, .modal .modal-body {
  padding: 1vw;
}

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

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

.custom-modal .close img, .modal .close img {
  width: 3vw;
}

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

#plenaryModal .modal-content .continue {
  position: absolute;
  bottom: 17.9%;
  left: 31%;
  background-color: transparent;
  color: #fff;
  padding: 6px;
  width: 38%;
  height: 10%;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  border-radius: 20px;
}

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

/*
* Plenary Modal Pop Up -2
*/
#plenaryModal2 .modal-content {
  background-image: url(../img/plenary/popup-2.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: 17%;
  width: 7%;
  height: 10%;
  right: 1%;
  cursor: pointer;
}

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

#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%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  #imageprev {
    -o-object-fit: fill;
       object-fit: fill;
  }
}

@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) {
  #welcomeModal .modal-content {
    height: 200px;
  }
  #welcomeModal .modal-content .continue {
    width: 38%;
    height: 10%;
  }
}

@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: 1366px) {
  .background-wrapper.background-wrapper-main {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .link-tab {
    position: relative;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .link-tab {
    max-width: 100%;
    bottom: 0;
  }
}

@media (max-width: 1112px) and (orientation: landscape) {
  .link-tab {
    max-width: 80%;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .background-wrapper.background-wrapper-main .welcome-message .context {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .link-tab {
    max-width: 100%;
    bottom: 0;
    margin-top: -3rem;
  }
  .background-wrapper.background-wrapper-main {
    max-width: 80%;
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  #intro .mobile-portrait-message {
    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;
  }
  .background-wrapper.background-wrapper-main {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .background-wrapper.background-wrapper-main .welcome-message {
    max-width: 80%;
  }
  .background-wrapper.background-wrapper-main .welcome-message .context {
    font-size: 2.5rem;
  }
  .background-wrapper.background-wrapper-main .welcome-message .context-img {
    max-width: 100%;
  }
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-tab {
    position: relative;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    max-width: 80%;
    width: 80%;
    display: block;
    margin: 2rem auto;
    right: 0;
  }
  .link-tab li {
    margin: 1rem auto;
    padding: 2rem .5rem;
    line-height: 1;
    font-size: 1.5rem;
  }
  .play-button {
    right: 40px;
    top: 40px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .link-tab li {
    padding: .25rem .5rem .25rem 1.5rem;
    font-size: .5rem;
  }
}
/*# sourceMappingURL=veap.style.css.map */