@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


/* 
RESOLUCIONES

PORCENTAJE (%) DE POBLACION QUE UTILIZA EL DISPOSITIVO

360×640 (móvil pequeño): 22,64%. 
375×667 (móvil medio): 5%. 
720×1280 (móvil grande): 2,74%.
1366×768 (ordenador portátil medio): 11,98%. 
1440×900 (escritorio medio): 3,17%. 
1920×1080 (escritorio grande): 7,35%. 

*/




:root {
  --main-darklg: #1d2635;
  --main-darklg-light: #37383b90;
  --main-dark: #292929;
  --primary-color: #2f80ec;
  --primary-color-light: #2f80ec90;
  --primary-color-dark: #145FC4;
  --main-light: #eeeeee;
  font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
}

.header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 8vh;
  position: absolute;
  width: 100%;
  /* background-color: var(--main-darklg); */
}

.logo {
  z-index: 999;
}

.logo > h3 {
  color: var(--main-light);
}

.logo .logoGecoTop {
  width: 120px;
  /* position: absolute; */
  top: 20px;
  left: 20px;
  opacity: 70%;
  display: none;
}

.userName {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f1f2f3;
  z-index: 1000;
  transition: all .3s;
}

.userName .containerCamaraNombre {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.userName .containerLogo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.userName .containerLogo img {
  width: 180px;
  opacity: .7;
}

.userName .previsualizarCamara {
  display: flex;
  align-items: center;
  justify-items: center;
  width: 700px;
  height: 400px;
  flex-direction: column;
  padding: 5px;
  border-radius: 1em;
  /* background-color: #4B4B4B; */
  /* filter: drop-shadow(3px 3px 0px rgba(255, 255, 255, 1)); */
  margin-right: 40px;
}

.containerVideo {
  width: 95%;
  /* margin-top: 10px; */
  margin-bottom: 15px;
  height: 400px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

.userName .previsualizarCamara .containerVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 8px;   */
  padding: 0;
  margin: 0;
}

.containerSwitch {
  display: flex;
  align-items: center;
  margin-top: -80px;
  z-index: 1000;
}

.containerSwitch i {
  /* margin-right: 10px; */
  color: #fff;
  transition: all .3s;
}

.containerSwitch .switch-izquierda {
  margin-right: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 25px;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.userName .containerUserName {
  width: 350px;
  height: 240px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* border: solid 1px var(--primary-color); */
  /* filter: drop-shadow(3px 3px 0px rgba(255, 255, 255, 1)); */
  /* background-color: #4B4B4B; */
  border-radius: 10px;
  text-align: center;
}


.userName .containerUserName p:last-child {
  color: #2e2e2e;
  font-size: 14px;
}

.userName .containerUserName p:first-child {
  color: #2e2e2e;
  font-size: 24px;
}

.userName .containerUserName input {
  margin: 10px 0;
  border: none;
  padding: 10px 10px;
  border-radius: 10px;
  width: 180px;
}

.userName .containerUserName input:focus, .userName .containerUserName button:focus {
  outline: none;
}

.userName .containerUserName button {
  /* min-width: 200px; */
  padding: 15px 50px;
  font-size: 16px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  margin: 10px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  transition: all .2s;
}

.userName .containerUserName button:hover {
  background-color: #2f80ec90;
  /* filter: drop-shadow(2px 2px 6px rgba(66, 52, 255, 0.514)); */
  transition: all .2s;
}

.userName .containerUserName .copyLink button, .userName .containerUserName .copyLink button > i {
  background-color: transparent;
  color: #2e2e2e;
  transition: all .2s;
  padding: 0;
}

.userName .containerUserName .copyLink button:hover, .userName .containerUserName .copyLink button:hover > i {
  color: var(--primary-color);
  transition: all .2s;
}

.userName .containerNoSoyYo .noSoyYo {
  /* text-decoration: none; */
  width: 80px;
  margin: 0;
  padding: 0;
  color: var(--primary-color)!important;
  font-size: 14px;
  background-color: transparent!important;
  /* font-weight: 900!important; */
}

.userName .ingresarNombre {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main {
  overflow: hidden;
  height: 100vh;
  display: flex;
  width: 100vw;
}

.main__left {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.videos__group {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0 1rem; */
  background-color: var(--main-dark);
}

.videos__group_collapse {
  width: auto;
}

video {
  /* width: auto;
  height: 100%; */
  /* transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg); */
  transition: all .3s;
}

.my-video, .videoPrevisualizacion {
  /* width: auto;
  height: 100%; */
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  /* transition: all .3s; */
}

.screenshare{
  transform: rotateY(0deg)!Important;
  -webkit-transform: rotateY(0deg)!Important;
  -moz-transform: rotateY(0deg)!Important;
}

.container-myVideo, .container-video{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  transition: all .2s;
  cursor:pointer;
  /* border: solid 2px var(--main-darklg); */
}

.container-myVideo, .container-video:hover {
  /* border: solid 2px #fff; */
}

/* .container-myVideo video, .videox2 video, .videox3 video, .videox4 video {
  width: 100%;
  height: auto;
  transition: all .2s;
}

.videox2 .container-myVideo, .videox2 .container-myVideo:hover, .videox2 .container-video, .videox2 .container-video:hover, .container-myVideo, .container-myVideo:hover {
  border-color: transparent!important;
} */

/* .videox2 video {
  width: auto;
  height: 100%;
} */

/* .videox3 .container-video {
  width: calc(50% - 14px) ;
  min-width: 200px;
  height: auto;
  transition: all .2s;
  margin: 5px;
}

.videox3 .video-en-esquina, .videox4 .video-en-esquina {
  width: 250px!important;
  height: 150px!important;
  border-radius: 10px;
  transition: all .2s;
}

.videox3 .video-en-esquina:hover, .videox4 .video-en-esquina:hover {
  width: 350px!important;
  height: 250px!important;
  transition: all .2s;
}

.videox4 .container-video {
  width: 30%;
  min-width: 170px;
  height: auto;
  max-height: 290px;
  transition: all .2s;
  margin: 5px;
} */

.options {
  padding: .5rem;
  display: flex;
  justify-content: space-between;
  background-color: var(--main-darklg-light);
  bottom: 0px;
  position: fixed;
  width: 100%;
  z-index: 10;

  /* opacity: 0.8; */
}

.options__left {
  display: flex;
  width: 33%;
  justify-content: flex-start;
}

.hour, .hour-mobile {
  color: #fff;
}

.options__copy_link, .options__hour {
  position: relative;
  display: flex; 
  align-items: center;
}

.options__hour {
  width: 100px;
  justify-content: center;
}

.options__copy_link #copy {
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: none;
  border-left: solid 1px #f1f2f3;
  padding-left: 30px;
  margin-left: 12px;
  height: 30px;
}

.options__copy_link #copy:focus {
  outline: none;
}

.options__copy_link .tooltip, .options__copy_link .tooltip-copied, .copyLink .tooltip, .copyLink .tooltip-copied {
  visibility: hidden;
  width: 120px;
  background-color: rgb(206, 199, 199);
  color: #2e2e2e;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  transition: all .2s;
  bottom: 110%;
  left:60%;
  margin-left: -60px;
  opacity: 0;
}

.options__copy_link .tooltip-copied {
  background-color: #7fe77b;
  width: 145px;
  left: 55%;
}

.options__button .tooltip {
  visibility: hidden;
  width: 120px;
  background-color: rgb(206, 199, 199);
  color: #2e2e2e;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  transition: all .2s;
  bottom: 110%;
  /*left:60%;
  margin-left: -60px; */
  font-size: 14px;
  opacity: 0;
}
.options__button:hover > .tooltip {
  opacity: 1;
  visibility: visible;
  transition: all .2s;
}

#inviteButton{
  display: none;
}

.tooltip:hover {
  opacity: 0;
  visibility: hidden;
}

.header__back_desktop .tooltip {
  visibility: hidden;
  width: 130px;
  background-color: rgb(206, 199, 199);
  color: #2e2e2e;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  position: relative;
  z-index: 1000;
  transition: all .2s;
  bottom: 0;
  left: -12%;
  margin-left: -60px;
  opacity: 0;
}

.header__back_desktop .titleParticipants {
  text-align: center;
  color: #fff;
}

.fa-clock-o, .fa-link{
  color: #FFF;
  font-size: 12px;
}

.header__back_desktop .containerCollapse {
  cursor: pointer;
}

.header__back_desktop .containerCollapse:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition: all .2s;
}

