@font-face {
    font-family: "PoppinsMedium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
}

@font-face {
    font-family: "PoppinsRegular";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "PoppinsBold";
    src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
}

@font-face {
    font-family: "PoppinsSemiBold";
    src: url("../fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
    font-family: "patrick";
    src: url('../fonts/Patrick/PatrickHand-Regular.ttf');
}

@font-face {
    font-family: 'oswald';
    src: url('../fonts/Oswald/Oswald-Medium.ttf');
}
:root {
    --msc-font-regular: "PoppinsRegular";
    --msc-font-bold: "PoppinsBold";
    --msc-font-medium: "PoppinsMedium";
    --msc-font-semi-bold: "PoppinsSemiBold";
    --msc-font-patrick:'patrick';
    --msc-font-oswald:'oswald';
    --msc-theme-dark: #000000;
    --msc-theme-dark-hover: #0e0e0e;
    --msc-theme-light-text: #555555;
    --msc-theme-primary: #fbae15;
    --msc-theme-primary-hover: #eba10c;
    --msc-theme-blue: #0454b7;
    --msc-theme-blue-hover: #0a50a6;
    --msc-theme-warning: #fad903;
    --msc-theme-warning-hover: #f9c118;
    --msc-theme-info: #1574ab;
    --msc-theme-info-hover: #2981B4;
    --msc-theme-danger: #CB2128;
    --msc-theme-danger-logout: #ff2a1a;
    --msc-theme-danger-hover: #b4191e;
    --msc-theme-success: #00a444;
    --msc-theme-success-hover: #059340;
    --msc-theme-light: #BBBDBF;
    --msc-theme-light-thick: #6c6c6c;
    --msc-theme-light-gray: #efefef;
    --msc-theme-transparent: #ffffff00;
    --msc-bg-scheme-top-bar: #0c7ca5;
    --msc-theme-white: #fff;
    --msc-toast-success: #06c516ec;
    --msc-toast-danger: #c52f06ec;
    --msc-toast-warning: #ffd900ec;
    --msc-toast-primary: #2e579aec;
    --msc-btn-warning-gradient: linear-gradient(45deg, var(--msc-theme-primary), var(--msc-theme-primary-hover));
    --msc-btn-dark-gradient: linear-gradient(45deg, var(--msc-theme-dark), var(--msc-theme-dark-hover));
    --msc-btn-blue-gradient: linear-gradient(45deg, var(--msc-theme-blue), var(--msc-theme-blue-hover));
    --msc-btn-danger-gradient: linear-gradient(45deg, var(--msc-theme-danger), var(--msc-theme-danger-hover));
    --msc-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body, html {
    font-family: var(--msc-font-patrick);
    overflow-x: hidden;
    background-color: #ffffff;
}
::-webkit-scrollbar {
    display: none;
  }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.msc-cbc-header-img-logo{
    width: 80px;
    margin-top:10px;
}
header{
    border-radius: 12px;
}
.msc-cbc-header-title{
    font-size: 40px;
    margin-top: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.msc-cbc-header-other-details{
    text-align: center;
    display: flex;
    justify-content: flex-end;
}
.msc-cbc-header-other-details a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 21px;
    padding: 26px 12px;
    /* font-family: var(--msc-font-regular); */
    font-weight: 600;
    letter-spacing: 3px;
}

/* baloon effect */
#balloon-container {
    height: 100vh;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    transition: opacity 500ms;
  }
  
  .balloon {
    height: 125px;
    width: 105px;
    border-radius: 75% 75% 70% 70%;
    position: relative;
  }
  
  .balloon:before {
    content: "";
    height: 75px;
    width: 1px;
    padding: 1px;
    background-color: #FDFD96;
    display: block;
    position: absolute;
    top: 125px;
    left: 0;
    right: 0;
    margin: auto;
  }
  
  .balloon:after {
      content: "▲";
      text-align: center;
      display: block;
      position: absolute;
      color: inherit;
      top: 120px;
      left: 0;
      right: 0;
      margin: auto;
  }
  
  @keyframes float {
    from {transform: translateY(100vh);
    opacity: 1;}
    to {transform: translateY(-300vh);
    opacity: 0;}
  }

  .msc-hero-section-image{
    width: 100%;
    border-radius: 18px;
  }
/* baloon effect */


/* animated button */

#msc-animated-btn {
    position: relative;
    padding: 12px 35px;
    background: linear-gradient(180deg, #dffdf9, #ffffff00);
    font-size: 17px;
    font-weight: 500;
    color: #181818;
    border: 3px solid #dfedee;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
  .star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #eefc81);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  }
  
  .star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #000);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #000);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #dfedee);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #dfedee);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
  }
  
  .star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #dfedee);
    z-index: -5;
    transition: all 0.8s ease;
  }
  
  #msc-animated-btn:hover {
    background: linear-gradient(180deg, #dffdf9, #ffffff00);
    color: #000;
    box-shadow: 0 0 25px #dfedee;
}
  #msc-animated-btn:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px #dfedee);
    z-index: 2;
  }
  
  #msc-animated-btn:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #dfedee);
    z-index: 2;
  }
  
  #msc-animated-btn:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #dfedee);
    z-index: 2;
  }
  
  #msc-animated-btn:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px #dfedee);
    z-index: 2;
  }
  
  #msc-animated-btn:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #dfedee);
    z-index: 2;
  }
  
  #msc-animated-btn:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #000);
    z-index: 2;
  }
  
  .fil0 {
    fill: #f9d887;
  }
  
