@charset "utf-8";
/* CSS Document */

a, a:hover, a:link {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.clear {
    clear: both;
}

.hidden {
    display: none;
}

.pos-center {
    margin: 0 auto;
}

a > img {
    border: none;
}

.no-padding {
    padding: 0 !important;
}

.row-centered {
    text-align:center;
}

.col-centered {
    float:none;
    margin: 0 auto;
}

.vertical-center {
    min-height: 94%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 94vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
}

.vertical-center-error {
    min-height: 50%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 50vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
}

.valign {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    /* vendor prefixes omitted due to brevity */
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

img.aligncenter {
    display: block;
    margin: 0 auto;
}

.no-gutter > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.space {
    height: 40px;
}

@media (max-width: 768px) {
    .row-eq-height {
        display: block;
    }
}
@media (max-width: 992px) {
    .row-eq-height {
        display: block;
    }
}