﻿:root {
    --carousel-items-per-page: 6;
}

div.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    border-top: solid 1px var(--color-green-dark);
    border-bottom: solid 1px var(--color-green-dark);
    background-color: var(--color-green-light);
}

div.carousel-container {
    /* Prevent logos from wrapping to the next line */
    white-space: nowrap;
}

div.carousel-item {
    display: inline-block;
    /*min-width: calc(100% / var(--carousel-items-per-page));*/
    min-width: 250px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid var(--color-green-dark);
    border-radius: 10px;
    text-align: center;
    margin: 0 5px;
    background-color: #fff;
}

div.carousel-item img {
    text-align: center;
}

div.carousel-item div.loc {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    line-height: 1.5rem;
    color: var(--color-green);
    border-top: solid 1px var(--color-green);
    padding-top: 10px;
}

    div.carousel-item div.loc i {
        width: 24px;
        text-align: center;
    }

img.carousel-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 80;
}