/* animated button */

/* buttons-section */
/* cards css */
/* From Uiverse.io by alexruix */ 
.msc-button-card {
    --background: linear-gradient(to left, #edf1ef 0%, #d7e9e9 100%);
    height: auto;
    width: 100%;
    padding: 5px;
    border-radius: 1rem;
    overflow: visible;
    background: #f7ba2b;
    background: var(--background);
    position: relative;
    z-index: 1;
    margin: 12px;
}
   
   .msc-button-card::after {
    position: absolute;
    content: "";
    top: 30px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(0.8);
    filter: blur(25px);
    background: #f7ba2b;
    background: var(--background);
    transition: opacity .5s;
   }
   
   .msc-button-card-info {
    --color: #181818;
    font-family: var(--msc-font-regular);
    background: #b9d8f5c7;
    color: var(--color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: visible;
    border-radius: .7rem;
    background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(240)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23C8FFF9'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='300' height='250' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.02'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
   .msc-button-card .title {
    font-weight: bold;
    letter-spacing: .1em;
   }
   
   /*Hover*/
   .msc-button-card:hover::after {
    opacity: 0;
   }
   
   .msc-button-card:hover .card-info {
    color: #f7ba2b;
    transition: color 1s;
   }
   
   .msc-button-title{
    padding: 12px 4px 8px 8px;
   }
/* cards css */
.msc-buttons-section-headers{
    font-family: var(--msc-font-oswald) !important;
    font-style: italic;
    padding: 12px 8px;
}
/* buttons-section */

/* form css */
.msc-form-label{
    font-family: var(--msc-font-oswald);
}

.msc-form-control{
    margin: 8px 0px;
    padding: 8px;
}
.msc-form-control:focus{
    /* border: none; */
    box-shadow: none;
}
.msc-form-description-text{
    font-family: var(--msc-font-oswald);
    display: inline-block;
    margin: 0 !important;
}

/* checkbox css */
/* From Uiverse.io by vishnupprajapat */ 
.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }
  
  .checkbox-wrapper-46 .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
  }
  .checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-46 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506eec;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
  }
  .checkbox-wrapper-46 .cbx span:last-child {
    padding-left: 8px;
  }
  .checkbox-wrapper-46 .cbx:hover span:first-child {
    border-color: #506eec;
  }
  
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
    background: #506eec;
    border-color: #506eec;
    animation: wave-46 0.4s ease;
  }
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  @keyframes wave-46 {
    50% {
      transform: scale(0.9);
    }
  }
  
/* checkbox css */
.msc-form-select{
    padding: 8px 8px;
    margin-top: 8px;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 8px;
}

.msc-contest-entry-form-outer{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px;
    border-radius: 12px;
    position: relative;
}

.msc-register-now-img {
    position: absolute;
    width: 150px;
    right: -33px;
    top: -77px;
}
/* form css */


/* voting css */



