:root {
    --yenimavi: #27408b;
    --kirmizi: #911111;
}
.nw-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: var(--headTuruncu);
    transition: .3s all;
}
.nw-icon-act {
    transform: translateY(-50%) rotateZ(90deg);
}
.nw-head {
    padding: 12px 0px;
    margin-bottom: 20px;
    background: var(--headTuruncu);
    border-radius: 4px;
}
.nw-head .nw-head-p {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}
.nw-head-p {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .86rem;
    text-align: center;
    margin: 0;
    font-weight: 700;
}
.nw-head-xlp {
    flex: 3;
    color: var(--yenimavi);
    font-weight: bold;
    height: 100%;
    overflow-y: auto;
}
.nw-head-xlp strong,
.nw-mobil .nw-head-p strong{
    width:100%;
    overflow-x:auto;
}
.cursor-pointer {
    cursor: pointer;
}
.nw-item {
    background: white;
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.nw-sub {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    position: relative;
    border-radius: 4px;
}
.nw-sub-act {
    height: auto;
    max-height: 283px;
    overflow-y: auto;
}
.nw-sub .nw-head, .nw-sub .nw-head .nw-head-p {
    background: var(--headTuruncu);
    margin-bottom: 0;
    color: white;
    z-index: 1;
}
.nw-sub .nw-head {
    position: sticky;
    top: 0;
}
.nw-item:nth-child(2n) {
    background: #f5f5f5;
}
.nw-item:last-child {
    border-bottom: 0px;
}
.nw-head-bold-blue {
    color: var(--headTuruncu);
    font-weight: bold;
}
.nw-head-fiyat {
    color: var(--kirmizi);
    font-weight: bold;
}
.nw-item form{
    overflow-x: auto;
}
@media screen and (max-width: 828px) {
    .nw-item {
        height: 206px;
    }
    .nw-icon{
        left: unset;
        right: 5px;
    }
}