* {
    font-family :'Noto Sans KR', sans-serif;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.accordion-item:last-of-type .accordion-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.accordion-item:first-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    background-color: transparent;
    border-color:white;
    border-bottom: 1px solid #F3F3F3;
    border-top: transparent;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: #fff;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid #F3F3F3;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    color: black;
    box-shadow: none;
    border-color:white;
    border-bottom: 1px solid #F3F3F3;
}

.accordion-collapse.collapse.show {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-button.collapsed {
    border-bottom-width: 1;
}

.accordion-body{
    border-color: white;
    border-bottom: 1px solid #F3F3F3;
}

.accordion-collapse {
    border: solid #F3F3F3;
    border-width: 0 1px;
}

.faq-container {
    padding-top: 100px;
    padding-bottom: 50px;
}

pre {
    font-family :'Noto Sans KR', sans-serif;
    font-size: 1rem;
    margin-bottom: 0px;
    white-space: pre-wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.question-img {
    width: 55%;
    margin-top: 11px;
    margin-bottom: 8px;
}

.category {
    background-color:#F3F3F3;
}

.category .category_name{
    text-overflow:ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.5rem 0.5rem 0.5rem 1.0rem; 
}

.title{
    text-overflow:ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #212529;
    padding-right: 0.7rem;
}

.q_mark{
    color: #981D26;
    padding-right: 0.3rem;
}

@media (max-width: 400px) {
    .question-img {
        width: 65%;
    }
}


@media (min-width: 700px) and (max-width: 899px) {
    .question-img {
        width: 30%;
    }
}

@media (min-width: 900px) {
    .question-img {
        width: 15%;
    }
}