@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

:root {
  --ColorHeadText: white;
  --ColorMainOne: #111428;
  --ColorBullet: #636464;
  --White: white;
}

* {
  margin: 0;
  padding: 0;
}

h2,
h3,
p,
li {
  font-family: "Lato", sans-serif;
}

.ContainerViewer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.ContainerHtml {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.PositionAbsoluteCenter {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
}

.Card {
  background-color: var(--White);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px;
}

.CardInfoTitle {
  color: var(--ColorMainOne);
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
}

.Html__Head {
  /* transform: translate(-50%, -190%); */
  transform: translate(-50%, -45vh);
  text-align: center;
  pointer-events: none;
  width: auto;
  background: rgb(8 17 55 / 30%);
  display: flow;
  padding: 0px 66px 15px 66px;
  border-radius: 18px;
}
.Head__Title,
.Head__Info {
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 2px gray;
}

.Head__Title {
  color: var(--ColorHeadText);
  font-size: calc(100% + 2.2vw);
  /* font-size: 65px; */
  /* line-height: 78px; */
  line-height: calc(100% + 0.5vw);

  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.Head__Info {
  color: var(--ColorHeadText);
  font-size: 20px;
  line-height: 31px;
}

#PopUp__Container,
#Tutorial__Container {
  transform: translate(-50%, -50%);
}

/* #Tutorial__Container {
  display: block;
} */

#PopUp__Container {
  width: 90%;
}

.PopUp__Hide {
  display: none;
}

.PopUp__Show {
  display: block;
}

.PopUp__Card {
  position: relative;
  border-radius: 10px 0 10px 10px;
  /* width: 400px; */
  height: 497px;

  width: 100%;
  min-width: 300px;
  max-width: 400px;
  margin: 0 auto;
}

#PopUp__Info {
  display: grid;
  grid-template-rows: 61px 270px 114px;
  align-content: center;

  width: 100%;
  height: 100%;
}

#PopUp__Info-Title {
  margin-bottom: 20px;
}

.PopUp__Info-Img {
  margin-bottom: 20px;
  /* width: 400px; */
  width: 100%;
  height: auto;
  /* height: 250px; */
  /* margin: 0 auto; */
}

#PopUp__Info-ListBullet {
  color: var(--ColorBullet);
  font-size: 18px;
  line-height: 28px;
  font-weight: lighter;

  margin: 0 auto;

  width: 90%;
  /* columns: 2; */
  list-style-type: none;

  overflow-y: auto;
  padding-right: 10px;
  padding-left: 20px;
  column-gap: 30px;

  word-break: break-all;
}

#PopUp__Info-ListBullet li {
  position: relative;
  padding-left: 10px;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: var(--ColorBullet);
}

#PopUp__Info-ListBullet li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--ColorMainOne);
  border-radius: 100%;
  content: "";
}

#PopUp__ExitButton {
  position: absolute;
  left: calc(100% - 50px);
  top: calc(0% - 40px);

  width: 50px;
  height: 40px;
  background-color: var(--ColorMainOne);
  border-radius: 11px 11px 0 0;
}

#PopUp__ExitButton:hover {
  background-color: red;
}

#PopUp__ExitButton p {
  font-size: 20px;
  line-height: 41px;
  font-weight: bold;
  color: var(--White);
  text-align: center;
}

.Tutorial__Card {
  width: 346px;
  height: 373px;
}

.Tutorial__Info {
  display: flex;
  flex-direction: column;
  align-content: center;

  width: 100%;
  height: 100%;
}

.Tutorial__Info-Title {
  margin-top: 28px;
  margin-bottom: 48px;
}

.Tutorial__Info-Indicacion {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin: 0 auto;
  gap: 20px;

  width: 85%;
  margin-bottom: 34px;
}

.Tutorial__Info-Indicacion div {
  width: 50%;
}

.Tutorial__Info-Icon {
  height: 52px;
  margin-bottom: 31px;
}

.Tutorial__Info-Text {
  font-size: 20px;
  line-height: 23px;
  font-weight: lighter;
}

#Tutorial__ExitButton {
  width: 179px;
  height: 50px;
  background-color: var(--ColorMainOne);
  border-radius: 9px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 39px;
}

#Tutorial__ExitButton p {
  margin: 0;
  padding: 0;
  color: var(--White);
  font-weight: bold;
  font-size: 20px;
  line-height: 50px;
}

#ButtonInfo {
  background-color: #281e78;
  width: 61px;
  height: 61px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  top: 100%;
  left: 100%;
  transform: translate(-120%, -120%);
}

#ButtonInfo p {
  color: var(--White);
  font-weight: bold;
  font-size: 31px;
}

.PhoneMode {
  display: none;
}

.MouseMode {
  display: block;
}

@media (pointer: coarse) {
  .MouseMode {
    display: none;
  }

  .PhoneMode {
    display: block;
  }

  .Tutorial__Card{
    height: auto;
  }

  .Tutorial__Info{
    justify-content: space-evenly;
    gap: 20px;

    padding-top: 20px;
    padding-bottom: 20px;
  }

  .Tutorial__Info-Indicacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }

  .Tutorial__Info-Title{
    margin: 0px;
  }

  .Tutorial__Info-Icon{
    margin-bottom: 2px;
  }

  .Tutorial__Info-Indicacion div {
    width: 90%;
  }

  #Tutorial__ExitButton{
    margin-bottom: 0px;
  }
}
@media screen and (max-width:1400px) {
  h3.Head__Info br {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .Html__Head {
    width: 96%;
  }
}