body {
    font-family: 'Inter';
    background-color: #F6F7F8;
    margin: 0;
}

.viewer-backdrop {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

input {
    border: none;
    outline: none;
    gap: 10px;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.d-none {
    display: none;
}

.cursor {
    cursor: pointer;
}

.attachments-subtitle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
}

.delete-all {
    content: url('./../assets/img/deleteAll.png');
    object-fit: contain;
    border: unset !important;
    width: 98px !important;
    height: 23px;
    cursor: pointer;
    min-width: unset !important;
    max-width: unset !important;

    @media (max-width: 850px) {
        object-fit: unset !important;
        width: 78px !important;
        height: 19px;
    }
}

.upload-file {
    content: url('./../assets/img/upload.png');
    object-fit: contain;
    border: unset !important;
    width: 100%;
    height: 55px;
    margin: 5px;
    cursor: pointer;
}

.allowed-types {
    font-weight: 400;
    font-size: 14px;
    color: #848484;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content !important;
    height: max-content !important;
    margin: 3px;
}

.image-container img,
#showAttachments img {
    width: 85px;
    height: 80px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 15px;
    cursor: pointer;
}

.imgDelete-button {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.imgDelete-button input {
    content: url('./../assets/img/delete.png');
    width: 25px !important;
    height: 25px !important;
    border: unset;
    min-width: unset !important;
    max-width: unset !important;

    @media (max-width: 850px) {
        width: 22px !important;
        height: 22px !important;
    }
}

.imgDelete-button:hover {
    background-color: rgb(251, 174, 174);
    transition: 195ms all ease-in-out;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Style your custom toolbar button */
.viewer-download {
    background-image: url('./../assets/img/download-bold-arrow-icon.png');
    background-color: black;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}