#ads-style-1 .ads-title {
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
}

#ads-style-1 .ads-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: grid;
    grid-row-gap: 8px;
}

@media (min-width: 992px) {
    #ads-style-1 .ads-list {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 10px;
        grid-column-gap: 10px;
        max-width: calc(470px * 2);
    }
}

#ads-style-1 .ads-list .ad-item {
    width: 100%;
}

@media (min-width: 992px) {
    #ads-style-1 .ads-list .ad-item {
        max-width: 470px;
    }
}

#ads-style-1 .ads-list .ad-item a {
    display: flex;
    position: relative;
    align-items: center;
    background: #f5a623;
    font-weight: 600;
    color: black;
    border-radius: 10px;
    padding: 18px 12px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    padding-right: 50px;
    font-size: 20px;
}

#ads-style-1 .ads-list .ad-item a .arrow-discoversoon {
    display: block;
    width: 70%;
    height: 70%;
    fill: white ;
}

#ads-style-1 .ads-list .ad-item a .icon-red-arrow,
#ads-style-1 .ads-list .ad-item a .icon-green-arrow,
#ads-style-1 .ads-list .ad-item a .icon-orange-arrow,
#ads-style-1 .ads-list .ad-item a .icon-blue-arrow {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    border: 3.5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ads-style-1 .ads-list .ad-item a .icon-red-arrow {
    background-color: #CC3300;
}

#ads-style-1 .ads-list .ad-item a .icon-green-arrow {
    background-color: #99CC00;
}

#ads-style-1 .ads-list .ad-item a .icon-orange-arrow {
    background-color: #CC6600;
}

#ads-style-1 .ads-list .ad-item a .icon-blue-arrow {
    background-color: #006699;
}