form{
    direction: rtl;
}
.search{
    display: flex;
    position: relative;
    width:100%;
}
.search-icon{
    padding:10px;
    background: rgba(24, 24, 27, 0.5);
    text-align: center;
    font-size: 14px;
    border-radius: 8px 0px 0px 8px;
    outline: none;
    border:none;
}
#search-input{
    padding:10px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(24, 24, 27, 0.5);
    border-radius: 0px 8px 8px 0px;
    outline:none;
    border: none;
    display: block;
    direction: ltr;
    font-size: 14px;
}
header{
    height: 80px;
    padding:20px 0px;
}
li a{
    white-space: nowrap;
    margin:0px 20px;
    justify-content: space-evenly;
}
.icons .show-icon, #close-icon{
    display: none;
}

.icons{
    display: none;
}

@media screen and (max-width:768px){
    .nav{
        top:180px;
        position: fixed;
        right:0;
        top:0;
        /* bottom: 0; */
        border-bottom: 1px solid #141425;
        width:25%;
        display: none;
        background: rgb(20, 20, 20);
        height: 100%;
    }
    .nav ul{
        margin-top:50px; 
        padding: 0;
        text-align: center;
    }
    nav ul li a{
        align-items: flex-start;
        line-height: 50px;
        padding:0;
        text-align: center;
    }
    header{
        bottom:0;
        border-bottom: none;
    }
    .icons{
        display: block;
    }
    .icons .show-icon{
        display: block;
    }
}