@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Lexend", sans-serif;
}

body {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
}

iframe {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 8px;
}

iframe::-webkit-scrollbar {
  display: none;
}

.Frame_Container {
  width: 32vw;
  height: 96vh;
  min-width: 640px;
  -webkit-box-shadow: 4px 4px 16px #00000056;
          box-shadow: 4px 4px 16px #00000056;
  background: #151515;
  padding: 8px;
  border-radius: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.isMobile .Frame_Container {
  width: 100vw !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-width: unset !important;
  height: 100vh !important;
}

.isMobile .DropDown_Container {
  height: 32px !important;
  width: 96px !important;
  top: 64px;
}

.isMobile .DropDown_Container button {
  font-size: 0.8rem !important;
}

.isMobile .LoadingStatus {
  height: 32px !important;
  width: 32px !important;
  top: 64px !important;
  right: 128px !important;
}

.LoadingStatus {
  height: 40px;
  width: 40px;
  position: fixed;
  top: 2vh;
  right: calc(2vw + 178px);
  left: auto;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0, 0, 1);
  transition: all 0.8s cubic-bezier(0.25, 0, 0, 1);
  pointer-events: none;
  opacity: 0;
}

.Loading_Active {
  opacity: 1;
}

.DropDown_Container {
  position: fixed;
  width: 164px;
  height: 64px;
  overflow: hidden;
  top: 2vh;
  right: 2vw;
  left: auto;
  border-radius: 32px;
  background: #e9e7e7;
  color: #151515;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0, 0, 1);
  transition: all 0.8s cubic-bezier(0.25, 0, 0, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.DropDown_Container::before {
  display: block;
  content: "";
  border-radius: 32px;
  background: #239576;
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  -webkit-transition: all 1.33s cubic-bezier(0.25, 0, 0, 1);
  transition: all 1.33s cubic-bezier(0.25, 0, 0, 1);
}

.En_Active {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.En_Active::before {
  left: 50%;
  right: 0;
}

.En_Active #En {
  color: white;
}

.Vi_Active::before {
  left: 0;
  right: 50%;
}

.Vi_Active #Vi {
  color: white;
}

.DropDown {
  width: 100%;
  height: 100%;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.DropDown button {
  height: 40px;
  width: 50%;
  display: block;
  background: none;
  font-size: 1.2rem;
  outline: none;
  border: none;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0, 0, 1);
  transition: all 0.8s cubic-bezier(0.25, 0, 0, 1);
}

.DropDown button:hover {
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */