@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;
  }
}

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gradient {
  background: linear-gradient(75deg, rgba(6, 180, 174, 0.2) 30%, rgba(22, 36, 87, 0.45) 70%, rgba(75, 13, 63, 0.3) 90%);
  padding: 1rem;
}

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

.modal-content {
  min-height: unset !important;
}

.container {
  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: 4rem;
}

.sponsor img {
  height: 92px;
}

.collab img {
  height: 48px;
}

.medpart img {
  height: 32px;
}

.partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

.partner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.partner p {
  margin-top: 3rem;
  margin-bottom: 0;
}

.konten > *: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;
}

.konten > *: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;
}

.konten > *: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;
}

.konten > *: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;
}

.konten > *: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;
}

.konten > *: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;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.modal-isi {
  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: 2rem;
  background: rgba(0, 0, 0, 0.25);
}

.row.socmed {
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: .5rem;
}

.row.socmed a {
  width: 36px;
  height: 36px;
  padding: 0;
}

.input {
  position: relative;
  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;
  width: 100%;
}

.input__element, .custom-select {
  margin: 0;
  width: 100%;
  padding: 14px 21px;
  border: none;
  background-color: #110F15;
  -webkit-box-shadow: inset 0 -1px 0 0 black;
          box-shadow: inset 0 -1px 0 0 black;
  transition: -webkit-box-shadow 0.4s ease;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  -webkit-box-shadow: 0px 3px 0px #369ee99c;
          box-shadow: 0px 3px 0px #369ee99c;
  border-radius: 4px;
}

.input__element:focus, .custom-select:focus {
  -webkit-box-shadow: inset 0 -2px 0 0 #369DE9;
          box-shadow: inset 0 -2px 0 0 #369DE9;
  outline: none;
  -webkit-box-shadow: 0px 5px 0px #369DE9;
          box-shadow: 0px 5px 0px #369DE9;
}

.presensi {
  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;
  width: 100%;
}

.input__label {
  font-size: 16px;
  line-height: 18px;
  position: absolute;
  top: 14px;
  left: 21px;
  color: #DAD9D9;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.2s, 0.2s;
          transition-duration: 0.2s, 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1), cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1), cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-delay: 0s, 0s;
          transition-delay: 0s, 0s;
}

.input__element:focus + .input__label, .input__element:not(:placeholder-shown) + .input__label {
  top: -16px;
  left: 0;
  font-size: 14px;
  -webkit-transform: translate3d(0, -5px, 0);
          transform: translate3d(0, -5px, 0);
}
/*# sourceMappingURL=presensi.css.map */