.header__back_desktop .containerCollapse .tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 105%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgb(206, 199, 199);
} 

.containerCollapseParticipants .tooltip {
  left: -12%;  
}

.options__copy_link:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition: all .2s;
}

.tooltip::after, .tooltip-copied:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(206, 199, 199) transparent transparent transparent;
}

.tooltip-copied:after {
  border-color: #07DA00 transparent transparent transparent;
}

.options__center {
  display: flex;
  width: 33%;
  justify-content: center;
}

.options__right {
  display: flex;
  width: 33%;
  justify-content: flex-end;
}

.options__right img{
  width: auto;
  height: 35px;
  margin-right: 20px;
  margin-top: 10px;
}

.options__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  height: 50px;
  border-radius: 50%;
  color: var(--main-light);
  font-size: 1.2rem;
  width: 50px;
  margin: 0 0.5rem;
  cursor: pointer;
}

.call-slash {
  background-color: #f6484a;
}

.call-slash i {
  color: #fff;
}

.background__red {
  background-color: #f6484a;
}

.main__right, .main__right_participants {
  display: none;
  flex-direction: column;
  flex: 0.3;
  background-color: #242f4190;
  position: absolute;
  z-index: 1000;
  right: 0;
  /* top: 50%; */
  height: 100vh;
  width: 500px;
  transition: all .2s;
}


