#rightAdBar {
    display: none;
}

#sideAppAd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#sideAppAd h3 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 16px;
    margin: 0 0 10px 0;
}

#sideAppAd .app-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px 10px 10px 10px;
    padding: 10px;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px 0 gray;
}

#sideAppAd .app-icon {
    margin: 10px 20px;    
}

#sideAppAd .app-icon img {
    height: 50px;
    width: 50px;
}

#sideAppAd .app-info {
    display: flex;
    flex-direction: column;
}

#sideAppAd .app-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sideAppAd .app-links a {   
    text-decoration: none;
}

#sideAppAd .app-badge {
    height: 50px;
    width: 170px;
}

#sideAppAd .app-badge:hover,
#sideAppAd .app-badge:active {
    box-shadow: 0 0 10px 1px #1e90ff;
    background-color: #1e90ff80;
}

#sideAppAd .badge:nth-of-type(even) {
    margin-left: 0;
}

/* Disable hovering effects for mobile/touch applications */
@media (hover: none) {
    #sideAppAd .app-badge:hover {
        box-shadow: none;
        background-color: transparent;
    }
}

/* For screen sizes greater than 1250px */
@media only screen and (min-width: 1250px){
    #rightAdBar {
        display: flex;
        flex-direction: column;
        width: 300px;
        min-width: 300px;
        margin-right: 10px;
    }
}

