html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  font-family: "Helvetica", sans-serif !important;
  font-size: 14px;
  background: url(../images/vivim-bg.png) repeat-y;
  background-size: cover;
}

@media only screen and (-o-min-device-pixel-ratio: 5/4),
  only screen and (-webkit-min-device-pixel-ratio: 1.25),
  only screen and (min--moz-device-pixel-ratio: 1.25),
  only screen and (min-device-pixel-ratio: 1.25),
  only screen and (min-resolution: 1.25dppx) {
  body {
    background: url(../images/vivim-bg@2x.png) repeat-y;
    background-size: cover;
  }
}

* {
  box-sizing: border-box;
}

/* Main structire */

.mainContainer {
  height: 100vh;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-item-left {
  padding: 0px 0px 0px 40px;
  flex: 30%;
}

.flex-item-right {
  padding: 0px 100px 60px 40px;
  flex: 70%;
}

.flex-item-left-buttons-container {
  display: flex;
  height: calc(100vh - 350px);
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 80px;
}

.flex-button-container {
  display: flex;
  flex-direction: column;
}

.flex-button-container-item {
  flex: 30%;
  flex-grow: 0;
  width: 275px;
}

/* Nav bar / Header */

.header {
  justify-content: space-between;
  display: flex;
  width: 100%;
}

.headerContainer {
  margin: 0;
  overflow: hidden;
}

.vivimLogo {
  width: 176px;
  margin: 31px 0px 60px 36px;
}

.navbarButton {
  margin: 10px 14px;
  text-align: right;
}

.openNavBtn {
  cursor: pointer;
  background: url("../images/icons/menu-off.svg") no-repeat;
  background-size: 52px 54px;
  height: 54px;
  width: 52px;
  padding: 10px 15px;
  border: none;
}

.openNavBtn:hover {
  background: url("../images/icons/menu-over.svg") no-repeat;
}

.mainContentText {
  margin: 0 0 30px 0;
}

/* Fonts */

.fontHelveticaNueBold {
  font-family: "HelveticaNeue-Bold", sans-serif;
  font-size: 30px;
}
.fontHelveticaNue {
  font-family: "HelveticaNeue", sans-serif;
  line-height: 1.36;
  letter-spacing: 0.3px;
}
.fontHelveticaBold {
  font-family: "Helvetica-Bold", sans-serif;
}

/* Side Panel */

.sidepanel {
  width: 377px;
  position: fixed;
  z-index: 3;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #191919;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidepanel a {
  padding: 8px 8px 8px 0px;
  color: #f3f3f3;
  display: block;
  transition: 0.3s;
}

.sidepanel p {
  color: #f3f3f3;
  line-height: 20px;
}

.sidepanel .contact {
  padding-bottom: 24px;
}

.sidepanel a:hover {
  color: #f1f1f1;
}

.sidepanel .logo {
  width: auto;
  height: 30px;
}

.sidepanel .vivimConsorci {
  padding-top: 51px;
  padding-right: 54px;
}

.sidepanel .vivimFinacament {
  padding-top: 40px;
  padding-right: 54px;
}

.sidepanel .closeNavBtn {
  cursor: pointer;
  background: url("../images/icons/close-off.svg") no-repeat;
  background-size: 24px 24px;
  border: none;
  position: fixed;
  top: 34px;
  right: 28px;
}

.sidePanelClosed .closeNavBtn {
  display: none;
}

td {
  width: 200px;
  height: 80px;
}

.sidePanelOpen {
  /* width: 377px; */
  right: 0;
}

.sidePanelClosed {
  /* width: 0px; */
  right: -377px;
}

.closeNavBtn {
  cursor: pointer;
  background: url("../images/icons/close-off.svg") no-repeat;
  background-size: 24px 24px;
  height: 24px;
  width: 24px;
  padding: 10px 15px;
  border: none;
}

.closeNavBtn:hover {
  background: url("../images/icons/close-over.svg") no-repeat;
}

.vivimLogoSidepanel {
  width: 143px;
  height: 48px;
  margin-bottom: 59px;
}

/* Player buttons */

.enlargePlayerBtn {
  border-radius: 15px;
  color: #000;
  text-align: left;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin: 5px 5px !important;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  color: white;
  border: solid 1px transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      to bottom,
      #0060c6,
      #0078cb 20%,
      #0e9be0 42%,
      #1fb6ed 64%,
      #4abdee 84%,
      #75caf4
    );
  background-origin: border-box;
  background-clip: content-box, border-box;

  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;

  height: 54px;
  width: 52px;
}

