
section.floatthing {
  pointer-events: none;
}

section.floatthing .icon {
  z-index: 60000000;
  position: fixed;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 
    top 0.2s ease-out, 
    left 0.2s ease-out, 
    bottom 0.2s ease-out, 
    right 0.2s ease-out, 
    transform 0.2s ease-out;
}
section.floatthing .icon.btn {
  pointer-events: all;
}
section.floatthing .icon svg {
  width: 100%;
  height: 100%;
}

section#float-logo .icon {
  top: 30px;
  left: 30px;
}
section#float-menu .icon {
  top: 30px;
  right: 30px;
}
section#float-account .icon {
  top: 30px;
  right: 90px;
  width: auto;
  justify-content: flex-end;
}
section#float-diamond .icon {
  bottom: 30px;
  left: 30px;
}
section#float-theme .icon {
  bottom: 30px;
  right: 30px;
}
@media (max-width:600px) {
  section#float-logo .icon {
    top: 15px;
    left: 15px;
  }
  section#float-menu .icon {
    top: 15px;
    right: 15px;
  }
  section#float-account .icon {
    top: 15px;
    right: 60px;
  }
  section#float-diamond .icon {
    bottom: 15px;
    left: 15px;
  }
  section#float-theme .icon {
    bottom: 15px;
    right: 15px;
  }
}




section#float-logo .icon a {
  display: block;
  width: 100%;
  height: 100%;
}



