#drop-area {
    border: 2px dashed var(--ColorThemes2);
    border-radius: 12px;
    padding: 20px;
    margin: 0 20px 20px;
}
#drop-area.highlight {
    border-color: var(--PrimaryColor);
}
#drop-area > form {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#drop-area > div {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    justify-content: flex-start;
}
#drop-area > div > div {
    min-width: 141px;
    height: 200px;
    vertical-align: middle;
    color: var(--ColorThemes2);
    border: 2px solid var(--PrimaryColor);
    background: var(--ColorThemes1);
    font-size: 15px;
    position: relative;
    display: flex;
    border-radius: 15px;
    margin: 5px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    aspect-ratio: 620/877;
    overflow: hidden;
}
#drop-area > div > div > img {
    width: auto;
    height: 100%;
    position: absolute;
    z-index: 1;
}
#drop-area > div > div > a {
    color: var(--ColorThemes2);
    margin: 2px 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    z-index: 10;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#drop-area > div > div > a > span{
    color: var(--ColorThemes2);
    background: var(--PrimaryColor);
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    z-index: 10;
    position: relative;
    cursor: pointer;
}
#drop-area > div > div > button {
    position: absolute;
    border: 0;
    border-radius: 0 10px 0 10px;
    width: 20px;
    height: 20px;
    min-height: 20px;
    background: var(--PrimaryColor);
    right: 0;
    top: 0px;
    cursor: pointer;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
}
#drop-area > div > div > button > svg {
    fill: var(--PrimaryColorText);
    width: 15px;
    height: 15px;
}
progress{
    width: 100%;
    display: none;
    border-radius: 15px;
    height: 10px;
}
progress::-webkit-progress-bar {
    background-color: var(--ColorThemes2);
    border-radius: 6px;
}
progress::-webkit-progress-value {
    background-color: var(--PrimaryColor);
    border-radius: 6px;
}
progress::-moz-progress-bar {
    background-color: var(--ColorThemes2);;
    border-radius: 6px;
}

#drop-area > form > label {
    cursor: pointer;
    color: var(--ColorThemes1);
    background: var(--ColorThemes2);
    font-size: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    height: 35px;
    width: 35px;
    margin: 10px 0 0;
}
#drop-area > form > label > svg{
    width: 20px;
    height: 20px;
    fill: var(--ColorThemes1);
}
#drop-area > form > label:hover {
    background: #ddd;
}
#fileElem {
    display: none;
}