.enlargePlayerBtn::before {
  content: url("../images/icons/enlarge-off.svg");
  position: relative;
  right: 7px;
  top: -1px;
}

.enlargePlayerBtn:hover::before {
  content: url("../images/icons/enlarge-over.svg");
  position: relative;
  right: 7px;
  top: -1px;
}

.mutePlayerBtn {
  border-radius: 15px;
  color: #000;
  text-align: left;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin: 5px 5px !important;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  color: white;
  border: solid 1px transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      to bottom,
      #0060c6,
      #0078cb 20%,
      #0e9be0 42%,
      #1fb6ed 64%,
      #4abdee 84%,
      #75caf4
    );
  background-origin: border-box;
  background-clip: content-box, border-box;

  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;

  height: 54px;
  width: 52px;
}

.mutePlayerBtn::before {
  content: url("../images/icons/sound-off.svg");
  position: relative;
  right: 7px;
  top: -1px;
}

.mutePlayerBtn:hover::before {
  content: url("../images/icons/sound-over.svg");
  position: relative;
  right: 7px;
  top: -1px;
}

.mutedPlayerBtn {
  border-radius: 15px;
  color: #000;
  text-align: left;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin: 5px 5px !important;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  color: white;
  border: solid 1px transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      to bottom,
      #0060c6,
      #0078cb 20%,
      #0e9be0 42%,
      #1fb6ed 64%,
      #4abdee 84%,
      #75caf4
    );
  background-origin: border-box;
  background-clip: content-box, border-box;

  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;

  height: 54px;
  width: 52px;
}

.mutedPlayerBtn::before {
  content: url("../images/icons/mute-off.svg");
  position: relative;
  right: 7px;
  top: -1px;
}

.mutedPlayerBtn:hover::before {
  content: url("../images/icons/mute-over.svg");
  position: relative;
  right: 7px;
  top: -1px;
}

.fullScreen .mutePlayerBtn {
  position: fixed;
}

.fullScreen .mutedPlayerBtn {
  position: fixed;
}

/* Form Button */

.form {
  display: block;
  position: absolute;
  bottom: 140px;
}

.formMobile {
  display: none;
}

.formbtn,
.formMobileBtn {
  padding: 15px 40px 12px 24px;
  border-radius: 25px;
  font-size: 12px;
  color: #000;
  text-align: left;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin: 5px 5px !important;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  color: #f5fbff;
  border: solid 1px transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      to bottom,
      #0060c6,
      #0078cb 20%,
      #0e9be0 42%,
      #1fb6ed 64%,
      #4abdee 84%,
      #75caf4
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  width: 275px;
}

.formbtn::before {
  content: url("../images/icons/form-off.svg");
  position: absolute;
  left: 24px;
  top: 20px;
  padding-right: 10px;
}

.formMobileBtn::before {
  content: url("../images/icons/form-off.svg");
  position: absolute;
  left: 24px;
  padding-right: 10px;
}

.formbtn:hover,
.formMobileBtn:hover {
  box-shadow: 2px 1000px 1px #fff inset;
  color: #000;
}

.formbtn:hover::before {
  content: url("../images/icons/form-over.svg");
  position: absolute;
  left: 24px;
  top: 20px;
  padding-right: 10px;
}

.formMobileBtn:hover::before {
  content: url("../images/icons/form-over.svg");
  position: absolute;
  left: 24px;
  padding-right: 10px;
}

.formButtonTitle {
  margin: 0 0 3px 45px;
}

.formButtonCaption {
  font-size: 12px;
  margin-left: 45px;
  font-weight: 300;
}

