@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Nanum+Brush+Script&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) rgba(14, 24, 39, 0.75);
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: rgba(14, 24, 39, 0.75);
}

html::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 10px;
}

body {
  background-color: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) rgba(14, 24, 39, 0.75);
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(14, 24, 39, 0.75);
}

body::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 10px;
}

.modal.fade {
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) rgba(14, 24, 39, 0.75);
}

.modal.fade::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.modal.fade::-webkit-scrollbar-track {
  background: rgba(14, 24, 39, 0.75);
}

.modal.fade::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 10px;
}

h1, h2, h3, h4, h5, h6, p, label, input, button, span, li, tr, td {
  font-family: 'rubik', sans-serif;
  color: #FFFFFF;
}

p {
  font-size: 18px;
}

h1 {
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  text-shadow: 0px 4px 24px rgba(54, 157, 233, 0.95), 0px 0px 8px rgba(20, 66, 99, 0.95), 0px 0px 22px #369DE9;
}

h2 {
  font-size: 36px;
  line-height: 43px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 4px 15px rgba(54, 157, 233, 0.75), 0px 0px 8px rgba(20, 66, 99, 0.75), 0px 0px 22px #369DE9;
}

.gradient {
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-size: 150% 150%;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.alert {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.alert h4 {
  color: white;
  padding-bottom: .5rem;
  text-align: center;
}

.alert p {
  font-size: 20px;
}

.alertwarning h4 {
  border-bottom: 3px solid #e93654;
}

.alertsuccess h4 {
  border-bottom: 3px solid #36e9bc;
}

.brush {
  font-family: 'Nanum Brush Script';
}

span.brush {
  vertical-align: middle;
  font-size: 48px;
}

.btn {
  border-radius: 4px;
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  min-width: 85px;
}

.btn-primary {
  background-color: #369DE9;
  -webkit-box-shadow: 0px 2px 12px #369DE9;
          box-shadow: 0px 2px 12px #369DE9;
}

.btn-primary:hover {
  background-color: #5667FB;
  -webkit-box-shadow: 0px 2px 12px #5667FB;
          box-shadow: 0px 2px 12px #5667FB;
}

.btn-primary.green {
  background-color: #749531;
  -webkit-box-shadow: 0px 2px 12px #6d931f;
          box-shadow: 0px 2px 12px #6d931f;
  border: #7ba428 1px solid;
}

.btn-primary.green:hover {
  background-color: #57741b;
}

.btn-primary.purple {
  background-color: #7d217d;
  -webkit-box-shadow: 0px 2px 12px #631563;
          box-shadow: 0px 2px 12px #631563;
  border: #5c0e5c 1px solid;
}

.btn-primary.purple:hover {
  background-color: #5c0e5c;
}

.btn-danger {
  -webkit-box-shadow: 0px 2px 12px #dc3545;
          box-shadow: 0px 2px 12px #dc3545;
}

.btn-close:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-16px, 0, 0);
            transform: translate3d(-16px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-16px, 0, 0);
            transform: translate3d(-16px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes waiting {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes waiting {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  55% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  55% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes line {
  0% {
    width: 76px;
  }
  32% {
    width: 92px;
  }
  60% {
    width: 14px;
  }
  100% {
    width: 76px;
  }
}

@keyframes line {
  0% {
    width: 76px;
  }
  32% {
    width: 92px;
  }
  60% {
    width: 14px;
  }
  100% {
    width: 76px;
  }
}

.bigbro.maroon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.maroon:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.maroon:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.maroon:hover .text {
  top: -5px;
}

.bigbro.maroon .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(207, 101, 255, 0)), to(rgba(167, 65, 214, 0.75)));
  background: linear-gradient(180deg, rgba(207, 101, 255, 0) 0%, rgba(167, 65, 214, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(167, 65, 214, 0.5);
}

.bigbro.maroon .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.maroon .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #A741D6;
  -webkit-box-shadow: 0px 0px 16px #A741D6;
          box-shadow: 0px 0px 16px #A741D6;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.maroon .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.maroon p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.tosca {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.tosca:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.tosca:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.tosca:hover .text {
  top: -5px;
}

.bigbro.tosca .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(42, 188, 179, 0.5);
}

.bigbro.tosca .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.tosca .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #2ABCB3;
  -webkit-box-shadow: 0px 0px 16px #2ABCB3;
          box-shadow: 0px 0px 16px #2ABCB3;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.tosca .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.tosca p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.biru {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.biru:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.biru:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.biru:hover .text {
  top: -5px;
}

