@font-face {
    font-family: 'cdaFontBold';
    src: url('fonts/Montserrat-Bold.otf'); /*URL to font*/
}
@font-face {
    font-family: 'cdaFont';
    src: url('fonts/Montserrat-Regular.otf'); /*URL to font*/
}

body{
  margin: 0px;
  padding: 0px;
}

div.tooltipCanvas{
  background: rgba(0, 0, 0, 0.85);
  color: #F0F0F0;
  height: 400px;
  width: 400px;
  padding: 40px;
  font-family: Arial;
}
span.tooltipTitle{
  font-size: 32px;
  display:block;
  width:340px;
  word-wrap:break-word;
}
p.tooltipDescription{
  font-size: 24px;
  text-align: justify;
}

.menuButtonInline{
  cursor: pointer;
  text-align: center;
  cursor: pointer;
}
.menuButtonInline img{
  height: 60px;
  width: 60px;
  margin-left: 10px;
  margin-right: 10px;
}
.menuButtonInline span{
  color: white;
  font-family: "cdaFont";
  display: inline-block;
}

#menu_button_screen_container{
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(0, 0, 0, 0.61); */
  /* background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); */
  /* background-image: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)) */
}
#menu_button_screen img{
  width: 40px;
  height: 40px;
}
#menu_open_buttons_container{
  display: flex;
}
/* mobile landscape */
@media only screen and (orientation:landscape) and (max-height : 640px) {
  #menu_open_buttons_container{
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
  }
  #menu_button_screen_container{
    right: 0px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
}
/* mobile portrait */
@media only screen and (orientation:portrait) and (max-width : 640px) {
  .menuButtonInline{
    margin: 10px;
  }
  #menu_open_buttons_container{
    width: 100%;
    justify-content: space-evenly;
  }
  #menu_button_screen_container{
    bottom: 0px;
    width: 100%;
    /* height: 60px; */
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    align-content: space-around;
    background-color: rgba(0, 0, 0, 0.4);
  }
  #menu_button_screen{
    margin: 0px;
  }
}
/* desktop */
@media only screen and (min-width : 640px) and (min-height : 640px) {
  .menuButtonInline{
    margin: 10px;
  }
  #menu_open_buttons_container{
    background-color: rgba(0, 0, 0, 0.61);
    margin-bottom: 20px;
    justify-content: center;
  }
  #menu_button_screen_container{
    bottom: 0px;
    margin-left: calc(50vw - 80px);
    flex-direction: row;
  }
  #menu_button_screen{
    padding-left: 40px;
    padding-right: 40px;
    margin: 0px;
  }
}

.topMargin{
  height: 60px;
}
.bottomMargin{
  height: 20px;
}
.initDiv{
  background: url("images/background/1.jpg") no-repeat center center fixed;
  background-size: 200vw;
  width:100%;
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 0.5s linear;
}
.initDiv > img{
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 200px;
}
.cda_init_title{
  text-align: center;
  font-size: 5.8vh;
  color: #2d9898;
  font-family: "cdaFont";
}
.cda_init_subtitle{
  text-align: center;
  font-size: 5.8vh;
  color: white;
  font-family: "cdaFont";
  margin: 10px;
}

.po_sidePanel, .po_fakePanel{
  height: 100%;
}
.po_sidePanel{
  background: url("images/img centro.png") no-repeat center center fixed;
  filter: blur(50px);
  transform: scale(1.5);
}
.po_fakePanel{
  width: 100vw;
  
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .po_fakePanel > div{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 15%;
  margin-bottom: 15%;
} */
.po_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 20%;
  margin-bottom: 15%;
  color: white;
  font-family: "cdaFontBold";
}
.po_title img{
  width: 80%;
  margin: 30px 0;
}
.insta {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.insta img{
  width: 100%;
}
#instagif {
  width: 70%;
  padding-top: 6rem;
}
.startButton{
  color: white;
  background-color: #19a7e0;
  font-family: "cdaFontBold";
  border: 2px;
  border-style: solid;
  border-color: #19a7e0;
  border-radius: 10px;
  width: 80%;
  height: 50px;
  /* padding: 20px; */
  /* padding-top: 20px;
  padding-bottom: 20px; */
}
.startButton:hover{
  border: 2px;
  border-style: solid;
  border-color: #1c7fac;
  border-radius: 10px;
  cursor: pointer;
  background-color: #1c7fac;
  color: white;
}

