
/******* Uberflip *******/
#content [id^="UfEmbeddedHub"],
[id^="UfEmbeddedHub"] {
    max-width: none !important;
}

.uf-tile-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.uf-lazy-loader {
    width: 100% !important;
}

@media (max-width: 1024px) {
    .uf-tile-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .uf-tile-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.uf-tile-container li {
    list-style: none;
}

.uf-tile-thumbnail,
.uf-tile-copy time {
    display: none;
}

.uf-item-tile article {
    height: 100%;
}

.uf-item-tile .uf-tile {
    position: relative;
    padding: 50px 42px 71px;
    margin: 0;
    border-radius: 7px;
    border: 1px solid #CCDBE5;
    background: #FFF;
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.uf-item-tile .uf-tile:hover  {
    color: var( --e-global-color-primary );
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.uf-item-tile .uf-tile .uf-tile-title {
    font-family: var(--e-global-typography-4ccd1e0-font-family), Sans-serif;
    font-size: var(--e-global-typography-4ccd1e0-font-size);
    line-height: var(--e-global-typography-4ccd1e0-line-height);
}

.uf-tile-content-label {
    font-family: var(--e-global-typography-059ff84-font-family), Sans-serif;
    font-size: var(--e-global-typography-059ff84-font-size);
    text-transform: var(--e-global-typography-059ff84-text-transform);
    line-height: var(--e-global-typography-059ff84-line-height);
    color: #0D9DE5;
    position: absolute;
    bottom: 42px;
}
.uf-tile-content-label-text {
    display: inline;
    vertical-align: middle;
}

.uf-tile-content-label-arrow.fas.fa-angle-right {
    display: inline-block;
    vertical-align: middle;
}

.uf-tile-content-label-arrow.fas.fa-angle-right:before { 
    content: '\e803';
    font-family: "pros-icons";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}