/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.5.15,
* Autoprefixer: v10.5.0
* 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-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
html[dir=ltr] .dropDown-header {
    text-transform: capitalize;
}
.dropDown-header .current {
}
html[dir="ltr"] .dropDown-header .current {
    font-weight: 600;
}
.dropDown-header [class^="icon-"] {
    -webkit-margin-start: .75rem;
    margin-inline-start: .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;
    transition: all ease-in-out .3s;
    opacity: 0;
    pointer-events: none;
    border-radius: 0.5rem;
    background: rgba(217, 217, 217, 0.50);
    backdrop-filter: blur(10px);
    width: 100%;
    border: 1px solid var(--medium-gray);
}
.dropDown.active .dropDown-body {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(12px);
}
.dropDown-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropDown-body li {
    font-size: .813rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: .94rem 0;
    text-align: center;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid var(--medium-gray);
}
html[dir=ltr] .dropDown-body li {
    text-transform: capitalize;
}
.sort-dropdown.dropDown .dropDown-body {
    background-color: #000000cf;
}

.dropDown-body li:last-child {
    border: none;
}
.dropDown-header .icon-sort {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--foreground);
}
.sort-dropdown .dropDown-body li {
    -webkit-transition: background-color 0.3s linear,color 0.3s linear;
    transition: background-color 0.3s linear,color 0.3s linear;
}
.sort-dropdown .dropDown-body li:hover {
    background-color: var(--dark-yellow);
    color: var(--yellow);
}
/*============Drop Down===========*/
@media only screen and (max-width: 768px){}
@media only screen and (min-width: 640px) and (max-width: 768px){}
@media only screen and (min-width: 769px) and (max-width: 1199px){}
@media only screen and (min-width: 1200px) and (max-width: 1399px){}
@media only screen and (min-width: 1400px) and (max-width: 1700px){}