@charset "utf-8";

body{
    width: 100%;
}
main{
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}
ol{
    margin-top: 20px;
    display: flex;
    list-style: none;
}
input[type="file"] {
    display: none;
}
label {
    padding: 5px 10px;
    color: #384878;
    background-color: #fff;
    cursor: pointer;
    border: solid 1px #384878;
    border-radius: 5px;
    transition: .5s;
}
label:hover {
    color: #fff;
    background-color: #384878;
}
.image_item {
    width: 316px;
    margin-right: 50px;
}
.drop_area {
    width: 100%;
    height: 200px;
    position: relative;
    margin: 10px 0;
    border: dashed 5px #eee;
    border-radius: 10px;
    transition: .5s;
    background: #fff;
    text-align: center;
}
.drop_area p{
    width: 100%;
    color: #bbb;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
}
.images_list {
    display: flex;
    flex-wrap: wrap;
}
.images_list li{
    width: 150px;
    height: 150px;
    margin-right: 20px;
}
.images_list li img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.loading {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s;
}