/** Loader Start **/
.wrap-loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    position: fixed;
    width:100%;
  }
  
  .loader {
    position: relative;
    width: 20rem;
    height: 20rem;
  }
  .loader::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8.6956521739rem;
    height: 8.6956521739rem;
    background: #000;
    border-radius: 50%;
  }
  .loader .box {
    position: absolute;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
  }
  .loader .box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
  }
  .loader .box:nth-child(1) {
    top: 0;
    left: 0;
  }
  .loader .box:nth-child(1)::before {
    top: 50%;
    left: 50%;
    background: #4185F3;
    -webkit-animation: lightMe1 4s ease-out infinite normal;
            animation: lightMe1 4s ease-out infinite normal;
  }
  .loader .box:nth-child(2) {
    top: 0;
    right: 0;
  }
  .loader .box:nth-child(2)::before {
    top: 50%;
    right: 50%;
    background: #33A753;
    -webkit-animation: lightMe2 4s ease-out infinite normal;
            animation: lightMe2 4s ease-out infinite normal;
  }
  .loader .box:nth-child(3) {
    bottom: 0;
    right: 0;
  }
  .loader .box:nth-child(3)::before {
    bottom: 50%;
    right: 50%;
    background: #FABB04;
    -webkit-animation: lightMe3 4s ease-out infinite normal;
            animation: lightMe3 4s ease-out infinite normal;
  }
  .loader .box:nth-child(4) {
    bottom: 0;
    left: 0;
  }
  .loader .box:nth-child(4)::before {
    bottom: 50%;
    left: 50%;
    background: #E94234;
    -webkit-animation: lightMe4 4s linear infinite normal;
            animation: lightMe4 4s linear infinite normal;
  }
  .loader .wrap-text {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 40px;
    overflow: hidden;
  }
  .loader .text {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    /*-webkit-animation: slider 8s ease-in infinite;
            animation: slider 8s ease-in infinite;*/
  }
  .loader .text span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 2em;
    color: #fff;
  }
  
  .loader-text {
    color: #fff;
    transform: translateY(-2rem);
    letter-spacing: 3px;
    opacity: 0.2;
    /*-webkit-animation: blink 8s ease-out infinite alternate;
            animation: blink 8s ease-out infinite alternate;*/
  }
  
  @-webkit-keyframes lightMe1 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes lightMe1 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes lightMe2 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 0.1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes lightMe2 {
    0% {
      opacity: 0.1;
    }
    25% {
      opacity: 0.1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes lightMe3 {
    0% {
      opacity: 0.1;
    }
    50% {
      opacity: 0.1;
    }
    75% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes lightMe3 {
    0% {
      opacity: 0.1;
    }
    50% {
      opacity: 0.1;
    }
    75% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes lightMe4 {
    0% {
      opacity: 0.1;
    }
    75% {
      opacity: 0.1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes lightMe4 {
    0% {
      opacity: 0.1;
    }
    75% {
      opacity: 0.1;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes slider {
    0% {
      transform: translateY(0);
    }
    10.5% {
      transform: translateY(0);
    }
    12.5% {
      transform: translateY(-40px);
    }
    23% {
      transform: translateY(-40px);
    }
    25% {
      transform: translateY(-80px);
    }
    35% {
      transform: translateY(-80px);
    }
    37.5% {
      transform: translateY(-120px);
    }
    47.5% {
      transform: translateY(-120px);
    }
    50% {
      transform: translateY(-160px);
    }
    60% {
      transform: translateY(-160px);
    }
    62.5% {
      transform: translateY(-200px);
    }
    72.5% {
      transform: translateY(-200px);
    }
    75% {
      transform: translateY(-240px);
    }
    85% {
      transform: translateY(-240px);
    }
    87.5% {
      transform: translateY(-280px);
    }
    100% {
      transform: translateY(-280px);
    }
  }
  @keyframes slider {
    0% {
      transform: translateY(0);
    }
    10.5% {
      transform: translateY(0);
    }
    12.5% {
      transform: translateY(-40px);
    }
    23% {
      transform: translateY(-40px);
    }
    25% {
      transform: translateY(-80px);
    }
    35% {
      transform: translateY(-80px);
    }
    37.5% {
      transform: translateY(-120px);
    }
    47.5% {
      transform: translateY(-120px);
    }
    50% {
      transform: translateY(-160px);
    }
    60% {
      transform: translateY(-160px);
    }
    62.5% {
      transform: translateY(-200px);
    }
    72.5% {
      transform: translateY(-200px);
    }
    75% {
      transform: translateY(-240px);
    }
    85% {
      transform: translateY(-240px);
    }
    87.5% {
      transform: translateY(-280px);
    }
    100% {
      transform: translateY(-280px);
    }
  }
  @-webkit-keyframes blink {
    from {
      opacity: 0.2;
    }
    to {
      opacity: 0.75;
    }
  }
  @keyframes blink {
    from {
      opacity: 0.2;
    }
    to {
      opacity: 0.75;
    }
  }
  /** Loader End **/
  .validationMessage{color: #ee1a27;}
  .swal2-confirm.btn-primary{margin-right:10px;}
  .toast{top: 10px;z-index: 9999 !important;}
  .modal-body .select2-container {width: 100% !important;}
  .select2-selection--single.error, .tooltip-danger.ko-validation{border: 1px solid #ff0000 !important;}
  .sorting span{cursor: pointer;}
  .toast {right: 30px;width: 431px;top: 10px;z-index: 9999 !important;}
  .toast-success {color: #fff;background: #4db24e;border: 1px solid #5dba5e;}
  .toast-danger {color: #fff;background: #e82d28;border: 1px solid #e82d28;}
  .toast i {font-size: 16px;margin-right: 10px; display: none;}
  .toast .btn-close {border: 0.4px solid #fff;border-radius: 4px;width: 24px;height: 24px;background-size: 12px;filter: brightness(0) invert(1);}
  .toast .btn-close:hover {background-color: transparent;}
  .toast-body {font-weight: 400;font-size: 14px;color: #ffffff;padding: 15px;}
  .modal-body .select2-container .select2-selection--single{padding: .75rem 1rem !important;height: 40px !important;font-size: 1em; }
  .modal-body .select2-container .select2-selection--single .select2-selection__rendered{padding-left: 0px !important;}
  .pagination.pagination-outline .page-link {padding: 0.375rem !important;}
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      margin: 0; 
  }
  /*Kanban Sidebar Start*/
  .kanban-open{
      overflow: hidden!important;
  }
  .kanban-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
  }
  
  .kanban-overlay.show {
    visibility: visible;
    transition: all .3s ease;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .kanban-sidebar {
    box-shadow: -8px 0 18px 0 rgba(25, 42, 70, 0.13);
    height: 100vh;
    width: 30rem;
    background-color: #FFFFFF;
    position: fixed;
    transform: translateX(110%);
    transition: all .3s ease;
    z-index: 1033;
    right: 2rem;
    left: auto;
    bottom: 0;
    top: -1px;
    opacity: 0;
    overflow: hidden;
  }
  
  .kanban-sidebar .card-content {
      height: 100vh;
  }
  
  .kanban-sidebar .card-header .close-icon {
    color: #475F7B;
    opacity: 1 !important;
  }
  
  .kanban-sidebar .card-header .close-icon:focus {
    outline: none;
  }
  .kanban-sidebar .kanban-item {
      height: 100vh;
  }
  .kanban-sidebar .card-content {
      height: calc(100% - 8rem);
  }
  .kanban-sidebar.show {
    opacity: 1;
    transform: translateX(9%) translateY(1px);
  }
  
  @media (max-width: 420px) {
    .kanban-sidebar {
      width: 19rem;
      right: 1.6rem;
    }
    .kanban-sidebar .quill-wrapper .snow-container .ql-tooltip input[type=text] {
      width: 70px;
    }
  }
  
  /*Product Images*/
  .product-images-sidebar .caption {
      position: absolute;
      top: -100%;
      right: 0;
      background: rgba(66, 139, 202, 0.75);
      width: 100%;
      height: 100%;
      /*padding-top: 25%;*/
      text-align: center;
      color: #fff !important;
      z-index: 2;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
  }
  
  .product-images-sidebar .thumbnail {
      position: relative;
      overflow: hidden;
      height: 115px;
      vertical-align: bottom;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4px;
      border: 1px solid #ddd;
      border-radius: 4px;
  }
  
  .product-images-sidebar .thumbnail:hover .caption {
      top: 0%;
  }
  .product-images-sidebar .product-img{
      width: 110px;
      max-height: 110px;
      object-fit: contain;
  }
  /*Kanban Sidebar End*/