body {
    background-image: linear-gradient(to bottom right, #94aead, #b0c4c3);
   /* background-repeat: no-repeat;
    background-color: rgb(209, 246, 255);
    background-position: top center;
    background-size: 100%;
    color: rgb(8, 49, 112);*/
}
#_next {
    width: 600px;
    max-width: 100%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 15px;
}
.list_items .item{
    position: relative;
}
.list_items .item > a {
    display: flex;
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
	border:none;
/* border: 2px solid rgb(255, 255, 255);*/
    background-color: rgb(255, 255, 255);
    color: rgb(8, 49, 112);
    box-shadow: rgba(8, 49, 112, 0.24) 0px 2px 8px 0px;
    transform: scale(1);
    transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
    border-radius: 10px;
    align-items: center;
}
.list_items .item > a img {
    object-fit: cover;
}
.list_items .item > a .name {
    flex-grow: 1;
    text-align: center;
    padding: 0 10px;
    font-size: 16px;
}
.list_items .item button {
    position: absolute;
    top: 50%;
    right: 10px;
    background: none;
    border: 0;
    transform: translateY(-50%);
    display: none;
    border-radius: 50%;
    width: 46px;
    line-height: 46px;
}
.list_items .item button:hover{
    background-color: rgba(8, 49, 112, 0.12);
}
.list_items .item:hover button{
    display: block;
}
img._mainImg {
    width: 96px;
    height: 96px;
    border-radius: 50%;
}
._mainTop{
    margin-bottom: 30px;
}
.social {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.social a img {
    width: 30px;
}
.social a {
    margin: 0 25px;
}
.tablebox a {
    display: block;
    background-color: #fff;
    padding: 5px;
}