@charset "utf-8";
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-size: 16px;
    font-family: sans-serif;
}

@media(max-width:1024px) {
    html, body {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    html, body {
        font-size: 14px;
    }
}

@media(max-width:480px) {
    html, body {
        font-size: 13px;
    }
}

/* Typography */

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    font-weight: initial;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.error-text {
    color: red;
}

/* Links */

a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
    cursor: pointer;
}

p>a {
    text-decoration: underline;
    /* white-space: nowrap; */
}

label>a {
	text-decoration:underline;
}

/* Form Control */

input, select, textarea {
    display: block;
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.2);
    padding: 12px;
    font-family: inherit;
    font-size: inherit;
    background-color:white;
}

textarea {
    height: 25vh;
}

input[type="checkbox"], input[type="radio"] {
    display: inline-block;
    width: auto;
}

.form input, .form select, .form textarea {
    margin-bottom: 16px;
}

.form input[type="checkbox"], .form input[type="radio"] {
    margin-bottom:8px;
}

.form .multiSelectOptions input[type="checkbox"]{
    margin-bottom:8px;
}

.form label {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.form label+label.radio, .form label+label.checkbox {
    margin-top: 8px;
}

label.radio, label.checkbox, label.terms-box {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    margin-bottom: 16px;
    font-weight: normal;
}

label.radio>input[type="radio"], label.checkbox>input[type="checkbox"], label.terms-box>input[type="checkbox"] {
    position: absolute;
    left: 0;
    margin-left: 0;
}

label.terms-box {
    padding: 20px;
    padding-left: 50px;
    background-color:rgba(0,0,0,0.1);
}

label.terms-box>input[type="checkbox"] {
    left: 20px;
}

label.radio.inline, label.checkbox.inline {
    display: inline-block;
    margin-right: 20px;
}

/* Buttons */

.btn {
    display: inline-block;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    vertical-align: middle;
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 0, 0, 0.2);
    font-size: initial;
    cursor: pointer;
    transition: 0.4s ease;
    width: auto;
    margin: 0 0 16px;
    white-space: nowrap;
}

.btn.btn-o {
    background-color: transparent;
}

.btn.red {
    background-color: red;
    border-color: red;
    color: white;
}

.btn.green {
    background-color: green;
    border-color: green;
    color: white;
}

.btn.full-width {
    width: 100%;
}

.btn i.fa {
    margin-right: 2px;
}

@media(max-width:480px) {
    .btn {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Images */

img, video {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}

/* Lists */

.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -20px;
    margin-top: -20px;
    overflow: hidden;
}

.list-inline>li {
    display: inline-block;
    float: left;
    padding-left: 20px;
    padding-top: 20px;
}

/* Tables */

table.table {
    min-width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 24px;
}

table.table tr>th {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    padding-top: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
}

table.table tr>td {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    padding-top: 8px;
    padding-bottom: 8px;
}

table.table.striped tr>th, table.table.striped tr>td {
    padding-left: 8px;
    padding-right: 8px;
}

table.table.striped tr:nth-of-type(even)>td {
    background-color: rgba(0, 0, 0, 0.1);
}

table.table.border {
    border: solid 1px rgba(0, 0, 0, 0.2);
}

table.table.border tr>th, table.table.border tr>td {
    padding: 8px;
    border-color: rgba(0, 0, 0, 0.2);
}

.table-scroll {
    display: block;
    overflow: auto;
    margin-bottom: 24px;
}

.table-scroll>table.table {
    margin-bottom: 0;
}

/* Flex */

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex.column {
    flex-direction: column;
}

.flex.reverse {
    flex-direction: row-reverse;
}

.flex.column.reverse {
    flex-direction: column-reverse;
}

.flex.nowrap {
    flex-wrap: nowrap;
}

.flex.space-between {
    justify-content: space-between;
}

.flex.center {
	align-items:center;
}

/* Container */

.container {
    width: 100%;
    max-width: 1040px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Flex Grid Layout */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    align-items: flex-start;
}

.row+.row {
	padding-top:20px;
}

.row.center {
    align-items: center;
}

.row.end {
    align-items:flex-end;
}

.row.reverse {
    flex-direction:row-reverse;
}

.row.spacing {
    margin-top:-40px;
}

.row.spacing>div {
    padding-top:40px;
}

.row.spacing>div.blank {
	padding:0;
}

*[class*="xs-col"], *[class*="sm-col"], *[class*="md-col"], *[class*="lg-col"] {
    padding: 0 20px;
    flex: 1;
    flex-shrink: 0 !important;
    flex-grow: 1;
}

*[class*="col-1"] {
    flex: 1;
    min-width: 8.33333333%;
}

*[class*="col-2"] {
    flex: 2;
    min-width: 16.66666667%;
}

*[class*="col-3"] {
    flex: 3;
    min-width: 25%;
}

*[class*="col-4"] {
    flex: 4;
    min-width: 33.33333333%;
}

*[class*="col-5"] {
    flex: 5;
    min-width: 41.66666667%;
}

*[class*="col-6"] {
    flex: 6;
    min-width: 50%;
}

*[class*="col-7"] {
    flex: 7;
    min-width: 58.33333333%;
}

*[class*="col-8"] {
    flex: 8;
    min-width: 66.66666667%;
}

*[class*="col-9"] {
    flex: 9;
    min-width: 75%;
}

*[class*="col-10"] {
    flex: 10;
    min-width: 83.33333333%;
}

*[class*="col-11"] {
    flex: 11;
    min-width: 91.66666667%;
}

*[class*="col-12"] {
    flex: 12;
    min-width: 100%;
}

@media (max-width: 480px) {
    *[class*="sm-col"] {
        flex: 12;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    *[class*="md-col"] {
        flex: 12;
        min-width: 100%;
    }
}

@media (max-width: 1024px) {
    *[class*="lg-col"] {
        flex: 12;
        min-width: 100%;
    }
}

/* Banners */

.banner {
    padding-top: 10vh;
    padding-bottom: 10vh;
    position: relative;
	background-repeat:no-repeat;
}

.banner.image {
    background-size: cover !important;
    background-position: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner.image > * {
    z-index:1;
}

.banner.image::before {
    display:block;
    content:'';
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    right:0;
    background:rgba(0,0,0,0.1);
    z-index:0;
}

@media(min-width:768px) {

.banner.image.fixed {
    background-attachment: fixed;
}

}

/* Remove Margin */

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

/* Remove Padding */

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

/* Show or Hide elements across different devices */

@media(max-width:1024px) {
    .lg-hidden {
        display: none;
    }
}

@media(max-width:768px) {
    .md-hidden {
        display: none;
    }
}

@media(max-width:480px) {
    .sm-hidden {
        display: none;
    }
}

@media(min-width:1024px) {
    .lg-visible {
        display: none;
    }
}

@media(min-width:768px) {
    .md-visible {
        display: none;
    }
}

@media(min-width:480px) {
    .sm-visible {
        display: none;
    }
}

/* Misc */

hr {
    display: block;
    width: 100%;
    border: none;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    margin: 10vh 0;
    clear: both;
}

hr.no-border {
    border:none !important;
}

.clear {
    clear: both;
} 
