@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

/* variables */
:root
{
    --field-text-color: rgb(30,30,30);
    --text-color: rgb(27, 27, 27);
    --field-color: linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
}
body
{
    font-family: "Jost";
    width: 100%;
    position: relative;
    height: auto;
}
main
{
    width: 100%;
    background-color: rgb(241, 245, 252);
    display: grid;
    min-height: 100vh;

}



.bg-partical-2
{
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    z-index: 0;
    height: 100%;
}
.bg-partical-2 img
{
    height: 100%;
}
.side
{
    background-color: rgb(255,255,255);
    height: 100%;
}
.side-inner
{
    padding: 0 50px;
    display: grid;
    align-content: center;
    height: 100%;

}
.side-inner img
{
    width: 100%;
}

.wrapper
{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    width: 95%;
    margin-left: auto;
    position: relative;
    z-index: 100;
    height: 100%;
}

.contact
{
    display: flex;
    justify-content: end;
    align-items: center;
    margin-left: auto;
}
.contact i
{
    transform: rotate(270deg);
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: rgb(255,255,255);
    text-align: center;
    font-size: 15px;
    background-color: rgb(26, 25, 25);
    border-radius: 6px;
    margin-right: 20px;
}
article
{
    font-size: 15px;

    line-height: 1;
}
article h5
{
    font-weight: bold;
}
  
