:root {

    --primary-btn-bg-color: var(--accent7);
    --primary-btn-text-color: #ffffff;
    --primary-btn-outline-color: #ffffff;
    --primary-btn-bg-hover-color: #ffffff;
    --primary-btn-text-hover-color: var(--accent7);
    --primary-btn-outline-hover-color: var(--accent7);

    --secondary-btn-bg-color: var(--accent8);
    --secondary-btn-text-color: #fff;
    --secondary-btn-outline-color: #ffffff;
    --secondary-btn-bg-hover-color: #ffffff;
    --secondary-btn-text-hover-color: #222222;
    --secondary-btn-outline-hover-color: var(--accent8);

    --accent1: #104735;
    --accent2: #FEE11A;
    --accent3: #1c5c42;
    --accent4: #0f172a;
    --accent5: #334155;
    --accent6: #64748b;
    --accent7: #8D1D58;
    --accent8: #489D46;

    --inputs: #323232;
    --input-outline: #104735;
    --link-color: #48435C;
    --link-hover-color: #323232;
    --body-copy: #222222;

    --h1-color: #231123;
    --h2-color: #004F6E;
    --h3-color: #333333;
    --h4-color: #333333;
}

@font-face {
    font-family: BodyCopy;
    src: url('fonts/LexendDeca-Regular.ttf');
}

@font-face {
    font-family: Heading-Medium;
    src: url('fonts/LexendDeca-Regular.ttf');
}

@font-face {
    font-family: Heading-SemiBold;
    src: url('fonts/LexendDeca-Medium.ttf');
}

@font-face {
    font-family: Heading-Bold;
    src: url('fonts/LexendDeca-SemiBold.ttf');
}

html {
    font-family: BodyCopy, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 100%;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: BodyCopy, sans-serif;
    font-weight: normal;
    line-height: 1.3;
    color: var(--body-copy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.2rem;
}

div {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

p {
    font-size: inherit;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
}

strong,
b {
    font-family: Heading-SemiBold, sans-serif;
    font-weight: normal;
    line-height: inherit;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin: 0 0 1rem;
}

h1 {
    color: var(--h1-color);
    font-family: Heading-Bold, sans-serif;
    font-size: 2rem;
}

h2 {
    color: var(--h2-color);
    font-family: Heading-Bold, sans-serif;
    font-size: 1.75rem;
}

h3 {
    color: var(--h3-color);
    font-family: Heading-SemiBold, sans-serif;
    font-size: 1.5rem;
}

h4 {
    color: var(--h4-color);
    font-family: Heading-Medium, sans-serif;
    font-size: 1.25rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

.header-banner {
    background-color: var(--accent2);
    padding: 1rem 1.5rem;
    border-radius: 35px;
    margin-bottom: 1rem;
}

.header-banner.inverted {
    background-color: var(--accent1);
}

.header-banner.inverted h2 {
    color: #fff;
}

.header-banner h2 {
    margin: 0;
    color: var(--accent4);
}

/* -----------------------------
   BUTTONS
   ----------------------------- */

input[type='button'],
input[type='submit'],
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    background-color: var(--primary-btn-bg-color);
    border: 2px solid var(--primary-btn-outline-color);
    font-family: Heading-SemiBold, sans-serif;
    font-size: 1.1rem;
    color: var(--primary-btn-text-color);
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 26px;
    padding: 8px 1.4rem 8px 1.4rem;
    margin: 0px 0px 1rem 0px;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    cursor: pointer;
    text-decoration: none;
}

input[type='button']:hover,
input[type='submit']:hover,
button:hover {
    background-color: var(--primary-btn-bg-hover-color);
    color: var(--primary-btn-text-hover-color);
    border: 2px solid var(--primary-btn-outline-hover-color);
}

input[type='button'].secondary-btn,
input[type='submit'].secondary-btn,
button.secondary-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    background-color: var(--secondary-btn-bg-color);
    border: 2px solid var(--secondary-btn-outline-color);
    font-family: Heading-Medium, sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-btn-text-color);
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 26px;
    padding: 8px 1.4rem 8px 1.4rem;
    margin: 0px 0px 1rem 0px;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    cursor: pointer;
    text-decoration: none;
}

input[type='button'].secondary-btn:hover,
input[type='submit'].secondary-btn:hover,
button.secondary-btn:hover {
    background-color: var(--secondary-btn-bg-hover-color);
    color: var(--secondary-btn-text-hover-color);
    border: 2px solid var(--secondary-btn-outline-hover-color);
}


/* -----------------------------
   INPUTS
   ----------------------------- */


input:-webkit-autofill,
input[type="text"],
input[type="password"],
input[type="email"] {
    padding: 10px 16px;
    margin: 0 0 1rem;
    border: 2px solid var(--input-outline);
}

input:-webkit-autofill,
[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea,
select {
    display: inline-block;
    box-sizing: border-box;
    width: 95%;
    height: auto;
    max-width: 600px;
    padding: 10px 16px;
    border: 2px solid var(--input-outline);
    margin: 0 0 1rem;
    font-family: inherit;
    font-size: inherit;
    color: #424242;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    border-radius: 5px;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
}

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus {
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    outline: none;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
    max-width: 100%;
}

textarea[rows] {
    height: auto;
}

[type='file'],
[type='checkbox'],
[type='radio'] {
    margin: 0 0 1rem;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%2851, 51, 51%29"></polygon></svg>');
    background-size: 9px 6px;
    background-position: right center;
    background-origin: content-box;
    background-repeat: no-repeat;
}

/* -----------------------------
   CHECKBOXES AND RADIO BUTTONS
   ----------------------------- */

[type='checkbox']+label[for],
[type='radio']+label[for] {
    cursor: pointer;
}

[type='checkbox']+label,
[type='radio']+label {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0;
    vertical-align: baseline;
}

[type='checkbox'],
[type='radio'] {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

[type='checkbox']+label,
[type='radio']+label {
    display: inline-block;
    margin: 0px 0px 10px 5px;
    padding-left: 28px;
    vertical-align: center;
    width: 90%;
    position: relative;
}

[type='checkbox']+label::before,
[type='radio']+label::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--input-outline);
}

[type='radio']:checked+label::after {
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--input-outline);
    border-radius: 50%;
}

[type='radio']+label::before {
    border-radius: 50%;
}

[type='checkbox']:checked+label::after {
    position: absolute;
    content: '\00D7';
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 1.75rem;
    font-weight: 200;
    color: var(--input-outline);
}


label {
    display: block;
    margin: 0;
    line-height: 1.3;
    color: var(--body-copy);
}

label>[type='checkbox'],
label>[type='label'] {
    margin-right: .5rem;
}

/* -----------------------------
   CFP SPECIFIC
   ----------------------------- */

.asterisk {
    display: inline-block;
}

#copresenter_list table {
    width: 100%;
}

#copresenter_list table select {
    min-width: 140px;
}

#searchFormResultMatchList td:nth-child(3) {
    display: none;
}