*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
  font-family: "Helvetica Neue",Helvetica,Arial
}

body{
  height: 100vh;
  overflow: hidden;
}

.main-wrapper{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, rgba(8, 5, 29, 1), rgb(27, 52, 128));
  padding-bottom: 50px;

}

.wrapper {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
}

.mid{
	height: 40px;
	width: 40px;
	border-radius: 50%;
	position: absolute;
	background: rgb(251, 248, 248);
  border: 2px solid #2B5C95;
  display: flex;
  justify-content: center;
  align-items: center;
}
.center {
  height: 22px;
	width: 22px;
	border-radius: 50%;
	position: absolute;
	background: #2B5C95;
}
#spin{
	height: 90px;
  width: 90px;
  background: #f8d41d;
  position: absolute;
  font-size: 26px;
  color: white;
  font-weight: 1000;
  letter-spacing: 2px;
  border: 1px solid lightgrey;
  cursor: pointer;
  box-shadow: 0 0px 30px black;
  transition: 0.2s all;
  z-index: 2;
  border-radius: 50%;
}
@keyframes scaleAnimation {
  from {
    transform: scale(1.05);
  }
  50% {
    transform: scale(0.95);
  }
  to {
    transform: scale(1.05);
  }
}
.prize-desription-wrapper{
  display: none;
  padding: 8px 16px;
  min-height: 60px;
	max-width: 600px;
  width: 90%;
	position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgb(251, 248, 248);
  border: 1px solid rgb(251, 248, 248);
  border-radius: 16px;
  box-shadow: 0 0 10px gray;
  animation: scaleAnimation 1s;
  animation-iteration-count: infinite;
  transition: 1s;
  z-index: 999;
  text-align: center;
}
.warning-wrapper {
  display: none;
  padding: 8px 16px;
  min-height: 60px;
	max-width: 600px;
  width: 90%;
	position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgb(251, 248, 248);
  border: 1px solid rgb(251, 248, 248);
  border-radius: 16px;
  box-shadow: 0 0 10px gray;
  animation: scaleAnimation 1s;
  animation-iteration-count: infinite;
  transition: 1s;
  z-index: 999;
  text-align: center;
}
.prize-title {
	font-size: 20px;
	color: black;
	font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}
.warning-title {
  font-size: 20px;
	color: black;
	font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}
.warning-description {
  margin-bottom: 16px;
}
.warning-image {
  width: 40px;
}
.prize-sub-description{
  font-size: 8px;
  color: black;
  margin-block: 16px;
}
#spin:hover{
	box-shadow: none;
}
.stoper{
	height: 50px;
	width: 40px;
	background: #f8d41d;
	position: absolute;
	clip-path: polygon(100% 0,50% 100%, 0 0);
  border-radius: 500px;
  z-index: 13;
  top: 10px;
}

canvas {
  transition: 5s all;
}

.button-wrapper canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#my-canvas, #my-canvas2{
  width: 100% !important;
  height: 100% !important;
  position: fixed !important;
  z-index: 100 !important;
  top: 0px !important;
  left: 0px !important;
  pointer-events: none;
}

.conic-clip {
  width: 200px;
  height: 200px;
  background-color: #3498db; /* Background color for the "pie" */
  clip-path: polygon(50% 50%, 0% 0%, 0% 100%);
}
.logo-image {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
}
.logo-image-kloia {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
}
.logo-image-aws {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
}


.click-here-btn, .click-here-btn2 {
  outline: none;
  color: white;
  font-size: 20px;
  background-color: transparent;
  border: 1px solid #3498db;
  background-color: #3498db;
  cursor: pointer;
  border-radius: 12px;
  min-height: 40px;
  padding-inline: 1em;

}

iframe {
  display: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999;
  background: rgb(251, 255, 255);
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 40px rgba(25, 255, 255, 1);
  border-radius: 20px;
  z-index: 12;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.close-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  color: #333;
  background-color: lightgray;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 2px;
}
.bending-banner {
  position: absolute;
  top:12%;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: bold;
  background-color: #3498db;
  color: #fff;
  padding: 8px;
  border-radius: 10px;
  transform: skewY(-10deg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  html, body {
    overflow-x:hidden 
  }
  body{
    height: 100vh;
    width: 100vw;
  }

  .main-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100vw;
    /* height: 100vh; */
    background: linear-gradient(to right, rgba(8, 5, 29, 1), rgb(27, 52, 128));
    padding-bottom: 50px;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 380px) {
  .bending-banner {
    position: absolute;
    top:10%;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: bold;
    background-color: #3498db;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    transform: skewY(-5deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .stoper{
    height: 40px;
    width: 35px;
    background: #f8d41d;
    position: absolute;
    clip-path: polygon(100% 0,50% 100%, 0 0);
    border-radius: 500px;
    z-index: 99;
  }

}

@media only screen and (max-width: 380px) and (max-height: 787px) {
  .bending-banner {
    position: absolute;
    top:11%;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: bold;
    background-color: #3498db;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    transform: skewY(-5deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .stoper{
    height: 35px;
    width: 30px;
    background: #f8d41d;
    position: absolute;
    clip-path: polygon(100% 0,50% 100%, 0 0);
    border-radius: 500px;
    z-index: 99;
    top: 20px;
  }
  #spin{
    height: 90px;
    width: 90px;
    background: #f8d41d;
    position: absolute;
    font-size: 26px;
    color: white;
    font-weight: 1000;
    letter-spacing: 2px;
    border: 1px solid lightgrey;
    cursor: pointer;
    box-shadow: 0 0px 30px black;
    transition: 0.2s all;
    z-index: 2;
    border-radius: 50%;
  }
  .warning-title {
    font-size: 16px;
    color: black;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
  }
  .warning-description {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .click-here-btn, .click-here-btn2 {
    outline: none;
    color: white;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #3498db;
    background-color: #3498db;
    cursor: pointer;
    border-radius: 12px;
    min-height: 40px;
    padding-inline: 1em;
    margin-top: 0.5em;
  }

}

@media only screen and (max-width: 380px) and (max-height: 600px) {
  .bending-banner {
    position: absolute;
    top:9%;
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: bold;
    background-color: #3498db;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    transform: skewY(-5deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .stoper{
    height: 35px;
    width: 30px;
    background: #f8d41d;
    position: absolute;
    clip-path: polygon(100% 0,50% 100%, 0 0);
    border-radius: 500px;
    z-index: 99;
    top: 20px
  }

  .logo-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
  }
  .logo-image-kloia {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
  }
  .logo-image-aws {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
  }
  .mid{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: absolute;
    background: rgb(251, 248, 248);
    border: 2px solid #2B5C95;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .center {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    position: absolute;
    background: #2B5C95;
  }
  #spin{
    height: 75px;
    width: 75px;
    background: #f8d41d;
    position: absolute;
    font-size: 18px;
    color: white;
    font-weight: 1000;
    letter-spacing: 2px;
    border: 1px solid lightgrey;
    cursor: pointer;
    box-shadow: 0 0px 10px black;
    transition: 0.2s all;
    z-index: 2;
    border-radius: 50%;
  }

}

@media only screen and (min-width: 300px) {
  .stoper{
    height: 35px;
    width: 30px;
    background: #f8d41d;
    position: absolute;
    clip-path: polygon(100% 0,50% 100%, 0 0);
    border-radius: 500px;
    z-index: 99;
    top: 25px;
  }
}