@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Asap:400,400i,500,500i,600,700|Poppins:300,400,400i,500,600,700,700i,800,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

.lngBtn-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slash {
  color: #757B7B;
  font-size: 1.2em;
} 

.lngBtn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  color: #757B7B;
  font-size: 1.2em;
  font-family: 'DM Sans', sans-serif;
}

.lngBtn.selected {
  color: #42b3ff;
  font-weight: 700;
}


/****************************************************/

body {
  font-size: 1em;
  font-weight: 400;
  background: #f9f9f9;
  color: #7c7c7c ;
  font-family: "Asap", sans-serif;
}

.main {
  min-height: 100vh;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.title {
  margin: 0;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.title img {
  width: 168px;
}
.subtitle {
  font-size: 1.4em;
}

.install-button {
  margin: 20px 0 40px 0;
  padding: 14px 20px;
  background-color: #2A205E;
  border: none;
  border-radius: 3px;
  color: #FFF;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
}
esp-web-install-button.disabled .install-button {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}


.selector {
  margin-top: 35px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 650px) {
  .selector {
    flex-direction: row;
  }
}

.selector .text {
  display: flex;
  flex-direction: column;
}

.selector .text .version {
  font-size: 14px;
  font-weight: normal;
}

.selector .item {
  padding: 16px;
  background-color: #FFF;
  font-weight: bold;
  color: #3d29a4;
  font-size: 1.3em;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 288px;
}

.selector .item:first-child {
  margin-bottom: 15px;
}

@media (min-width: 650px) {
  .selector .item:first-child {
    margin-right: 40px;
    margin-bottom: 0;
  }
}

.selector .item span {
  margin-left: 16px;
}

.selector .item img.check {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 20px;
  visibility: hidden;
}
.selector div#tablero.selected img.check {
  visibility: visible;
}
.selector div#robot.selected img.check {
  visibility: visible;
}

.selector .item img {
  border-radius: 50%;
  width: 80px;
}
.selector div#tablero img {
  background-color: #d0d0d0;
}
.selector div#robot img {
  background-color: #daf3ff;
}

.selector div#tablero:hover, .selector div#tablero.selected {
  background-color: #2A205E;
  color: #FFF;
}
.selector div#robot:hover, .selector div#robot.selected {
  background-color: #4E99F9;
  color: #FFF;
}
.selector div#tablero:hover img, .selector div#tablero.selected img {
  background-color: transparent;
}
.selector div#robot:hover img, .selector div#robot.selected img {
  background-color: transparent;
}

.version-section {
  padding-bottom: 48px;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.video, .video-notavailable {
  margin: 0 0 70px 0;
}

.video video {
  max-width: 1920px;
  width: 80vw;
}

.version-container {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  gap: 4px;
}

.version-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: 16px;
  border-radius: 2px;
  box-shadow: 1px 1px 3px #dedede;
  border: solid 2px rgba(0,0,0,0);
  cursor: pointer;
}

.version-item:has(input:checked) {
  border: solid 2px #0275ff;
}

.version-item span {
  flex: 1;
  text-align: left;
  color: #000;
}

.version-item span img {
  margin-left: 10px;
  vertical-align: bottom;
}

.version-item input {
  padding: 16px;
  min-width: 20px;
}

.footer {
  padding: 0 20px;
  background-color: #FFF;
  border-top: solid 2px #d7d7d7;
  position: fixed;
  width: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer img {
  height: 50px;
}
.footer .logo {
  display: flex;
  align-items: center;
}
.footer .accent {
  font-weight: bold;
  color: #2A205E;
}
