#viewContentModal .modal-content {
    width: 100%;
    border-radius: 0;
    padding: 23px;
}
#viewContentModal .modal-header {
    padding: 0 0 11px;
}
#viewContentModal .modal-header h1 {
    color: #253A7C;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
#viewContentModal .modal-header .btn-close {
    width: max-content;
    height: max-content;
    padding: 0;
    background-image: none
}
#viewContentModal .modal-body {
    padding: 15px 0 0;
    height: 250px;
    overflow-y: auto;
}
#viewContentModal .modal-body .list_item {
    color: #666;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}
#viewContentModal .modal-body .list_item:hover {
    color: #253A7C;
}
#viewContentModal .modal-body .list_item span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#viewContentModal .modal-body .list_item a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding: 6px 15px;
    border: 1px solid #2886B4;
    border-radius: 50px;
    display: block;
    transition: 0.3s ease;
    cursor: pointer;
}
#viewContentModal .modal-body .list_item a:hover {
    color: #fff;
    background-color: #253A7C;
    border: 1px solid #253A7C;
}

@media (min-width: 613px) {
    .modal-dialog {
        max-width: 613px;
        margin: 1.75rem auto;
    }
}