.ai_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.upload_section {
    width: 50%;
    border: 1px solid #ececec;
    padding: 25px;
    height: 230px;
    text-align: center;
    border-radius: 15px;
    background: transparent;
    outline: none;
}
.upload_section p {
    margin: 0;
    color: #666;
}
.upload_section:hover {
    border-color: #e4defb54;
    background-color: #e4defb54;
}
.upload_section iconify-icon {
    font-size: 45px;
    color: #6c5ce7;
    margin-bottom: 15px;
}
.upload_section .info_main_title {
    justify-content: center;
    margin-bottom: 15px;
    padding-bottom: 20px;
}
.dark-mode .upload_section {
    border-color: var(--border-color1);
    background: var(--highlight-bg2);
}
.dark-mode .upload_section:hover {
    border-color: #6c5ce7a3;
    background: transparent;
}
.ai_imagefetch button.btn-close {
    position: absolute;
    right: 10px;
}
.ai_imagefetch img {
    width: 100px;
    margin: 0 auto;
}
.ai_imagefetch h3 {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}
.ai_imagefetch ul li {
    font-size: 15px;
    color: #3b3b3b;
    margin-bottom: 5px;
}
.dark-mode .ai_imagefetch ul li{
    color:#C3C3C3;
}
.ai_imagefetch p {
    color: #3b3b3b;
    font-size: 15px;
    text-align: center;
}

@media(max-width:574px){
    .ai_wrapper {
        flex-wrap: wrap;
    }
    .upload_section {
        width: 100%;
    }
}