/* ======== optional styles ============= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; */
    /* 	background: url(https://wallpapers.com/images/hd/gray-polygon-abstract-material-design-y7ncpvzintzu771r.jpg) */
    /* no-repeat center;
    background-size: cover;
    overflow: hidden; */
    font-family: "Harboro-Contrast", Sans-serif;
}

.container {
    margin: 0 auto;
    /* padding: 0 15px 20px; */
    max-width: 800px;

    /* 	border-radius: 10px; */
    /* 	box-shadow: 0 0 40px 25px #111; */
}

.container:hover {}

h1 {
    margin: 20px 0;
    color: #fff;
    text-align: center;
}

/* ======== // end of optional styles ============= */
.accordion {
    position: relative;
    padding: 18px 35px 18px 18px;
    width: 100%;
    text-align: left;
    font-size: 15px;
    /* color: #fff; */
    /* background-color: #555555cc; */
    /* border: 1px solid #000; */
    transition: 0.4s;
    /* border-radius: 10px; */
    outline: none;
    cursor: pointer;
    border: 1px solid rgb(189, 189, 189);
    background: #fff;
    margin: 0;
    font-weight: 600;

}





.accordion::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #121010;
}

.accordion::before {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 16px;
    background-color: #121010;
    transition: height 0.2s ease-in;
}

.accordion.active::before {
    height: 0;
}

.accordion.active,
.accordion:hover {
    /* background-color: #e86d16; */
}

.accordion.active+.panel {
    /* margin-top: 2px; */
}

.panel+.accordion {
    /* margin-top: 1px; */
}

.panel {
    padding: 0 18px;
    background-color: #ffffffee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    box-shadow: 0 0 1px 0 #444;
    /* 	border-radius: 10px; */
}

.panel p {
    padding-top: 16px;
    font-weight: bold;
    color: #595959;
}

.li_text {
    font-weight: bold;
    color: #595959;
}

.panel p:last-child {
    padding-bottom: 20px;
}

.panel p+p {
    margin-bottom: 15px;
}

/* === for List === */
.pr-list {
    padding: 20px 0;
}

.pr-list div {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.pr-list div span:nth-child(2) {
    flex-grow: 1;
    line-height: 1.6;
    border-bottom: 1px dotted #333;
}

.pr-list div span:nth-child(3) {
    text-align: right;
}