/*! 
    Theme Name: CecoEnviro-EMEA,
    Version: 1.0.2
*/

html,
body {
  font-family: 'HelveticaNeue';
  padding: 0;
  margin: 0;
  position:relative;
  /* overflow: hidden; */
}

/* .container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
} */

/* Player */
.player {
  width: 100%;
  height: 56.25%; /* 16:9 ratio */
  min-width: 900px; /* menu stays at the bottom. works with min-width but not min-height. why? */
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden; 
}

video {
  display: none;
  transition: transform 1s ease;
}

#videos {
  transition: transform 1.5s ease;
}

.hidden {
  display: none;
}

#player-menu,
#sewage_treatment_menu,
#produced_water_menu,
#process_water_menu,
#gas_processing_menu,
#oil_production_menu,
#powerplant-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.title-container {
  position: absolute;
  bottom: 0;
  background: #3c568a;
  padding: 2em;
  -webkit-transition: bottom 0.5s;
  transition: bottom 0.5s;
  width: 30%;
  height: 7%;
  border-radius: 1em;
  text-decoration: none;
  text-align: center;
}
.title-container .title {
  color: #fff;
  mix-blend-mode: normal;
}
.title-container.left {
  left: 10%;
}
.title-container.right {
  right: 10%;
}

/* Clickable buildings----------------------------------------------- */
.buildings {
  display: none;
  cursor: pointer;
}

.buildings .donut {
  position: absolute;
  border-radius: 50%;
  animation: pulse-red 2s infinite;
  /* background: rgba(255, 255, 255, 0.3); */
  background-color: white;
  opacity: 0.7;
  height: 60px;
  width: 60px;
  border: 20px solid #3c568a;
  visibility: hidden;
}

.buildings .sewage_treatment:hover .donut {
  visibility: visible;
}

.buildings .oil_production:hover .donut {
  visibility: visible;
}

.buildings .produced_water:hover .donut {
  visibility: visible;
}

.buildings .process_water:hover .donut {
  visibility: visible;
}

