﻿



.nav-tabs {
    margin-bottom: 3px;
}
@media (max-width: 767px) {
    .nav-tabs {
        display: none;
    }
}

.drop-zone {
    border-radius: 15px;
    background-color: #F8F9FA;
    overflow-y: scroll;
    border: 2px solid #E4E4E4;
    padding: 20px;
    cursor: pointer;
  
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
}
    .drop-zone p {
        line-height: 23px!important;
    }
.ImgHeader {
    height: 37px;
    background: #93C3ED;
    border: 2px solid #E4E4E4;
    border-radius: 15px;
}

    .ImgHeader h6 {
        margin-left: 28px;
    }
    .ImgHeader button {
        font-size: 10px;
        margin-top: 5px;
        margin-right: 20px;
        border-radius: 20px;
    }
.preview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.preview-img {
    max-width: 100px;
    max-height: 100px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}



.loader {
    display: none;
    text-align: center;
    margin-top: 15px;
}




.hImages {
    color: #8967f6!important;
}


.upload-area {
    cursor: pointer;
    transition: all 0.3s;
    height: 150px;
    border: 2px dotted #8967f6 !important;
}

.table {
    border: 4px dotted #8967f6 !important;
}

.upload-area:hover {
    background-color: #8967f6;
}

.border-success {
    border-color: #8967f6 !important;
}

.progress-bar {
    transition: width 0.3s ease;
}

.image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: unset
}
#previewImage, #imageInfo {
    border: 2px dotted #8967f6 !important;
    padding: 10px;
}

.image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: unset;
}

.custom-scroll {
    max-height: 150px;
    overflow-y: auto;
    resize: none;
}

.image-preview {
    max-width: 50%;
    height: auto;
    margin-top: 10px;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.rocket-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #eef7ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: sans-serif;
}

.rocket-container {
    position: relative;
    width: 100px;
    height: 150px;
}

.rocket {
    font-size: 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: liftOff 2s ease-in-out infinite;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatCloud 4s ease-in-out infinite alternate;
}

.cloud1 {
    width: 40px;
    height: 25px;
    top: 20px;
    left: -30px;
}

.cloud2 {
    width: 60px;
    height: 30px;
    top: 5px;
    right: -30px;
}

@keyframes liftOff {
    0% {
        bottom: 0;
        opacity: 1;
    }

    50% {
        bottom: 30px;
        opacity: 0.8;
    }

    100% {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10px);
    }
}

.rocket-loader p {
    margin-top: 20px;
    font-size: 18px;
    color: #444;
}

.d-none {
    display: none !important;
}