/* ===================================================================================================================================================================== */

.excel-list{
    box-sizing: border-box;
    margin: 0 0 0 0;
}

@media (max-width: 1440px) {
    .excel-list{
        margin: 0 0 0 0;
    } 
}

/* ===================================================================================================================================================================== */

.excel-list-container{
    display: grid;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
}

.excel-list-item{
    cursor:pointer;
    box-sizing: border-box;   
    border-radius: 4px;
    width: 100%;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.excel-list-item:hover {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.excel-list-item-title{
    font-weight: 600;
}

.excel-list-item-excerpt {
    font-weight: 400;
}

@media (min-width: 0px) {
    
    .excel-list-container {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .excel-list-item{
        padding: 18px 14px;
    }
    
    .excel-list-item-title{
        font-size: 1.1rem;
        padding: 0 0 10px 0;
    }
    
    .excel-list-item-excerpt {
        font-size: 0.875rem;
    }
    
}

@media (min-width: 900px) {
    
    .excel-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .excel-list-item{
        padding: 18px 14px;
    }
    
    .excel-list-item-title{
        font-size: 1.1rem;
        padding: 0 0 10px 0;
    }
    
    .excel-list-item-excerpt {
        font-size: 0.875rem;
    }
    
}

@media (min-width: 1440px) {
    
    .excel-list-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .excel-list-item{
        padding: 32px 20px;
    }
    
    .excel-list-item-title{
        font-size: 1.4rem;
        padding: 0 0 18px 0;
        text-align: center;
    }
    
    .excel-list-item-excerpt {
        font-size: 1rem;
        text-align: center;
    }

}



/* ===================================================================================================================================================================== */

.excel-macrolix-one{
    margin-bottom:12px;
    
}

.excel-macrolix-one-content{
    display: flex;
    flex-direction: row;
    background:#D4F0D4;
    padding: 12px;
}

.excel-macrolix-one-text{
    flex-grow: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 8px 16px;
    border-radius: 6px;
    margin-right: 12px;
    font-weight: 500;
    
}

.excel-macrolix-one-cta{
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
    
    .excel-macrolix-one-content{
        flex-direction: column;
    }
    
    .excel-macrolix-one-text{
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .excel-macrolix-one-cta{
        justify-content: center;
    }
        
}

/* ===================================================================================================================================================================== */

.excel-list-filter{
    box-sizing: border-box;
    align-items: center;
    background:#f4f5ff;
    padding: 16px 0;
    border-radius: 6px;
    margin-bottom:24px;
}

.excel-list-filter form{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:0;
    gap: 12px;
    flex-wrap: wrap;
}

.excel-list-filter input{
    height: 34px;
    margin: 0;
    font-size: 1rem;
    padding-left: 8px;
    padding-right: 8px;
    border:1px solid #808080;
    border-radius: 4px;
    width: 300px;
    background: transparent;
}

.excel-list-filter select{
    height: 38px;
    font-size: 1rem;
    padding-left: 8px;
    padding-right: 8px;
    border:1px solid #808080;
    border-radius: 4px;
    background: transparent;
}

.excel-list-filter button{
    height: 38px;
    padding: 5px 15px 6px 15px;
    box-sizing: border-box;
}

.excel-list-filter input:focus{
    outline:none;
    border: 1px solid #6A5ACD;
}

.excel-list-filter select:focus{
    outline:none;
    border: 1px solid #6A5ACD;
}

@media (max-width: 1440px) {
    
    .excel-list-filter{
        padding: 14px 0;
        margin-bottom:20px;
    }
    
    .excel-list-filter form{
        gap: 10px;
    }
    
    .excel-list-filter input{
        height: 30px;
        font-size: 0.875rem;
        padding-left: 6px;
        padding-right: 6px;
        width: 300px;
    }
    
    .excel-list-filter select{
        height: 34px;
        font-size: 0.875rem;
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .excel-list-filter button{
        height: 34px;
        padding: 5px 15px 6px 15px;
    }
    
}

@media only screen and (max-width: 768px) {
    
    .excel-list-filter{
        padding: 12px;
    }
    .excel-list-filter input{
        width: 100%;
    }
    
    .excel-list-filter select{
        width: 100%;
    }
}

/* ===================================================================================================================================================================== */