/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #adv-logos-buttons {
    width: 100%;
    /*display: none*/
    padding-bottom: 20px;
}

 #adv-logos-selector {
     width: 70%;
     display: block;
     margin: auto;
     margin-bottom: 25px;
 }

 .adv-logos-button {
    /*background-color: white;
    color: #1e71b7;
    border-radius: 10px;
    border: 1px solid #00aeef;
    margin-right: 15px;
    font-size: 16px;
    min-width: 40px;
    padding: 4px 8px;*/
	background-color: #1e71b7;
    color: #ffffff;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 13px;
    min-width: 40px;
    padding: 6px 12px;
}

.adv-logos-button:hover {
	background-color: #00aeef;
}

#adv-logos {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 100%;
    align-items: center;
}

.adv-logo {
    width: 70%;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
}


.adv-logo .adv-logo-title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 10px auto;
} 

.adv-logo a, .adv-logo a img {
    width: 100%;
}

 @media screen and (min-width: 768px) {
    #adv-logos-buttons {
        display: flex
     }
    
     #adv-logos-selector {
         display: none;
     }

     #adv-logos {
        flex-direction: row;
    }

    .adv-logo {
        width: 200px;
        min-width: 200px;
        margin-bottom: 35px;
    }

    .adv-logo .adv-logo-title {
        min-height: 54px
    } 
 }