/* Camera buttons */

.camerabtn {
  padding: 10px 32px 14px 21px;
  border-radius: 25px;
  font-size: 15px;
  color: #000;
  text-align: left;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin: 5px 5px !important;
  text-decoration: none;
  cursor: pointer;
  border: solid 1px transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      to bottom,
      #0060c6,
      #0078cb 20%,
      #0e9be0 42%,
      #1fb6ed 64%,
      #4abdee 84%,
      #75caf4
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
}

.camerabtn:not(.camerabtn360)::before {
  content: url("../images/icons/camera-off.svg");
  position: relative;
  left: 0px;
  top: 5px;
  padding-right: 20px;
}

.camerabtn:hover {
  box-shadow: none;
  color: white;
}

.camerabtn:not(.camerabtn360):hover::before {
  content: url("../images/icons/camera-over.svg");
  position: relative;
  left: 0px;
  top: 5px;
  padding-right: 20px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.camerabtn:disabled,
.camerabtn[disabled],
.camerabtn:disabled,
.camerabtn[disabled] {
  pointer-events: none;
  cursor: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(to bottom, #444, #555);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ccc inset;
}

.camerabtn360::before {
  content: url("../images/icons/360-off.svg");
  position: relative;
  left: 0px;
  top: 3px;
  padding-right: 10px;
}

.camerabtn360:hover::before {
  content: url("../images/icons/360-over.svg");
  position: relative;
  left: 0px;
  top: 5px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.cameraBtnSelected {
  box-shadow: none;
  color: white;
}

.camerabtn.cameraBtnSelected::before {
  content: url("../images/icons/camera-over.svg");
  position: relative;
  left: 0px;
  top: 3px;
}

.camerabtn360.cameraBtnSelected::before {
  content: url("../images/icons/360-over.svg");
  position: relative;
  left: 0px;
  top: 5px;
}

.cameraTitle {
  display: inline-block;
}

/* START 2 */

h1 {
  font-size: 30px;
  margin-bottom: 24px;
  margin-top: 0px;
}

/* Side Panel Overlay */

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  cursor: pointer;
}

.overlayOpen {
  display: block;
}

.overlayClosed {
  display: none;
}

.playerContainer {
  position: relative;
  height: 0;
  max-height: 100px;
  padding-top: 56.25%;
}

.fullScreen .playerContainer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: unset;
  z-index: 1;
}
.iframePlayer {
  background-color: #292929;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.buttonsFullScreen {
  position: absolute;
  left: 30px;
  top: 40%;
  display: none;
  z-index: 1;
}

.fullScreen {
  overflow: hidden;
}

.buttonsNormal {
  display: flex;
}
.fullScreen .buttonsNormal {
  display: none;
}

/* Footer */

.flex-container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #292929;
  color: #828282;
  padding: 21px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.footerImageList {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.footerImageList li {
  display: inline-block;
  padding: 5px 12px;
}

.footerImageList li img {
  height: 24px;
}

.fullScreen .flex-container-footer {
  display: none;
}

.fullScreen .buttonsFullScreen {
  display: flex;
}
.fullScreen .iframePlayer {
  height: 100vh;
}

.fullScreen .enlargePlayerBtn {
  position: fixed;
  transform: rotate(180deg);
}

.disabled {
  pointer-events: none;
  cursor: none;
}

.buttonsFullScreenMobile {
  display: none;
  position: absolute;
  bottom: 16px;
  right: 65px;
  z-index: 4;
  padding-left: 40px;
}

.noscroll {
  overflow: hidden;
}

@media screen and (max-width: 1280px), screen and (max-height: 918px) {
  body {
    margin: 0px !important;
  }

  .flex-item-right,
  .flex-item-left {
    flex: 100%;
  }

  .flex-item-left {
    padding: 0px 16px;
  }

  .flex-item-right {
    padding: 20px 16px;
  }

  .flex-container-footer {
    position: relative;
  }

  .flex-button-container-item {
    width: unset;
  }

  .flex-button-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .flex-item-left-buttons-container {
    padding-bottom: 0px;
    height: unset;
  }

  .cameraTitle {
    display: none;
  }

  .fullScreen .buttonsFullScreen {
    position: absolute;
    top: 20px;
  }

  .form {
    display: none;
  }

  .formMobile {
    display: block;
    position: relative;
    padding-top: 30px;
  }

  .fullScreen .buttonsFullScreen {
    display: none !important;
  }

  .fullScreen .buttonsFullScreenMobile {
    display: flex;
    flex-direction: row;
    position: fixed;
  }

  .camerabtn,
  .camerabtn360 {
    padding: 2px 8px 8px 12px;
  }

  .enlargePlayerBtn {
    width: 36px;
    height: 36px;
    right: 16px;
    bottom: 16px;
    border-radius: 25px;
  }

  .enlargePlayerBtn::before {
    content: url("../images/icons/enlarge-mobile-off.svg");
  }

  .enlargePlayerBtn:hover::before {
    content: url("../images/icons/enlarge-mobile-over.svg");
  }

  .mutePlayerBtn {
    width: 36px;
    height: 36px;
    left: 16px;
    bottom: 16px;
    border-radius: 25px;
  }

  .mutePlayerBtn::before {
    content: url("../images/icons/sound-mobile-off.svg");
  }

  .mutePlayerBtn:hover::before {
    content: url("../images/icons/sound-mobile-over.svg");
  }

  .mutedPlayerBtn {
    width: 36px;
    height: 36px;
    left: 16px;
    bottom: 16px;
    border-radius: 25px;
  }

  .mutedPlayerBtn::before {
    content: url("../images/icons/mute-mobile-off.svg");
  }

  .mutedPlayerBtn:hover::before {
    content: url("../images/icons/mute-mobile-over.svg");
  }
}

@media (max-width: 900px) {
  .buttonsFullScreenMobile .camerabtnMobile {
    padding: 2px 8px 8px 12px;
  }

  .buttonsFullScreenMobile .camerabtn360::before,
  .buttonsFullScreenMobile .camerabtn::before {
    padding-right: 0px;
  }
}

@media (max-width: 400px) {
  .sidePanelOpen {
    width: 100%;
  }
}

@media only screen and (orientation: landscape) {
  #warning-message {
    display: none;
  }
}

#warning-message {
  display: none;
}