.vote-card {
  position: relative;
  width: 350px;
  height: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 17px;
  /* overflow: hidden; */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.vote-card .lines {
position: absolute;
inset: 0;
background: none !important; /* Remove the black background */
overflow: hidden;
}

.vote-card .lines::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 600px;
height: 120px;
background: linear-gradient(
  transparent,
  #ffd241,
  #ffd241,
  #ffd241,
  transparent
);
animation: animate 4s linear infinite;
transform-origin: 0 0;
}

.vote-card .lines::after {
content: "";
position: absolute;
inset: 3px;
background: #ffffff !important; /* Ensure white background */
border-radius: 17px;
}


@keyframes animate {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(360deg);
}
}

.vote-card .lines::after {
content: "";
position: absolute;
inset: 3px;
background: #292929;
border-radius: 17px;
}

.vote-card .imgBx {
  position: relative;
  width: 100%;
  height: 364px;
  padding: 12px !important;
  padding: 20px;
  z-index: 1;
}
.vote-card .imgBx img {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 330px;
  border-radius: 5%;
  /* padding: 12px; */
  margin: 3px -1px;
  border: 2px solid #ffd24130;
  overflow: hidden;
  object-fit: cover;
}

.vote-card .content {
  position: relative;
  width: 100%;
  padding: 0px 14px 0px 14px;
  z-index: 1;
}

.vote-card .content .details {
width: 100%;
text-align: center;
}

.vote-card .content .details h2 {
font-size: 1.5em;
font-weight: 600;
color: #ffd241;
line-height: 1.2em;
}

.vote-card .content .details h2 span {
  font-size: 1.0em;
  font-weight: 900;
  color: #000000;
  opacity: 0.75;
}
.vote-card .content .details .data {
display: flex;
justify-content: center;
margin: 20px 0;
padding: 0 30px;
}

.vote-card .content .details .data h3 {
font-size: 2.1em;
color: #ffd241;
line-height: 1.2em;
font-weight: 600;
}

.vote-card .content .details .data h3 span {
  font-size: 1.25em;
  font-weight: 400;
  color: #000000;
  opacity: 0.75;
}

.vote-card .content .details .actionBtn {
display: flex;
justify-content: center;
gap: 20px;
padding: 0 30px;
}

.vote-card .content .details .actionBtn button {
padding: 10px 30px;
border: none;
outline: none;
border-radius: 5px;
font-size: 1em;
font-weight: 500;
background: #ffd241;
color: #222;
cursor: pointer;
opacity: 0.9;
transition: 0.3s;
}
.theme-blue{
    background: #0379be !important;
}
.vote-card .content .details .actionBtn button:hover {
opacity: 1;
transform: scale(1.05);
}

.vote-card .content .social-icons {
position: relative;
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}

.vote-card .content .social-icons a {
color: #fff;
font-size: 1.5em;
opacity: 0.75;
transition: 0.3s;
}

.vote-card .content .social-icons a:hover {
transform: scale(1.2);
opacity: 1;
color: #ffd241;
}


.msc-image-wrapper{
  height: 400px;
}

/* voting css */
/*other  voting css */
.msc-shining-star-wrapper {
  border-radius: 4px;
  box-shadow: 0 0 .3rem #ccc;
  padding: 8px 0;
  background: #ddd;
}
.msc-shining-stars-main-wrapper{
  position: relative;
}
.msc-shining-stars-main-wrapper::after {
  content: "";
  height: 310px;
  width: 1px;
  position: absolute;
  bottom: 0.5rem;
  left: 40.5rem;
  background-color:#eabdbd;
}
.msc-text-primary{
  color: var(--msc-theme-primary);
}
.msc-shining-star-image {
  aspect-ratio: 4/4;
  width: 150px !important;
  border-radius: 16px;
}
.msc-border-right{
  border-right: 1px solid #fdce87;
  height: 40vh;
  /* margin-top: 100px; */
}
.col-md-4 .msc-shining-star-box-wrapper{
  position: relative;
  margin-bottom: 24px;
}
.col-md-4 .msc-shining-star-box-wrapper:last-child::after {
  /*content: "";*/
  /*position: absolute;*/
  /*width: 1px;*/
  /*left: 13rem;*/
  /*bottom: 5rem;*/
  height: 100px;
  /*background-color: #eabdbd;*/
}
.msc-shining-star-rank {
  font-size: 19px;
  font-weight: bolder;
  color: #fb632a;
}


