/* Menu (Offcanvas) component styles */

.offcanvas-start {
    width: 320px;
    border: none;
    background: #00483C;
}

.offcanvas-end {
    width: 320px;
    border: none;
    background: #00483C;
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    width: 18rem;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: #E7FF54;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link ul li a {
    font-family: var(--secondary-font);
    color: #E7FF54;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-menu-link ul li a i {
    font-size: 1.6rem;
    margin-left: .8rem;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-link ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: .2rem;
    background: #E7FF54;
    left: 0;
    bottom: -.4rem;
    transform: scale(0);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-link ul li a:hover:after {
    transform: scale(1);
}

.side-menu-link ul li a span i:nth-of-type(2) {
    display: none;
}

.side-menu-link ul li ul {
    padding-left: 1.6rem;
}

.side-menu-link ul li ul {
    display: none;
}
