/* ---------------------------------------------------------
 * Customer Service ARS List
 * --------------------------------------------------------- */
.infotext {
    margin-top: 20px;
    text-align: left;
	font-weight: 600;
	
font-size: 20px;
color: #000;
}
.arb-customer-service-grid {
    display: flex;
	flex-direction: column;


    width: min(100%, 720px);
    margin: 34px auto 0;

    column-gap: 48px;
    row-gap: 0;
	max-width: 440px;
}


.arb-customer-service-grid .wrapbx{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: min(100%, 720px);
    margin: 15px auto 0;

    column-gap: 48px;
    row-gap: 0;
	max-width: 440px;
}

/* ---------------------------------------------------------
 * ARS Item
 * --------------------------------------------------------- */

.arb-customer-service-item {
    display: flex;
    flex-direction: row;
    align-items: center;


    min-width: 0;
    min-height: 68px;

    padding: 14px 0;
    gap: 16px;

    background: transparent;

    border: 0;
    border-bottom: 1px solid #e5e9ef;
    border-radius: 0;

    box-shadow: none;

    box-sizing: border-box;
}




/* ---------------------------------------------------------
 * Number
 * --------------------------------------------------------- */

.arb-customer-service-number {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 50%;

    background: #0dbfa5;
    color: #fff;

    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}


/* ---------------------------------------------------------
 * Title
 * --------------------------------------------------------- */

.arb-customer-service-title {
    min-width: 0;

    color: #102849;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: -0.4px;

    text-align: left;
    word-break: keep-all;
}


/* ---------------------------------------------------------
 * 마지막 "* 번호 다시 듣기"
 * --------------------------------------------------------- */

/* .arb-customer-service-item:nth-child(10) {
    grid-column: 1 / -1;

    min-height: 56px;
    padding-top: 14px;

    border-bottom: 0;
}

.arb-customer-service-item:nth-child(10
.arb-customer-service-number {
    width: auto;
    height: auto;

    flex: 0 0 auto;

    background: transparent;
    border-radius: 0;

    color: #748190;

    font-size: 17px;
}
 */

.arb-customer-service-item:last-child {
	border-bottom: 0;
}
/*  .arb-customer-service-title {
    font-size: 16px;
    font-weight: 500;
    color: #748190;
 }  */

/* 7 / 8 라인 제거 */
.arb-customer-service-item:nth-child(7),
.arb-customer-service-item:nth-child(8) {

}


/* ---------------------------------------------------------
 * Tablet
 * --------------------------------------------------------- */

@media (max-width: 980px) {

    .arb-customer-service-grid {
        width: min(100%, 620px);
        column-gap: 36px;
    }

}


/* ---------------------------------------------------------
 * Mobile
 * --------------------------------------------------------- */

@media (max-width: 767px) {

    .arb-customer-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        width: 100%;
        margin-top: 24px;

        column-gap: 18px;
    }

    .arb-customer-service-item {
        min-height: 58px;

        padding: 11px 0;
        gap: 10px;
    }

    .arb-customer-service-number {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        font-size: 14px;
    }

    .arb-customer-service-title {
        font-size: 15px;
        font-weight: 600;
    }

}


/* ---------------------------------------------------------
 * Small Mobile
 * --------------------------------------------------------- */

@media (max-width: 420px) {

    .arb-customer-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 12px;
    }

    .arb-customer-service-item {
        min-height: 54px;
        gap: 8px;
    }

    .arb-customer-service-number {
        width: 30px;
        height: 30px;
        flex-basis: 30px;

        font-size: 13px;
    }

    .arb-customer-service-title {
        font-size: 14px;
    }

}