.upload-photo-container{
    min-height: 50px;
    border: 1px dashed #c7c7c7;
    background: #FFF;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    
}

.upload-photo-container::after{
    content: ""
}

.upload-photo-container + input{
    display: none;
}

.upload-photo-container:hover{
    border: 1px dashed #4492f1;
}

.upload-photo-container .msg-upload{
    font-size: 14px;
}

.list-file{
    margin: 5px;
}

.list-file:empty{
    margin: 0;
}

.list-file:not(:empty) ~ .msg-upload{
    display: none;
}

.file-box{
    width: 92px;
    border: 1px solid #2863e4;
    margin: 5px;
}

.file-box .img-view{
    width: 90px;
    height: 90px;
    overflow: hidden;
}

.file-box .img-view img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-box .icon-view{
    text-align: center;
    min-height: 60px;
    line-height: 70px;
}

.file-box .icon-view .fa{
    font-size: 25px;
}

.file-box .del-file{
    display: block;
    text-align: center;
    background: #db5252;
    color: #FFF;
    font-size: 12px;
}

.upload-photo-container.err-no-valid{
    border-color: #d55050;
}

.upload-photo-container.err-no-valid .msg-upload{
    color: #d55050;
}

.custom-select{
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center / 8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* alert */
#flashmsgholder{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

#flashmsgholder .close{
    border: 1px solid #FFF;
    border-radius: 50%;
    min-width: 30px;
    height: 30px;
    width: 30px;
}

.alert-danger{
    background: #ee3d3d;
    border-radius: 10px;
    padding: 10px;
    color: #740808 !important;
}

.alert-danger .close{
    background: #a10f0f;
    color: #FFF;
}

.alert-warning{
    background: #f3b65b;
    border-radius: 10px;
    padding: 10px;
    color: #805515 !important;
}

.alert-warning .close{
    background: #b7781a;
    color: #FFF;
}

.alert-success{
    background: #5cadf3;
    border-radius: 10px;
    padding: 10px;
    color: #0f4777 !important;
}

.alert-success .close{
    background: #1f73bb;
    color: #FFF;
}