/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.training-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 26px;
}

.training-date-col {
    background: #F4F4F4;
    margin: 5px;
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
    padding: 8px;
    font-size: .8em;
}

.training-title-col {
    background: #F4F4F4;
    margin: 5px;
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
    padding: 8px;
}

.training-location-col {
    margin: 5px;
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
    border: 3px #f4f4f4 solid;
    padding: 8px;
}

.training-location {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    font-size: .8em;
}

.training-location-button {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    text-align: center;
}

.training-date-title {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
}

.training-date {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 600;
}

.training-title a {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    flex: 0 0 100%;
}

.training-description {
    font-size: .8em;
    display: flex;
    flex: 0 0 100%;
}

a.training-link, a:hover.training-link {
    margin: 10px 5px;
    background: #0056b3;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: .9em;
    text-decoration: none;
}

.training-city {
    font-weight: 600;
    margin-left: 5px;
    ;
}

.training-category {
    text-align: center;
    font-size: .9em;
    background: #fff;
    border-radius: 6px;
    margin: 6px auto;
    padding: 5px;
    color: #555;
    text-transform: uppercase;
}

.row {
    justify-content: center;
}

.box-row {
    display: flex;
    flex-wrap: wrap;
}

.box-item {
    border: 2px #ccc solid;
    flex: 0 0 100%;
    margin: 6px 0;
    padding: 16px 20px;
    border-radius: 8px;
}

i.blue {
    color: #0056b3;
}

/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
    .training-row {
        flex-wrap: nowrap;
        margin: 0;
    }
    .training-date-col {
        flex: 0 0;
        align-items: center;
        min-width: 145px;
    }
    .training-title-col {
        flex: 2 0;
    }
    .training-location-col {
        flex: 0 0;
        min-width: 160px;
    }
    .training-category {
        font-size: .8em;
    }
    .box-row {
        flex-wrap: nowrap;
        margin: 6px
    }
    .box-item {
        flex: 0 0 50%;
        margin: 6px 10px;
    }
}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}