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

a {
  text-decoration: none;
  color: white;
}

a:hover {
  color: #369DE9;
}

.mini-item {
  width: 215px;
  height: 150px;
  background: #99f1f13d;
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mini-item:hover {
  -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;
}

.mini-item span {
  font-size: 24px;
  font-weight: 300;
  opacity: .9;
}

.item {
  padding: 1rem;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: #99f1f13d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 450px;
  height: 100px;
  margin-top: 5rem;
  cursor: pointer;
  text-decoration: none;
}

.item .title {
  font-weight: 600;
  text-transform: uppercase;
}

.item .price {
  font-size: 24px;
  font-weight: 300;
  opacity: .9;
}

.item p {
  font-size: 15px;
}

.item img {
  height: 225px;
  position: relative;
  bottom: 85px;
  border-radius: 4px;
}

.item:hover img {
  -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;
}

.modal-body {
  background: none !important;
}

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

.modal-body > *:nth-child(7) {
  -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;
}

.modal-body > *:nth-child(8) {
  -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;
}

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

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

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

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

.sticky {
  -webkit-animation: fade-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: fade-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-header {
  background: none !important;
}

.gradient {
  padding: 1rem 0;
  background: linear-gradient(75deg, rgba(8, 226, 220, 0.2) 20%, rgba(22, 36, 87, 0.5) 70%, rgba(39, 31, 31, 0.4) 90%);
}

@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .container {
    max-width: 1020px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1000px) {
  .container {
    max-width: 920px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 920px;
  }
  .mini-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .item {
    margin-top: 3rem;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .item img {
    height: 175px;
    bottom: 60px;
  }
}

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