/* Ukon Style CSS */

/* Brand & Logo */

.ulogo {
	background: url("../images/logo.png") no-repeat;
	background-size: contain;
	height: 250px;
	/* display: flex;
	justify-content: center;
	align-items: center; */
}

.ulogo-powered {
	background: url("../images/logo-powered.png") no-repeat;
	background-size: contain;
	/* height: 250px; */
}

/* End Brand */

/* Huruf - Huruf */

.u-huruf-v {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	/* background-color: #2e5579; */
  /* color: rgb(68, 75, 141); */
	padding: 7px;
  /* border-bottom-left-radius: 5px;
  border-top-left-radius: 5px; */
	display: inline-block;
}
/* Card */

/* From Uiverse.io by JaydipPrajapati1910 */ 
.ucard {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background-color: red;
    border-radius: 20px;
    border: none;
    color: white;
    position: relative;
    /* cursor: pointer; */
    /* font-weight: 900; */
    transition-duration: .2s;
    background: linear-gradient(0deg, #c3bcbc, #f3f1f1);
  }
  
  .ucard:before, .ucard:after {
    content: '';
    position: absolute;
    left: -3px;
    top: -3px;
    border-radius: 20px;
    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
          #0000ff, #00ff00,#ffff00, #ff0000);
    background-size: 400%;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    z-index: -1;
    animation: steam 25s linear infinite;
  }
  
  @keyframes steam {
    0% {
      background-position: 0 0;
    }
  
    50% {
      background-position: 300% 0;
    }
  
    100% {
      background-position: 0 0;
    }
  }
  
  .ucard:after {
    filter: blur(100px);
  }
  
/* End Card */

/* ---BORDER */

.uborder {
  border: 1px solid #000;
  border-radius: 10px;
}

.uborder-bottom-dashed {
  border-bottom: 1px dashed;
}

/* ---END BORDER */

/* Button */

.ubutton {
    position: relative;
    text-decoration: none;
    cursor: pointer;
  }
  
  .ubutton::before {
    content: "";
    transition: 0.5s;
  }
  
  .ubutton:hover::before {
    opacity: 0.7;
  }
  
  .ubutton::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
    /* border-radius: 9px; */
    transition: 0.3s;
    opacity: 0;
    filter: blur(10px);
  }
  
  .ubutton:hover:after {
    opacity: 0.5;
  }

  
/* End Button */

/* Background */
.ubg-1 {
	background: url("images/bg1.jpg") no-repeat;
	background-size: cover;
  opacity: 0.99;
}

.ubg-2 {
	background: url("images/bg2.jpg") no-repeat;
	background-size: cover;
  opacity: 0.99;
}

