#fabrics + .dropdown-menu.show {
    position: absolute;
    background: #ebebec;
    width: 100%;
    min-width: 200px;
    visibility: hidden;
    padding: 0 8px;
    left: 4px !important;
    top: 28px;
    z-index: 999;
    border: 0;
	border-radius: 0;
}
.nav-item.dropdown:hover #fabrics + .dropdown-menu.show{
    visibility: visible;
}

#fabrics + .dropdown-menu.show a {
    white-space: pre-wrap;
    padding: 7px 3px;
    color: #939598;
    font-family: var(--primaryFont);
    text-transform: uppercase;
    letter-spacing: 1.15px;
    font-size: 14px;
}

/* #fabrics + .dropdown-menu.show a:first-child The */
#fabrics + .dropdown-menu.show a {
border-bottom: 2px solid #ffffff;
}

#fabrics + .dropdown-menu.show a:last-child {
border-bottom: none;
}

#fabrics + .dropdown-menu.show a:hover {
    background: #ebebec;
    color: var(--rwblack);
    transition: all .2s;
}
#fabrics::after {
    content: "\f0d7";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    border: 0;
    margin: 0;
    display: inline;
    position: absolute;
    color: #fff;
    transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
    -moz-transition: all ease-in 0.5s;
    -ms-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
}

@media only screen and (max-width:841px){
    #fabrics:focus{
    color: #ffffff !important;
    outline: 0;
    }
    #fabrics::after{right:16px;}
    .rotate::after{
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
    .nav-item.dropdown #fabrics + .dropdown-menu.show{
    height: 0;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0 !important;
    padding: 0 16px;
    visibility: visible;
    transition:height ease-in 0.3s;
    -webkit-transition:height ease-in 0.3s;
    -moz-transition:height ease-in 0.3s;
    -ms-transition:height ease-in 0.3s;
    -o-transition:height ease-in 0.3s;
} 
.nav-item.dropdown .rotate + .dropdown-menu.show{
    height: 75px !important;
    transition:height ease-in 0.3s;
    -webkit-transition:height ease-in 0.3s;
    -moz-transition:height ease-in 0.3s;
    -ms-transition:height ease-in 0.3s;
    -o-transition:height ease-in 0.3s;
}
}