/* mobile portrait */
@media only screen and (orientation:portrait) and (max-width : 640px) {
  .initDiv{
    background: url("images/bg_vertical.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .po_fakePanel > div > span{
    font-size: 2.5vw;
  }
  .po_sidePanel, .po_fakePanel{
    width: 100%;
  }
  .po_fakePanel{
    justify-content: space-between;
  }
  .po_title, .startButton{
    font-size: 1em;
  }
}
/* mobile landscape */
@media only screen and (orientation:landscape) and (max-height : 640px) {
  .po_fakePanel > div > span{
    font-size: 0.95vw;
  }
  .po_sidePanel, .po_fakePanel{
    width: 40%;
  }
  .po_fakePanel{
    justify-content: space-between;
  }
  .po_title{
    font-size: 0.5em;
  }
  /* .startButton{
    padding-top: 10px;
    padding-bottom: 25px;
  } */
}
/* desktop */
@media only screen and (min-width : 640px) and (min-height : 640px) {
  .po_fakePanel > div > span{
    font-size: 0.75vw;
  }
  .po_sidePanel, .po_fakePanel{
    width: 30%;
  }
  .po_fakePanel{
    justify-content: center;
  }
  .startButton{
    font-size: 20px;
  }
}


#selectVRPanel{
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8)
}
/* #selectVRPanel > div{
  background-color: rgba(0, 0, 0, 0.7);
} */
#selectVRPanel > div > span{
  color: white;
  font-family: "cdaFontBold";
  text-align: center;
}
#selectVRPanel img{
  /* background-color: rgba(0, 0, 0, 0.6); */
  padding: 20px;
  border: 2px;
  border-color: #19a7e0;
  border-style: solid;
  border-radius: 30px;
}
#selectVRPanel img:hover{
  cursor: pointer;
}

@media all and (orientation:landscape) {
  .cda_init_title{
    font-size: 5.8vh;
  }
  .cda_init_subtitle{
    font-size: 5.8vh;
  }
  .marginButtons{
    margin-left: 23vw;
    margin-right: 23vw;
  }
  .tutorialButton{
    font-size: 3vh;
  }
  .initButton{
    font-size: 1.5vh;
  }
  .marginLogos{
    margin-left: 25vw;
    margin-right: 25vw;
  }
  img.gobImg{
    width: 5vw;
  }
  img.ondmediaImg{
    width: 10vw;
  }
  img.developedbyImg{
    width: 10vw;
  }
  /* #selectVRPanel > div{
    width: 30vw;
    height: 30vw;
  } */
  /* #selectVRPanel > div > span{
    font-size: 1vw;
  } */
  #selectVRPanel img{
    width: 10vw;
    height: 10vw;
  }
  #selectVRPanel_title{
    font-size: 25px;
  }
  #selectVRPanel_subtitle{
    font-size: 15px;
    padding: 55px;
  }
}
@media all and (orientation:portrait) {
  .cda_init_title{
    font-size: 2.8vh;
  }
  .cda_init_subtitle{
    font-size: 2.8vh;
  }
  .marginButtons{
    margin-left: 15vw;
    margin-right: 15vw;
  }
  .tutorialButton{
    font-size: 2vh;
  }
  .initButton{
    font-size: 1vh;
  }
  .marginLogos{
    margin-left: 15vw;
    margin-right: 15vw;
  }
  img.gobImg{
    width: 15vw;
  }
  img.ondmediaImg{
    width: 30vw;
  }
  img.developedbyImg{
    width: 30vw;
  }
  /* #selectVRPanel > div{
    width: 250px;
    height: 50vw;
  } */
  /* #selectVRPanel > div > span{
    padding-bottom: 10vw;
  } */
  #selectVRPanel_title{
    font-size: 25px;
    color: red;
  }
  #selectVRPanel_subtitle{
    font-size: 15px;
    padding: 55px;
  }
  #selectVRPanel img{
    width: 15vw;
    height: 15vw;
  }
}

.vrbutton{
  background-image: url("images/lentesVR.png");
  background-size: 60px 60px;
  position: absolute;
  height: 60px;
  width: 60px;
  z-index: 50;
  right: 2%;
  cursor: pointer;
  bottom: 2%;
  display: none;
}

.exitbutton{
  background-image: url("images/exitNoMask.png");
  background-size: 60px 60px;
  position: absolute;
  height: 60px;
  width: 60px;
  z-index: 10;
  left: 2%;
  cursor: pointer;
  top: 2%;
  display: none;
}

.video {
  position: fixed;
  display: none;
  height: 100%;
  width: 100%;
  z-index: 20;
  top: 0px;
}

.videoControlsContainer {
  position: fixed;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 60px;
  z-index: 30;
}
.videoControls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 250px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
}
.videoControls > div > img {
  height: 100%;
  width: 100%;
}
.videoControls > div > img:hover {
  cursor: pointer;
}
.videoControls > div > span {
  color: white;
}

.cursorPointer {
  cursor: pointer;
}
