/*! Typebase.less v0.1.0 | MIT License */
/* Setup */


@font-face {
    font-family: 'Open Sans';
    src: url('../../fonts/OpenSans-Regular.eot') format('embedded-opentype'),url('../../fonts/OpenSans-Regular.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('../../font/OpenSans-Regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: 'Open Sans Light';
    src: url('../../fonts/OpenSans-Light.eot') format('embedded-opentype'),url('../../fonts/OpenSans-Light.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('../../fonts/OpenSans-Light.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: 'Open Sans Semibold';
    src: url('../../fonts/OpenSans-Semibold.eot') format('embedded-opentype'),url('../../fonts/OpenSans-Semibold.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('../../fonts/OpenSans-Semibold.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('../../fonts/OpenSans-Bold.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('../../fonts/OpenSans-Bold.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans-VF';
    src: url('../../fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
}

.opensans-semibold {
    /*font-family: 'Open Sans Semibold';*/
    font-variation-settings: var(--font_weight_600);
}

.opensans-regular {
    font-family: 'OpenSans-VF';
}

.opensans-light {
    /*font-family: 'Open Sans Light';*/
    font-variation-settings: var(--font_weight_300);
}

.opensans-bold {
    /*font-family: 'Open Sans Bold';*/
    font-variation-settings: var(--font_weight_700);
}


* {
    font-size: 1rem;
    font-family: 'OpenSans-VF';
    letter-spacing: initial;
}

html {
    /* Change default typefaces here */
    font-family: 'OpenSans-VF',sans-serif; /* 1 */
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

/* Copy & Lists */
p {
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

ul,
ol {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

    ul li,
    ol li {
        line-height: 1.5rem;
    }

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-top: 0;
        margin-bottom: 0;
    }

blockquote {
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    /* Change heading typefaces here */
    /*font-family: sans-serif;*/
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5rem;
}

h1 {
    font-size: 4.242rem;
    line-height: 4.5rem;
    margin-top: 3rem;
}

h2 {
    font-size: 2.828rem;
    line-height: 3rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.414rem;
}

h4 {
    font-size: 0.707rem;
}

h5 {
    font-size: 0.4713333333333333rem;
}

h6 {
    font-size: 0.3535rem;
}
/* Tables */
table {
    border-spacing: 0px;
    border-collapse: collapse;
}


/* Code blocks */
code {
    vertical-align: bottom;
}
/* Leading paragraph text */
.lead {
    font-size: 1.414rem;
}
/* Hug a the block above you */
.hug {
    margin-top: 0;
}

button, .button {
    font-size: 1rem;
    line-height: 1.5rem;
}


.currency::before {
    content: attr(data-curr);
    vertical-align: top;
    font-family: inherit;
    font-size: 1em;
}

.cap {
    text-transform: capitalize;
}

.upper-case {
    text-transform: uppercase;
}

.lower-case {
    text-transform: lowercase;
}

.capitalize-first-letter:first-letter {
    text-transform: capitalize;
}

a:link:not(.button):not(.label-click) {
    color: inherit;
    text-decoration: none !important;
}