﻿.add-attachment-btn {
    height: 132px;
    display: inline-flex;
    align-items: center;
    padding: 0px 7px;
    border-radius: 4px;
    font-size: 10px;
    border: 2px dashed green;
    position: relative;
}

.attachment-count-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    border-radius: 50%;
    font-weight: 600;
    padding: 2px 6px;
}

.add-attachment-btn i {
    color: green;
}

.add-attachment {
    background: rgb(39, 174, 12);
    color: #fff;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    top: 35px;
    left: 10px;
    z-index: 1;
}

.category-heading {
    font-weight: 600;
    text-align: center;
    font-size: 17px;
}

.multiple-attachment-files {
    border: 1px solid;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.scrollable-attachments {
    overflow-y: auto;
    max-height: 281px;
    min-height: 281px;
    position: relative;
    width: calc(100% - 9px);
    padding-right: 10px;
    box-sizing: border-box;
    border-radius: 16px;
    border: 1px solid white;
    margin: 10px;
}

.attachment-type-icon {
    width: 32px;
    height: 32px;
    margin-right: 7px;
}

/* WebKit scrollbar */
.scrollable-attachments::-webkit-scrollbar {
    width: 6px;
    height: 2px;
    border-radius: 6px;
    cursor: pointer;
}

/* WebKit scrollbar thumb */
.scrollable-attachments::-webkit-scrollbar-thumb {
    background-color: rgb(39, 174, 12);
    border-radius: 6px;
    cursor: pointer;
    height: 2px;
}

.scrollable-attachments::-webkit-scrollbar-track {
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    height: 2px;
}

.multiple-attachment-file {
    display: flex;
    position: relative;
    padding-top: 15px;
}

.multiple-attachment-file > .delete-icon {
    position: relative;
    cursor: pointer;
    padding-top: 9px;
    z-index: 999;
}

.bi-trash {
    color: #C6BFC0;
}

/* Hover style */
.bi-trash:hover {
    color: #D53444;
}

.delete-attachment {
    margin-right: 5px;
}

.delete-confirmation {
    background-color: white;
    margin-right: 15px;
}

.input-attachment-name {
    border-bottom: 1px dotted black;
    font-size: 14px;
    width: 125px;
    height: 35px !important;
    font-weight: 700;
}

.file-name {
    font-weight: 700;
    cursor: pointer;
    display: flex;
}

.file-name p {
    border-bottom: 1px dotted black;
    padding-top: 10px;
    font-size: 14px;
    cursor: default;
}

li.validation-error-message {
    color: red;
    font-weight: 700;
    font-size: 11px;
}