.steps
{
    width: 70%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.step-count
{
    font-size: 15px;
    color: var(--text-color);
    font-weight: bold;
    margin-top: 10px;
}
  


.main-heading
{
    color: rgb(27, 27, 27);
    font-weight: 600;
    line-height: 1.4;
    margin:10px 0; 
    width:100%; 
    font-size: 22px;
}
.line-break
{
    width: 100%;
    height: 1px;
    line-height: 0;
    border-top: 2px solid rgb(214, 216, 219);  /* Create a black line */
    margin-top: 10px; 
      
}
.form
{
    position: relative;
    /* margin-top: 10px; */
    flex: 1;
}
.form-radio
{
    width: 100%;
    font-size: 16px;
    font-family: "Jost";
    color: rgb(47, 49, 70);
    margin: 5px 0;
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: 0.5s ease;
    cursor: pointer;
    opacity: 0;
      
}

.radio-label{
    display: inline-flex;
    align-items: center;
    gap: 0.5em; 
}

.active-field label
{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.form-radio input
{

    -webkit-appearance: none;
    border: solid 2px  rgb(47, 49, 70);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;    
    /* margin-right: 15px; */
    background-color: rgb(255, 255, 255);
    transition: 0.5s ease;
    position: relative;
    cursor: pointer;
    
}
.form-radio input:checked
{
    background: linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(360deg,rgb(103,23,205) 0%, rgb(40,113,250) 100%) border-box !important;
    border: 2px solid transparent !important;
    position: relative;
    transition: 0.5s ease;

}
.form-radio input:checked::after
{  
    content: "\f00c";
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: rgb(255, 255, 255);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    line-height: 20px;
    background-image: linear-gradient( 45deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.5s ease;

}
.sub-heading    
{
    font-size: 18px;
    color: var(--text-color);
    font-weight: bold;
    margin-top: 25px !important;
  }
  
.active-field
{
    background-image: linear-gradient( 45deg, rgb(103,23,205) 0%, rgb(40,113,250) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.5s ease;
}
  

.next-prev-button
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* width: 100%; */
    margin-top: 30px;
    margin-bottom: 20px;
}
.next-prev-button button
{
    width: 45%;
    border: 0;
    border-radius: 50px;
    height: 60px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.next-prev-button button::before
{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(90deg, transparent, #fff, transparent);
    transition: 0.5s ease;
}
.next-prev-button button:hover::before
{
    left: 100%;
}
.next-prev-button .prev
{

    color: rgb(60, 60, 60);
    background-color: rgb(255,255,255);
}
.next-prev-button .next, .apply
{
    background-image: -moz-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    background-image: -webkit-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    background-image: -ms-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    color: rgb(255, 255, 255);
      
}

.form-text
{

    background-color: rgb(255, 255, 255);
    height: 75px;
    width: 100%;
    border-radius: 50px;
    padding: 0 20px;
    margin-top: 10px;
    font-size: 16px;
}
.form-text .text-field-icon i
{
    font-size: 18px;
    background-image: -moz-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);
    background-image: -webkit-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);
    background-image: -ms-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 75px;
    margin-right: 20px;
    transition: 0.5s linear;

}
.focused
{
    position: relative;
}
.focused::before
{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(40,113,250);
    left: -5px;
    line-height: 0;
    top: 42%;
}
.form-text .text-field-input
{
    width: 100%;
}
.form-text .text-field-input input
{
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: 0;
    font-size: 18px;
    color: rgb(60, 60, 60); 
}
.form-text .text-field-input input:focus
{
    outline: none;
}


.rating
{
    margin-bottom: 50px;

}
.step-inner h3
{
    font-size: 23px;
    color: rgb(27, 27, 27);
    font-weight: bold;
}
.rating p
{
        font-size: 18px;
        color: rgb(134, 134, 134);
}
.star-rating
{
    background-color: rgb(255, 255, 255);
    width: 194px;
    height: 68px;
    border-radius: 50px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.star-rating
{
    cursor: pointer;
}
.star-rating .fa-star
{

    font-size: 22px;
    margin: 0 3px;
}
.star-rating .fa-regular
{
    color: rgb(208, 208, 208);
}
.star-rating .fa-solid
{
    color: rgb(253, 174, 14);
}
.score
{
    width: 90%;
}
.score-inner
{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0;

}
.score p
{
    display: flex;
    justify-content: space-between;
}
.score p span
{
    font-size: 15px;
    color: rgb(134, 134, 134);   
}
.score-point
{
    background-color: rgb(255, 255, 255);
    width: 45px;
    height: 45px;
    border-radius: 50%;    
    font-size: 15px;
    color: rgb(27, 27, 27);
    font-weight: bold; 
    text-align: center;
    line-height: 45px;
    cursor: pointer;
}
.score-point.active
{
    background-image: -moz-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    background-image: -webkit-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    background-image: -ms-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    color: rgb(255, 255, 255);

}
.select
{
    background-color: rgb(255, 255, 255);
    position: relative;
    display: inline-block;
    border-radius: 50px;
    margin-top:0px;
    width:350px; 
    height:40px;
}
.select .select-inner
{
    width: 100%;
    line-height: 40px;
    border: 0;
    padding: 0 20px;
    list-style: none;
    border-radius: 50px;
    cursor: pointer;
    padding: 0;

}
.select .select-inner:focus
{
    outline: none;
}
.select ul
{
    overflow: hidden;
    position: absolute;
    left: 0;
    list-style: none;
    cursor: pointer;
    display: none;
    overflow-y: auto;
    width: 100%;
    margin-top: 10px;
    line-height: 50px;
    min-height: 50px;
    background-color: inherit;
    border: 0;
    z-index: 10; 
}
.select:focus-visible
{
    outline: none;
}
.select .select-inner .select-icon
{
    position: absolute;
    left: calc(100% - 32px);
    line-height: 40px;

}
.select .select-inner i, .select .select-menu i
{
    background-image: -moz-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 60%);
    background-image: -webkit-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 60%);
    background-image: -ms-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    margin-right: 15px;
}
.select .select-inner span, .select .select-menu
{
    font-size: 16px;
    color: rgb(27, 27, 27);
    padding: 0 20px;
}
.textarea
{
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 140px;
    margin-top: 25px;
    border: none;
    -webkit-appearance: none;
    padding: 20px;
    resize: none;
  }
  .textarea:focus
  {
    outline: none;
  }

  .next-prev-button .submit
{
    background-image: -moz-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    background-image: -webkit-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    background-image: -ms-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 100%);
    color: rgb(255, 255, 255);
      
}
  .submit i
  {
    font-size: 24px;
  }
  .next-prev-button .submit::before
  {
    position: relative;
  }
  .thankyou-page
  {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background-color: rgb(241, 245, 252);
    z-index: 2;
    overflow: hidden;
    display: none;
  }
  .thankyouinner
  {
    position: relative;
    min-height: 100vh;
    z-index: 10;
  }
  .thankyou-part
  {
    position: absolute;
    top: 0;
    width: auto;
    height: auto;
    left: 17%;
    z-index: 0;
  }
  .thankyou-part.type-2
  {
    top: 20%;
    left: 65%;
  }
  .thankyouinner
  {
    text-align: center;
    padding-top: 150px;
  }
  .thumb-image
  {
    width: 100%;
    height: 100%;
  }
  .thankyou-caption
  {
    margin: 35px 0;
  }
  .thankyou-caption h2
  {
    font-size: 40px;
    color: rgb(27, 27, 27);
    font-weight: bold;
    line-height: 1;
  }
  .thankyou-caption span
  {
        font-size: 20px;
        color: rgb(122, 122, 122);
        line-height: 2;
  }
.thankyou-button
{
    position: relative;
    display: block;
}
.thankyou-button button
{
    width: 230px;
    color: rgb(255, 255, 255);
    height: 70px;
    background-image: -moz-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);
    background-image: -webkit-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);
    background-image: -ms-linear-gradient( 14deg, rgb(103,23,205) 0%, rgb(40,113,250) 80%);

}

