.album,
.image-item{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.album h3{
    font-weight: 500;
    font-size: 16px;
    margin-top: 8px;
}

.image-item h3{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-top: 8px;
}

.album img,
.image-item img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.albums-import{
    position: relative;
    background-color: #f8f8f8;
    padding: 30px 20px;
}

.albums-import .note{
    font-style: italic;
}

.albums-import .btn{
    display: inline-block;
    padding: 10px 30px;
    font-size: 15px;
    background-color: #4d4d4d;
    color: #fff;
    width: 100%;
    transition: background 0.3s;
}

.albums-import .btn:hover{
    background-color: #015cc7;
}

.form-control {
    border-radius: 4px !important;
    height: 42px;
    font-size: 15px;
    color: #666;
    box-shadow: none;
}

.control-fileupload {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #d6d7d6;
    border-radius: 4px;
    width: 100%;
    height: 42px;
    padding: 4px 10px;
    overflow: hidden;
    position: relative;
}

.control-fileupload label {
    line-height: 24px;
    color: #666;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
    cursor: text;
}

input[type=file] {
    display: block !important;
    right: 1px;
    top: 1px;
    height: 34px;
    opacity: 0;
    width: 100%;
    background: none;
    position: absolute;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
}

.nvform h3{
    font-size: 20px;
    margin-bottom: 4px;
}