@charset "UTF-8";

/* profile
---------------------------------------------------*/
#profile .photos-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 96%;
    max-width: 600px;
    margin: 0 auto 80px;
}
#profile .photos {
    width: 80%;
    background-color: var(--white-color);
    border: 1px solid var(--main-color);
    padding: 5px;
}
#profile .photos .photo {
    width: 100%;
}
#profile ul.photos-pager {
    width: 18%;
}
#profile ul.photos-pager li {
    background-color: var(--white-color);
    border: 1px solid var(--secondary-color);
    padding: 3px;
}
#profile ul.photos-pager li:hover {
    border: 1px solid var(--main-color);
    cursor: pointer;
}
#profile ul.photos-pager li:not(:last-of-type) {
    margin-bottom: 10px;
}
.tbl-profile {
    width: 96%;
    max-width: 600px;
    line-height: 1.6em;
    border-top-width: 0;
    border-collapse: collapse;
    margin: 0 auto;
}
.tbl-profile th {
    width: 30%;
    text-align: center;
    font-weight: normal;
    color: var(--white-color);
    background-color: var(--main-color);
    border-bottom: 1px solid #fff;
    padding: 0.5em 1em;
}
.tbl-profile td {
    width: auto;
    border-bottom: 1px dashed var(--secondary-color);
    padding: 0.5em 1em;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    #profile .photos-wrap {
        width: 100%;
        max-width: none;
        margin: 0 auto 12.5vw;
    }
    #profile .photos {
        width: 100%;
        padding: 1.5625vw;
    }
    #profile ul.photos-pager {
        display: none;
    }
    .tbl-profile {
        width: 100%;
        max-width: none;
    }
}