
/** scroll bar customize***/
* {
    scrollbar-width: none;
    scrollbar-color: #002060 #ffffff;

  }

  *::-webkit-scrollbar {
    height: 2px !important;
    width: 2px !important;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #a4afc7;
    border-radius: 10px;
    border: 1px solid #ffffff;
  }

  /** scroll bar customize end***/

  

/** ck-editor height*/
.ck-editor__editable_inline {
    min-height: 300px;
}

/** new loader start here */
.loading {
    height: 0;
    width: 0;
    padding: 35px;
    border: 6px solid #ccc;
    border-right-color: #011e3f;
    border-radius: 100px;
    -webkit-animation: rotate 1s infinite linear;
    /* left, top and position just for the demo! */
    position: absolute;
    left: 50%;
    top: 50%;
  }

  @-webkit-keyframes rotate {
    /* 100% keyframe for  clockwise.
       use 0% instead for anticlockwise */
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  /** new loader end here */


  #SelExample{
    width:310px !important;
  }


  /** arrow up loader start here */
  .arrow-1-up {
    --size: 24px;
    --color: red;
    --animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    --animation-duration: 2s;
    position: relative;
    width: var(--size);
    height: var(--size);
    overflow-y: hidden;
  }
  
  .arrow-1-up::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color);
    clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 75% 50%, 75% 100%, 25% 100%, 25% 50%, 0% 50%);
    transform: translateY(-100%);
    animation: var(--animation-timing-function) var(--animation-duration) infinite arrow-1-up-animation;
  }
  
  @keyframes arrow-1-up-animation {
    0% {
      transform: translateY(100%);
    }
  
    45% {
      transform: translateY(0%);
    }
  
    55% {
      transform: translateY(0%);
    }
  
    100% {
      transform: translateY(-100%);
    }
  }

  /** arrow up loader end here */


/** blinking css start here */
    @keyframes blink {
        0%, 50%, 100% {
            opacity: 1;
        }
        25%, 75% {
            opacity: 0;
        }
    }

    .blinking-text {
        animation: blink 1s infinite;
    }
/** blinking css end here */