/*--------------------------------------------------------------
# Box Sizing
--------------------------------------------------------------*/

.orthoman-element,
.orthoman-element *,
.orthoman-element *::before,
.orthoman-element *::after {
    box-sizing: border-box !important;
}


/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/

.orthoman-element,
.orthoman-element div,
.orthoman-element a,
.orthoman-element img,
.orthoman-element canvas {
    position: relative;
    display: block;
    float: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    font: inherit;
    font-size: 100%;
    line-height: 1;
}

/*--------------------------------------------------------------
# Clearfix
--------------------------------------------------------------*/

.orthoman-element::before,
.orthoman-element::after {
    display: table;
    content: " ";
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

.orthoman-element::after {
    clear: both;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.orthoman-element img,
.orthoman-element canvas {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: none !important;
    max-height: none !important;
}

/*--------------------------------------------------------------
# Wrapper
--------------------------------------------------------------*/

.orthoman-element .orthoman-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/*--------------------------------------------------------------
# Columns
--------------------------------------------------------------*/

.orthoman-element .orthoman-list,
.orthoman-element .orthoman-image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

/*--------------------------------------------------------------
# List Elements
--------------------------------------------------------------*/

.orthoman-element .orthoman-list a,
.orthoman-element .orthoman-list a:visited,
.orthoman-element .orthoman-list a:hover {
    padding: .5em;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    line-height: 1.2;
}

.orthoman-element .orthoman-list a:hover {
    text-decoration: underline;
}