.bigbro.biru .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 125, 255, 0)), to(rgba(86, 103, 251, 0.75)));
  background: linear-gradient(180deg, rgba(75, 125, 255, 0) 0%, rgba(86, 103, 251, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(86, 103, 251, 0.5);
}

.bigbro.biru .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.biru .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #5667FB;
  -webkit-box-shadow: 0px 0px 16px #5667FB;
          box-shadow: 0px 0px 16px #5667FB;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.biru .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.biru p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.ungu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.ungu:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.ungu:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.ungu:hover .text {
  top: -5px;
}

.bigbro.ungu .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(122, 84, 246, 0)), to(rgba(122, 84, 246, 0.75)));
  background: linear-gradient(180deg, rgba(122, 84, 246, 0) 0%, rgba(122, 84, 246, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(122, 84, 246, 0.5);
}

.bigbro.ungu .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.ungu .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #7A54F6;
  -webkit-box-shadow: 0px 0px 16px #7A54F6;
          box-shadow: 0px 0px 16px #7A54F6;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.ungu .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.ungu p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.yellow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.yellow:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.yellow:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.yellow:hover .text {
  top: -5px;
}

.bigbro.yellow .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 214, 65, 0)), to(rgba(202, 214, 65, 0.75)));
  background: linear-gradient(180deg, rgba(202, 214, 65, 0) 0%, rgba(202, 214, 65, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(202, 214, 65, 0.5);
}

.bigbro.yellow .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.yellow .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #CAD641;
  -webkit-box-shadow: 0px 0px 16px #CAD641;
          box-shadow: 0px 0px 16px #CAD641;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.yellow .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.yellow p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.modal-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}

.modal-container.dua-line .text {
  height: 80px;
}

.modal-title {
  line-height: 1;
}

.modal .modal-dialog .modal-header > * {
  position: relative;
  left: 25px;
}

.modal-dialog {
  max-width: 1100px;
}

.modal-content {
  background-color: unset;
}

.modal-header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  height: 100px;
  border-bottom: 3px solid #369DE9;
}

.modal-header > * {
  position: relative;
  left: 25px;
}

.modal-header .btn-close {
  margin: 0;
  color: white;
  width: unset;
  height: unset;
  opacity: 1;
}

.modal-body {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  border: 1px solid #144263;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
}

.modal-body iframe, .modal-body lite-youtube {
  height: 100%;
}

.modal-backdrop {
  opacity: 0.4 !important;
}

