@charset "UTF-8";

.page-container.refund {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
}

.page-container.refund .refund-top {
    display: flex;
    width: calc(100% - 50px);
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.page-container.refund .refund-top .img-wrap {
    width: 156px;
}

.page-container.refund .refund-top .text-wrap {
    display: flex;
    max-width: 937px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    padding: 35px 50px;
    box-sizing: border-box;
}

.page-container.refund .refund-top .text-wrap h2 {
    font-size: 30px;
}

.page-container.refund .refund-top .text-wrap .text {
    font-size: 20px;
    color: #222222;
    margin-top: 10px;
}

.refund-inner {
    margin: 80px auto;
}

.refund-inner .refund-content {
    display: flex;
    margin: 50px 0;
    justify-content: space-between;
}

.refund-inner .refund-content .refund-list {
    width: 480px;
    margin-right: 20px;
}

.refund-inner .refund-content .refund-list .refund-list-wrap {
    width: 100%;
    height: 100px;
    margin-bottom: 30px;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    background: #ffffff;
    color: #222222;
    border: 1px solid #ECAF4E;
    border-radius: 20px;
    justify-content: space-between;
    box-shadow: 2px 2px 4px 0px rgb(33 33 33 / 30%);
    padding: 0 50px;
    box-sizing: border-box;
    transition: background 0.3s ease, color 0.3s ease;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a .title-wrap {
    display: flex;
    align-items: center;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a .number {
    font-size: 30px;
    color: #FF8A2B;
    margin-right: 10px;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a .title {
    font-size: 20px;
}

.refund-inner .refund-content .refund-list .refund-list-wrap.active a {
    background: #ECAF4E;
    color: #ffffff;
}

.refund-inner .refund-content .refund-list .refund-list-wrap.active a .number {
    color: #ffffff;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a:hover {
    background: #ECAF4E;
    color: #ffffff;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a:hover .number {
    color: #ffffff;
}

.refund-inner .refund-content .refund-list .refund-list-wrap a .icon-wrap {
    width: 90px;
}

.refund-inner .refund-content .refund-item {
    width: 640px;
}

.refund-inner .refund-content .refund-item .refund-item-cont {
    margin-bottom: 80px;
}

.refund-inner .refund-content .refund-item .refund-item-cont .title-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #32463D;
    padding-bottom: 10px;
}

.refund-inner .refund-content .refund-item .refund-item-cont .title-wrap .number {
    font-size: 30px;
    letter-spacing: 0.1em;
    margin-right: 10px;
}

.refund-inner .refund-content .refund-item .refund-item-cont .title {
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #32463D;
}

.refund-inner .refund-content .refund-item .refund-item-cont .text-area {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #222222;
    margin-top: 10px;
}

.refund-inner .refund-content .refund-item .refund-item-cont .text-area .list {
    margin: 10px 0;
}

.refund-inner .refund-content .refund-item .refund-item-cont .text-area .list li {
    display: flex;
    margin-bottom: 5px;
}

.refund-inner .refund-content .refund-item .refund-item-cont .text-area .list li .check-icon {
    width: 20px;
    height: 19.2px;
    margin-right: 10px;
}

.refund-inner .refund-content .refund-item .refund-item-cont .text-area .list li .check-text {
    width: calc(100% - 30px);
}

@media screen and (max-width: 1190px) {
    .refund-inner{
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 1100px) {
    .refund-inner .refund-content .refund-list .refund-list-wrap a {
        padding: 0 20px;
    }
}