@charset "utf-8";

/* 선수 리스트 */
.player-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.player-list ul li {
    width: 50%;
    text-align: center;
}

.player-list ul li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
}

.player-list ul li a figure.ico {
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: var(--color-line);
    border-radius: 50%;
}

.player-list ul li a em.name {
    margin-top: 5px;
    font-family: var(--font-point);
    font-size: 16px;
}

.player-list ul li a small.point {
    color: var(--color-light);
}

.player-list ul li a small.point b {
    font-size: 14px;
}

@media screen and (min-width: 639px) {
    .player-list ul li {
        width: 33.3333%;
    }
}

@media screen and (min-width: 767px) {
    .player-list ul li {
        width: 25%;
    }
}

@media screen and (min-width: 979px) {
    .player-list ul li {
        width: 20%;
    }

    .player-list ul li a {
        padding: 20px 0;
    }

    .player-list ul li a figure.ico {
        width: 120px;
        height: 120px;
    }

    .player-list ul li a em.name {
        margin-top: 10px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1239px) {
    .player-list ul li {
        width: 14.2857%;
    }

    .player-list ul li a:hover {
        background-color: rgba(var(--color-background-rgb),0.8);
        box-shadow: 0 3px 15px rgba(var(--color-black-rgb),0.1);
    }
}


/* 선수 상단 */
.player-top-content {
    position: relative;
    padding: 30px 20px;
    background-color: var(--color-background);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

@media screen and (min-width: 767px) {
    .player-top-content {
        padding: 40px 20px;
        border-radius: 0 0 30px 30px;
    }
}

@media screen and (min-width: 1239px) {
    .player-top-content {
        padding: 80px 0px 50px;
    }
}


/* 선수 탭 */
.player-tab {
    overflow: hidden;
    margin-bottom: 30px;
    background-color: var(--color-background);
    box-shadow: 0 5px 20px rgba(var(--color-black-rgb),0.12);
}

.player-tab ul li {
    /*width: 33.3333%*/
    width: 50%
}

.player-tab li:not(:first-child) a:after {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: -1px;
    width: 1px;
    background-color: rgba(var(--color-black-rgb),0.1);
    content: '';
}

.player-tab a {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    color: var(--color-light);
    text-align: center;
}

.player-tab a.active {
    background-color: var(--color-brown);
    color: var(--color-white);
    font-weight: 500;
}

@media screen and (min-width: 767px) {
    .player-tab a {
        height: 50px;
        line-height: 50px;
    }
}

@media screen and (min-width: 979px) {
    .player-tab {
        margin-bottom: 50px;
    }

    .player-tab a {
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }
}


/* 선수 기본정보 */
.player-basic-info {
    position: relative;
}

.player-basic-info figure {
    display: block;
    overflow: hidden;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: rgba(var(--black-white-rgb),0.1);
    border-radius: 50%;
}

.player-basic-info .pbi-con h4 {
    font-size: 16px;
    font-family: var(--font-point);
    text-align: center;
}

.player-basic-info .pbi-con h4 small {
    color: var(--color-light);
}

.player-basic-info .share-box {
    margin-top: 15px;
}

.player-basic-info .share-box .share-btn {
    display: block;
    overflow: hidden;
    width: 36px;
    height: 36px;
    margin: 0 2px;
    background-color: var(--color-background-gray);
    border-radius: 4px;
    text-align: center;
}

.player-basic-info .share-box .share-btn.copy-url-btn {
    line-height: 36px;
    border: 1px solid rgba(var(--black-white-rgb),0.1);
    font-size: 16px;
}


.player-basic-info .pbi-con ul {
    margin-top: 15px;
    border-top: 1px solid var(--color-line);
}

.player-basic-info .pbi-con ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid var(--color-line);
}

.player-basic-info .pbi-con ul li:after {
    position: absolute;
    top: calc(50% - 2px);
    left: 10px;
    width: 4px;
    height: 4px;
    background-color: var(--color-deeplight);
    border-radius: 50%;
    content: '';
}

.player-basic-info .pbi-con ul li span {
    flex-shrink: 0;
    width: 100px;
    padding-left: 15px;
    color: var(--color-deeplight);
}

.player-basic-info .pbi-con ul li em {
    flex-grow: 1;
}

.player-basic-info .choice-years {
    margin: 0 auto 10px;
}

.player-basic-info .choice-years .accordion-arrow {
    top: calc(50% - 15px);
}

.player-basic-info .modify-area {
    margin-top: 10px;
    text-align: center;
}

@media screen and (min-width: 639px) {
    .player-basic-info {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .player-basic-info figure {
        flex-shrink: 0;
        width: 120px;
        margin-right: 50px;
    }
    
    .player-basic-info .share-box {
        justify-content: flex-start;
    }

    .player-basic-info .pbi-con h4 {
        text-align: left;
        font-size: 18px;
    }

    .player-basic-info .pbi-con {
        flex-grow: 1;
        width: calc(100% - 170px);
    }

    .player-basic-info .pbi-con ul,
    .player-basic-info .pbi-con ul li {
        border: none;
    }

    .player-basic-info .pbi-con ul li {
        padding: 10px 0;
    }
    
    .player-basic-info .pbi-con ul li:after {
        left: 0;
    }

    .player-basic-info .choice-years {
        position: absolute;
        top: -14px;
        right: 0;
        margin: 0;
    }

    .player-basic-info .modify-area {
        position: absolute;
        top: -10px;
        right: 0;
        margin: 0;
    }
}

@media screen and (min-width: 767px) {
    .player-basic-info .pbi-con ul li {
        width: 50%;
    }
}

@media screen and (min-width: 979px) {
    .player-basic-info .share-box {
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 0;
    }

    .player-basic-info .pbi-con ul {
        max-width: 700px;
    }
}

@media screen and (min-width: 1239px) {
    .player-basic-info .pbi-con h4 {
        font-size: 24px;
    }

    .player-basic-info .choice-years .accordion-arrow {
           top: calc(50% - 23px);
    }

    .player-basic-info .modify-area .modify-btn {
        font-size: 16px;
    }
}


/* 내 기록 */
.my-record-summary {
    position: relative;
    margin-top: 30px;
}

.my-record-summary .mrs-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.my-record-summary .mrs-box .mrs-con {
    width: 49%;
    padding: 15px;
    margin-bottom: 2%;
    border: 1px solid var(--color-line); 
}

.my-record-summary .mrs-box .mrs-con .tit {
    margin-bottom: 5px;
    font-weight: 500;
}

.my-record-summary .mrs-box .mrs-con .txt {
    color: var(--color-deeplight);
}

.my-record-summary .mrs-box .mrs-con .txt span {
    display: inline-block;
    margin-right: 10px;
}

.my-record-summary .mrs-box .mrs-con .txt b {
    font-size: 18px;
    font-weight: 900;
}

@media screen and (min-width: 639px) {
    .my-record-summary {
        padding-top: 30px;
        border-top: 1px solid var(--color-line);
    }

    .my-record-summary .mrs-box .mrs-con {
        width: 24%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 979px) {
    .my-record-summary {
        padding-top: 50px;
        margin-top: 50px;
    }
}

@media screen and (min-width: 1239px) {
    .my-record-summary .mrs-box .mrs-con {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px;
        padding: 0 25px;
    }

    .my-record-summary .mrs-box .mrs-con .tit {
        margin-bottom: 0;
    }

    .my-record-summary .mrs-box .mrs-con .txt span {
        margin-right: 20px;
    }

    .my-record-summary .mrs-box .mrs-con .txt b {
        font-size: 20px;
    }
}



/* -------------------------------- */
@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}