@media screen and (max-width: 1040px) {
  p, .btn {
    font-size: 16px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
  span.brush {
    font-size: 32px;
  }
}

@media screen and (max-width: 540px) {
  .modal-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
  .modal .modal-dialog .modal-header > * {
    position: initial;
  }
  .modal-dialog {
    margin: 0;
  }
  .modal-header {
    background: rgba(0, 0, 0, 0.6);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .modal-body {
    padding: 2rem 1rem;
  }
  .modal-content {
    min-height: 100vh;
  }
  .modal-title {
    text-align: left;
  }
}

@media screen and (min-aspect-ratio: 17 / 9) and (max-width: 990px) {
  .hide-landscape {
    display: none !important;
  }
}

.bg {
  z-index: -1;
  width: 100%;
  position: fixed;
  top: 0;
}

.ag-night-sky-block {
  z-index: 1;
  height: 100vh;
  position: relative;
  background-color: #000;
}

.ag-night-sky_sky {
  height: 87%;
  z-index: -5;
}

.ag-night-sky_clouds,
.ag-night-sky_sky,
.ag-night-sky_stars,
.ag-night-sky_twinkling {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ag-night-sky_clouds,
.ag-night-sky_stars,
.ag-night-sky_twinkling {
  display: block;
  height: 100%;
  right: 0;
  bottom: 0;
}

.ag-night-sky_stars {
  background: url("https://ik.imagekit.io/adiharka/Sciencesomnia/stars_bg.png?updatedAt=1636250255420") repeat 0 0;
}

.ag-night-sky_twinkling {
  background: url("https://ik.imagekit.io/adiharka/Sciencesomnia/twinkling.png?updatedAt=1631612845503") repeat 0 0;
  -webkit-animation: an-twinkling 200s linear infinite;
          animation: an-twinkling 200s linear infinite;
}

.ag-night-sky_clouds {
  z-index: 2;
  position: relative;
}

.ag-night-sky_clouds::after {
  content: '';
  background: url("https://ik.imagekit.io/adiharka/Sciencesomnia/clouds.png?updatedAt=1636603077540") repeat-x 0 0;
  background-size: cover;
  opacity: .7;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  -webkit-animation: an-clouds 200s linear infinite;
          animation: an-clouds 200s linear infinite;
}

@-webkit-keyframes an-twinkling {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}

@keyframes an-twinkling {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}

@-webkit-keyframes an-clouds {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

@keyframes an-clouds {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

.wait {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}

.wait p {
  text-align: center;
}

.loader-17 {
  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;
  height: 50px;
}

.loader-17 .css-square {
  position: relative;
  width: 7px;
  height: 45px;
  background: white;
  border-radius: 2px;
}

.loader-17 .square1 {
  left: -40px;
}

.loader-17 .square2 {
  left: -30px;
}

.loader-17 .square3 {
  left: -20px;
}

.loader-17 .square4 {
  left: -10px;
}

.loader-17 .square5 {
  left: 0px;
}

.loader-17 .square6 {
  left: 10px;
}

.loader-17 .square7 {
  left: 20px;
}

.loader-17 .square8 {
  left: 30px;
}

.loader-17 .square8 {
  -webkit-animation: dominos 1s 0.125s ease infinite;
          animation: dominos 1s 0.125s ease infinite;
}

.loader-17 .square7 {
  -webkit-animation: dominos 1s 0.3s ease infinite;
          animation: dominos 1s 0.3s ease infinite;
}

.loader-17 .square6 {
  -webkit-animation: dominos 1s 0.425s ease infinite;
          animation: dominos 1s 0.425s ease infinite;
}

.loader-17 .square5 {
  -webkit-animation: dominos 1s 0.540s ease infinite;
          animation: dominos 1s 0.540s ease infinite;
}

.loader-17 .square4 {
  -webkit-animation: dominos 1s 0.665s ease infinite;
          animation: dominos 1s 0.665s ease infinite;
}

.loader-17 .square3 {
  -webkit-animation: dominos 1s 0.79s ease infinite;
          animation: dominos 1s 0.79s ease infinite;
}

.loader-17 .square2 {
  -webkit-animation: dominos 1s 0.9s ease infinite;
          animation: dominos 1s 0.9s ease infinite;
}

.loader-17 .square1 {
  -webkit-animation: dominos 1s 1s ease infinite;
          animation: dominos 1s 1s ease infinite;
}

@-webkit-keyframes dominos {
  50% {
    opacity: 0.7;
  }
  75% {
    height: 20px;
  }
  80% {
    opacity: 1;
  }
}

@keyframes dominos {
  50% {
    opacity: 0.7;
  }
  75% {
    height: 20px;
  }
  80% {
    opacity: 1;
  }
}

.circular-loader {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.loader-path {
  stroke-dasharray: 150,200;
  stroke-dashoffset: -10;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

@-webkit-keyframes color {
  0% {
    stroke: #eaeaea;
  }
  40% {
    stroke: #eaeaea;
  }
  66% {
    stroke: #eaeaea;
  }
  80%, 90% {
    stroke: #eaeaea;
  }
}

@keyframes color {
  0% {
    stroke: #eaeaea;
  }
  40% {
    stroke: #eaeaea;
  }
  66% {
    stroke: #eaeaea;
  }
  80%, 90% {
    stroke: #eaeaea;
  }
}

.count {
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.count .sec {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100px;
}

.count .sec h2 {
  color: white;
  font-size: 36px;
  width: 90%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 125, 255, 0)), to(rgba(86, 103, 251, 0.75)));
  background: linear-gradient(180deg, rgba(75, 125, 255, 0) 0%, rgba(86, 103, 251, 0.75) 100%);
  padding: 2rem 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.count .sec p {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

body {
  overflow-x: hidden;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 98vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 1rem;
}

.content_hide {
  -webkit-animation: scaleBack 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
          animation: scaleBack 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
}

.content_active {
  -webkit-animation: scaleForward 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
          animation: scaleForward 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
}

@-webkit-keyframes zoom-in-city {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-in-city {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: hidden;
  overflow-x: hidden;
}

#city {
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) #000;
  -webkit-animation: zoom-in-city 2s cubic-bezier(0.4, 0, 0.2, 1);
          animation: zoom-in-city 2s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: none !important;
}

#city::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

#city::-webkit-scrollbar-track {
  background: #000;
}

#city::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 0px;
}

#city img {
  width: 900px;
}

#city .map {
  margin: auto;
  -webkit-animation: updown 4s ease infinite;
          animation: updown 4s ease infinite;
  width: 900px !important;
  height: 720px !important;
}

#misc {
  position: static;
  width: 0;
  height: 0;
}

#misc img {
  position: relative;
  width: 125px;
  -webkit-animation: updown 4s ease infinite;
          animation: updown 4s ease infinite;
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

#text-lagu {
  position: absolute;
  height: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
  width: 900px;
}

