.btn {
    min-width: 300px;
    max-width: 100%;
    gap: 8px;
    border-radius: 12px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;

    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 12px;
    border: none;
    box-sizing: border-box;

    display: inline-flex;
    justify-content: center;
}

.modal-backdrop.show {
    opacity: 0;
}
.text-capitalize {
    text-transform: capitalize;
}

.btn.btn-light {
    color: #2374d4 !important;
    background-color: #f1f6fe !important;
}

/* 
.btn.btn-light:hover {
    color: #ffffff !important;
    background-color: #71acf3 !important;
    transition: all 0.2s ease;
} */

.btn.btn-success {
    color: #ffffff !important;
    background-color: #2dd4bf !important;
}

.btn.btn-danger {
    color: #ffffff !important;
    background-color: #f75d5d !important;
}

.btn.btn-primary {
    color: #ffffff !important;
    background-color: #1959a8 !important;
}

.btn.btn-secondary {
    color: #ffffff !important;
    background-color: #2374d4 !important;
}

.btn.btn-cancel {
    color: #ffffff !important;
    background-color: #bcbcbc !important;
}

.btn.btn-full-width {
    width: 100%;
}

.btn.btn-sm {
    min-width: unset;
    padding: 12px;
    min-width: 134px;
    margin-bottom: 0;
}

.fw-semi-bold {
    font-weight: 500;
}

.tag {
    background: #f7f7f7;
    border-radius: 4px;
    font-weight: 500;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    font-size: 16px;
    margin-inline-end: 4px;
}

.tag.tag-primary {
    font-size: 14px;
    font-weight: 400;
    background: #f1f6fe;
    color: #2374d4;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 40px 16px 12px;
    border: 1px solid #eeeef0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
}

.form-group-multiple {
    display: flex;
    gap: 20px;
}

.form-group.form-group-half {
    width: 50%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.form-group .label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-password {
    position: relative;
}

.form-group-password .input-wrapper {
    position: relative;
}

.form-group-password .input-wrapper .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9ca3af;
}

.form-group-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.form-group-avatar .avatar-input-replacement {
    width: 80px;
    height: 80px;
    padding: 30px;
    box-sizing: border-box;
    background: #e3ebfb;
    border-radius: 50%;
}

.form-group-avatar .form-group-avatar-label .icon {
    width: 24px;
    height: 24px;
    color: #000000;
}

.form-group-avatar input[type="file"] {
    display: none;
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.text-danger {
    color: #dc3545 !important;
}

[role="button"] {
    cursor: pointer;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.5rem !important;
}

.col-md-6 {
    width: 50%;
}

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

.settings-container .profile-form .user-avatar-group img,
.max-size-form .header-button .account-group .avata-group img,
.user-profile img {
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
}

.p-12 {
    padding: 12px;
}
.pt-12 {
    padding-top: 12px;
}
.pb-12 {
    padding-bottom: 12px;
}
.ps-12 {
    padding-left: 12px;
}
.pe-12 {
    padding-right: 12px;
}
.rounded-12 {
    border-radius: 12px;
}

.bg-primary-light {
    background: #f1f6fe;
}
.bg-secondary-light {
    background: #f7f7f8;
}

.forum-category-item{
    background: #EEEEF0;
    color: #000000;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.forum-category-item:hover{
    background: #D9D9D9;
    transition: all 0.15s ease;
}

.forum-category-item-icon{
    color: #000000;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.forum-thread-item{
    width: 100%;
    background: #EEEEF0;
    color: #000000;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    padding: 16px;
}

.forum-thread-item-icon{
    color: #000000;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.lawyer-list-section,
.forum-section{
    background: #F7F7F8;
    min-height: 800px;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f7f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}



.awn-toast-wrapper {
    padding: 22px 16px 16px 16px !important;
}

.modal-close-btn {
    position: absolute;
    right: 32px;
    top: 32px;
}