.items{
	width: 100%;
    /* height: 800px; */
    padding: 20px 0;
    display: flex;
    justify-content: center;
}
.items .item{
	width: 100%;
	display: flex;
    gap: 20px;
    align-items: start;
    justify-content: left;
}
.items .item .left{
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 8px;
    width: 320px;
}
.items .item .left div{
    width: 100%;
}
.items .item .left .photo{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
    background: #fff;
}
.items .item .left .photo img{
    max-width: 100%;
    height: auto;
}
.items .item .left .href a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    background: green;
    border-radius: 5px;
    color: #fff;
}
.items .item .right{
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;   
}
.items .item .right div{
    width: 100%;
    border-bottom: 1px solid #eee;
}
.item.form-items{
    width: 100%;
    align-items:start;
}
.item.form-items .left{
    display: flex;
    justify-content: center;
}
.item.form-items .left .upload{
    width: 280px;
}
.item.form-items .left .photo-load{
    width: 280px;
    height: 280px;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}
.item.form-items .left .photo-load img{
    max-width: 100%;
    height: auto;
}
.item.form-items .right{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.item.form-items .right .form-row{
    flex: 1 1 45%;
}
.item.form-items .right .form-row.textarea{
    flex: 1 1 100%;
}
.item.form-items .right div{
    border-bottom: none;
}
.file{
    position: relative;
    height: 45px;
}
.file .file-item{
    position: absolute;
    top: 0;
}
.file .file-item#button{
    right: 0;
    width: 35%;
    letter-spacing: 1px;
    border-radius: 0 4px 4px 0;
}
.file .file-item#file{
    opacity: 0;
}
label.error{
    position: absolute;
    top: -22px;
    left: 0;
    color: #f60;
}

.form{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.form input[type='text']{
    width: 100%;
}
.form input[id='submit']{
    width: 160px;
    letter-spacing: 1px;
}

.navlink{
    width: 100%;
    height: 60px;
    border-bottom: 2px solid #ccc;
    display: flex;
    align-items: end;
    gap: 10px;
}