@media only screen and (orientation: portrait) and (max-width: 600px) {
  .fullScreen body {
    overflow: hidden;
  }
  .fullScreen #warning-message {
    position: fixed;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 9999;
    color: #fff;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    background-color: #212121;
  }
  .fullScreen .warning-message-text {
    height: 100%;
    width: 100%;
    text-align: center;
    font-family: RobotoRegular;
    font-size: 1.5rem;
    color: #fff;
  }
  .fullScreen .image {
    background: #212121;
    width: 100%;
    height: 100%;
  }

  .fullScreen .image-contain {
    object-fit: contain;
    object-position: center;
  }
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.d-flex {
  display: flex !important;
}

@supports (-webkit-touch-callout: none) {
  
  .enlargePlayerBtn::before {
    content: url("../images/icons/enlarge-mobile-off.svg");
    position: relative;
    right: 12px;
    top: -1px;
  }

  .enlargePlayerBtn:hover::before {
    content: url("../images/icons/enlarge-mobile-over.svg");
    position: relative;
    right: 12px;
    top: -1px;
  }

  .mutePlayerBtn::before {
    content: url("../images/icons/sound-mobile-off.svg");
    position: relative;
    right: 12px;
    top: -1px;
  }

  .mutePlayerBtn:hover::before {
    content: url("../images/icons/sound-mobile-over.svg");
    position: relative;
    right: 12px;
    top: -1px;
  }

  .mutedPlayerBtn::before {
    content: url("../images/icons/mute-mobile-off.svg");
    position: relative;
    right: 12px;
    top: -1px;
  }

  .mutedPlayerBtn:hover::before {
    content: url("../images/icons/mute-mobile-over.svg");
    position: relative;
    right: 12px;
    top: -1px;
  }

}
