.status {
    color: #AFAFAF;
    font-size: 16px; }

.status-circle {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    margin-top: -3px;
    width: 15px;
    height: 15px;
    border-radius: 50%; }

.status-circle.yellow {
    background: #EBCD82;
    border: 1px solid #C9A856; }

.status-circle.red {
    background: #FF2C38;
    border: 1px solid #f8000e; }

.status-circle.green {
    background: #7CE363;
    border: 1px solid #58db38; }

.back-btn {
    color: #37475A;
    cursor: pointer; }

.back-btn img {
    vertical-align: baseline;
    margin-right: 5px;
    -webkit-transition: -webkit-transform 250ms;
    transition: -webkit-transform 250ms;
    transition: transform 250ms;
    transition: transform 250ms, -webkit-transform 250ms;}

.back-btn:hover {
    color: #37475A; }
.back-btn:hover img {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px); }

.card {
    background: #ffffff;
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 30px; }
@media (max-width: 768.98px) {
    .card {
        padding-left: 12px;
        padding-right: 12px; } }
.card.card-no-border {
    border: 0; }
.card .card-header {
    border-bottom: 2px solid #e7e7e7;
    margin-bottom: 20px;
    padding-bottom: 15px; }
.card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6, .card .card-header p {
    margin-bottom: 0; }
@media (max-width: 768.98px) {
    .card .card-header.mobile-accordion {
        position: relative; }
    .card .card-header.mobile-accordion:not(.open) {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0; }
    .card .card-header.mobile-accordion::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%) rotate(0);
        transform: translateY(-50%) rotate(0);
        width: 15px;
        height: 15px;
        background-image: url(../images/open-down-caret.svg);
        background-size: contain;
        background-repeat: no-repeat; }
    .card .card-header.mobile-accordion.open::after {
        top: calc(50% - 10px);
        -webkit-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg); } }
@media (max-width: 768.98px) {
    .card .card-body.mobile-accordion:not(.open) {
        display: none; } }
.card .card-footer {
    border-top: 2px solid #e7e7e7;
    margin-top: 20px;
    padding-top: 20px; }

.messaging .messages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-height: 350px;
    overflow-y: scroll;
    margin-bottom: 10px; }

.messaging .message {
    width: 70%;
    margin-bottom: 20px;
    font-size: 14px; }
.messaging .message.correspondent {
    -ms-flex-item-align: start;
    align-self: flex-start; }
.messaging .message:not(.correspondent) .message-details {
    text-align: right; }

.messaging .message-content {
    background-color: #E3E5E8;
    margin-bottom: 5px;
    padding: 15px 10px;
    border-radius: 4px; }
.messaging .message-content p {
    margin-bottom: 0; }

.messaging .message-details {
    color: #D0D4D8;
    display: block; }

.messaging .upload-document {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #37475A; }
.messaging .upload-document img {
    width: 15px;
    margin-right: 7px;
    margin-top: -2px; }
.messaging .upload-document:hover {
    color: #242e3a; }

.tab {
    display: inline-block;
    color: #E7E7E7;
    cursor: pointer;
    margin-right: 15px; }
.tab:not(:last-of-type) {
    padding-right: 15px;
    border-right: 2px solid #E7E7E7; }
.tab.active {
    color: #37475A; }
@media (max-width: 449.98px) {
    .tab {
        display: block;
        margin-right: 0; }
    .tab:not(:last-of-type) {
        padding-right: 0;
        border-right: 0; } }

.tab-heading {
    font-size: 14px; }

.tabs-content {
    display: none;
    overflow-x: hidden; }
.tabs-content.active {
    display: block; }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 300ms, visibility 300ms;
    transition: opacity 300ms, visibility 300ms; }
.modal.modal-open {
    visibility: visible;
    opacity: 1; }
.modal .modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background: rgba(15, 23, 30, 0.8); }
.modal .modal-container {
    position: relative;
    background: #ffffff;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    padding: 20px 30px;
    width: calc(100% - 2rem);
    max-width: 900px;
    z-index: 9999;
    max-height: calc(100vh - 30px);
    overflow-y: scroll; }
.modal .modal-container.modal-narrow {
    max-width: 550px; }
@media (max-width: 999.98px) {
    .modal .modal-container {
        padding: 15px; } }
.modal .modal-close {
    position: absolute;
    top: -30px;
    right: -35px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    z-index: 9999; }
.modal .modal-header {
    border-bottom: 2px solid #e7e7e7;
    margin-bottom: 20px;
    padding-bottom: 15px; }
.modal .modal-header h1, .modal .modal-header h2, .modal .modal-header h3, .modal .modal-header h4, .modal .modal-header h5, .modal .modal-header h6, .modal .modal-header p {
    margin-bottom: 0; }
@media (max-width: 999.98px) {
    .modal .modal-header {
        padding-bottom: 10px; } }
.modal .modal-body {
    overflow-x: scroll; }
.modal .modal-footer {
    border-top: 2px solid #e7e7e7;
    margin-top: 20px;
    padding-top: 20px; }

.current-file{
    margin-right: 20px;
}
.div-center-vertical-text{
    line-height: 150px;
    text-align: center;
    vertical-align: middle;
}
.file-action{
    margin-left: 50px;
}
.file-action:hover{
    color: #f8000e;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.detail-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.detail-info .detail-info-icon {
    margin-right: 5px; }
.detail-info .detail-info-container {
    max-width: 100%; }
.detail-info .detail-info-heading {
    color: #707070;
    display: block;
    font-size: 14px; }
@media (max-width: 999.98px) {
    .detail-info .detail-info-heading {
        font-size: 13px; } }
.detail-info .detail-info-data {
    color: #222E3E;
    cursor: text;
    font-family: "Amazon Ember Bold", sans-serif;
    word-break: break-all;}
@media (max-width: 999.98px) {
    .detail-info .detail-info-data {
        font-size: 14px; } }
.detail-info.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }
.detail-info.vertical .detail-info-icon {
    margin-right: 0;
    margin-bottom: 5px; }
.detail-info.vertical .detail-info-heading {
    font-family: "Amazon Ember Bold", sans-serif;
    color: #222E3E;
    font-size: 16px; }
.detail-info.vertical .detail-info-data {
    font-family: "Amazon Ember Regular", sans-serif;
    font-size: 14px; }

