/* Swiper flex container */

.swiper-flex-container {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.swiper-tiles {
    align-content: stretch;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.swiper-tile {
    background-color: var(--ssy-pla-gray3);
    border-color: #402101;
    border-radius: 10px;
    cursor: pointer;
    transition: all 200ms ease-out;
    margin: 1em;
    margin-top: 3em;
    padding: 1em;
    padding-top: 1.2em;
    height: 75%;
    min-width: 240px;
    width: 18%;
}

.swiper-tile:hover {
    box-shadow: 0 0 10px 5px lightgray;
}

.swiper-tile .wh_tile_title {
    margin-bottom: 0.4em;
}

/* Swiper settings */

.swiper-container {
    width: 40%;
    margin: 1em;
}

@media only screen and (max-width : 600px) {
    .swiper-container {
        display: none;
    }
}

.swiper {
    /* height: 100px; */
    border-radius: 5px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, .2); */
    background-color: var(--ssy-pla-gray3);
    border-color: #402101;
    border-radius: 10px;
    cursor: pointer;
    transition: all 200ms ease-out;
}

.swiper:hover {
    box-shadow: 0 0 10px 5px lightgray;
}

.swiper-slide {
    align-content: center;
}

.swiper-slide img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--ssy-pla-gray1) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination {
    position: relative !important;
    /* text-align: left !important; */
    margin-top: 15px !important;
}

.swiper-pagination-bullet {
    transition: all .3s ease-in-out;
    background-color: #545454 !important;
    opacity: 0.7;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 100vmax;
    opacity: 1;
}

.swiper-header {
    /* font-size: 0.8em; */
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: 5px;
    color: var(--ssy-pla-accent4);
}

.swiper-intro {
    /* font-size: 0.8em; */
    font-weight: 500;
    /* text-transform: uppercase; */
    text-align: start;
    margin: 5px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 0;
    color: #666;
}

p.swiper-link {
    font-size: 1.2em;
    text-align: start;
    margin: 5px;
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 0;
    color: #ff7a00 !important;
}

p.swiper-link a:visited {
    color: #ff7a00 !important;
    text-decoration: none;
}

p.swiper-link a {
    color: #ff7a00 !important;
}

p.swiper-link a:hover {
    text-decoration: underline;
    color: #ff7a00 !important;
}