.shake {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.5s;
  
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
  }
  
  @keyframes shake {
    0% { transform: rotate(0); }
    15% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    45% { transform: rotate(4deg); }
    60% { transform: rotate(-4deg); }
    75% { transform: rotate(2deg); }
    85% { transform: rotate(-2deg); }
    92% { transform: rotate(1deg); }
    100% { transform: rotate(0); }
  }

  .loader {

  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  .drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: #eee;
    border-color: #111;
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
  }

  input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #008069;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  }
  
  input[type=file]::file-selector-button:hover {
    background: #0d45a5;
  }

  input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #555;
  }

  .repaly img{
    width: 100%;
  }
  

  .badgeimg {
    height: 20px;
    width: 20px;
    /* padding: 0px 3px; */
    color: #ffffff;
    /* margin-left: 20px; */
    background-image: url(./countbadge.png);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    font-weight: bold;
    font-size: 9px;
    padding-top: 4px;
  }

  .badgeimgblue {
    height: 20px;
    width: 20px;
    /* padding: 0px 3px; */
    color: #ffffff;
    /* margin-left: 20px; */
    background-image: url(./countbadge_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    font-weight: bold;
    font-size: 9px;
    padding-top: 4px;
  }

  .ant-select-dropdown {
    position: fixed !important;
    z-index: 1000 !important;
    pointer-events: all !important;
}

.ant-select-item {
    pointer-events: all !important;
}

.ant-select-item-option {
    pointer-events: all !important;
    user-select: none;
}

.ant-select-item-option-content {
    pointer-events: all !important;
}

.react-js-cron .ant-select-dropdown {
    pointer-events: all !important;
}
/* ant-select-dropdown ant-select-dropdown-hidden react-js-cron-select-dropdown react-js-cron-select-dropdown-period css-dev-only-do-not-override-5uvb3z ant-select-dropdown-placement-topLeft */
.ant-select-dropdown {
    z-index: 9100 !important;
}