.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}


#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

#sub img
{
    width: 60px;
}

.date
{
    background-color: rgb(255, 255, 255);
    width: 350px;
    height: 40px;
    position: relative;
    display: inline-block;
    border-radius: 50px;
    margin-top: 0px;
}

.date-inner{

    font-family: 'Jost';
    width:350px; 
    border: none; 
    outline: none;
    border-radius: 50px; 
    line-height:40px;
    font-size: 18px;
    color: rgb(60, 60, 60); 
    padding: 0 20px;
    background-color: rgb(255, 255, 255);
}

.scrollable-container {
    height: 100vh; /*695px; insan update */
    width: 100%;   
    overflow-y: scroll;
    overflow-x: hidden; 
    padding: 10px; 
    /* border: none;  */
    scrollbar-width: none; /* insan add*/
  }

.scroll-container::-webkit-scrollbar {
display: none; /* untuk Chrome, Safari, dan Opera */
}

.select2
  {
      background-color: rgb(255, 255, 255);
      width: 350px;
      height: 40px;
      position: relative;
      display: inline-block;
      border-radius: 50px;
      margin-top: 0px;
  }

    /* Style the Select2 selection box */
.select2-selection {
    border: none !important;
    outline: none;   /* Set a custom border */
    border-radius: 50px;          /* Round the corners */
    font-size: 18px;             /* Set the font size */           
}

.select2-container {
    border: none !important;
    outline: none;   /* Set a custom border */
    border-radius: 50px;          /* Round the corners */
    padding: 5px 10px;           /* Add padding inside the selection box */
    font-size: 16px;             /* Set the font size */
 
}

.select2-selection__arrow{
    height: 40px !important;
}

.select2-dropdown{
    border: none !important;
}

.select2-selection.invalid {
    border: 1px solid red !important;
  }

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.loader {
  width: clamp(100px, 7.88vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l11 2s infinite;
}

@keyframes l11 {
  0% {
    background: conic-gradient(#5c0100 0, rgba(0, 0, 0, 0) 0);
  }
  12.5% {
    background: conic-gradient(#5c0100 45deg, rgba(0, 0, 0, 0) 46deg);
  }
  25% {
    background: conic-gradient(#5c0100 90deg, rgba(0, 0, 0, 0) 91deg);
  }
  37.5% {
    background: conic-gradient(#5c0100 135deg, rgba(0, 0, 0, 0) 136deg);
  }
  50% {
    background: conic-gradient(#5c0100 180deg, rgba(0, 0, 0, 0) 181deg);
  }
  62.5% {
    background: conic-gradient(#5c0100 225deg, rgba(0, 0, 0, 0) 226deg);
  }
  75% {
    background: conic-gradient(#5c0100 270deg, rgba(0, 0, 0, 0) 271deg);
  }
  87.5% {
    background: conic-gradient(#5c0100 315deg, rgba(0, 0, 0, 0) 316deg);
  }
  100% {
    background: conic-gradient(#5c0100 360deg, rgba(0, 0, 0, 0) 360deg);
  }

}

#pdf-canvas-container {
    height: 500px;
    overflow: auto;
    background: #f0f0f0;
    padding: 10px;
  }

canvas {
    display: block;
    margin: 10px auto;
    border: 1px solid #ccc;
}