#text-lagu p {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(122, 84, 246, 0.6)), to(rgba(84, 111, 246, 0.7)));
  background: linear-gradient(180deg, rgba(122, 84, 246, 0.6) 0%, rgba(84, 111, 246, 0.7) 100%);
  border: 1px solid rgba(84, 111, 246, 0.75);
  padding: .5rem 0;
  border-radius: 8px;
  width: 350px;
  margin: auto;
  position: relative;
  top: 650px;
}

.sidelogo {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  z-index: 2;
}

.box {
  width: 58px;
  height: 58px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 4px;
  cursor: pointer;
  margin: 0.6em;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  right: 30px;
  border-radius: 32px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 126, 255, 0)), to(#5667fb));
  background: linear-gradient(180deg, rgba(75, 126, 255, 0) 0%, #5667fb 100%);
}

.box:hover {
  width: 130px;
  background: #c32aa3;
  border-radius: 8px;
  color: white;
  -webkit-box-shadow: 0 0 50px rgba(122, 84, 246, 0.5);
          box-shadow: 0 0 50px rgba(122, 84, 246, 0.5);
  right: 105px;
}

.box:hover .icon {
  border-radius: 0px;
}

.box:nth-child(1):hover {
  width: 150px;
  right: 125px;
  -webkit-box-shadow: 0 0 50px rgba(86, 103, 251, 0.5);
          box-shadow: 0 0 50px rgba(86, 103, 251, 0.5);
}

.box:nth-child(2):hover {
  width: 165px;
  right: 135px;
  -webkit-box-shadow: 0 0 50px rgba(86, 103, 251, 0.5);
          box-shadow: 0 0 50px rgba(86, 103, 251, 0.5);
}

.box:nth-child(3):hover {
  width: 155px;
  right: 130px;
  -webkit-box-shadow: 0 0 50px rgba(42, 188, 179, 0.5);
          box-shadow: 0 0 50px rgba(42, 188, 179, 0.5);
}

.box:nth-child(4):hover {
  width: 190px;
  right: 162px;
  -webkit-box-shadow: 0 0 50px rgba(167, 65, 214, 0.5);
          box-shadow: 0 0 50px rgba(167, 65, 214, 0.5);
}

.box p {
  -webkit-transform: translate(60px);
          transform: translate(60px);
  margin: 0;
  color: white;
}

.box.maroon {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(207, 101, 255, 0)), to(rgba(167, 65, 214, 0.75)));
  background: linear-gradient(180deg, rgba(207, 101, 255, 0) 0%, rgba(167, 65, 214, 0.75) 100%);
  border: 1px solid rgba(167, 65, 214, 0.5);
}

