/* ===================================================================================================================================================================== */

.apps-list{
    box-sizing: border-box;
    margin: 0 0 0 0;
}

@media (max-width: 1440px) {
    .apps-list{
        margin: 0 0 0 0;
    } 
}

/* ===================================================================================================================================================================== */

.apps-list-item{
    cursor:pointer;
    box-sizing: border-box;   
    border-radius: 4px;
    padding: 20px 16px;
    width: 100%;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    margin: 0 0 20px 0;
}

.apps-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;
}

@media (max-width: 1440px) {
    .apps-list-item{
        padding: 18px 14px;
        margin: 0 0 18px 0;
    } 
}

.apps-list-item-title{
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0 0 12px 0;
}

.apps-list-item-meta {
    font-size: 0.9rem;
    font-weight: 500;
    color: #787878;
    padding: 0 0 12px 0;
}

.apps-list-item-excerpt {
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 1440px) {
    
    .apps-list-item-title{
        font-size: 1.1rem;
        padding: 0 0 10px 0;
    }
    
    .apps-list-item-meta {
        font-size: 0.8rem;
        padding: 0 0 10px 0;
    }
    
    .apps-list-item-excerpt {
        font-size: 0.875rem;
    }
    
}

/* ===================================================================================================================================================================== */

.apps-macrolix-one{
    margin-bottom:12px;
    
}

.apps-macrolix-one-content{
    display: flex;
    flex-direction: row;
    background:#D4F0D4;
    padding: 12px;
}

.apps-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;
    
}

.apps-macrolix-one-cta{
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
    
    .apps-macrolix-one-content{
        flex-direction: column;
    }
    
    .apps-macrolix-one-text{
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .apps-macrolix-one-cta{
        justify-content: center;
    }
        
}

/* ===================================================================================================================================================================== */

.apps-list-filter{
    box-sizing: border-box;
    align-items: center;
    background:#f4f5ff;
    padding: 16px 0;
    border-radius: 6px;
    margin-bottom:24px;
}

.apps-list-filter form{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:0;
    gap: 12px;
    flex-wrap: wrap;
}

.apps-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;
}

.apps-list-filter select{
    height: 38px;
    font-size: 1rem;
    padding-left: 8px;
    padding-right: 8px;
    border:1px solid #808080;
    border-radius: 4px;
    background: transparent;
}

.apps-list-filter button{
    height: 38px;
    padding: 5px 15px 6px 15px;
    box-sizing: border-box;
}

.apps-list-filter input:focus{
    outline:none;
    border: 1px solid #6A5ACD;
}

.apps-list-filter select:focus{
    outline:none;
    border: 1px solid #6A5ACD;
}

@media (max-width: 1440px) {
    
    .apps-list-filter{
        padding: 14px 0;
        margin-bottom:20px;
    }
    
    .apps-list-filter form{
        gap: 10px;
    }
    
    .apps-list-filter input{
        height: 30px;
        font-size: 0.875rem;
        padding-left: 6px;
        padding-right: 6px;
        width: 300px;
    }
    
    .apps-list-filter select{
        height: 34px;
        font-size: 0.875rem;
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .apps-list-filter button{
        height: 34px;
        padding: 5px 15px 6px 15px;
    }
    
}

@media only screen and (max-width: 768px) {
    
    .apps-list-filter{
        padding: 12px;
    }
    .apps-list-filter input{
        width: 100%;
    }
    
    .apps-list-filter select{
        width: 100%;
    }
}

/* ===================================================================================================================================================================== */