section#float-menu .crossbtn {
  position: relative;
  width: 30px;
  height: 30px;
}
section#float-menu .crossbtn .bar {
  position: absolute;
  width: 30px;
  height: 6px;
  background-color: var(--fg);
  transition: top 0.2s ease-out, left 0.2s ease-out, transform 0.2s ease-out;
}
section#float-menu .crossbtn .bar1 {
  top: 6px;
  left: 0;
}
section#float-menu .crossbtn .bar2 {
  top: 18px;
  left: 0;
}
section#float-menu .crossbtn.crossed .bar1 {
  top: 12px;
  left: 0;
  transform: rotate(45deg);
}
section#float-menu .crossbtn.crossed .bar2 {
  top: 12px;
  left: 0;
  transform: rotate(-45deg);
}
section#float-menu .content {
  z-index: 40000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gray-245);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: opacity 0.2s ease-out;
}
section#float-menu .content .box {
  width: calc(100% - 180px);
  height: calc(100% - 180px);
  background-color: var(--white);
  border-radius: 90px;
  transition: transform 0.3s cubic-bezier(0,0,.3,1.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
section#float-menu .content .wrapper {
  width: calc(100% - 180px);
  height: calc(100% - 180px);
  position: relative;
  display: flex;
  justify-content: center;
}
section#float-menu .content .wrapper .title {
  position: absolute;
  top: -90px;
  width: 300px;
  height: 90px;
  border-radius: 300px / 90px;
  background-color: var(--th-red);
}
section#float-menu .content .wrapper .left {
  height: 100%;
  width: calc(60% - 1.5px);
  border-right: solid 1.5px var(--fg);
  position: relative;
}
section#float-menu .content .wrapper .left .area {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: 30px;
  scrollbar-color: var(--fg) var(--white);
}
section#float-menu .content .wrapper .left .area::-webkit-scrollbar {
  position: fixed;
  width: 30px;
}
section#float-menu .content .wrapper .left .area::-webkit-scrollbar-track {
  background-color: var(--white);
}
section#float-menu .content .wrapper .left .area::-webkit-scrollbar-thumb {
  background-color: var(--fg);
  border-radius: 100% / 100%;
}
section#float-menu .content .wrapper .left .area::-webkit-scrollbar-thumb:hover {
  background-color: var(--fg);
}
section#float-menu .content .wrapper .left .tab {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
}
section#float-menu .content .wrapper .left .tab .object {
  margin-bottom: 1vw;
  line-height: 100%;
}
section#float-menu .content .wrapper .left .tab .object a{
  line-height: 100%;
}
section#float-menu .content .wrapper .left .tab .label {
  cursor: default;
}
section#float-menu .content .wrapper .left .tab .label.btn {
  cursor: pointer;
}
section#float-menu .content .wrapper .left .tab .text {
  font-family: 'Poppins', 'Noto Sans KR';
  font-weight: 700;
  line-height: 100%;
  display: inline-block;
  border-radius: 100% / 100%;
}
section#float-menu .content .wrapper .left .tab .tabtitle {
  font-size: 3vw;
}
section#float-menu .content .wrapper .left .tab .subtitle {
  font-size: 2.25vw;
  margin-left: 1vw;
}
section#float-menu .content .wrapper .left .tab .normal {
  font-size: 1.75vw;
  margin-left: 2vw;
}
section#float-menu .content .wrapper .right {
  height: 100%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section#float-menu .content .wrapper .right .top {
  height: 40%;
  width: 100%;
  position: relative;
  cursor: default;
}
section#float-menu .content .wrapper .right .top .area {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  text-align: right;
}
section#float-menu .content .wrapper .right .top p {
  font-family: 'Poppins';
  font-weight: 700;
  line-height: 100%;
  font-size: 1.75vw;
  margin-bottom: 15px;
}
section#float-menu .content .wrapper .right .top p .blur {
  filter: blur(5px);
  transition: filter 0.1s ease-out;
}
section#float-menu .content .wrapper .right .top p .blur:hover {
  filter: none;
}
section#float-menu .content .wrapper .right .top p a {
  text-decoration: underline solid 2px;
}
section#float-menu .content .wrapper .right .square {
  height: calc(60% - 1.5px);
  width: 100%;
  border-top: solid 1.5px var(--fg);
  position: relative;
}
section#float-menu .content .wrapper .right .square .area {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
}
section#float-menu .content.closed {
  opacity: 0;
}
section#float-menu .content.closed .box{
  transition: transform 0.2s ease-out;
  transform: scale(0.0);
}
@media (max-width:900px) {
  section#float-menu .content {
    z-index: 40000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-245);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    transition: opacity 0.2s ease-out;
  }
  section#float-menu .content .box {
    width: calc(100% - 60px);
    height: calc(100% - 180px);
    background-color: var(--white);
    border-radius: 90px;
  }
  section#float-menu .content .wrapper {
    width: calc(100% - 180px);
    height: calc(100% - 180px);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  section#float-menu .content .wrapper .left {
    width: 100%;
    height: calc(100% - 90px);
    border-right: none;
    border-bottom: solid 1.5px var(--fg);
  }
  section#float-menu .content .wrapper .left .area {
    width: 100%;
  }
  section#float-menu .content .wrapper .left .tab .object {
    margin-bottom: 15px;
    line-height: 100%;
  }
  section#float-menu .content .wrapper .left .tab .tabtitle {
    font-size: 18pt;
  }
  section#float-menu .content .wrapper .left .tab .subtitle {
    font-size: 14pt;
    margin-left: 15px;
  }
  section#float-menu .content .wrapper .left .tab .normal {
    font-size: 12pt;
    margin-left: 30px;
  }
  section#float-menu .content .wrapper .right {
    width: 100%;
    height: 90px;
    border-bottom: none;
  }
  section#float-menu .content .wrapper .right .top {
    height: 90px;
    width: 100%;
    position: relative;
    cursor: default;
  }
  section#float-menu .content .wrapper .right .top .area {
    position: absolute;
    top: unset;
    bottom: 0;
    right: 0;
    width: 100%;
    text-align: right;
  }
  section#float-menu .content .wrapper .right .top p {
    font-family: 'Poppins';
    font-weight: 700;
    line-height: 100%;
    font-size: 12pt;
    margin-top: 15px;
    margin-bottom: unset;
  }
  section#float-menu .content .wrapper .right .square {
    display: none;
  }
}
@media (max-width:600px) {
  section#float-menu .content .box {
    width: 100%;
    height: calc(100% - 120px);
    border-radius: 30px;
  }
  section#float-menu .content .wrapper {
    width: calc(100% - 30px);
    height: calc(100% - 90px);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}