.box.maroon:hover .icon {
  background: none;
  border: none;
}

.box.biru {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 125, 255, 0)), to(rgba(86, 103, 251, 0.75)));
  background: linear-gradient(180deg, rgba(75, 125, 255, 0) 0%, rgba(86, 103, 251, 0.75) 100%);
  border: 1px solid rgba(86, 103, 251, 0.5);
}

.box.biru:hover .icon {
  background: none;
  border: none;
}

.box.ungu {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(122, 84, 246, 0)), to(rgba(122, 84, 246, 0.75)));
  background: linear-gradient(180deg, rgba(122, 84, 246, 0) 0%, rgba(122, 84, 246, 0.75) 100%);
  border: 1px solid rgba(122, 84, 246, 0.5);
}

.box.ungu:hover .icon {
  background: none;
  border: none;
}

.box.tosca {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  border: 1px solid rgba(42, 188, 179, 0.5);
}

.box.tosca:hover .icon {
  background: none;
  border: none;
}

.box .icon {
  position: absolute;
  width: 50px;
  height: 50px;
  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;
  color: white;
  border-radius: 200px;
  margin-right: 10px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.box:hover .icon {
  color: #3b3b3b;
}

html, body {
  font-family: helvetica neue, helvetica, arial, sans-serif;
  font-weight: 200;
}

.fade {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0;
  -webkit-transition: all .13s linear;
  transition: all .13s linear;
}

.fade.show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal.fade.show {
  background: linear-gradient(175deg, rgba(84, 14, 91, 0.2) 20%, rgba(17, 40, 123, 0.3) 70%, rgba(59, 11, 116, 0.2) 85%);
}

.bro-inspiring {
  cursor: auto !important;
}

.bro-inspiring h2 {
  text-shadow: unset;
}

#modalmerch .partner {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

#modalmerch .partner p {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

#modalmerch .partner .partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modalmerch .partner .sponsor img {
  height: 72px;
}

#modalmerch .partner .medpart, #modalmerch .partner .sponsor, #modalmerch .partner .collab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modalmerch .partner .medpart img {
  height: 32px;
}

#modalmerch .partner .collab img {
  height: 48px;
}

#modalmerch .partner .credit p {
  font-size: 15px;
  text-align: center;
}

#modalmerch .partner .credit p a {
  color: white;
}

#modaldonasi img {
  height: 28px;
  margin-bottom: 6px;
}

@-webkit-keyframes form-open {
  0% {
    -webkit-clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
  }
}

@keyframes form-open {
  0% {
    -webkit-clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
  }
}

.modal-header {
  -webkit-animation: form-open 1s cubic-bezier(0.4, 0, 0.15, 1) forwards;
          animation: form-open 1s cubic-bezier(0.4, 0, 0.15, 1) forwards;
}

.sidenav > *:nth-child(1),
.sidelogo > *:nth-child(1) {
  -webkit-animation: waiting 0.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.6s;
          animation-delay: 0s, 0.6s;
}

.sidenav > *:nth-child(2),
.sidelogo > *:nth-child(2) {
  -webkit-animation: waiting 0.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.8s;
          animation-delay: 0s, 0.8s;
}

