.folder {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);
    margin-bottom: 10px;
}
.folder .fd-header {
    padding: 6px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.folder .fd-header svg {
    width: 24px;
    margin-left: 10px;
}
.item {
    display: grid;
    grid-template-columns: 1fr 6fr 2fr 1fr;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s;
}
.item:hover {
    background: #fafafa;
    border-bottom: 1px solid var(--hover_color);
}
.item:hover .link a {
    color: var(--hover_color);
}
.item .body {
    background: #fff;
}
.item .vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.item .vote svg {
    width: 18px;
    transition: all 0.2s;
}
.item .vote span {
    font-size: 14px;
}
.item .feature {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item .feature svg {
    width: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.item .feature svg:hover, .item .vote svg:hover {
    transform: scale(1.2);
    opacity: 0.8;
}
.item .stt {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #446084;
}
.item .stt svg {
    width: 18px;
    transition: all 0.3s;
}
.item:hover .stt svg {
    color: var(--hover_color);
    transform: translateX(5px);
}
.item .link {
    overflow: hidden;
}
.item .link a {
    display: block;
    width: 100px;
    padding: 10px 5px;
    color: #446084;
    width: 100%;
    transition: all 0.3s;
}
.item .link a.blocked {
    text-decoration: line-through;
    text-decoration-color: var(--hover_color);
}
.item-sort {
    display: grid;
    grid-template-columns: 1fr 6fr 2fr 1fr;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s;
}
.item-sort svg {
    width: 18px;
    display: grid;
    transition: all 0.3s;
}
.item-sort .stt, .item-sort .vote, .item-sort .link, .item-sort .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--hover_filter_color);
    height: 40px;
    border-right: 1px solid #e8e8e8;
}
.item-sort .stt:hover, .item-sort .vote:hover , .item-sort .link:hover, .item-sort .feature:hover {
    background: #fafafa;
}
.item-sort .stt:hover svg, .item-sort .vote:hover svg , .item-sort .link:hover svg, .item-sort .feature:hover svg {
    transform: scale(1.2);
}
.item-sort .feature {
    border-right: none;
}
.item-sort .link svg {
    margin-right: 10px;
}

.filter {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.filter .boloc {
    display: flex;
    border-radius: 3px;
    padding: 8px 15px;
    background: #2ba6e0;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    margin: 3px;
    height: 40px;
}
.filter .sort-vote {
    display: flex;
    border-radius: 3px;
    padding: 8px 15px;
    background: #689a08;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    margin: 3px;
    height: 40px;
    align-items: center;
}
.filter .sort-vote svg {
    width: 22px;
    transition: all 0.2s;
}
.filter .sort-vote svg.up {
    transform: rotate(-180deg);
}
.filter .boloc .text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter .boloc .alphabet-filter {
    position: absolute;
    top: -20%;
    right: -20%;
    z-index: 999;
    width: 100%;
    background: #2ba6e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.filter .auto-search {
    margin: 3px;
    height: 40px;
    min-width: 300px;
}
.filter .auto-search input {
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    padding: 5px;
}
.alphabet-filter ul {
    margin: 0;
    padding: 0;
}
.alphabet-filter ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    border-bottom: 1px solid #ececec;
    margin: 0;
    transition: all 0.2s;
}

.alphabet-filter ul li.active {
    border-left: 5px solid yellow;
    background: #1a8abf;
}

.alphabet-filter ul li:hover {
    background: #1a8abf;
}

.filter .boloc svg {
    margin-right: 10px;
    width: 20px;
}

.filter .boloc .backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
}


.folder-loading-spin {
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.fix-height{
    max-height:300px;/* or any height you want */
    overflow-y:auto
}

.fix-height::-webkit-scrollbar
{
    width: 10px;
    background-color: #F5F5F5;
}

.fix-height::-webkit-scrollbar-thumb
{
    background-color: #F90;
    background-image: -webkit-linear-gradient(45deg,
                    rgba(255, 255, 255, .2) 25%,
                    transparent 25%,
                    transparent 50%,
                    rgba(255, 255, 255, .2) 50%,
                    rgba(255, 255, 255, .2) 75%,
                    transparent 75%,
                    transparent)
}




.et-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.et-header .et-title {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px;
    background: var(--header-color);
    width: 100%;
    text-align: center;
    color: var(--title-color);
}
.et-title a {
    color: var(--title-color);
}
.et-filter {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 6fr 2fr 1fr;
}
.et-header svg {
    width: 24px;
    cursor: pointer;
}
.et-sort {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}
.et-stt {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.et-az, .et-vote, .et-feature   {
    border-right: 1px solid #ddd;
}
ul.enter-link, ul.enter-link li {
    margin: 0;
    padding: 0;
}

ul.enter-link {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
}
@media screen and (min-width: 768px) {
    ul.enter-link {
        grid-template-columns: 1fr 1fr;
    }
}
ul.enter-link li {
    display: grid;
    grid-template-columns: 1fr 6fr 3fr 1fr;
    align-items: center;
    padding: 8px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

ul.enter-link li .enter-vote {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.enter-link li .enter-vote span {
    margin-left: 2px;
    font-size: 14px;
}

ul.enter-link li svg{
    width: 20px;
    color: #446084;
    transition: all 0.3s;
    cursor: pointer;
}
ul.enter-link li a {
    color: #446084;
    display: flex;
    overflow: hidden;
}
ul.enter-link li a.blocked {
    text-decoration: line-through;
    text-decoration-color: var(--link-color);
}
ul.enter-link.dark li a, ul.enter-link.dark li svg, .et-header.dark svg {
    color: #FFF;
}
ul.enter-link li:hover {
    border: 1px solid var(--link-color);
    border-radius: 3px;
}
ul.enter-link li:hover > a {
    color: var(--link-color);
}
ul.enter-link li:hover > .enter-vote svg, ul.enter-link li:hover > .enter-vote span, ul.enter-link li:hover > svg {
    color: var(--link-color);
}
ul.enter-link li:hover > .link-arrow {
    color: var(--link-color);
    transform: translateX(5px);
}
.et-sort:hover {
    color: var(--link-color);
}
.et-sort:hover > svg {
    color: var(--link-color);
}
