@font-face {
  font-family: 'Pragmatica ExtraLight Reg';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/NestleTextVN/NestleTextVN-Book.otf") 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");
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.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;
  }
}

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

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

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

.login h3 {
  margin-bottom: 0;
}

.login .login-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: white;
  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;
  -webkit-animation: blur ease 1s;
          animation: blur ease 1s;
}

.login.show {
  display: block;
}

.login #loginErrMsg {
  visibility: hidden;
}

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

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

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

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

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

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

.platform-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #1f5239;
  z-index: 1051;
  background: url(../img/interior-bg.jpg) center/cover no-repeat;
}

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

.main .button {
  width: 5%;
  height: 6%;
  -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, .main .button-packaging1 {
  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;
  z-index: 2;
}

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

@-webkit-keyframes blur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

#player2 {
  display: contents;
}

#player2 iframe {
  background: url(../img/interior-bg.jpg) center/cover no-repeat;
}

.pulse {
  background: rgba(248, 248, 248, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 38%;
  bottom: -11%;
  -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(44, 152, 31, 0.9);
  border-radius: 50%;
  position: absolute;
  left: 41.7%;
  bottom: -15%;
  -webkit-transform: rotateX(55deg);
  transform: rotateX(55deg);
  z-index: -2;
  height: 23%;
  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;
}

#welcomeModal .modal-content .continue {
  position: absolute;
  top: -2%;
  right: -2%;
  /* background-color: transparent; */
  color: #fff;
  padding: 6px;
  width: 4%;
  height: 6%;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  border-radius: 4px;
  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-color: #d40001;
}

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

#packaging_BeingAKasambuhayForTheEnvironmentModal .modal-content .guides {
  position: absolute;
  width: 20.5%;
  height: 6%;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#packaging_BeingAKasambuhayForTheEnvironmentModal .modal-content .guides#guidesForParents {
  left: 76.7%;
  top: 50%;
}

#packaging_BeingAKasambuhayForTheEnvironmentModal .modal-content .guides#guidesForTeens {
  left: 76.7%;
  top: 60%;
}

.main-header {
  position: fixed;
  top: 10%;
  right: 5%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-header .counter-container {
  border-radius: 15px;
  margin-right: .5rem;
  background-color: green;
  cursor: pointer;
}

.main-header .counter-container #timerCounter {
  color: #fff;
  text-align: center;
  padding: 0 1rem;
  border-radius: 16px;
}

.main-header .play-button {
  height: 38px;
  width: 100px;
  z-index: 2;
  background-color: white;
  border-radius: 50px;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: bold;
  color: dimgray;
  border: 1px solid #1f5239;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.main-header .play-button svg {
  width: 38px;
  height: 38px;
  fill: #1f5239;
}

.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: 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;
  z-index: 2;
}

.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;
  max-height: 90vh;
  overflow: hidden;
}

#photoBoothModal .modal-content .modal-body {
  max-height: 90vh;
}

#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 .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%;
  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;
  }
  #emp_id {
    font-size: .75rem;
  }
}

@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: 991px) and (orientation: landscape) {
  #packaging_BeingAKasambuhayForTheEnvironmentModal .modal-title {
    font-size: 1.2rem !important;
  }
  #packaging_BeingAKasambuhayForTheEnvironmentModal .modal-content .guides:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .custom-modal .close {
    margin-top: 40px;
  }
}

@media (max-width: 991px) and (orientation: portrait) {
  .main-header {
    zoom: .5;
  }
  .main-header .play-button {
    padding: 0 .25rem;
  }
  .join-us-text {
    font-size: 1.2rem;
  }
  .agreement-text {
    text-align: justify;
  }
  #emp_id {
    font-size: .75rem;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  #welcomeModal {
    zoom: .65;
  }
  .modal-secondary .modal-header .modal-title {
    font-size: 1rem;
  }
  .main-header {
    zoom: .5;
  }
  .main-header .play-button {
    padding: 0 .25rem;
  }
}

@media (max-width: 575.98px) {
  #welcomeModal {
    zoom: .65;
  }
}

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

.tooltip-inner {
  background-color: green !important;
  color: #fff;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  border-top-color: green  !important;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  border-right-color: green  !important;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: green  !important;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  border-left-color: green  !important;
}

.main-footer {
  position: fixed;
  bottom: 13%;
  right: 2%;
  max-height: 100%;
  min-height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1051;
}

.chat-container {
  position: relative;
}

#iframeDisplay {
  min-height: 300px;
  -webkit-animation: blur ease 1s;
          animation: blur ease 1s;
  display: none;
}

#iframeDisplay.show {
  display: block;
}

#iframeDisplay iframe {
  min-height: 400px;
}

.chat-icon {
  background-color: #1f5239;
  padding: .5rem;
  display: none;
}

.chat-icon.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intercom-rkaeus {
  position: absolute;
  bottom: -18%;
  right: 0px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  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;
}

.intercom-dlvlg4 svg path, .intercom-crher1 svg path {
  fill: white;
}

.intercom-dlvlg4 {
  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;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  -webkit-transition: opacity 0.08s linear 0s, -webkit-transform 0.16s linear 0s;
  transition: opacity 0.08s linear 0s, -webkit-transform 0.16s linear 0s;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s, -webkit-transform 0.16s linear 0s;
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intercom-crher1 {
  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;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  -webkit-transition: opacity 0.08s linear 0s, -webkit-transform 0.16s linear 0s;
  transition: opacity 0.08s linear 0s, -webkit-transform 0.16s linear 0s;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s, -webkit-transform 0.16s linear 0s;
  opacity: 0;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

@media screen and (max-width: 991px) and (orientation: landscape) {
  .chat-container {
    max-height: 50vh;
  }
  #iframeDisplay iframe {
    min-height: 300px;
  }
}
/*# sourceMappingURL=nestle.style.css.map */