.sidenav > *:nth-child(3),
.sidelogo > *:nth-child(3) {
  -webkit-animation: waiting 1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1s;
          animation-delay: 0s, 1s;
}

.sidenav > *:nth-child(4),
.sidelogo > *:nth-child(4) {
  -webkit-animation: waiting 1.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.2s;
          animation-delay: 0s, 1.2s;
}

.sidenav > *:nth-child(5),
.sidelogo > *:nth-child(5) {
  -webkit-animation: waiting 1.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.4s;
          animation-delay: 0s, 1.4s;
}

.sidenav > *:nth-child(6),
.sidelogo > *:nth-child(6) {
  -webkit-animation: waiting 1.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.6s;
          animation-delay: 0s, 1.6s;
}

#misc > *:nth-child(1) {
  -webkit-animation: waiting 0.7s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.7s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.7s;
          animation-delay: 0s, 0.7s;
}

#misc > *:nth-child(2) {
  -webkit-animation: waiting 0.9s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.9s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.9s;
          animation-delay: 0s, 0.9s;
}

#misc > *:nth-child(3) {
  -webkit-animation: waiting 1.1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.1s;
          animation-delay: 0s, 1.1s;
}

#misc > *:nth-child(4) {
  -webkit-animation: waiting 1.3s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.3s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.3s;
          animation-delay: 0s, 1.3s;
}

#misc > *:nth-child(5) {
  -webkit-animation: waiting 1.5s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.5s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.5s;
          animation-delay: 0s, 1.5s;
}

#misc > *:nth-child(6) {
  -webkit-animation: waiting 1.7s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.7s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.7s;
          animation-delay: 0s, 1.7s;
}

.modal-body {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 53, 146, 0.25)), to(rgba(58, 24, 54, 0.5)));
  background: linear-gradient(180deg, rgba(28, 53, 146, 0.25) 0%, rgba(58, 24, 54, 0.5) 100%);
}

.modal-body > *:nth-child(1) {
  -webkit-animation: waiting 0.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.2s;
          animation-delay: 0s, 0.2s;
}

.modal-body > *:nth-child(2) {
  -webkit-animation: waiting 0.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.4s;
          animation-delay: 0s, 0.4s;
}

.modal-body > *:nth-child(3) {
  -webkit-animation: waiting 0.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.6s;
          animation-delay: 0s, 0.6s;
}

.modal-body > *:nth-child(4) {
  -webkit-animation: waiting 0.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.8s;
          animation-delay: 0s, 0.8s;
}

.modal-body > *:nth-child(5) {
  -webkit-animation: waiting 1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1s;
          animation-delay: 0s, 1s;
}

.modal-body > *:nth-child(6) {
  -webkit-animation: waiting 1.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.2s;
          animation-delay: 0s, 1.2s;
}

.modalbook .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4rem;
}

.modalbook .timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  width: 460px;
}

.modalbook .timeline .hiasan {
  position: relative;
  width: 0;
  height: 0;
}

.modalbook .timeline .hiasan .circle {
  position: absolute;
  z-index: 0;
  left: 55px;
  top: -10px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(207, 101, 255, 0)), to(rgba(167, 65, 214, 0.75)));
  background: linear-gradient(180deg, rgba(207, 101, 255, 0) 0%, rgba(167, 65, 214, 0.75) 100%);
  border: 1px solid rgba(167, 65, 214, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-animation: rotating 10s linear infinite;
          animation: rotating 10s linear infinite;
}

.modalbook .timeline .hiasan .kotak {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 50px;
  top: 125px;
  border-radius: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(207, 101, 255, 0)), to(rgba(167, 65, 214, 0.75)));
  background: linear-gradient(180deg, rgba(207, 101, 255, 0) 0%, rgba(167, 65, 214, 0.75) 100%);
  border: 1px solid rgba(167, 65, 214, 0.5);
  -webkit-animation: rotating 12s linear infinite;
          animation: rotating 12s linear infinite;
}

