/* Driver Photo */

#drop-area {
    width: 280px;
    height: 360px;
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}
#img-view {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px dashed #198754;
    background-color: #1987544d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
#img-view img {
    width: 80px;
}

/* End Driver Photo */

/* Sign Photo */

#sign-drop-area {
    width: 100%;
    max-width: 500px;
    height: 270px;
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}
#sign-img-view {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px dashed var(--bs-primary-border-subtle);
    background-color: var(--bs-primary-bg-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
#sign-img-view img {
    width: 80px;
}

/* End Sign Photo */

.docs-container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    min-height: 435px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}
.header-section {
    padding: 25px 0;
}
.drop-section {
    min-height: 250px;
    border: 2px dashed #198754;
    background-color: #1987544d;
    margin: 5px 35px 35px 35px;
    border-radius: 20px;
    position: relative;
}
.drop-section div.docs-col:first-child {
    opacity: 1;
    visibility: visible;
    transition-duration: 0.2s;
    transform: scale(1);
    width: 200px;
    margin: auto;
}
.drop-section div.docs-col:last-child {
    font-size: 40px;
    font-weight: 700;
    color: #1987544d;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 55px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6);
    transition-duration: 0.2s;
}
.drag-over-effect div.docs-col:first-child {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
}
.drag-over-effect div.docs-col:last-child {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.drop-section .cloud-icon {
    margin-top: 25px;
    margin-bottom: 20px;
}
.drop-section .cloud-icon img{
    width: 150px;
}
.drop-section span {
    display: block;
    margin: auto;
}
.list-section {
    text-align: left;
    margin: 0 35px;
    padding-bottom: 20px;
}
.list-section li {
    display: flex;
    margin: 15px 0;
    padding-top: 4px;
    padding-bottom: 2px;
    border-radius: 8px;
    transition-duration: 0.2s;
}
.list-section li:hover {
    box-shadow: #e3eaf9 0 0 4px 0, #e3eaf9 0 12px 16px 0;
}
.list-section li .col {
    flex: .1;
}
.list-section li .col:nth-child(1) {
    flex: .15;
    text-align: center;
}
.list-section li .col:nth-child(2) {
    flex: .75;
    text-align: left;
    font-size: 0.9rem;
    color: #3e4046;
    padding: 8px 10px;
}
.list-section li .col:nth-child(2) div.name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 250px;
    display: inline-block;
}
.list-section li .col .file-name span {
    color: #707ea0;
    float: right;
}
.list-section li .file-progress {
    width: 100%;
    height: 5px;
    margin-top: 8px;
    border-radius: 8px;
    background-color: #1987544d;
}
.list-section li .file-progress span {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: 8px;
    background-image: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));;
    transition-duration: 0.4s;
}
.list-section li .col .file-size {
    font-size: 0.75rem;
    margin-top: 3px;
    color: #198754;
}
.list-section li .col svg.cross,
.list-section li .col svg.tick {
    fill: #198754;
    background-color: #1987544d;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.list-section li .col svg.tick {
    fill: #198754;
    background-color: transparent;
}
.list-section li.complete span,
.list-section li.complete .file-progress,
.list-section li.complete svg.cross {
    display: none;
}
.list-section li.in-prog .file-size,
.list-section li.in-prog svg.tick {
    display: none;
}