.display_flex {
  display: flex!important;
}

/* .main__right_colapse {
  display: flex;
} */

.main__chat_window {
  flex-grow: 1;
  overflow-y: scroll;
}

.main__chat_window::-webkit-scrollbar {
  display: none;
}

.main__message_container {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main__message_container > input {
  height: 50px;
  flex: 1;
  font-size: 1rem;
  border-radius: 5px;
  padding-left: 20px;
  border: none;
}

.messages, .list-participants {
  display: flex;
  flex-direction: column;
  margin: 1.5rem;
}

.list-participants {
  margin: 0 1.5rem;
}

.list-participants > span > b > i {
  margin-right: 10px;
  /* background-color: #ffffff90; */
  /* border-radius: 10px; */
}

.message {
  display: flex;
  flex-direction: column;
}

.message > b {
  color: #eeeeee;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.message > b > i {
  margin-right: 0.7rem;
  font-size: 1.5rem;
}

.message > span {
  background-color: #eeeeee;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 5px;
}

#video-grid {
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* padding-top: 10px; */
}

.video-en-esquina {
  position: absolute!important;
  z-index: 999;
  width: auto!important;
  height: 150px!important;
  border-radius: .5rem;
  bottom: 70px;
  right: 50px;
  transition: all .3s;
}

.video-en-esquina .my-video, .my-video, .Camera video {
  width: auto;
  height: 100%;
}

.nameCamera, .charAt {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  transition: all .2s;
  -webkit-text-stroke: 0.4px black;
  text-shadow: 0.5px 0.5px black;
}

.charAt {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  display: none;
  align-items: center;
  justify-content: center;
  background: #2e2e2e90;
  top: 0;
  left: 0;
  /* mix-blend-mode: screen; */
  /* isolation: isolate; */
  color: #fff;
  transition: all .2s;
  text-transform: uppercase;
}

.charAt p {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: solid 2px #fff; 
}

.Camera:hover .charAt{
  opacity: 1;
  transition: all .2s;
}

/* #showChat-desktop {
  display: flex;
} */

.chatDestkopActive {
  display: flex;
  transition: all .3s;
  right: 0;
}

#showChat {
  display: flex;
}

.header__back {
  display: none;
  position: absolute;
  font-size: 1.3rem;
  top: 17px;
  left: 28px;
  color: #fff;
}

.header__back_desktop {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.header__back_desktop i {
  font-size: 25px;
  margin-left: 20px;
  color: #fff;
}

@media (max-width: 700px) {
  /* .main__right {
    display: none;
  } */
  .main__left {
    width: 100%;
    flex: 1;
  }
/* 
  video {
    height: auto;
    width: 100%;
  } */

  /* #showChat {
    display: flex;
  } */

  /* #showChat-desktop {
    display: none;
  } */
}


#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 100px; /* 30px from the bottom */
}

