/*상단 공백*/
.top-content {
    height: 120px;
}

.top-content h1 {
    color: #106bb5;
}

/*컨텐츠 최대 크기*/
.evaluation {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

/*어드민 페이지에서 컨첸츠 최대크기*/
.admin-table .evaluation {
    max-width: 90%;
}
@media (max-width:970px) {
    .admin-table .evaluation {
        max-width: 100%;
    }
}

.evaluation h2 {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;
}

/*리스트 레이아웃*/
.responsive-table li {
    border-radius: 3px;
    padding: 25px 30px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.responsive-table .table-header {
    background-color: #106bb5;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: white;
}

.responsive-table .table-row {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-left: 5px solid #106bb5;
}

.responsive-table .col-1 {
    flex-basis: 8%;

    align-self: center;
}

.responsive-table .col-2 {
    flex-basis: 20%;

    align-self: center;
}

.responsive-table .col-3 {
    flex-basis: 20%;

    align-self: center;
}

.responsive-table .col-4 {
    flex-basis: 10%;

    align-self: center;
}

.responsive-table .col-5 {
    flex-basis: 22%;

    align-self: center;
}

.responsive-table .col-6 {
    flex-basis: 20%;

    align-self: center;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .b-circle {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #424242;
    border-radius: 1.625rem;
}

button.learn-more .b-circle .icon {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .b-circle .icon.arrow {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .b-circle .icon.arrow::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

button.learn-more .button-text {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    color: #424242;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

button:hover .b-circle {
    width: 100%;
}

button:hover .b-circle .icon.arrow {
    background: #fff;
    -webkit-transform: translate(1rem, 0);
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

.add-eval {
    width: 200px;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

}

.add-eval button.learn-more .b-circle {
    width: 100%;
}

.add-eval button.learn-more .button-text {
    color: #fff;
}

.add-eval button.learn-more .b-circle .icon.arrow::before {
    position: absolute;
    top: -0.4rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border: 0;
    -webkit-transform: none;
    transform: none;
    color: #fff;
    content: "\f067";
}

.add-eval button:hover .b-circle .icon.arrow {
    background: #424242;
    -webkit-transform: none;
    transform: none
}

.add-eval button .b-circle .icon.arrow {
    -webkit-transition: none;
    transition: none;
    left: 0.625rem;
    width: 1.125rem;
    background: none;
}

@media all and (max-width: 767px) {
    .responsive-table .table-header {
        display: none;
    }

    .responsive-table li {
        display: block;
    }

    .responsive-table .col {
        flex-basis: 100%;
    }

    .responsive-table .col {
        padding: 10px 10px;
        text-align: center;
    }

    .responsive-table .col:before {
        color: #6c7a89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
    }    
}
@media (max-width: 767px) {
    .responsive-table .col-6 {
        display: grid;
        grid-template-columns: repeat(4,36px);
        max-width: 300px;
        margin: auto;
        justify-content: center;
        grid-gap: 10px;
    }
    .responsive-table .col-6:before {
        display: none;
    }
}



/*검색 필드 사이즈*/
form[name='searchinput'],
form[name='purchaseinput'] {
    width: fit-content;
    margin: auto;
}

/*리스트 버튼 설명*/
.tip {
    max-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 30px auto;
    grid-gap: 10px;
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
}

@media (max-width:623px){
    .tip {
        max-width: 500px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 30px auto;
        grid-gap: 10px;
        margin-top: 0;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }
}