.modalbook .timeline .hiasan .kotak:nth-child(2) {
  left: 27px;
  top: 95px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.modalbook .timeline .tgl {
  z-index: 4;
  position: relative;
}

.modalbook .timeline .tgl h1, .modalbook .timeline .tgl h4, .modalbook .timeline .tgl h5 {
  z-index: 5;
  text-align: right;
}

.modalbook .timeline .tgl h4 {
  opacity: .85;
}

.modalbook .timeline .tgl h1 {
  font-size: 64px;
  margin: 0;
  text-shadow: none;
}

.modalbook .timeline .tgl > h4:first-of-type {
  font-weight: 300;
  margin: 0;
  font-size: 20px;
}

.modalbook .timeline table {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 5;
}

.modalbook .timeline tr svg {
  vertical-align: baseline;
  margin-right: 4px;
}

.modalbook .timeline tr > td:first-of-type {
  text-align: right;
  padding-right: .75rem;
  padding-left: .75rem;
  font-weight: 300;
  opacity: .7;
}

.modalbook .timeline tr td {
  font-size: 20px;
  opacity: .9;
  font-weight: 400;
}

.modalbook .timeline tr .sciefest, .modalbook .timeline tr .webinar, .modalbook .timeline tr .star, .modalbook .timeline tr .talkshow {
  border-radius: 6px;
  padding: 0 .5rem;
  opacity: 1;
}

.modalbook .timeline tr .sciefest {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(55, 90, 195, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to right, rgba(55, 90, 195, 0.5) 30%, rgba(0, 0, 0, 0.05));
}

.modalbook .timeline tr .webinar {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(148, 68, 227, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to right, rgba(148, 68, 227, 0.5) 30%, rgba(0, 0, 0, 0.05));
}

.modalbook .timeline tr .talkshow {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(190, 49, 178, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to right, rgba(190, 49, 178, 0.5) 30%, rgba(0, 0, 0, 0.05));
}

.modalbook .timeline tr .star {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(187, 192, 50, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to right, rgba(187, 192, 50, 0.5) 30%, rgba(0, 0, 0, 0.05));
}

.modalbook .timeline:nth-child(2) .circle {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  border: 1px solid rgba(42, 188, 179, 0.5);
}

.modalbook .timeline:nth-child(2) .kotak {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  border: 1px solid rgba(42, 188, 179, 0.5);
}

.modalbook .timeline:nth-child(3) .circle {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 125, 255, 0)), to(rgba(86, 103, 251, 0.75)));
  background: linear-gradient(180deg, rgba(75, 125, 255, 0) 0%, rgba(86, 103, 251, 0.75) 100%);
  border: 1px solid rgba(86, 103, 251, 0.5);
}

.modalbook .timeline:nth-child(3) .kotak {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 125, 255, 0)), to(rgba(86, 103, 251, 0.75)));
  background: linear-gradient(180deg, rgba(75, 125, 255, 0) 0%, rgba(86, 103, 251, 0.75) 100%);
  border: 1px solid rgba(86, 103, 251, 0.5);
}

.modalbook .timeline:nth-child(4) .circle {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 214, 65, 0)), to(rgba(202, 214, 65, 0.75)));
  background: linear-gradient(180deg, rgba(202, 214, 65, 0) 0%, rgba(202, 214, 65, 0.75) 100%);
  border: 1px solid rgba(202, 214, 65, 0.5);
}

