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

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

.fade-blur {
  -webkit-animation: blur ease 1s;
          animation: blur 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 .button-primary.bounce, .main .button-photobooth.bounce, .main .button-plenary.bounce, .main .button-game.bounce, .main .button-concierge1.bounce, .main .button-sourcing1.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 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);
  }
}

.preloader {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  background-color: white;
  cursor: progress;
  display: none;
}

.preloader.show {
  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;
}

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

.preloader .dot-container .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #e6bdca;
}

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

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

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

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

body {
  font-family: 'Pragmatica ExtraLight Reg';
  background-color: #000000;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

.intro.show {
  display: block;
}

.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 .skip-flythrough {
  position: absolute;
  top: 8%;
  right: 2%;
  z-index: 2;
  height: 5%;
  width: 6%;
  background: url(../img/skip-button.png) center/contain no-repeat;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

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

.login {
  background-color: #000;
  position: fixed;
  height: 100%;
  width: 100%;
  display: none;
  cursor: pointer;
}

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

.login.show {
  display: block;
}

.login #loginErrMsg {
  visibility: hidden;
}

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

.login .background-img {
  position: absolute;
  top: -4%;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../img/respicare-landing-bg.jpg) center/contain no-repeat;
  background-color: #fff;
}

.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-container {
  height: auto;
  width: 100%;
  position: relative;
  overflow-y: scroll;
}

.background-wrapper .background-container picture img {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.loader {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#loaderModal {
  cursor: url("../img/cursor.png"), pointer;
}

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

#loaderModal .dot-container .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: dodgerblue;
}

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

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

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

#loaderModal .tagline h4 {
  font-weight: 600;
}

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

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

.main.show {
  display: block;
}

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

.main .button-primary, .main .button-photobooth, .main .button-plenary, .main .button-game, .main .button-concierge1, .main .button-sourcing1 {
  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;
}

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

#player2 {
  display: contents;
}

.pulse {
  background: rgba(4, 163, 255, 0.562);
  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: 33px;
  width: 35px;
  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 #d2d2d2;
          box-shadow: 0 0 1px 2px #d2d2d2;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.pulse2 {
  background: rgba(4, 163, 255, 0.562);
  border-radius: 50%;
  position: absolute;
  left: 46.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: 35px;
  position: absolute;
  margin: -13px 0 0 -13px;
  -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 #2c981fe6;
          box-shadow: 0 0 1px 2px #2c981fe6;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

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

#welcomeModal .modal-content .continue {
  position: absolute;
  top: 80.3%;
  left: 32%;
  background-color: transparent;
  color: #fff;
  padding: 6px;
  width: 36%;
  height: 9%;
  -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;
}

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

.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;
  -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: 10%;
  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.show, .modal.show {
  display: block;
}

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

/*
* 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;
}

/*
* 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;
  overflow: hidden;
}

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

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

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

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

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

#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: cover;
     object-fit: cover;
}

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

@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 .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;
  }
  .custom-modal .close {
    margin-top: 40px;
  }
  .intro .skip-flythrough {
    top: 20%;
  }
}

@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;
  }
  #welcomeModal .modal-content .modal-body {
    -webkit-transform: scale(0.5) translateX(50px);
            transform: scale(0.5) translateX(50px);
  }
}

@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 (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;
  }
}
/*# sourceMappingURL=veap.style.css.map */