.snackbar-userName {
  left: 85%!important;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.fa-slash {
  position: absolute;
  margin-right: 2px;
  font-size: 20px;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 100px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 100px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 100px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 100px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.reunionFinalizada {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f1f2f3;
}

.reunionFinalizada img {
  width: 90%;
  max-width: 200px;
  margin-bottom: 40px;
  margin-top: -80px;
}

.reunionFinalizada h1 {
  text-align: center;
  color: #2e2e2e;
}

.reunionFinalizada .containerButtons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.reunionFinalizada .containerButtons a { 
  padding: 5px 20px;
  background-color: var(--primary-color);
  border: solid 2px var(--primary-color);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  transition: all .2s;
  margin: 5px;
}

.reunionFinalizada .containerButtons a:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  transition: all .2s;
}

.reunionFinalizada .containerButtons .volver {
  background-color: transparent;
  color: var(--primary-color);
}

.reunionFinalizada .containerButtons .volver:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transition: all .2s;
}

.fullscreen {
  position: absolute!important;
  width: auto!important;
  height: 100vh!important;
  overflow: hidden;
  display: flex!important;
  align-items: center;
  justify-content: center;
  z-index: 101;
  box-shadow: none!important;
}

/* .fullscreen video {
  width: auto;
  height: calc(100% - 2px);
} */

.fullscreen .my-video, .fullscreen video {
  width: auto!important;
  height: 100%!important;
}

.cantidadMensajesSinLeer {
  display: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: solid 1px #fff;
  color: white;
  position: absolute;
  margin-top: -30px;
  margin-right: -30px;
  font-size: 10px;
}

/* MEDIAQUERIES */

@media screen and (min-width: 768px) {
  .options-open {
    opacity: 0;
    transition: all .2s;
  }

  .options-open:hover {
    opacity: 1;
    transition: all .2s;
  }

  .video-en-esquina:hover {
    height: 250px!important;
  }

  .Camera .nameCamera {
    opacity: .8;
    text-transform: capitalize;
    transition: all .2s;
  }
  
  .Camera:hover .nameCamera {
    opacity: 1;
    transition: all .2s;
  }
}

@media screen and (max-width: 767px) and (orientation:portrait) {
  .main__right, .main__right_participants {
    display: none;
    right: 0;
    width: 100%;
    min-height: 100vh;
  }

  .chatDestkopActive {
    display: flex;
  }

  .containerCamaraNombre {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .containerCamaraNombre .previsualizarCamara {
    margin-right: 0;
    width: 100%;
  }
  

  .containerCamaraNombre .containerUserName {
    height: 150px;
  }

  .options {
    justify-content: center;
  }

  .options__right {
    display: none;
  }

  .options__center {
    width: 100%;
  }
  
  .options__center #shareScreenButton {
    display: none;
  }

  .options__left {
    width: 40%;
    display: none;
  }

  .options__hour {
    display: none;
  }

  .options__copy_link #copy {
    width: 100%;
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }

  .options__button {
    width: 40px;
    height: 40px;
  }

  .logo .logoGecoTop {
    display: flex!important;
  }

  /* .header {
    padding-top: 50px;
    position: absolute;
  } */

  .header__back_desktop {
    margin-top: 50px;
  }
}

.coverMyScreenShare {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

/* Camera */
#video-grid .Camera {

  position: relative;
  vertical-align: middle;
  align-self: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* box-shadow: 0px 12px 22px rgba(0, 0, 0, 0.4); */
  /* background: #fff; */
  animation: show 0.4s ease;
  cursor: pointer;
}
/* Details (optional) */
/* Aspect Ratio Number */
  #video-grid .Camera:after {
      color: #aaa;
      font-size: 13px;
      font-family: Arial, Helvetica, sans-serif;
      position: absolute;
      bottom: 20px;
      right: 23px;
      font-weight: 100;
      /* content: "4:3"; */
      display: block;
  }
