form.image-upload-form {
    box-shadow: 0 0 15px 0px #0002;
    padding: 20px;
    margin-top: 2em;
    position: relative;
    margin-bottom: 3rem;
}
.image-upload-wrapper {
    color:#0e65bf;
    border:2px dashed;
    border-radius: 3px;
    padding: 10px;
    min-height: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.image-file {
    display: none;
}
.image-upload-icon {
    max-width: 74px;
    width: 100%;
    margin: 0px auto;
}
.image-upload-icon img {
    width: 100%;
    animation: drop 3s linear alternate infinite;
}
.image-upload-wrapper label {
    width: 100%;
    text-align: center;
    margin: 0px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.image-upload-wrapper label p span {
    display: block;
    font-weight: 600;
}
.image-upload-wrapper label p small {
    color: #434343;
} 
span.span-select {
    color: #1e55b2;
    border-radius: 5px !important;
    border: 1px solid #1e55b2;
    transition: 0.5s all !important;
    padding: 4px 14px;
    /* background: linear-gradient(45deg, #1e55b2, #3477e8); */
    box-shadow: 0 0 11px 0 #dddddd00;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
span.span-select:hover {
    transition: 0.4s all;
    transform: scale(1.05);
}
@keyframes drop {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}
.image-upload-wrapper-table {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);
    margin-top: 20px;
}
.image-upload-wrapper-table table {
    width: 100%;
    border-radius: 4px 4px 0px 0px;
    overflow: hidden;
}
.image-upload-wrapper-table thead {
    background: #117eef;
}
.image-upload-wrapper-table thead th {
    color: #fff;
}
.image-upload-wrapper-table thead th,
.image-upload-wrapper-table tbody td {
    padding: 10px;
}
.image-upload-wrapper-table tr > *:last-child {
    text-align: center;
}
.image-upload-wrapper-table tr > *:not(:last-child):not(:first-child) {
    text-align: center;
}
/* td.table-content-and-button {
    display: flex;
    justify-content: space-between;
    gap: 10px;
} */
button.compare-btn {
    background: #17a2b8;
    border-radius: 4px;
    padding: 4px 8px;
    color: #fff;
    display: inline-flex;
    border: 1px solid;
    margin: 0 10px;
    gap: 5px;
    align-items: center;
}
span.status {
    background: #50A13B;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}
a.download-btn {
    background-color: #f2fafa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    color: #039c93;
    border-radius: 4px;
    font-weight: 600;
}

a.download-btn:hover{
    background-color: #cdebe9;
}
a.download-btn svg {
    margin-right: 4px;
}
.image-upload-wrapper-description {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.image-upload-wrapper-description p {
    margin: 0px;
    font-weight: 500;
}
.image-upload-wrapper-description a.download-all,
 .image-upload-wrapper-description button.clear-btn {
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.5s all;
    border: 1px solid;
}
.image-upload-wrapper-description button.download-all:hover{
    background: #e2372a;
    border: 1px solid #e2372a;
} 
.image-upload-wrapper-description button.clear-btn {
    background: #f34234;
    border-color: #f24033;
    color: #ffffff;
    margin-left: auto;
}
a#downloadAll {
    background: #50a13b;
    border-color: #50a13b;
    color: #fff;
}

.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 1; /* Sit on top */
}
.pupup-display {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-content {
    height: auto;
    width: calc(100% - 10vw);
    max-width: 1140px;
    aspect-ratio: 16/9;
    max-height: calc(100% - 30vh);
    position: relative;
}
.close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 35px;
    color: #282828;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 99;
    border-radius: 50%;
    background: #e7e7e7;
}

.comparison-slider {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.before, .after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.before img, .after img {
    display: block;
    width: 100%;
    height: 100%;
}
.after {
    clip-path: inset(0px 0px 0px 50%); /* Start with the after image half hidden */
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid #6ffff0;
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-main-div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-message {
    padding-top: 20px;
}
.error-message p {
    margin: 0px auto;
    color: #ff0b0b;
    font-weight: 600;
    border: 1px solid #ff8a8a;
    padding: 2px 6px;
    text-align: center;
    width: fit-content;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.image-upload-wrapper.highlight{
    background-color: #f0f8ff;
}



 /* popup css*/
 .slider-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #fff;
    z-index: 3;
    background: rgba(0, 0, 0, .3);
    border-radius: 50%;
    cursor: ew-resize;
    transform: translateY(-50%);
    margin-left: -20px;
}
.slider-handle:after {
    content: " ";
    display: block;
    width: 2px;
    background: #fff;
    height: 380px;
    position: absolute;
    left: 50%;
    z-index: 4;
    top: 50%;
    margin: 19px 0 0;
}
.slider-handle:before {
    content: " ";
    display: block;
    width: 2px;
    background: #fff;
    height: 350px;
    position: absolute;
    left: 50%;
    z-index: 4;
    bottom: 50%;
    margin: 0 0 18px;
}
.compare-label {
    position: absolute;
    background: linear-gradient(to right, #117eef 30%, #3fb0f8 100%, #20a5b8);
    color: #fff;
    font-size: 16px;
    padding: 2px 10px;
    top: 10px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 2px;
}
.before .compare-label {
    left: 10px;
}
.after .compare-label {
    right: 10px;
}

span.left-arr,
span.right-arr {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}
span.left-arr {
    border-right: 6px solid #fff;
    left: 50%;
    margin-left: -17px;
}
span.right-arr {
    border-left: 6px solid #fff;
    right: 50%;
    margin-right: -17px;
}
/*Popup css end*/

.image-upload-wrapper-table table {
  border-collapse: collapse;
  border-spacing: 0;
  border-color: #ccc;
}
.image-upload-wrapper-table table td {
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px 5px;
  border-style: solid;
  border-width: 0px;
  overflow: hidden;
  word-break: normal;
  border-color: #ccc;
  color: #333;
  background-color: #fff;
}
.image-upload-wrapper-table table th {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding: 10px 5px;
  border-style: solid;
  border-width: 0px;
  overflow: hidden;
  word-break: normal;
  border-color: #ccc;
  color: #333;
  background-color: #f0f0f0;
}
.image-upload-wrapper-table .line {
  float: left;
  width: 80%;
  height: 31px;
  border-radius: 7px;
  background-image: linear-gradient(90deg, #F4F4F4 0px, rgba(229, 229, 229, 0.8) 40px, #F4F4F4 80px);
  background-size: 600px;
  animation: shine-lines 2.0s infinite ease-out;
}
@keyframes shine-lines {
  0% {
    background-position: -100px;
  }
  40%,
  100% {
    background-position: 140px;
  }
}
.single-post #content a#downloadAll {
    background: #50a13b;
    border-color: #50a13b;
    color: #fff !important;
    line-height: 1.6 !important;
    margin-top: 0;
    margin-bottom: 0;
}
.single-post #content a.download-btn {
    background-color: #f2fafa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    color: #039c93;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1.6 !important;
    transition:0.2s;
}
.single-post #content a.download-btn:hover {
    background-color: #cdebe9;
}


/*--------------------*/

@media(max-width:767px){

.ol-list ol {
    padding-left: 16px;
}
.ol-list ul {
    padding-left: 0;
}

.image-upload-wrapper-table {
    overflow: scroll !important;
}
form.image-upload-form {
    padding:10px !important;
    margin-bottom: 0 !important;
}
.single-post .wrapper ul li {
    margin-bottom: 5px;
}

}

.image-upload-wrapper-table thead {
    background: #117eef;
}
.image-upload-wrapper-table thead th {
    background: unset;
    color: #fff;
}

.image-upload-wrapper-table td > img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

button#remove-row {
    padding: 4px 8px;
    border: none;
    background: #f34234;
    color: #fff;
    border-radius: 4px;
}
th.image-th {
    text-align: center;
}