.templateListFiles {
    display: flex;
    flex-direction: column;
    width: 100%
}

.templateListFiles .templateListFiles__filter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: max-content;
    padding: 15px 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #c7d0ea
}

@media all and (min-width: 1280px) {
    .templateListFiles .templateListFiles__filter {
        flex-direction: row;
        align-items: center
    }
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--quantityResults {
    display: flex;
    align-items: center
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--quantityResults p{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    color: #394053;
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px
}

@media all and (min-width: 720px) {
    .templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects {
        flex-wrap: nowrap
    }
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(50% - 5px)
}

@media all and (min-width: 720px) {
    .templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter {
        width: max-content
    }
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select {
    display: flex;
    min-width: 100%;
    padding: 10px;
    outline: none;
    height: 40px;
    font-size: 1.4rem;
    background-color: #fff;
    border: 1px solid #d3eff8;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all .3s ease;
    color: var(--color_alternate)
}

@media all and (min-width: 720px) {
    .templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select {
        min-width: 200px
    }
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select:disabled {
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: not-allowed;
    color: #7c7c7c
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select:hover,
.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select:focus {
    border: 1px solid var(--color_primary);
    transition: all .3s ease
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select:hover:disabled,
.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>.filter select:focus:disabled {
    color: #7c7c7c;
    border: 1px solid #d3eff8;
    cursor: not-allowed
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 5px);
    height: 40px;
    border: 1px solid #d3eff8;
    border-radius: 4px;
    transition: all .3s ease;
    background-color: var(--color_alternate);
    cursor: pointer
}

@media all and (min-width: 720px) {
    .templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>button {
        width: 40px;
        background-color: #fff
    }
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>button i {
    color: #fff;
    font-weight: 800;
    transition: all .3s ease
}

@media all and (min-width: 720px) {
    .templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>button i {
        color: var(--color_alternate)
    }
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>button:hover {
    border: 1px solid var(--color_primary);
    background-color: var(--color_primary);
    transition: all .3s ease
}

.templateListFiles .templateListFiles__filter .templateListFiles__filter--filterSelects>button:hover i {
    color: #fff;
    transition: all .3s ease
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    padding: 20px 0;
    -webkit-box-shadow: 0px 10px 9px -7px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 10px 9px -7px rgba(0,0,0,0.05);
    box-shadow: 0px 10px 9px -7px rgba(0,0,0,0.05);
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item:nth-of-type(even) {
    background: #f8f9ff
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item:nth-of-type(odd) {
    background: #fff
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    width: 100px;
    color: #d4d6db
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails {
    display: flex;
    width: calc(100% - 200px)
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails a {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails a h1 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #213465;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails a p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 5px 0
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails a p i,
.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails a p span {
    font-size: 1rem;
    color: #213465
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemDetails a:hover h1 {
    text-decoration: underline
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemButton a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e7e7e7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-decoration: none;
    outline: none;
    transition: all .3s ease
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemButton a i {
    color: #6b747c;
    font-size: 20px
}

.templateListFiles .templateListFiles__results .templateListFiles__results--item .itemButton a:hover {
    transform: scale(1.1);
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
    transition: all .3s ease
}

.templateListFiles .templateListFiles__results--none {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-top: 100px
}

.templateListFiles .templateListFiles__results--none h2 {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 49px;
    color: #213465
}

.templateListFiles .templateListFiles__results--none p {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #213465
}