.msc-shining-stars-main-wrapper::after{
  display: none;
}
.msc-shining-star-box-wrapper::after{
  display: none;
}
.msc-rank-holders-wrapper {
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
padding: 10px 12px;
/* background-image: url('img/app/star.png'); */
/* background-position: center 0; */
/* background-repeat: no-repeat; */
/* background-size: contain; */
/* height: 25vh; */
/* position: relative; */
text-align: center !important;
border-radius: 15px;
display: flex;
align-items: center;
background-image: radial-gradient(#911066 1px, transparent 1px);
background-size: 74px 74px;
background-color: rgba(247, 243, 181, 0.41);
}
.msc-rank-holders-wrapper:nth-child(2){
  margin-bottom: 40px;
}
.msc-rank-holder-images {
width: 100%; 
/*margin: 11px;*/
padding:15px;
}
.msc-rank-holder-student-name{
  font-size: 24px;
  font-weight: 800px;
}
.msc-rank-holder-rank-content {
font-weight: 900;
color: #fff;
background-color: #ee3e37;
font-size: 14px !important;
margin: 0 0  6px 0!important;
border-radius: 12px;
padding: 7px;
}
.msc-rank-holder-name-content{
  font-weight: 900;
}
.msc-rank-holder-image-wrapper{
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}
.msc-shining-star-wrapper {
border-radius: 4px;
box-shadow: 0 0 .3rem #ccc;
padding: 8px 0;
background: #ddd;
}

.msc-rank-holder-score {
font-size: 15px !important;
font-weight: 800;
}
.msc-exam-holder-exam-content {
font-size: 16px !important;
/* color: #d9ff00; */
font-weight: 700;
}
.msc-air-rank-number {
color: #fbe6de;
font-size: 15px;
}



.custom-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 25%; /* Adjust to half of the current width */
  z-index: 1050;
}