/* Gray Diagonal */
  /* #video-grid .Camera:before {
      position: absolute;
      height: 1px;
      background: #ddd;
      width: 100%;
      transform: rotate(-37deg);
      top: 50%;
      font-weight: 100;
      content: "4:3";
      display: block;
      ;
  } */
/* Animation */
@keyframes show {
  0% {
      opacity: 0;
      transform: scale(0.4) translateY(20px);
  }
  100% {
      opacity: 1;
      transform: scale(1) translateY(0);
  }
}

@media screen and (max-width: 500px) {
  .videos__group {
    align-items: flex-start;
  }

  .userName .previsualizarCamara {
    height: auto;
  }

  .reunionFinalizada h1 { 
    font-size: 24px;
  }

  .containerVideo {
    width: 95%;
    margin-bottom: 15px;
    height: 40vh;
    min-height: 200px;
    margin-top: 20px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
  }

  #video-grid {
    height: 65vh;
    width: 100vw;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: nowrap;
    flex-direction: column;
    padding-top: 60px;
  }

  #video-grid .Camera {
    box-shadow: none!important;
    overflow: initial;
  }

  /* #video-grid .Camera {
    width: calc(100% - 20px)!important;
    margin: 0 10px;
    height: auto!important;
    box-shadow: none!important;
  }

  #video-grid .Camera video {
    margin: 0 auto;
  } */

/* 
  .videox2 .container-video, .videox3 .container-video, .videox4 .container-video {
    width: calc(90% - 14px);
    min-width: 200px;
    height: 70vh;
    max-height: 250px;
    transition: all .2s;
    margin: 5px;
    overflow: initial;
  }

  .videox2 .container-myVideo, .videox3 .container-myVideo, .videox4 .container-myVideo {
    width: 100px!important;
    height: 83px!important;
    right: 28px;
    min-width: 0;
  }

  .videox2 .video-en-esquina:hover, .videox3 .video-en-esquina:hover, .videox4 .video-en-esquina:hover {
    width: 250px!important;
    height: 150px!important;
    transition: all .2s;
  } */

  .header__back_desktop .containerCollapse {
    cursor: pointer;
    background: var(--primary-color);
    opacity: .9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 15px;
  } 
  
  .header__back_desktop i {
    font-size: 25px;
    margin-left: 20px;
    margin: 0 auto;
    display: flex;
    /* background: red; */
    width: 100%;
    justify-content: center;
  }

  
}

@media screen and (max-width: 900px) and (orientation:landscape) {
  #video-grid {
    overflow-y: auto;
    height: 100vh!important;
  }

  /* .videox3 .container-video, .videox4 .container-video {
    width: 40%!important;
    max-height: 300px!important;
  }

  .videox2 .container-myVideo, .videox3 .container-myVideo, .videox4 .container-myVideo {
    width: 100px!important;
    height: 83px!important;
    right: 28px;
    min-width: 0;
  }

  .videox2 .video-en-esquina:hover, .videox3 .video-en-esquina:hover, .videox4 .video-en-esquina:hover {
    width: 250px!important;
    height: 150px!important;
    transition: all .2s;
  }
   */
  .tooltip-copied {
    margin-left: -65px!important;
  }

  .userName {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .userName  .containerLogo {
    justify-content: flex-end;
    left: initial;
    right: 15px;
  }

  .userName .previsualizarCamara {
    height: 100vh;
    margin-right: 10px; 
    padding-top: 15px;
    /* padding: 10px 0; */
  }

  .userName .previsualizarCamara .containerVideo {
    height: 97%;
  }
  .container-myVideo, .container-video {
    width: 100%!important;
    height: 100vh!important;
  }

  .container-myVideo, .container-video video {
    width: auto;
    height: 100%;
  }


  .header__back_desktop {
    padding-top: 50px;
  }

  .options__center, .options__right {
    align-items: center;
  }

  .options__copy_link #copy {
    font-size: 12px;
    margin: 0;
    padding-left: 15px;
  }

  .options__right img {
    /* width: 100px;
    height: auto; */
    margin-top: 0;
  }
  
  .options__hour .hour {
    font-size: 12px;
  }

  #shareScreenButton {
    display: none;
  }

  .options__button {
    width: 40px;
    height: 40px;
  }
}


/* FINISH MEDIAQUERIES */