@import "https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap";

.offcanvas-header {
    background:#00a9da;
    
}
.offcanvas-header {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: white;
    font-size: 30px;
}
.offcanvas-header button.close{
    padding:4px 8px;
    color:#272343;
    background:#fff;
    opacity:1;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.offcanvas-body {
    height:100%;
    padding: 1rem;
    overflow-y: auto;
}
h1#offcanvasExampleLabel,
button.btn-close.text-reset {
    color: #fff
}

.list {
    position: relative
}

.list h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.list ul {
    position: relative
}

.list ul li {
    position: relative;
    left: 0;
    color: #777;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #373373;
    transition: .5s;
    cursor: pointer
}

.list ul li a {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: .5s
}

.list ul li:hover a {
    color: #fff;
    color: #fff !important;
    text-decoration: none !important
}

.list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00a9da;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s;
    border-radius: 5px
}

.list ul li:hover:before {
    transform: scaleX(1)
}

ul.cat-list li a {
    width: 100%;
    color: #777;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600
}