section#float-account .icon span {
  font-family: 'Poppins', 'Consolas', 'Noto Sans KR', 'Malgun Gothic', monospace;
  font-weight: 700;
  font-size: 14pt;
}
section#float-account .icon span.unknown {
  filter: blur(3px);
  transition: filter 0.1s ease-out;
}
section#float-account .icon:hover span.unknown,
section#float-account .icon.clear span.unknown {
  filter: blur(0px);
}
section#float-account .content {
  z-index: 40000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gray-245);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: opacity 0.2s ease-out;
}
section#float-account .content .box {
  background-color: var(--white);
  border-radius: 90px;
  transition: transform 0.3s cubic-bezier(0,0,.3,1.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
section#float-account .content .wrapper {
  width: calc(100% - 180px);
  height: calc(100% - 180px);
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section#float-account .content.closed {
  opacity: 0;
}
section#float-account .content.closed .box{
  transition: transform 0.2s ease-out;
  transform: scale(0.0);
}



section#float-account .menu .box {
  width: calc(100% - 180px);
  height: calc(100% - 180px);
}
section#float-account .menu .wrapper {
  position: relative;
}
section#float-account .menu #logout {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
}



section#float-account .login .box {
  width: 100%;
  max-width: 540px;
  height: 540px;
}
section#float-account .login .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section#float-account .login .title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
  height: 45px;
}
section#float-account .login .title svg {
  height: 45px;
}
section#float-account .login .inputs {
  width: 100%;
}
section#float-account .login .input.text {
  margin-bottom: 15px;
}
section#float-account .login .submit {
  margin-top: 30px;
}



section#float-account .btn.register {
  position: absolute;
  right: 90px;
  top: 60px;
  font-family: 'Poppins', 'Consolas', 'Noto Sans KR', 'Malgun Gothic', monospace;
  font-weight: 700;
  font-size: 14pt;
  line-height: 30px;
  display: inline-block;
  transition: 
    top 0.2s ease-out, 
    left 0.2s ease-out, 
    bottom 0.2s ease-out, 
    right 0.2s ease-out, 
    transform 0.2s ease-out;
}
section#float-account .btn.register:hover {
  text-decoration: underline;
}
section#float-account .register .box {
  width: 100%;
  max-width: 540px;
  height: calc(100% - 180px);
  max-height: 615px;
}
section#float-account .register .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section#float-account .register .title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
  height: 45px;
  min-height: 45px;
  font-size: 24pt;
  font-weight: 700;
  line-height: 45px;
}
section#float-account .register .inputs {
  width: 100%;
  position: relative;
  overflow-y: auto;
}
section#float-account .register .input.text {
  margin-bottom: 15px;
}
section#float-account .register .submit {
  margin-top: 30px;
}




@media (max-width:600px) {
  section#float-account .login .box {
    border-radius: 30px;
    height: 390px;
    max-width: 390px;
  }
  section#float-account .login .wrapper {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    position: relative;
    display: flex;
    justify-content: center;
  }
  section#float-account .login .title {
    margin-top: 15px;
    margin-bottom: 30px;
    height: 45px;
  }
  section#float-account .btn.register {
    right: 60px;
    top: 45px;
  }
  section#float-account .register .box {
    border-radius: 30px;
    height: calc(100% - 120px);
    max-height: 465px;
    max-width: 390px;
  }
  section#float-account .register .wrapper {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    position: relative;
    display: flex;
    justify-content: center;
  }
  section#float-account .register .title {
    margin-top: 15px;
    margin-bottom: 30px;
    height: 45px;
  }
}




section#float-theme .icon .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
section#float-theme .icon .pupils {
  pointer-events: none;
}
section#float-theme .icon .pupil {
  opacity: 0;
}
section#float-theme .icon .pupil.right {
  left: 15px;
  opacity: 0;
}
section#float-theme .icon .pupil.selected {
  left: 0;
  opacity: 1;
}
section#float-theme .icon .pupil.left {
  left: -15px;
  opacity: 0;
}
section#float-theme .icon .pupil.transition {
  transition: opacity 0.2s ease-out, left 0.2s ease-out;
}




section#float-diamond .icon.btn.spin {
  transform: rotate(360deg);
  transition: transform 0.5s ease-in-out;
}
section#float-diamond .icon svg path {
  transition: fill 0.25s ease-in-out, stroke 0.25s ease-in-out;
}