@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
    scroll-behavior: smooth;
    --primary: #4154f1;
    --second: #717ff5;
    --bgColor: #fcfafa;
    --red: #AC2B31;
    --font-body: "Poppins", sans-serif;
    --font-heading: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: #444444;
    background: var(--bgColor);
    position: relative;
    overflow-x: hidden;
}

/* preloader css */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(224, 224, 224, 0.8) 100%);
  display: flex; justify-content: center; align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; color: #444; }
.preloader-logo {
  width: 140px; height: 140px; object-fit: contain;
  z-index: 2; position: relative;
  animation: preloader-pulse 1.4s ease-in-out infinite, preloader-glow 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 24px #bbb);
}
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1);}
  50% { transform: scale(1.08);}
}
@keyframes preloader-glow {
  0% { filter: drop-shadow(0 2px 24px #bbb);}
  100% { filter: drop-shadow(0 2px 40px #AC2B31);}
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@media (max-width: 768px) {
  .preloader-logo-ring { width: 130px; height: 130px; }
  .preloader-logo { width: 100px; height: 100px; }
}
/* preloader css end */

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
    pointer-events: none;
}

/* Floating Bubbles */
.bubble {
    position: fixed;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(172, 43, 49, 0.15), rgba(172, 43, 49, 0.05));
    border-radius: 50%;
    opacity: 0.6;
    animation: float-up linear infinite;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(172, 43, 49, 0.1);
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 25%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 40%;
    animation-duration: 30s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 55%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-duration: 28s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 85%;
    animation-duration: 24s;
    animation-delay: 5s;
}

.bubble:nth-child(7) {
    width: 75px;
    height: 75px;
    left: 15%;
    animation-duration: 26s;
    animation-delay: 6s;
}

.bubble:nth-child(8) {
    width: 65px;
    height: 65px;
    left: 35%;
    animation-duration: 23s;
    animation-delay: 2.5s;
}

.bubble:nth-child(9) {
    width: 85px;
    height: 85px;
    left: 60%;
    animation-duration: 27s;
    animation-delay: 4.5s;
}

.bubble:nth-child(10) {
    width: 55px;
    height: 55px;
    left: 80%;
    animation-duration: 21s;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float-up {
    0% {
        bottom: -100px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100vh;
        transform: translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

a {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: var(--second);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #2c3e50;
}

/* --- rewrite bootstrap default */
li .pe-3::marker{
    display: none;
}


.dropdown-menu{
  margin-top: 10px !important;
    border-radius: 4px;
    padding-top:0;
    padding-bottom: 0 !important;
    -webkit-animation-name:dropdown-animate ;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border:1px solid gray;
    box-shadow:o 5px 30px 0 rgba(82,63,105,0.2);
    overflow: hidden;
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-header{
text-align: center;
font-size: 15px;
padding:10px 25px;
background-color: rgb(88, 88, 88);
color: #f3f3f3;
font-weight: 700;
}

.dropdown-menu .dropdown-footer a:hover{
    text-decoration: none;
}
.dropdown-menu .dropdown-divider{
    color:#a5c5fe;
    margin:0;
}

.dropdown-menu .dropdown-item{
    font-size: 14px;
    padding:10px 10px;
    transition: 0.3s;
    background-color: rgb(214, 214, 214);
}

.dropdown-menu .dropdown-item:hover{
    background-color:#737373;
    color:#ffffff;

}

@media (min-width:768px){
    .dropdown-menu-arrow:before{
        content:'';
        width: 13px;
        height: 13px;
        background: rgb(88, 88, 88);
        position: absolute;
        top:-7px;
        right: 20px;
        transform:  rotate(45deg);
        border-top:1px solid gray;
        border-left: 1px solid gray;
    }
}

@-webkit-keyframes dropdown-animate{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    0%{
        opacity: 0;
    }
}

@keyframes dropdown-animate{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    0%{
        opacity: 0;
    }
}


/* --- header----- */
.header{
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: 0px 2px 20px rgba(1,41,112,0.1);
    background-color: #fff;
    padding-left: 20px;
}
.header .toggle-sidebar-btn{
    font-size: 32px;
    /* padding-left: 10px; */
    cursor: pointer;
    background-color: #AC2B31;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

/* -------logo------ */
.logo{
    line-height: 1;
    box-shadow: 0 0 10 0 red;
}
@media (min-width:1200px){
    .logo{
        width:320px;
    }
}
.logo img{
    max-height: 46px;
    margin-right: 6px;
}
.logo span{
    font-size: 22px;
    font-weight: 700;
    color:#0e1d36;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* --profile--- */

.nav-link{
    padding-top:5px;
    padding-bottom: 0px;
    color:#0e1d36;
}

.nav-profile:hover{
    color:#0e1d36;
}
/* --side-bar */

.sidebar {
    position:fixed;
    top:60px;
    left:0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding:20px;
    overflow-y:auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 8px 0px 20px rgba(1,41,112,0.1);
    background-color: #fff;
}

.toggle-sidebar .sidebar{
    left:-300px;
}

@media (max-width:1199px){
    .sidebar{
        left:-300px;
    }
    .toggle-sidebar .sidebar{
        left:0;
    }

}

.sidebar::-webkit-scrollbar{
    width:5px;
    height:8px;
    background-color: #fff; 
}
.sidebar::-webkit-scrollbar-thumb{
    background-color: #aab7cf;
}

@media (min-width:1200px){
    #main,#footer{
        margin-left: 300px;
    }
}

@media (min-width:1199px){
    .toggle-sidebar #main,
    .toggle-sidebar #footer{
        margin-left: 0;
    }
}





.sidebar-nav {
    padding: 0;
    margin:0;
    list-style:none;
}

.sidebar-nav li{
    padding:0;
    margin:0;
    list-style-type: none;
}

.sidebar-nav .nav-item{
    margin-bottom: 5px;
    border-radius: 4px;
}

.sidebar-nav .nav-heading{
    font-size: 11px;
    text-transform: uppercase;
    color:#889bbd;
    font-weight:600;
    margin:10px 0 5px 15px;
}

.sidebar-nav .nav-link{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color:var(--red);
    transition:0.3;
    background: #f6f9ff;
    padding: 10px 15px;
    border-radius: 4px;
}

.sidebar-nav .nav-link i{
    font-size: 20px;
    margin-right: 10px;
    color:#AC2B31;
}
.sidebar-nav .nav-link.collapsed{
    color:#AC2B31;
    background: #fff;

}

.sidebar-nav .nav-link.collapsed i{
    color:#AC2B31;
    
}

.sidebar-nav .nav-link:hover{
    background:#AC2B31;
    color: #f6f9ff; 
}


.sidebar-nav .nav-link:hover i{
    color:#f6f9ff;

}

.sidebar-na .nav-link .bi-chevron-down{
    margin-right: 0;
    transition: transform 0.2s ease-in-iut;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down{
    transform: rotate(180deg);
}

.sidebar-nav .nav-contenet{
    padding:5px 0 0 0;
    margin:0;
}
.sidebar-nav .sidebar_item_active .nav-link{
  background:#AC2B31;
  color: #f6f9ff; 
}
.sidebar-nav .sidebar_item_active i{
  color:#f6f9ff !important;
}

/* main block */
#main{
    width: auto;
    margin-top: 62.5px;
    padding: 0px 5px 5px 5px;
    transition: all 0.3s;
    color: #7C7C7C;
    /* background-color: url('LooperBG.svg'); */
}

@media (max-width:1199px){
    #main{
        padding:3px;
    }
}



/* --- login --- */

/* ........LOGIN ........... */

.body-bg{
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
  }
  .login-form{
    margin: 30px 0px;
    padding: 48px;
    border-radius: 20px;
  }
  @media (max-width:700px){
    .login-form{
      margin: 20px 0px;
      padding: 20px;
      border-radius: 20px;
    }
  }
  .center-logo {
    text-align: center;
  
  }
 
  .form-content{
    margin-top: 24px;
    text-align: start;
  }
  .form-content h4{
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
  }
  body {
    overflow-x: hidden;
  }
  
  .form-content p{
    font-size: 16px;
    color: #686A79;
  }
  .form-detail{
    margin-top: 10px;
  }
  .form-control, .form-select{
    padding: 10px 14px;
    border: 1px solid #CCCDCF;
    border-radius: 8px;
    font-size: 14px;
    color: #A4A6AF;
  }
  label{
    margin-bottom: 5px;
    color: #686A79;
    font-size: 12px;
    margin-top: 16px;
  }
  .has-icon{
    position: relative;
  }
  .has-icon a{
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #686A79;
  }
  .form-control:focus , .form-select:focus{
    border-color: #AC2B31;
    outline: 0;
    box-shadow: none;
  }
  .check-box{
    margin: 24px 0px;
  }
  .form-check-input{
    margin-top: 12px;
  }
  .agree{
    margin-top: 0;
  }
  .form-check-input:checked {
    background-color: #AC2B31;
    border-color: #AC2B31;
  }
  .form-check-input:focus {
    border-color: #AC2B31;
    box-shadow: none;
  }
  .check-box a{
    text-decoration: none;
    color: #AC2B31;
  }
  .login-btn .btn-primary{
    padding: 14px 0px;
    border-radius: 10px;
    background-color: #AC2B31;
    border-color: #AC2B31;
    font-weight: 600;
    margin-bottom: 24px;
    transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
  }
  .login-btn .btn:hover{
    background-color: #fadddd;
    /* background-color: transparent; */
    text-decoration: none;
    color: #AC2B31;
    border: 1px solid transparent;   
  }
  .login-btn p{
    color: #191A23;
    text-align: center;
    font-weight: 500;
  }
  .login-btn p span, .form-check p span{
    color: #AC2B31;
  }
  
  .forgot_password:hover{
    text-decoration:none;
    color: #AC2B31;

  }
  .login-btn .btn-primary:focus, 
  .btn-primary:active, 
  .btn-primary.active {
    /* Retain the default border color */
      box-shadow: none; /* Remove the blue shadow effect */
  }
  
  .toggle-password {
    position: absolute;
    right: 14px;
    cursor: pointer;
    color: #AC2B31;
    font-size:23px;
    top:40px;
    font-style:bold;
}

/* Progress bar */

.card {
  width: 100%;
  padding: 0;
  border:0px solid red;
  border-radius:0;
  background-color: transparent;
}
.pro-icon{
  margin-right: 5px;
  text-align: center;
}
@media (min-width:700){
  .pro-icon{
    font-size: 300px;
  }
}
.pro-bar{
  padding: 0;
}
.nav-link {
  height: 100%;
  color: rgb(111, 108, 108);
  font-weight: 500;
  
}
.nav-pro-item{
  width:auto;
  text-align: center;
  margin-left: 2px;
  height: 40px;
  /* border-right: 0.0001rem solid rgba(78, 76, 76, 0.701); */
  
}
.nav-pro-item:hover{
  background-color: rgb(247, 227, 227);
}

.nav-pills .nav-link {
  padding: auto;
  color: black;
  font-weight: 600;
  border-radius: 0;
  /* border-right: 0.5px solid white;
  border-left: 0.5px solid #AC2B31; */
  background-color:rgba(171, 170, 170, 0.547) ;
  /* background-color: transparent; */
}
.nav-pills .nav-link:hover{
  background-color: #FFF;
  color:#AC2B31;
}

.nav-pills .active-element{
  background-color: #FFF;
  color:#AC2B31;
  border: none;
}
/* application form */

.form-box{
  background-color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-bottom:10px;
}
.input-box{
    text-align: left;
    padding-left:1.5px;
}
/* Remove up and down arrows in WebKit browsers (Chrome, Safari, Edge, Opera) */
.no-arrows::-webkit-inner-spin-button,
.no-arrows::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.title-cont span{
  font-size: 25px;
  margin-top: 2px;
  color:black;
}
.title-cont i{
  color:#AC2B31;
  font-size: 20px;
  margin-top: 10px;
  margin-right: 10px;
}

hr{
  margin-top: 5px;
  margin-left:-10px;
  margin-right:-10px;
  height: 5;
  
  color:#AC2B31;
}
/* Remove up and down arrows in Firefox */
.no-arrows {
  appearance: textfield;
}

/* Optional: Ensure consistent appearance across browsers */
.no-arrows {
  appearance: none;
}

.input-box span{
    margin-left: 2px;
}
.bottom-btn{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.personal-detail{
    background-color: #fff;
    border-radius: 5px;
    padding:10px;
}
.personal-detail.print-sec{
  min-height: 100vh;
  align-items: end;
}
.btn{
    padding: 14px 82px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}
.btn.back{
    background-color: #F5F5F5;
    color: #000;
    padding: 14px 20px;
}
.btn i{
    margin-right: 8px;
}
.bottom-btn .right-cont .bg-red{
    background-color: #AC2B31;
    color: #fff;
    margin-left: 16px;
    transition: .4s;
    -ms-transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
}
.bottom-btn .right-cont a{
    background-color: #F5F5F5;
    color: #AC2B31;
    transition: .4s;
    -ms-transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
}
.bottom-btn .right-cont a:hover{
    background-color: #AC2B31;
    color: #F5F5F5;
}
.bottom-btn .right-cont .bg-red:hover{
    background-color: #F5F5F5;
    color: #AC2B31;
}
.has-upload{
  position: relative;
}
.has-upload img{
    position: absolute;
    top: 46px;
    right: 10px;
}
.student-detail{
    border-radius: 4px;
    padding:3px;
}
.student-detail nav{
  display: none;
}
.btn:first-child:active{
  color: #fff;
  background-color: #AC2B31;
  border-color: #AC2B31;
}

label{
    margin-bottom: 5px;
    color: #686A79;
    font-size: 12px;
    margin-top: 12px;
    font-weight: 600;
}
 

.button{
  background-color: #AC2B31;
  text-align: center;
  width:120px;
  height:40px;
  padding:10px 10px;
  border-radius:8px;
  color:white;
  font-weight: 600;
}
.button:hover{
  background-color: #c1b4b4;
  color:#AC2B31;
}

.button:focus{
  outline: none !important;
  box-shadow: none !important;
}
a.btn:focus {
  outline: none;
  border:none !important;
  box-shadow: none !important;
}

/* .......................searchable dropdown and multiselect dropdown............................. */

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important
}
.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #CCCDCF;
  border-radius: 4px !important;
  padding: 6px 12px;
  height: 42.5px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px !important;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
  border-radius:4px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 10px
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
  height: auto;
  margin-top: -3px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #7C7C7C;
  line-height: 28px;
  font-size:14px;
}

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #CCCDCF;
  border-radius: 8px !important;
  padding: 10px 14px;
  height: 42.5px !important;
  font-size:16px;
  color: #7C7C7C;
}
.select2-selection:focus .select2-selection--single{
  border:1px solid #AC2B31;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 6px !important;
  right: 5px;
  width: 20px
}
.select2-container .select2-selection--multiple {
  min-height:42.5px !important;
  color: #7C7C7C;
  padding-top:3px;
  padding-left:14px;
  font-size:14px;
  
}

.select2-container--default .select2-selection--multiple{
  border: 1px solid #CCCDCF;
  font-size:14px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
  border:1px solid #AC2B31;
}


/* .......................MULTI SELECTED DROPDOWN................... */




/* Adding scrool to select options */
.autocomplete-list {
  max-height: 95px;
  overflow-y: auto;
}





.ps-detail .dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ps-detail .dropdown-input {
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.ps-detail .dropdown-input:focus {
  outline: none;
}
.ps-detail .dropdown-list {
  background-color: #ffff;
  position: absolute;
  width: 100%;
  height: 75px;
  overflow-y: auto;
  border: 1px solid #CCCDCF;
  border-radius: 8px;
  display: none;
  padding: 10px 15px;
  font-size: 14px;
}

.dropdown-list li{
  list-style-type: none;
}
.category {
  padding: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #686A79;
  cursor: pointer;
}

.category-items {
  display: none;
}

.ps-detail .dropdown-item {
  padding: 8px;
  cursor: pointer;
}

.ps-detail .dropdown-item:hover {
  background-color: #f0f0f0;
}

.header-cont .dropdown-item{
  padding: 0;
}

.required{
    color: #ff0000;
}
.container{
  max-width: 100%;
}
.timeline {
      position: relative;
      max-width: 900px;
      margin: auto;
    }

    /* Vertical timeline line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 30px;
      width: 4px;
      height: 100%;
      margin-top:8px;
      background-color: gray;
      border-radius: 50%;
    }

    /* Timeline item */
    .timeline-item {
      position: relative;
      margin: 30px 0;
    }

    /* Circle indicator */
    .timeline-item .circle {
      position: absolute;
      top: 8px;
      left: 24px;
      width: 16px;
      height: 16px;
      background-color: #AC2B31;
      border: 2px solid #fff;
      border-radius: 50%;
      transform: translateY(-50%);
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    }

    /* Content box */
    .timeline-item-content {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
      margin-left: 60px;
      width: calc(100% - 80px);
      border-left: 4px solid #AC2B31;
    }

    /* Emphasizing the date */
    .timeline-item-content .date {
      font-size: 14px;
      font-weight: bold;
      color: #AC2B31;
      margin-bottom: 10px;
    }

    /* Title styling */
    

    /* Description styling */
    .timeline-item-content p {
      margin: 0;
      font-size: 15px;
      color: #555;
      line-height: 1.2;
    }



/* formselect  */

.card_body{
  width:98%;
  margin-left:auto;
  margin-right:auto;
  background-color: #fff;
}
.card-header{
  background-color:#6c6c6c;
  color:white;
}
.card_body p{
  color:rgb(0, 76, 0);
}
.card_body .desc_title{
  font-size:17px;
  font-weight: 600;
  color:#0e0c29;
}

#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(236, 236, 236, 0.8); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it overlays all other content */
  overflow: hidden; /* Prevent scrolling */
}

/* Loader: simple spinning circle */
#loader {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid rgb(255, 255, 255);
  border-right-color:rgb(211, 47, 47);
  animation: spin 1s linear infinite; /* Spin animation */
}

/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}