.fade-in-out {
  animation: fadeIn 0.5s ease-in-out, fadeOut 0.5s ease-in-out 4s forwards;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateX(20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeOut {
  from {
      opacity: 1;
      transform: translateX(0);
  }
  to {
      opacity: 0;
      transform: translateX(20px);
  }
}

@media only screen and (max-width: 768px) {
.msc-rank-holders-wrapper{
  margin: 12px  0 !important;
  
}
}

.msc-shining-stars-main-wrapper::after{
  display: none;
}
.msc-shining-star-box-wrapper::after{
  display: none;
}
.msc-rank-holders-wrapper {
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
padding: 10px 12px;
/* background-image: url('img/app/star.png'); */
/* background-position: center 0; */
/* background-repeat: no-repeat; */
/* background-size: contain; */
/* height: 25vh; */
/* position: relative; */
text-align: center !important;
border-radius: 15px;
display: flex;
align-items: center;
background-image: radial-gradient(#911066 1px, transparent 1px);
background-size: 74px 74px;
background-color: rgba(247, 243, 181, 0.41);
}
.msc-rank-holders-wrapper:nth-child(2){
  margin-bottom: 40px;
}
.msc-rank-holder-images {
/* width: 100%; */
margin: 11px;
}
.msc-rank-holder-student-name{
  font-size: 24px;
  font-weight: 800px;
}
.msc-rank-holder-rank-content{
  font-weight: 900;
  color: #fff;
  background-color: #ee3e37;
font-size: 20px !important;
margin:0 0  6px 0!important;
border-radius: 12px;
padding: 8px;
}
.msc-rank-holder-name-content{
  font-weight: 900;
}
.msc-rank-holder-image-wrapper{
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}
.msc-shining-star-wrapper {
border-radius: 6px;
box-shadow: 0 0 0.2rem #ccc;
padding: 8px 0;
background: #fffcf5;
cursor:pointer;
}

.msc-rank-holder-score{
font-size: 20px !important;   
font-weight: 800;
}
.msc-exam-holder-exam-content {
font-size: 24px !important;
/* color: #d9ff00; */
font-weight: 700;
}
.msc-air-rank-number{
color: #fbe6de;
font-size: 24px;
}
@media only screen and (max-width: 768px) {
.msc-rank-holders-wrapper{
  margin: 12px  0 !important;

}
.msc-rank-holder-rank-content {
font-weight: 900;
color: #fff;
background-color: #ee3e37;
font-size: 14px !important;
margin: 0px 0  6px 0!important;
border-radius: 12px;
padding: 8px;
}
.msc-air-rank-number {
color: #fbe6de;
font-size: 15px;
}
.msc-shining-star-exam,.msc-shining-star-rank,.msc-shining-star-name{
font-size:15px;
}
.msc-group-date{
text-align:center !important;
}
}
/*other  voting css */

/* Rules */
.rules-section {
  background-color: #ffffff;
  padding: 2rem 0;
}

.rules-section h2 {
  color: #000000;
  text-align: center;
  font-family: var(--msc-font-oswald);
}

.rules-content ol {
  list-style-type: decimal;
  margin-left: 1.5rem;
}

.rules-content li {
  font-size: 1.2rem;
  line-height: 1.6;
}

.rules-content a {
  color: #ffd241;
  text-decoration: underline;
}

/* Rules */

/* topvoted */
/* vote button */

/* vote button */
/* topvoted */




                                
.label {
  background-color: #E1F5FE;
  border: 2px solid rgb(91, 91, 240);
  display: flex;
  align-items: center;
  border-radius: 50px;
  width: 160px;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 5px;
  position: relative;
}

.label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  width: 8px;
  height: 8px;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}

.other-babies-gallery{
  margin: 31px 12px;
}

.label .input {
  display: none;
}

.label .title {
  font-size: 17px;
  color: #fff;
  transition: all 0.4s ease;
  position: absolute;
  right: 18px;
  bottom: 14px;
  text-align: center;
}

.label .title:last-child {
  opacity: 0;
  visibility: hidden;
}

.label .circle {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: rgb(91, 91, 240);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  overflow: hidden;
}

.label .circle .icon {
  color: #fff;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.label .circle .square {
  aspect-ratio: 1;
  width: 15px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.label .circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3333a8;
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
}

.label:has(.input:checked) {
  width: 57px;
  animation: installed 0.4s ease 3.5s forwards;
}

.label:has(.input:checked)::before {
  animation: rotate 3s ease-in-out 0.4s forwards;
}

.label .input:checked + .circle {
  animation:
    pulse 1s forwards,
    circleDelete 0.2s ease 3.5s forwards;
  rotate: 180deg;
}

.label .input:checked + .circle::before {
  animation: installing 3s ease-in-out forwards;
}

.label .input:checked + .circle .icon {
  opacity: 0;
  visibility: hidden;
}

.label .input:checked ~ .circle .square {
  opacity: 1;
  visibility: visible;
}

.label .input:checked ~ .title {
  opacity: 0;
  visibility: hidden;
}

.label .input:checked ~ .title:last-child {
  animation: showInstalledMessage 0.4s ease 3.5s forwards;
}

@keyframes pulse {
  0% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    scale: 1;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes installing {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-90deg) translate(27px) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  99% {
    transform: rotate(270deg) translate(27px) rotate(270deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes installed {
  100% {
    width: 150px;
    border-color: rgb(35, 174, 35);
  }
}

@keyframes circleDelete {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes showInstalledMessage {
  100% {
    opacity: 1;
    visibility: visible;
    right: 56px;
  }
}
                            



@media screen and (max-width:700px) {
  .msc-cbc-header-title {
    font-size: 17px;
    margin-top: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}
.msc-cbc-header-img-logo {
    width: 50px !important;
    margin-top: 8px;
}
.msc-cbc-header-other-details a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 26px 12px;
  /* font-family: var(--msc-font-regular); */
  font-weight: 600;
  letter-spacing: 3px;
}
.msc-entry-form-vector img{
  display: none;
}
.msc-register-now-img {
  position: absolute;
  width: 122px;
  right: -15px;
  top: -61px;
}
.list-decimal{
  margin: 0 !important;
}
.msc-rules-pointing-kid-vector img{
  display: none;
}
.msc-cbc-header-other-details {
  text-align: center;
  display: flex;
  justify-content: center;
}
.msc-shining-star-image {
  aspect-ratio: auto;
  padding: 2px 8px 2px 8px;
  width: 150px !important;
  border-radius: 21px;
}
#mscTableSearchBarContainer{
  width: 100% !important;
}
}