/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*============Drop Down===========*/
.dropDown {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
}
html[dir=ltr] .dropDown {
    margin-right: 0;
    margin-left: auto;
}
.dropDown-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
html[dir=ltr] .dropDown-header {
    text-transform: capitalize;
}
.dropDown-header .current {
    font-weight: 800;
}
html[dir="ltr"] .dropDown-header .current {
    font-weight: 600;
}
.dropDown-header [class^="icon-"] {
    margin-right: .75rem;
    font-size: 1.125rem;
}
html[dir="ltr"] .dropDown-header [class^="icon-"] {
    margin-left: .75rem;
    margin-right: 0;
}
.dropDown-body {
    position: absolute;
    left: 0;
    bottom: -1rem;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    overflow: hidden;
    z-index: 3;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    opacity: 0;
    pointer-events: none;
    border-radius: 0.5rem;
    background: rgba(217, 217, 217, 0.50);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
}
.dropDown.active .dropDown-body {
    opacity: 1;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.dropDown-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropDown-body li {
    color: var(--BrandGreen400);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    padding: .94rem 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}
html[dir=ltr] .dropDown-body li {
    text-transform: capitalize;
}

.dropDown-body li:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: -o-linear-gradient(left, rgba(255, 197, 60, 0.00) 0%, var(--BrandYellow500) 50%, rgba(255, 197, 60, 0.00) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 197, 60, 0.00)), color-stop(50%, var(--BrandYellow500)), to(rgba(255, 197, 60, 0.00)));
    background: linear-gradient(90deg, rgba(255, 197, 60, 0.00) 0%, var(--BrandYellow500) 50%, rgba(255, 197, 60, 0.00) 100%);
}
.foundSorting .dropDown-body li:before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: rgba(255, 197, 60, .4);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px 10px rgba(255, 197, 60, .4);
    box-shadow: 0 0 20px 10px rgba(255, 197, 60, .4);
    border-color: #fff0;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    top: 50%;
    border-radius: 1rem;
    z-index: -1;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    opacity: 0;
}

.foundSorting .dropDown-body li:hover:before {
    opacity: 1;
}
/*============Drop Down===========*/