.buildings .gas_processing:hover .donut {
  visibility: visible;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(60, 86, 128, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(60, 86, 128, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(60, 86, 128, 0);
  }
}

.buildings .sewage_treatment {
  height: 8%;
  width: 8%;
  position: absolute;
  top: 15%;
  left: 57%;
}

.buildings .produced_water {
  height: 14%;
  width: 14%;
  position: absolute;
  top: 26%;
  left: 31%;
}

.buildings .process_water {
  height: 15%;
  width: 15%;
  position: absolute;
  top: 35%;
  left: 10%;
}

.buildings .oil_production {
  height: 25%;
  width: 15%;
  position: absolute;
  top: 30%;
  left: 50%;
}

.buildings .gas_processing {
  height: 30%;
  width: 25%;
  position: absolute;
  top: 43%;
  left: 65%;
}

/* Menu ------------------------------------------------------------- */
.menu_container {
  position: absolute;
  top: 0.2em;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
  width: 100%;
  height: auto;
  display: none;
  left: 0.75%;
  font-family: 'Roboto', sans-serif;
}

.menu_button_container {
  width: 16%;
  height: auto;
  min-height: 75px;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.menu_button {
  background: #3c568a;
  -webkit-transition: bottom 0.5s;
  transition: bottom 0.5s;
  text-decoration: none;
  text-align: center;
  width: 19.5%;
  height: auto;
  min-height: 75px;
  display: inline-block;
  cursor: pointer;
  padding-top: 1em;
  padding-bottom: 1em;
}

.filler {
  user-select: none;
  color: #ffffff;
}

/* .icon-box {
  box-sizing: border-box;
  background: #88b14b;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  top: -25px;
  left: calc(50% - 25px);
  padding: 10px;
} */

.icon {
  max-width: 30px;
  height: auto;
  max-height: 30px;
}

.menu_button .title {
  color: #fff;
  mix-blend-mode: normal;
  word-wrap: break-word;
}
.menu_button.left {
  left: 10%;
}
.menu_button.right {
  right: 10%;
}

/* ----Item Menus ------------------------------------------------------------------- */
#sewage_treatment_menu,
#oil_production_menu,
#produced_water_menu,
#process_water_menu,
#oil_production_menu,
#gas_processing_menu,
#powerplant-menu {
  text-align: right;
  overflow: hidden;
  background: #3c568a;
  display: none;
  width: 35%;
  left: 65%;
  height: 99.1%;
}

.pill_button {
  display: inline-block;
  text-decoration: none;
  background: #88b14b;
  border: none;
  border-radius: 3em;
  color: #fff;
  padding: 0.3em;
  cursor: pointer;
  width: 40%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.industry_link {
  color: white !important;
}

.info-box {
  box-sizing: border-box;
  color: #fff;
  height: 100%;
  text-align: left;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.info-box .industry_title {
  padding: 1em;
  background: rgba(0, 0, 0, 0.1);
}
.info-box .body {
  padding: 0.7em;
}
.info-box h4 {
  margin: 0.25em 0;
  color: #88b14b;
}
.info-box .description {
  text-align: left;
  font-size: x-large;
  font-family: 'Helvetica-Condensed';
}
.info-box .subtitle {
  font-family: 'Myriad Pro';
}
.info-box .pic-box {
  margin: 1em 0;
  padding: 0.5em;
}
.info-box .footer {
  position: absolute;
  bottom: 1em;
  width: 100%;
}
.info-box .footerTest {
  position: absolute;
  display: inline-block;
}
.info-box .footer .btn {
  width: 90%;
  margin: 0 0.5%;
  text-align: center;
  bottom: 0;
  position: absolute;
  cursor: pointer;
}
.info-box .btn {
  display: inline-block;
  text-decoration: none;
  background: #88b14b;
  border: none;
  border-radius: 3em;
  color: #fff;
  padding: 0.6em;
  cursor: pointer;
  width: 40%;
  text-align: center;
}
.info-box .btn:hover {
  background: #99c25c;
}
.info-box .back-btn {
  background: rgba(110, 97, 97, 0.08);
}
.info-box .back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.advantages {
  padding: 10px;
  margin: 0.5em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  transition: transform 1s;
  font-weight: normal !important;
  max-height: 63%;
  overflow-y: auto;
}
.advantages .main {
  font-weight: bold;
}
.advantages .sub {
  font-weight: normal !important;
}

/* panel buttons ------------------------------------------------------------------ */
.panel_btn {
  margin-left: 10px;
  padding-bottom: 5px;
}

.panel_btn .circle_hidden {
  /* visibility: hidden; */
  height: 10px;
  width: 10px;
}

.panel_btn .circle_shown {
  background-color: #88b14b;
  height: 5px;
  width: 10px;
  border-radius: 10px;
  visibility: visible;
}

.panel_btn:hover .circle {
  visibility: visible;
}

.panel_btn:active .circle {
  visibility: visible;
}

.panel_btn .circle {
  background-color: #88b14b;
  height: 5px;
  width: 10px;
  border-radius: 10px;
  visibility: hidden;
}

.panel_btn .description {
  display: inline-block;
  padding-left: 5px;
  line-height:normal;
}

.panel_btn_container {
  position: absolute;
  background: white;
  width: 25%;
  padding: 5px !important;
  color: #3c568a;
  border-radius: 2em;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-weight: normal !important;
}

/* panel header ------------------------------------------------------------------ */
.panel_header {
  padding: 1em;
  background: rgb(75, 99, 147) !important;
  /* background: black !important; */
  text-align: center;
}

/* product panel -------------------------------------------------------------------- */
.product_panel {
  text-align: left;
  overflow: hidden;
  background: #ffffff;
  display: none;
  width: 35%;
  left: 65%;
  height: 100%;
  position: absolute;
  top: 0;
  color: #3c568a;
}

.panel_title {
  padding: 20px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: x-large;
  font-family: 'Helvetica-Condensed';
}

.panel_description {
  padding-top: 10px;
  font-weight: normal !important;
  padding: 1em;
  overflow-y: auto;
  height: 45%;
}

.panel_video_container {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 35.5%;
}

.panel_video {
  width: 100%;
  height: auto;
  display: block !important;
}

#pump_original {
  display: block;
}

#pump_reversed {
  display: none;
}

.crop {
  width: 100%;
  height: 15%;
  overflow: hidden;
}

.crop img {
  width: 100%;
  height: 300px;
  margin: -120px 0 0 0;
}

#collapseAllPanelsBtn {
  position: absolute;
  left: 43%;
  top: 3%;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  border: solid #88b14b;
  cursor: pointer;
}

.arrow {
  border: solid #88b14b;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  left: 42%;
  top: 35%;
}

.video_arrow_left {
  border: solid #3f413d;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  left: 5%;
  top: 40%;
  width: 25px;
  height: 25px;
}

.video_arrow_right {
  border: solid #3f413d;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  right: 5%;
  top: 40%;
  width: 25px;
  height: 25px;
}

.footer_button_container {
  padding: 1em;
  text-align: center;
}