.ubg-3 {
	background: url("bg3.jpg") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-4 {
	background: url("../images/bg4.png") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-5 {
	background: url("../images/bg5.jpg") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-6 {
	background: url("../images/bg6.png") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-7 {
	background: url("../images/bg7.jpg") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

/* Sticky Backgound */

.ubg-stk-1 {
	background: url("../images/bg-stk1.png") no-repeat right;
	background-size: contain;
    opacity: 0.99;
}

.ubg-stk-2 {
	background: url("../images/bg-stk2.png") no-repeat bottom;
	background-size: contain;
    opacity: 0.99;
}

.ubg-stk-3 {
	background: url("../images/bg-stk3.png") no-repeat right;
	background-size: contain;
    opacity: 0.99;
}

.ubg-stk-4 {
	background: url("../images/bg-stk4.png") no-repeat right;
	background-size: contain;
    opacity: 0.99;
}

/* Linier Background */
.ubgx-1 {
  background: linear-gradient(0deg, #c3bcbc, #f3f1f1);
}

/* Button 2 */
.ubtn {
  padding: 10px;
  font-weight: bold;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  align-items: center;
  border: solid black 2px;
  outline: none;
  cursor: pointer;
}

.svg {
  height: 25px;
  margin-right: 10px;
}

.ubtn .text {
  z-index: 10;
  font-size: 14px;
}

.ubtn:hover .text {
  animation: text forwards 0.3s;
  /*color: white;*/
}

@keyframes text {
  from {
    color: black;
  }

  to {
    color: white;
  }
}

.svg {
  z-index: 6;
}

.ubtn:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 300px;
  animation: wave1 2.5s ease-in-out forwards;
}

.ubtn:hover::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 300px;
  animation: wave2 2.5s ease-in-out forwards;
}

@keyframes wave1 {
  0% {
    z-index: 1;
    background: #EB4335;
    width: 0;
    height: 0;
    opacity: 1;
  }

  1% {
    z-index: 1;
    background: #EB4335;
    width: 0;
    height: 0;
    opacity: 1;
  }

  25% {
    z-index: 1;
    background: #EB4335;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  26% {
    z-index: 3;
    background: #34A853;
    width: 0;
    height: 0;
    opacity: 1;
  }

  50% {
    z-index: 3;
    background: #34A853;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  70% {
    z-index: 3;
    background: #34A853;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  100% {
    z-index: 3;
    background: #34A853;
    width: 800px;
    height: 800px;
    opacity: 1;
  }
}

@keyframes wave2 {
  0% {
    z-index: 2;
    background: #FBBC05;
    width: 0;
    height: 0;
    opacity: 1;
  }

  11% {
    z-index: 2;
    background: #FBBC05;
    width: 0;
    height: 0;
    opacity: 1;
  }

  35% {
    z-index: 2;
    background: #FBBC05;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  39% {
    z-index: 2;
    background: #FBBC05;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  40% {
    z-index: 4;
    background: #4285F4;
    width: 0;
    height: 0;
    opacity: 1;
  }

  64% {
    z-index: 4;
    background: #4285F4;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  100% {
    z-index: 4;
    background: #4285F4;
    width: 800px;
    height: 800px;
    opacity: 1;
  }
}

.ubtn:hover .red {
  animation: disappear 0.1s forwards;
  animation-delay: 0.1s;
}

.ubtn:hover .yellow {
  animation: disappear 0.1s forwards;
  animation-delay: 0.3s;
}

.ubtn:hover .green {
  animation: disappear 0.1s forwards;
  animation-delay: 0.7s;
}

.ubtn:hover .blue {
  animation: disappear 0.1s forwards;
  animation-delay: 1.1s;
}

@keyframes disappear {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(100);
  }
}

/* Tiket */
/* Perbaikan: Ganti variabel SASS ke CSS biasa, hilangkan nested selector, dan gunakan warna hex langsung */

/* Warna */
:root {
  --tiket-red: #e84c3d;
  --tiket-grey: #ecedef;
  --tiket-black: #343434;
}

.cardWrap {
  width: 27em;
  margin: 3em auto;
  color: #fff;
  font-family: sans-serif;
}

.card-tiket {
  background: linear-gradient(to bottom, var(--tiket-red) 0%, var(--tiket-red) 26%, var(--tiket-grey) 26%, var(--tiket-grey) 100%);
  height: 11em;
  float: left;
  position: relative;
  padding: 1em;
  margin-top: 100px;
}

.cardLeft {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 16em;
}

.cardRight {
  width: 6.5em;
  border-left: .18em dashed #fff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
}
.cardRight:before,
.cardRight:after {
  content: "";
  position: absolute;
  display: block;
  width: .9em;
  height: .9em;
  background: #fff;
  border-radius: 50%;
  left: -.5em;
}
.cardRight:before {
  top: -.4em;
}
.cardRight:after {
  bottom: -.4em;
}

h1 {
  font-size: 1.1em;
  margin-top: 0;
}
h1 span {
  font-weight: normal;
}

.title,
.name,
.seat,
.time {
  text-transform: uppercase;
  font-weight: normal;
}
.title h2,
.name h2,
.seat h2,
.time h2 {
  font-size: .9em;
  color: #525252;
  margin: 0;
}
.title span,
.name span,
.seat span,
.time span {
  font-size: .7em;
  color: #a2aeae;
}

.title {
  margin: 2em 0 0 0;
}

.name,
.seat {
  margin: .7em 0 0 0;
}

.time {
  margin: .7em 0 0 1em;
}

.seat,
.time {
  float: left;
}

.eye {
  position: relative;
  width: 2em;
  height: 1.5em;
  background: #fff;
  margin: 0 auto;
  border-radius: 1em/0.6em;
  z-index: 1;
}
.eye:before,
.eye:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
}
.eye:before {
  width: 1em;
  height: 1em;
  background: var(--tiket-red);
  z-index: 2;
  left: 8px;
  top: 4px;
}
.eye:after {
  width: .5em;
  height: .5em;
  background: #fff;
  z-index: 3;
  left: 12px;
  top: 8px;
}

.number {
  text-align: center;
  text-transform: uppercase;
}
.number h3 {
  color: var(--tiket-red);
  margin: .9em 0 0 0;
  font-size: 2.5em;
}
.number span {
  display: block;
  color: #a2aeae;
}

.barcode {
  height: 2em;
  width: 0;
  margin: 1.2em 0 0 .8em;
  box-shadow:
    1px 0 0 1px var(--tiket-black),
    5px 0 0 1px var(--tiket-black),
    10px 0 0 1px var(--tiket-black),
    11px 0 0 1px var(--tiket-black),
    15px 0 0 1px var(--tiket-black),
    18px 0 0 1px var(--tiket-black),
    22px 0 0 1px var(--tiket-black),
    23px 0 0 1px var(--tiket-black),
    26px 0 0 1px var(--tiket-black),
    30px 0 0 1px var(--tiket-black),
    35px 0 0 1px var(--tiket-black),
    37px 0 0 1px var(--tiket-black),
    41px 0 0 1px var(--tiket-black),
    44px 0 0 1px var(--tiket-black),
    47px 0 0 1px var(--tiket-black),
    51px 0 0 1px var(--tiket-black),
    56px 0 0 1px var(--tiket-black),
    59px 0 0 1px var(--tiket-black),
    64px 0 0 1px var(--tiket-black),
    68px 0 0 1px var(--tiket-black),
    72px 0 0 1px var(--tiket-black),
    74px 0 0 1px var(--tiket-black),
    77px 0 0 1px var(--tiket-black),
    81px 0 0 1px var(--tiket-black);
}

/* End Tiket */