.modalbook .timeline:nth-child(4) .kotak {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 214, 65, 0)), to(rgba(202, 214, 65, 0.75)));
  background: linear-gradient(180deg, rgba(202, 214, 65, 0) 0%, rgba(202, 214, 65, 0.75) 100%);
  border: 1px solid rgba(202, 214, 65, 0.5);
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes scaleDown {
  0% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@keyframes scaleDown {
  0% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@-webkit-keyframes scaleBack {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@keyframes scaleBack {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@-webkit-keyframes scaleForward {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleForward {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.sidenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50px;
}

#videogroup {
  position: relative;
  padding-top: 37.8%;
}

#videogroup.videogroup-solo {
  padding-top: 56%;
}

#video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#modalmain #modalmain-child {
  max-width: 1500px;
}

#livechat {
  min-height: 450px;
}

.multi-page-form .panel {
  display: none;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.exit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.exit-content a {
  text-decoration: none;
  color: white;
}

.exit-content a:hover {
  color: white;
}

.canvas-padding {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  width: 310px;
  height: 544px;
  position: relative;
  top: -150px;
  left: -80px;
}

.canvas-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.twibbon-el {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: .5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 245px;
}

.tombol {
  margin-top: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: .5rem;
  width: 100%;
}

#uploadBtn {
  padding: 10px;
  color: white;
  background-color: #009578;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
}

#uploadBtn:hover {
  background-color: #00b28f;
}

#voteContainer {
  opacity: 0 !important;
  pointer-events: none;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

#voteContainer.vote-show {
  pointer-events: unset;
  opacity: 1 !important;
}

@media screen and (max-width: 990px) {
  #modalmain #modalmain-child {
    max-width: 100%;
  }
  #modalmain .modal-body .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #videogroup {
    padding-top: 56.25%;
  }
}

@media screen and (max-width: 1040px) {
  #misc {
    display: none;
  }
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 2rem 0;
    gap: 2rem;
  }
  .content .sidelogo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .content .sidenav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: unset;
  }
  .content .sidenav .box {
    right: 0px;
  }
  .content #city {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(54, 157, 233, 0.5) #000;
  }
  .content #city::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  .content #city::-webkit-scrollbar-track {
    background: #000;
  }
  .content #city::-webkit-scrollbar-thumb {
    background: rgba(54, 157, 233, 0.5);
    border-radius: 0px;
  }
  body {
    min-height: 90vh;
  }
  .content {
    min-height: 90vh;
  }
  @-webkit-keyframes scaleBack {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scaleBack {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @-webkit-keyframes scaleForward {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scaleForward {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
}

@media screen and (max-width: 1400px) {
  #city .map {
    width: 750px !important;
    height: 600px !important;
  }
  #city img {
    width: 750px;
  }
  #text-lagu {
    width: 750px;
  }
  #text-lagu p {
    top: 520px;
  }
}

@media screen and (max-width: 1240px) {
  #city .map {
    width: 600px !important;
    height: 480px !important;
  }
  #city img {
    width: 600px;
  }
  #text-lagu {
    width: 600px;
  }
  #text-lagu p {
    top: 400px;
  }
}

@media screen and (max-width: 540px) {
  .box p {
    font-size: 15px;
  }
  .box:hover {
    width: 110px;
    right: 85px;
  }
  .box:nth-child(1):hover {
    width: 120px;
  }
  .box:nth-child(2):hover {
    width: 130px;
  }
  .box:nth-child(3):hover {
    width: 125px;
  }
  .box:nth-child(4):hover {
    width: 155px;
  }
}

@media screen and (min-aspect-ratio: 17 / 9) and (max-width: 990px) {
  #modalmain .modal-body {
    padding: 3rem 5rem;
  }
}

@media screen and (min-aspect-ratio: 18 / 9) and (max-width: 990px) {
  #modalmain .modal-body {
    padding: 3rem 8rem;
  }
}

@media screen and (min-width: 990px) and (max-width: 1040px) {
  #modalmain .col.col-lg-8 {
    width: 60%;
  }
  #modalmain .col.col-lg-4.p-0 {
    width: 40%;
  }
}

@media screen and (max-width: 600px) {
  #text-lagu {
    position: absolute;
    width: 97%;
  }
  #text-lagu p {
    top: 0;
  }
}
/*# sourceMappingURL=vv.css.map */