.alert--info.fa,
.alert--success.fa,
.alert--warning.fa,
.alert--danger.fa {
    position: relative;
    margin: 1em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.12);
    box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.3), 0 2px 10px 0 rgba(30, 30, 30, 0.12);
    color: #1e1e1e;
    max-width: 100%;
    background-color: #ffffff;
}

.alert--info:before,
.alert--success:before,
.alert--warning:before,
.alert--danger:before {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 2em;
    flex-basis: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3em;
    color: #ffffff;
}

.alert--info p,
.alert--success p,
.alert--warning p,
.alert--danger p {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    padding: 1em;
    font-family: "Tahoma", Segoe UI, Arial, Helvetica, Sans-Serif;
}


.alert--info:before {
    background-color: #03A9F4;
}

.alert--success:before {
    background-color: #1CB254;
}

.alert--warning:before {
    background-color: #FF8F00;
}

.alert--danger:before {
    background-color: #E53935;
}

.text-alert--danger {
    color: #E53935;
}

.gmap-course {
    height: 500px;
    width: 100%;
    margin-bottom: -4em;
}


.app__progress {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0;
    font-size: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255,255,255,0.8);
}

.app__progress:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    font-size: 3rem;
    line-height: 1;
    color: #24a9b7;
    transform: translate(-50%, -50%);
    animation: spin 1.5s infinite linear;
}