body {
    font-family: "sofia-pro", sans-serif;
}
.glms-card h4 {
    font-size: 1.17em;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    padding-top: 0px;
    text-align: center;
}
.glms-list-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0px;
    margin: 50px 0px;
    border: 2px solid #EAEAEA;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}
.glms-title-container {
    flex-basis: 100%;
    padding: 0px 50px 15px;
    border-bottom: 1px solid #EAEAEA;
}
h2.glms-course-title {
    flex-basis: 100%;
    margin: 20px 0px;
    color: #E5163D;
}
.glms-grid-title {
    flex-basis: 100%;
    padding: 0px 50px;
}
.glms-sessions-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
}
.glms-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-basis: 100%;
    margin: 0px 15px;
    padding: 10px 50px;
    border-right: none;
    border-bottom: rgb(212, 212, 212) solid 1px;
}
.glms-sessions-container div.glms-card:last-child {
    border-bottom: none;
}
.glms-card-title {
    display: flex;
    justify-content: center;
}
.glms-card-title h3 {
    margin-bottom: 5px;
}
.glms-time {
    display: flex;
    justify-content: center;
    text-align: center;
}
.glms-date-list {
    text-align: center;
    margin-bottom: 15px;
}
.glms-time h4 {
    margin: 5px 0px 10px;
    text-align: center;
}
.glms-date-list {
    display: block;
}
.glms-card div {
    flex-basis: 100%;
}
.glms-link {
    position: relative;
    flex-basis: 100%;
    padding: 15px 0px;
    text-align: center;
}
.glms-button {
    /*
    background-color: #E5163D;
    background-color: #F06B4E;
    border-top: rgb(212, 212, 212) solid 1px;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    color: #E5163D !important;
    display: block;
    font-weight: 700;
    padding: 8px 30px;
    text-align: center;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    margin: auto;
    */
    background: linear-gradient(90deg, #E5163D 0%, #F06B4E 100%);
    border: none;
    border-radius: 35px;
    color: #ffffff !important;
    display: inline-block;
    font-weight: 700;
    padding: 8px 30px;
    text-align: center;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    margin: auto;
    text-decoration: none !important;
}

.glms-button:hover {
    -webkit-box-shadow: 0px 0px 26px #f06b4e;
    box-shadow: 0px 0px 26px #f06b4e;
    text-decoration: none !important;
}

.gxc-mw-200 {
    max-width: 200px;
    height: auto;
}

.glms-session-grid {
    display: flex;
    flex-wrap: wrap;
}

.glms-session-grid div {
    flex-basis: calc(100%/3);
    margin: 15px 0px;
}

.start-date {
    display: none;
}

.end-date {
    display: none;
}

/* Loader */
.loader {
    display: none;
    border: 16px solid #eaeaea;
    border-top: 16px solid #e5163d;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 0.75s linear infinite;
    margin: 50px auto;
}

.loader.loading {
    display: block;
}

.loading {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (min-width: 992px) {
    .glms-card {
        flex-basis: calc(100%/2);
        border-bottom: none;
        border-right: rgb(212, 212, 212) solid 1px;
        margin: 0px 0px 15px 0px;
    }
    .glms-sessions-container .glms-card:nth-child(2n) {
    border-right: none;
    }
    .glms-sessions-container div.glms-card:last-child {
        border-right: none;
    }
}
