/**
 * Fonts
 */

 :root {
	/* --dark-brown: #562C2C;
    --dark-green: #2D514A;
	--dark-purple: #6B2D5C;
	--light-blue: #628AC4;
	--pink-red: #EF4060;
	--dark-gold: #826535;
    --main-btn: #AE8647;
    --secondary-btn: #EF4060;
    --inputs: #509184;
	--turqoise: #00FEFF;
    --yellow: #e9a954; */

    --dark-green: #007056;
    --forest-green: #005E47;
    --avocado: #92ba66;
    --light-green: #8DD0C0;
    --medium-green: #00A77E;
    --avocado: #92ba66;
    --tropical-sun: #f6eb2f;
    --hot-pink: #de248d;
    --rosa: #a42169;
    --verde: #14562C;
    --green: #14562C;
    --purple: #5C326F;
    --orange: #E84D1F;
    --dark-grey: #4d4d4f;
    --primary-dark: var(--verde);
    --primary-medium: var(--avocado);

    --h1-color: #0C1F39;
    --h2-color: var(--rosa);
    --h3-color: var(--hot-pink);
    --h4-color: var(--verde);
    --eyebrow-divider-color: var(--h1-color);

    /* buttons */

    --main-btn: var(--hot-pink);
    --main-btn-hover: #ffffff;
    --main-btn-stroke: var(--hot-pink);
    --secondary-btn: var(--verde);
    --secondary-btn-hover: var(--verde);
    --secondary-btn-stroke: var(--verde);;
    --secondary-btn-hover-stroke: var(--verde);
    --btn-stroke-size: 2px;

    --black: #000000;
    --body-copy: #323233;
    --dark-grey: #546266;
    --links: var(--verde);
    --inputs: #323233;
}

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

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

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

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

  @font-face {
    font-family: Poppins-ExtraBold;
    src: url('fonts/Poppins-ExtraBold.ttf');
  }

  @font-face {
    font-family: Roasted-Bailey;
    src: url('fonts/Roasted Bailey.otf');
  }

/**
ISTE Mobile Support Views Global Styling */
@media screen and (max-width: 768px) {
    .mobile-support-view-wrapper {
        padding: 0 15px;
    }
}

.helpButton {
    display: none;  /* remove this when chat is up */
}

/**
 * ISTE Style
 */

html {
    font-family: Poppins-Regular;
    -ms-text-size-adjust: 1rem;
    -webkit-text-size-adjust: 1rem;
    font-size: 100%;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: Poppins-Medium, Helvetica, arial, sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.3;
    color: var(--body-copy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p > strong {
    font-family: Poppins-SemiBold;
}

li > strong {
    font-family: Poppins-SemiBold;
}

label > strong {
    font-family: Poppins-SemiBold;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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

a {
    background-color: transparent;
}

a:active, a:hover {
    outline: 0;
}

b, strong, .bold {
    font-family: Poppins-SemiBold;
}

img {
    border: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
}

.script {
    font-family: "Roasted-Bailey";
}


button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled], html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    border: 0;
    padding: 0;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}


img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
    display: inline-block;
    vertical-align: middle;
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0;
}

select {
    width: 100%;
    border-radius: 0;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    line-height: 1;
}

.row {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.row .row {
    margin-left: -.625rem;
    margin-right: -.625rem;
}

/** Specia Styles **/

.copy-special {
    font-family: Poppins-Medium, Helvetica, Arial, sans-serif;
    color: var(--dark-grey);
}

@media screen and (min-width: 30em) {
    .row .row {
        margin-left: -.9375rem;
        margin-right: -.9375rem;
    }
}

.row.expanded {
    max-width: none;
}

.row.collapse>.column, .row.collapse>.columns {
    padding-left: 0;
    padding-right: 0;
}

.column, .columns {
    padding-left: .625rem;
    padding-right: .625rem;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
}

@media screen and (min-width: 30em) {
    .column, .columns {
        padding-left: .9375rem;
        padding-right: .9375rem;
    }
}

.column.row.row, .row.row.columns {
    float: none;
}

.row .column.row.row, .row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.small-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.small-offset-0 {
    margin-left: 0%;
}

.small-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.small-offset-1 {
    margin-left: 8.33333%;
}

.small-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.small-offset-2 {
    margin-left: 16.66667%;
}

.small-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.small-offset-3 {
    margin-left: 25%;
}

.small-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.small-offset-4 {
    margin-left: 33.33333%;
}

.small-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.small-offset-5 {
    margin-left: 41.66667%;
}

.small-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.small-offset-6 {
    margin-left: 50%;
}

.small-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.small-offset-7 {
    margin-left: 58.33333%;
}

.small-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.small-offset-8 {
    margin-left: 66.66667%;
}

.small-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.small-offset-9 {
    margin-left: 75%;
}

.small-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.small-offset-10 {
    margin-left: 83.33333%;
}

.small-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.small-offset-11 {
    margin-left: 91.66667%;
}

.small-order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.small-order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.small-order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.small-order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.small-order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.small-order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.small-collapse>.column, .small-collapse>.columns {
    padding-left: 0;
    padding-right: 0;
}

.small-uncollapse>.column, .small-uncollapse>.columns {
    padding-left: .625rem;
    padding-right: .625rem;
}

@media screen and (min-width: 30em) {
    .medium-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .medium-offset-0 {
        margin-left: 0%;
    }
    .medium-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .medium-offset-1 {
        margin-left: 8.33333%;
    }
    .medium-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .medium-offset-2 {
        margin-left: 16.66667%;
    }
    .medium-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .medium-offset-3 {
        margin-left: 25%;
    }
    .medium-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .medium-offset-4 {
        margin-left: 33.33333%;
    }
    .medium-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .medium-offset-5 {
        margin-left: 41.66667%;
    }
    .medium-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .medium-offset-6 {
        margin-left: 50%;
    }
    .medium-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .medium-offset-7 {
        margin-left: 58.33333%;
    }
    .medium-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .medium-offset-8 {
        margin-left: 66.66667%;
    }
    .medium-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .medium-offset-9 {
        margin-left: 75%;
    }
    .medium-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .medium-offset-10 {
        margin-left: 83.33333%;
    }
    .medium-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .medium-offset-11 {
        margin-left: 91.66667%;
    }
    .medium-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .medium-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .medium-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .medium-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .medium-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .medium-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
}

@media screen and (min-width: 30em) and (min-width: 30em) {
    .medium-expand {
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

.row.medium-unstack .column, .row.medium-unstack .columns {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media screen and (min-width: 30em) {
    .row.medium-unstack .column, .row.medium-unstack .columns {
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media screen and (min-width: 30em) {
    .medium-collapse>.column, .medium-collapse>.columns {
        padding-left: 0;
        padding-right: 0;
    }
    .medium-uncollapse>.column, .medium-uncollapse>.columns {
        padding-left: .9375rem;
        padding-right: .9375rem;
    }
}

@media screen and (min-width: 48em) {
    .large-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .large-offset-0 {
        margin-left: 0%;
    }
    .large-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .large-offset-1 {
        margin-left: 8.33333%;
    }
    .large-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .large-offset-2 {
        margin-left: 16.66667%;
    }
    .large-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .large-offset-3 {
        margin-left: 25%;
    }
    .large-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .large-offset-4 {
        margin-left: 33.33333%;
    }
    .large-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .large-offset-5 {
        margin-left: 41.66667%;
    }
    .large-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .large-offset-6 {
        margin-left: 50%;
    }
    .large-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .large-offset-7 {
        margin-left: 58.33333%;
    }
    .large-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .large-offset-8 {
        margin-left: 66.66667%;
    }
    .large-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .large-offset-9 {
        margin-left: 75%;
    }
    .large-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .large-offset-10 {
        margin-left: 83.33333%;
    }
    .large-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .large-offset-11 {
        margin-left: 91.66667%;
    }
    .large-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .large-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .large-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .large-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .large-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .large-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
}

@media screen and (min-width: 48em) and (min-width: 48em) {
    .large-expand {
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

.row.large-unstack .column, .row.large-unstack .columns {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media screen and (min-width: 48em) {
    .row.large-unstack .column, .row.large-unstack .columns {
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media screen and (min-width: 48em) {
    .large-collapse>.column, .large-collapse>.columns {
        padding-left: 0;
        padding-right: 0;
    }
    .large-uncollapse>.column, .large-uncollapse>.columns {
        padding-left: .9375rem;
        padding-right: .9375rem;
    }
}

@media screen and (min-width: 64em) {
    .xlarge-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .xlarge-offset-0 {
        margin-left: 0%;
    }
    .xlarge-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .xlarge-offset-1 {
        margin-left: 8.33333%;
    }
    .xlarge-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .xlarge-offset-2 {
        margin-left: 16.66667%;
    }
    .xlarge-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .xlarge-offset-3 {
        margin-left: 25%;
    }
    .xlarge-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .xlarge-offset-4 {
        margin-left: 33.33333%;
    }
    .xlarge-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .xlarge-offset-5 {
        margin-left: 41.66667%;
    }
    .xlarge-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .xlarge-offset-6 {
        margin-left: 50%;
    }
    .xlarge-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .xlarge-offset-7 {
        margin-left: 58.33333%;
    }
    .xlarge-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .xlarge-offset-8 {
        margin-left: 66.66667%;
    }
    .xlarge-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .xlarge-offset-9 {
        margin-left: 75%;
    }
    .xlarge-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .xlarge-offset-10 {
        margin-left: 83.33333%;
    }
    .xlarge-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .xlarge-offset-11 {
        margin-left: 91.66667%;
    }
    .xlarge-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .xlarge-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .xlarge-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .xlarge-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .xlarge-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .xlarge-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
}

@media screen and (min-width: 64em) and (min-width: 64em) {
    .xlarge-expand {
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

.row.xlarge-unstack .column, .row.xlarge-unstack .columns {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media screen and (min-width: 64em) {
    .row.xlarge-unstack .column, .row.xlarge-unstack .columns {
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media screen and (min-width: 64em) {
    .xlarge-collapse>.column, .xlarge-collapse>.columns {
        padding-left: 0;
        padding-right: 0;
    }
    .xlarge-uncollapse>.column, .xlarge-uncollapse>.columns {
        padding-left: .9375rem;
        padding-right: .9375rem;
    }
}

@media screen and (min-width: 75em) {
    .xxlarge-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .xxlarge-offset-0 {
        margin-left: 0%;
    }
    .xxlarge-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .xxlarge-offset-1 {
        margin-left: 8.33333%;
    }
    .xxlarge-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .xxlarge-offset-2 {
        margin-left: 16.66667%;
    }
    .xxlarge-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .xxlarge-offset-3 {
        margin-left: 25%;
    }
    .xxlarge-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .xxlarge-offset-4 {
        margin-left: 33.33333%;
    }
    .xxlarge-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .xxlarge-offset-5 {
        margin-left: 41.66667%;
    }
    .xxlarge-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .xxlarge-offset-6 {
        margin-left: 50%;
    }
    .xxlarge-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .xxlarge-offset-7 {
        margin-left: 58.33333%;
    }
    .xxlarge-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .xxlarge-offset-8 {
        margin-left: 66.66667%;
    }
    .xxlarge-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .xxlarge-offset-9 {
        margin-left: 75%;
    }
    .xxlarge-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .xxlarge-offset-10 {
        margin-left: 83.33333%;
    }
    .xxlarge-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .xxlarge-offset-11 {
        margin-left: 91.66667%;
    }
    .xxlarge-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .xxlarge-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .xxlarge-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .xxlarge-order-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .xxlarge-order-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .xxlarge-order-6 {
        -ms-flex-order: 6;
        order: 6;
    }
}



.forceNoSideBar {
    -ms-flex: initial;
    flex: initial;
    max-width: initial;
}


div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

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

em, i {
    font-style: italic;
    line-height: inherit;
}

strong, b {
    font-family: Poppins-Bold, arial, sans-serif;
    font-weight: normal;
    line-height: inherit;
}

small {
    font-size: 80%;
    line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-style: normal;
    color: inherit;
    text-rendering: optimizeLegibility;
    margin-top: 1.4rem;
    margin-bottom: .3rem;
    line-height: 1.2;
}

/*
.three_dots:before{
    background-image:;
		background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    height: 0.7em;
    content:"";
}
*/

h1 {
    font-size: 30px;
    font-family: Poppins-SemiBold, Helvetica;
    color: var(--h1-color);
}

h2 {
    font-size: 25px;
    font-family: Poppins-SemiBold, Helvetica;
    color: var(--h2-color);
}

h3 {
    font-size: 20px;
    font-family: Poppins-SemiBold, Helvetica;
	color: var(--h3-color);
}

h4 {
    font-size: 20px;
    font-family: Poppins-SemiBold, Helvetica;
	color: var(--h4-color);
}

#exhibitorPortal h4 {
	color: #515151;
}

/* @media screen and (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.5625rem;
    }
    h5 {
        font-size: 1.25rem;
    }
    h6 {
        font-size: 1rem;
    }
}


@media screen and (max-width: 590px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.5rem;
    }
} */

a {
    color: var(--h1-color);
    font-family: Poppins-Medium, Helvetica;
    text-decoration: underline;
    line-height: inherit;
    cursor: pointer;
}

a:hover, a:focus {
    color: var(--h3-color);
}

a img {
    border: 0;
}

th a {
    color: #ffffff;
}

hr {
    max-width: 75rem;
    height: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #cacaca;
    border-left: 0;
    margin: 1.25rem auto;
    clear: both;
}

ul, ol, dl {
    line-height: 1.6;
    margin-bottom: 1rem;
    list-style-position: outside;
}

li {
    font-size: inherit;

}

ul > li {
    padding-left: 1.2rem !important;
}

ul {
    list-style-type: disc;
    margin-left: 1.25rem;
}

ol {
    margin-left: 1.25rem;
}

ul ul, ol ul, ul ol, ol ol {
    margin-left: 1.25rem;
    margin-bottom: 0;
}

.no-bullet>li::before {
	content: "";
}




[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 {
    display: inline-block;
    box-sizing: border-box;
    width: 95%;
    height: 2.4375rem;
    padding: 0 1.5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #424242;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    border-radius: 0;
    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;
}

input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
    background-color: #e6e6e6;
    cursor: default;
}

[type='submit'], [type='button'] {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type='search'] {
    box-sizing: border-box;
}

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

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

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

[type='file'] {
    width: 100%;
}

label {
    display: block;
    margin: 0;

    line-height: 1.3;
    color: var(--body-copy);
}

select {
    height: 2.4375rem;
    padding: .5rem;
    border: 2px solid var(--avocado);
    margin: 0 0 1rem;
    line-height: normal;
    font-size: 16px;
    color: #424242;
    font-family: inherit;
    font-size: 1.1rem;
    background-color: #fefefe;
    border-radius: 0;
    -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;
}

@media screen and (min-width: 0\0) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==")
    }
}

select:disabled {
    background-color: #e6e6e6;
    cursor: default;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    height: auto;
}

@media screen and (min-width: 0em) and (max-width: 29.9375em) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0em), screen and (min-width: 30em) {
    .show-for-small-only {
        display: none !important;
    }
}

@media screen and (min-width: 30em) {
    .hide-for-medium {
        display: none !important;
    }
}

@media screen and (max-width: 29.9375em) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 30em) and (max-width: 47.9375em) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 29.9375em), screen and (min-width: 48em) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media screen and (min-width: 48em) {
    .hide-for-large {
        display: none !important;
    }
}

@media screen and (max-width: 47.9375em) {
    .show-for-large {
        display: none !important;
    }
}

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
    .hide-for-large-only {
        display: none !important;
    }
}

@media screen and (max-width: 47.9375em), screen and (min-width: 64em) {
    .show-for-large-only {
        display: none !important;
    }
}

@media screen and (min-width: 64em) {
    .hide-for-xlarge {
        display: none !important;
    }
}

@media screen and (max-width: 63.9375em) {
    .show-for-xlarge {
        display: none !important;
    }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
    .hide-for-xlarge-only {
        display: none !important;
    }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
    .show-for-xlarge-only {
        display: none !important;
    }
}

@media screen and (min-width: 75em) {
    .hide-for-xxlarge {
        display: none !important;
    }
}

@media screen and (max-width: 74.9375em) {
    .show-for-xxlarge {
        display: none !important;
    }
}

@media screen and (min-width: 75em) {
    .hide-for-xxlarge-only {
        display: none !important;
    }
}

@media screen and (max-width: 74.9375em) {
    .show-for-xxlarge-only {
        display: none !important;
    }
}

.show-for-sr, .show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.show-on-focus:active, .show-on-focus:focus {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
}

.show-for-landscape, .hide-for-portrait {
    display: block !important;
}

@media screen and (orientation: landscape) {
    .show-for-landscape, .hide-for-portrait {
        display: block !important;
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape, .hide-for-portrait {
        display: none !important;
    }
}

.hide-for-landscape, .show-for-portrait {
    display: none !important;
}

@media screen and (orientation: landscape) {
    .hide-for-landscape, .show-for-portrait {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape, .show-for-portrait {
        display: block !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.menu {
    margin: 0;
    list-style-type: none;
}

.menu>li {
    display: table-cell;
    vertical-align: middle;
}

[data-whatinput='mouse'] .menu>li {
    outline: 0;
}

.menu>li>a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1;
}

.menu input, .menu a, .menu button {
    margin-bottom: 0;
}

.menu>li>a>img, .menu>li>a>i {
    vertical-align: middle;
}

.menu>li>a>span {
    vertical-align: middle;
}

.menu>li>a>img, .menu>li>a>i {
    display: inline-block;
    margin-right: .25rem;
}

.menu>li {
    display: table-cell;
}

.menu.vertical>li {
    display: block;
}

@media screen and (min-width: 30em) {
    .menu.medium-horizontal>li {
        display: table-cell;
    }
    .menu.medium-vertical>li {
        display: block;
    }
}

@media screen and (min-width: 48em) {
    .menu.large-horizontal>li {
        display: table-cell;
    }
    .menu.large-vertical>li {
        display: block;
    }
}

@media screen and (min-width: 64em) {
    .menu.xlarge-horizontal>li {
        display: table-cell;
    }
    .menu.xlarge-vertical>li {
        display: block;
    }
}

@media screen and (min-width: 75em) {
    .menu.xxlarge-horizontal>li {
        display: table-cell;
    }
    .menu.xxlarge-vertical>li {
        display: block;
    }
}

.menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem;
}

.menu.simple a {
    padding: 0;
}

.menu.align-right>li {
    float: right;
}

.menu.expanded {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.menu.expanded>li:first-child:last-child {
    width: 100%;
}

.menu.icon-top>li>a {
    text-align: center;
}

.menu.icon-top>li>a>img, .menu.icon-top>li>a>i {
    display: block;
    margin: 0 auto .25rem;
}

.menu.nested {
    margin-left: 1rem;
}

html, body {
    height: 100%;
    background-color: #ffffff;
}

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0;
}

table thead, table tbody, table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe;
}

table caption {
    font-weight: bold;
    padding: .5rem .625rem .625rem;
}

table thead, table tfoot {
    background: #f8f8f8;
    color: #424242;
}

table thead tr, table tfoot tr {
    background: transparent;
}

table thead th, table thead td, table tfoot th, table tfoot td {
    padding: .5rem .625rem .625rem;
    font-weight: bold;
    text-align: left;
}

table tbody tr:nth-child(even) {
    background-color: #f2f2f3;
}

table tbody th, table tbody td {
    padding: .5rem .625rem .625rem;
}

/*** This section is to override salesforce chat style ***/
button[embeddedService-chatHeader_chatHeader]{
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
}
p.text.announcement{
    color: #fff !important;
}
.sidebarBody ul>li::before {
    content: "";
}
.sidebarBody div{
    font-size: 1.1rem;
}
.sidebarBody li.chasitor div{
    color: #fff;
}
.embeddedServiceLiveAgentStateChatItem .nameAndTimeContent div{
    font-size: 0.9rem !important;
}
.embeddedServiceSidebarFormField .slds-style-inputtext{
    font-size: 0.8rem !important;
}
.embeddedServiceSidebarFormField .uiInput .uiLabel-left {
    font-size: 0.9rem !important;
}

.header-content{
    height: 100%;
}
.header-logo{
    cursor: pointer;
    height: 100%;
}
.header-logo img {
    width: 13vw;
    margin-left: 2vw;
    margin-top: -1.25vw;
}

#header_button {
    display: block;
    margin: auto;
    background-color: #a04577;
    border: 1px solid #fff;
    border-radius: 4vw;
    color: #fff;
    font-family: "AvenirNextLTPro-DemiCn";
    width: 16vw;
    font-size: 1.8vw;
    line-height: 2.2vw;
    padding-top: 0.4vw;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    cursor: pointer;
}
#header_button:hover {
    background-color: #fff;
    color: #a04577;
}
.header_button {
    display: block;
    margin: auto;
    background-color: #a04577;
    border: 1px solid #fff;
    border-radius: 4vw;
    color: #fff;
    font-family: "AvenirNextLTPro-DemiCn";
    width: 16vw;
    font-size: 1.8vw;
    line-height: 2.2vw;
    padding-top: 0.8vw;
    padding-bottom: 0.5vw;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    cursor: pointer;
}
.header_button:hover {
    background-color: #fff;
    color: #a04577;
}
@media screen and (min-width: 1500px) {
    #header_button {
        font-size: 2rem !important;
    }
}
@media screen and (max-width: 63.9375em){
    header {
        margin-top: 0px;
    }
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    margin: auto;
    min-width: 320px;
}

p, li, td, div {
    color: var(--body-copy);
    font-family: Poppins-Medium, Helvetica;
    line-height: 1.3;
}
/* form span {
    font-size: 1.1rem;
} */

p.display, li.display {
    color: #001631;
    font-size: 20px;
    line-height: 1.6;
}

p.light, li.light {
    color: #424242;
}

p.accent, li.accent {
    color: #00519e;
}

p.accent-light, li.accent-light {
    color: #0083a9;
}

p.small, li.small {
    font-size: 14px;
}

p.large, li.large {
    font-size: 18px;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

ul>li, ol>li {
    position: relative;
    margin-bottom: .5em;
    padding-left: 1.4em;
}

ul>li::before, ol>li::before {
    position: absolute;
    top: 2px;
    left: 0;
    /* color: #e9a954;
    font-size: 0.875rem; */
    color: var(--avocado);
    font-size: 1.2rem;
}

ul>li::before {
    content: "•";
    padding-right: .5em;
}

ol {
    counter-reset: item;
}

ol>li::before {
    content: counter(item) ".";
    counter-increment: item;
}

.no-touchevents .text-button:hover {
    color: #A04577;
}

.touchevents .text-button:hover {
    color: #A04577;
}

.stat {
    font-family: "AvenirNextLTPro-Cn", arial, sans-serif;
}

.location-date h3, .location-date h4 {
    font-family: "AvenirNextLTPro-Cn", arial, sans-serif;
}

.sponsors {
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
}

.video-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.absolute-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
}

.social-and-images-container {
    overflow: auto;
    margin-top: 50px;
}

.social-and-images-container {
    margin-top: 0px;
}

.social-and-images-container>div {
    float: left;
    width: 50%;
}

.social-and-images-container>div img {
    width: 100%;
}

@media screen and (max-width: 47.9375em) {
    .social-and-images-container>div {
        float: none;
        width: 100%;
    }
}

.social-and-images-container .footer-images-container, .social-and-images-container .social-container {
    position: relative;
}

.social-and-images-container .footer-images-container .logo-section,
.social-and-images-container .social-container .social-icons .social-links{
    position: absolute;
    height: 50%;
    text-align: center;
}

.social-and-images-container .footer-images-container .logo-section {
    bottom: 0;
    left: 0;
    width: 37.5%;
}

.social-and-images-container .footer-images-container .logo-section a {
    display: block;
    width: 56.666666667%;
}

@media screen and (max-width: 40em) {
    .social-and-images-container .footer-images-container .logo-section a {
        width: 75%;
    }
}

.social-container .social-icons {
    top: 50%;
    right: 0;
    width: 100%;
}

.social-container .social-links{
    white-space: nowrap;
    display: inline-block;
    font-size: 1rem;
}

.footer-links {
    color: #0084a9;
}

.footer-links:hover,
button.ot-sdk-show-settings:hover {
    color: var(--dark-green);
}

#ot-sdk-btn.ot-sdk-show-settings.iste-footer-button{
    color: #fff;
    padding: 0 !important;
    border: None;
    text-decoration: underline;
}

#ot-sdk-btn.ot-sdk-show-settings.iste-footer-button:hover{
    color: var(--light-green);
    background-color: transparent;
}

.social-container p {
    color: #fff;
    font-size: 1.1em;
    width: 100%;
}

.social-container .social-icons ul {
    margin: 0 0 6px 0;
    padding: 0;
    list-style: none;
    overflow: auto;
}

.social-container .social-icons ul li {
    display: inline-block;
    margin: 0;
    padding: 0px 0px;
}

.social-container .social-icons ul li::before {
    content: '';
    padding: 0;
    color: rgba(255, 255, 255, 0);
}

.social-container .social-icons a {
    color: #fff;
}

.social-container .social-icons a {
    color: #fff;
}

.social-container .social-icons a:hover svg {

}

.social-container .social-icons a:hover path {
    fill: #0083a9;
}

.social-container .social-icons img,
.social-container .social-icons svg {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 29.9375em) {
    .social-container .social-icons p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 798px) {
    .social-container .social-icons p {
        font-size: 0.9rem;
    }
        .social-container .social-icons img {
        width: 30px;
        height: 30px;
    }
}

footer {
    width: 100%;
    text-align: center;
    padding: 0 0 20px 0;
}

.footer-color-bar {
    height: 20px;
    background-color:var(--h1-color);
    width: 100%;
    margin-bottom: 20px;
}

footer .sponsor-section {

    -ms-flex-pack: justify;
    align-items: center;
    justify-content: space-around;
    -ms-flex-align: top;
    align-items: top;
    width: 100%;
}

footer .sponsor-section h3 .footer_sponsor_logos {
    display: inline;
}

footer .footer_sponsor_logos {
    color: #fff;
}

@media screen and (max-width: 540px) {
    footer .sponsor-section h3 .footer_sponsor_logos {
        display: block;
    }
}

footer .sponsor-section h3, footer .sponsor-section p {
    margin: 0;
    color: #fefefe;
}

footer .sponsor-section h3 {
    font-size: 1.125rem;
    line-height: 15px;
    margin: 0 0 10px 0;
}

footer .sponsor-section h3 img {
    margin-left: 20px;
    vertical-align: middle;
    padding-right: 20px;
}

footer .sponsor-section p {
    font-size: .8125rem;
}

@media screen and (max-width: 63.9375em) {
    footer .sponsor-section {
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    footer .sponsor-section img {
        margin: 10px 0 20px;
    }
}

.main {
    background-color: #ffffff;
}

.feature-video {
    margin: 0 auto;
    background-color: #0084a9;
    padding: 20px;
}

.feature-video .feature-video-wrap {
    border: 5px solid #fefefe;
}

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

.feature-video .feature-text h2 {
    color: #fefefe;
    margin-top: 0px;
}

.feature-video .feature-text p {
    font-size: 0.875rem;
}

@media screen and (min-width: 30em) {
    .feature-video {
        padding: 50px 30px;
    }
    .feature-video .feature-video-wrap {
        width: 75%;
        margin-bottom: 20px;
    }
    .feature-video .feature-text h2 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .feature-video .feature-text p {
        font-size: 1rem;
    }
}

@media screen and (min-width: 64em) {
    .feature-video {
        padding: 40px 55px;
        overflow: auto;
    }
    .feature-video .row {
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
    }
    .feature-video .feature-video-wrap, .feature-video .feature-text {
        width: 48.75%;
        margin: 0;
    }
    .feature-video .feature-text {
        width: 48.75%;
    }
    .feature-video .feature-text p {
        font-size: 1.125rem;
    }
}

.main .sidebar {
    margin-top: 80px;
    margin-bottom: 30px;
}

footer .sponsors {
    font-size: 12px;
    padding-top: 10px;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 0em) and (max-width: 29.9375em) {
    footer .sponsors {
        font-size: 14px;
    }
}

footer .sponsor-logos {
    padding: 0px 0 50px;
}

th{
    text-align: left;
    font-family: Poppins-Bold;
    background-color: var(--verde);
    color: #fff;
}
th div {
    color: #fff;
}

table {
    border-collapse: collapse;
    color: #424242;
    font-family: "Poppins-Regular", arial, sans-serif;
}

.showForMobile {
    display: none;
}

.showForDesktop {
    display: block;
}

@media screen and (max-width: 1200px) {
    .showForMobile {
        display: block;
    }
    .showForDesktop {
        display: none;
    }
}

.favorite_star {
    background-image: url("/ASCD2024/images/favorite_off.svg");
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
}

.favorite_star_on {
    background-image: url("/ASCD2024/images/favorite_on.svg") !important;
    display: inline-block;
}

.favorite_star_big {
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
    background-position: center;
}

.favorite_star_small {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
}

.engage_icon {
    height: 30px;
    width: 30px;
    margin-top: 10px;
    margin-right: 5px;
}

[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: 1px solid #ccc;
    margin: 0 0 1rem;
    font-family: inherit;
    font-size: 1.1rem;
    color: #424242;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    border-radius: 3px;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
}

textarea[rows] {
    height: auto;
}

input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
    background-color: #e6e6e6;
    cursor: default;
}

input[type='search'] {
    box-sizing: border-box;
}

[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:0;
    margin-top: 3px;
    padding-left: 28px;
    vertical-align: center;
    width: 90%;
    position: relative;
}

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

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

[type='checkbox']:focus+label::before, [type='radio']:focus+label::before {
    outline: none;
    box-shadow: 0 0 5px #cacaca;
}

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

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

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

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

[type='file'] {
    width: 100%;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 71.93 33.75'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23999;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Enoun_16980%3C/title%3E%3Cpath class='cls-1' d='M15.24,35.65,47.94,63a3.5,3.5,0,0,0,4.2,0l32.7-27.4a3.19,3.19,0,0,0-4.1-4.9L50,56.35l-30.7-25.6a3.27,3.27,0,0,0-4.5.4A3.09,3.09,0,0,0,15.24,35.65Z' transform='translate%28-14.05 -30%29'/%3E%3C/svg%3E");
    background-size: 16px 9px;
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-origin: border-box;
    border: 2px solid var(--avocado);
}

@media screen and (min-width: 0\0) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAAAiCAYAAAD8gp97AAAACXBIWXMAAAsSAAALEgHS3X78AAACS0lEQVRo3uWZ0XXaMBSGP7xAskFHCBuUDepOUHi5r3UmKJ2g7qPvS+gEIRs4G5ANYINkAvoQpUd1wJZsWbbJPYcXjhD2p/9+yGhWFMU1kAPfeK0DkInIlg9UqpoaDp/MW49AmgBrCw5mwL2qrj8QnAy4t+AAfAbyWVEUx5rP/jFper5gOJtKQP6rJkAAT8Di0iCp6jVQAjd14xLjnLq6AfaqOr8gOHNg1wQHOCRACrw0DLwCSlVdXoiMy4pvTtULkCUisgMWppWaIN1NWd6WjK8c4CxEZDs7Ho92T26NvZtqcvJukvE55/4D1HWiqcv43MK/A2RF8ZfDhG9R3I1YxlsH3wD8FJH1qV+xdyUiOfB1yvL2kDHA6hScswkKuQIDyjhIB9QCCtHDI5dxKiL7ukGNgKYib8+FfACWLtfoDGjM8vZUwW8RyVznTnwuZIzybiHjzGd+rwRVVqx02JH2Ku8YiW4FaAzyDi3j4IAsSHlMeXs+Ej0aOK2/sxMg66LXwI++5W1ae+OaWhHp7MAkRNyNY1Z9yltVFx4tvQoBJ1iC+pa3AXrnmNBURMpQ9xQUUB/y9pTxMvTeKzggC9IG+NJW3rFlHBWQdZM58N1X3kPIeBBALfyRAXuTHBePrURk0+f19w6ohbxxhLmMcfqbEKFM68xpPhhwqYNpxyhH41EAGUh7Xk9PHjpM8wTMY/7FG6XFOsg7mowHT1AlTZnZebvW7RBwBktQ5fGh7hcrmoxHlSArSSXnT3WjyniUCarsmlPzettBb8ZwKPkXlOd+5/86XBwAAAAASUVORK5CYII=")
    }
}

select:disabled {
    background-color: #e6e6e6;
    cursor: default;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    height: auto;
}

.small-button {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    padding: 8px 21px 8px 21px !important;
}

input[type='button'],
input[type='submit'],
.button, .button_blue{
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    background-color: var(--main-btn);
    border: 2px solid var(--main-btn);
    font-family: Poppins-SemiBold, Helvetica;
    padding: 8px 1.4rem 8px 1.4rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 26px;
    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: #fff;
    color: var(--rosa);
    border-color: var(--main-btn-stroke);
}

input[type='button'].inverted-btn {
    background-color: #fff;
    color: var(--dark-green);
    border: var(--btn-stroke-size) solid var(--dark-green);
}

input[type='button'].inverted-btn:hover {
    background-color: var(--dark-green);
    color: #fff;
}

input[type='submit'].secondary-btn,input[type='button'].secondary-btn,
.button_secondary{
    color: var(--tropical-sun);
    background-color: var(--secondary-btn);
    border: var(--btn-stroke-size) solid var(--secondary-btn-stroke);
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 26px;
    padding: 8px 1.4rem 8px 1.4rem;
    margin: 0px 0px 1rem 0px;
    display: inline-block;
}
input[type='submit'].secondary-btn:hover,input[type='button'].secondary-btn:hover, .secondary-btn:hover {
    color: var(--secondary-btn-hover);
    background-color: #fff;
    border: var(--btn-stroke-size) solid var(--secondary-btn-hover-stroke);
}
input[type='button'].blue:hover,
.button_blue:hover{
    background-color: #fff;
    color: var(--secondary-btn);
    border-color: var(--secondary-btn);
}




::-webkit-input-placeholder {
    color: #424242;
}

:-moz-placeholder {
    color: #424242;
}

::-moz-placeholder {
    color: #424242;
}

:-ms-input-placeholder {
    color: #424242;
}

.asterisk {
    display: inline-block;
    color: var(--hot-pink);
    font-weight: bold;
    font-size: 22px;
    vertical-align: middle;
}

#errors, #errors *, #errors *::before {
    color: #f00;
}

img[src^='/GLOBAL/icons'] {
    vertical-align: -3px;
}

.pdf {
    background-image: url("/GLOBAL/icons/page_white_acrobat.png");
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 20px;
}

.word_doc {
    background-image: url("/GLOBAL/icons/page_white_word.png");
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 20px;
}


/*** Image stuff for attend rate image ***/
#rate_table_770{
    display: block;
}
#rate_table_large{
    display: none;
}
#rate_table_small{
    display: none;
}
@media screen and (max-width: 1199px) {
    #rate_table_770{
        display: none;
    }
    #rate_table_large{
        display: block;
    }
    #rate_table_small{
        display: none;
    }
}
@media screen and (max-width: 950px) {
    #rate_table_770{
        display: block;
    }
    #rate_table_large{
        display: none;
    }
    #rate_table_small{
        display: none;
    }
}
@media screen and (max-width: 720px) {
    #rate_table_770{
        display: none;
    }
    #rate_table_large{
        display: none;
    }
    #rate_table_small{
        display: block;
    }
}


table#appstatus {
    width: auto;
    margin-top: 10px;
}

table#appstatus tbody {
    border: none;
}

table#appstatus td {
    vertical-align: middle;
    padding: 0px 12px;
    color: #000;
    height: 30px;
}

table#appstatus td.done {
    background-color: #ddd;
    color: #000;
}

table#appstatus td.curr {
    background-color: #093B60;
    background-image: url("/2023/template/images/app_arrow.gif");
    background-position: right;
    background-repeat: no-repeat;
    padding-right: 28px;
    color: #fff;
}

table#appstatus * {
    font-family: Arial;
    font-size: 11px;
}

@media screen and (max-width: 1199px) {
    table#appstatus {
        width: auto;
    }
    table#appstatus * {
        font-family: Arial;
        font-size: 10px;
    }
}

@media screen and (max-width: 767px) {
    table#appstatus {
        width: auto;
    }
    table#appstatus * {
        font-family: Arial;
        font-size: 7px;
    }
}

@media screen and (max-width: 550px) {
    table#appstatus {
        display: none;
    }
    .favorite_star_big {
        width: 30px;
        height: 30px;
        background-size: 30px 30px;
    }
}

.exhibPayAmount {
    margin: 0px;
}

table.greentable {
    width: 95%;
    max-width: 600px;
    margin-bottom: 25px;
}

table.greentable tr {
    height: 50px;
}

table.greentable tr:nth-child(even) {
    background-color: #e2e2e1;
}

table.greentable tr:nth-child(odd) {
    background-color: #f1f1f0;
}

table.greentable tr td {
    vertical-align: middle;
    padding: 10px;
}

table.greentable tr td.center {
    text-align: center;
}

table.pricetable tr td {
    vertical-align: middle;
    padding: 8px;
    text-align: center;
    width: 150px;
}

table.pricetable tr:nth-child(even) {
    background-color: #e3e3e4;
}

table.pricetable tr td:nth-child(1) {
    text-align: left;
    width: 300px;
}

table.no_stripes tbody tr:nth-child(even) {
    background-color: #ffffff;
}
table.no_stripes tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.query_wrapper {
    margin-bottom: 25px;
}

.query_wrapper h3 {
    margin: 0px;
}

.query_wrapper table tbody {
    border: none;
}

.query_wrapper table tbody tr {
    background: none;
}

.query_wrapper table tbody tr td {
    padding: 0;
}

.query_wrapper table tbody tr td input[type='radio'], .query_wrapper table tbody tr td input[type='checkbox'] {
    margin: 2px 0px 8px;
}

#tabLayout #session, #tabLayout #exhibitor, #tabLayout #presenter, #tabLayout #featured {
    width: 100%;
    padding: 10px 0px;
    box-sizing: border-box;
}

#tabLayout .tab {
    margin: 0px;
    box-sizing: border-box;
    border-radius: initial;
}

#tabLayout .tab-on {
    background-color: #b2bc35 !important;
    color: #ffffff !important;
}

#tabLayout .tab-off {
    background-color: #000d2d !important;
    color: #ffffff !important;
}

#tabLayout .tab-line {
    width: 100%;
    height: 5px;
    background-color: #b2bc35;
    margin-top: -1px;
}

@media (max-width: 950px) {
    #tabLayout .tab {
        padding: 5px;
        font-size: 10px;
    }
    #tabLayout .tab-line {
        height: 1px;
    }
}

@media (max-width: 400px) {
    #tabLayout .tab {
        display: block;
        width: 100%;
        margin: 5px 0px 0px 0px;
    }
    #tabLayout .tab-line {
        height: 2px;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    padding: 10px 16px;
    margin: 0 0 1rem;
    font-family: Poppins-SemiBold, Helvetica;
    border: 2px solid var(--avocado);
}

table tr td select,
table tr td input[type='text'],
table tr td [type="checkbox"] + label,
table tr td [type="radio"] + label {
    margin-bottom: 0px;
}

img[src*='template/images/icons/'] {
    vertical-align: -7px;
}


img[src*='template/images/icons/alert.png'] {
    vertical-align: -3px;
}



/****  HOMEPAGE LAYOUT  ****/



/*.background{
    overflow: auto;
}*/
.content{
    width: 80%;
    max-width: 1100px;
    margin: auto;
}

.flex_container, .fv_flex_container{
    display: flex;
	justify-content: space-between;
    margin: auto;
}

@media screen and (max-width: 600px) {
    .flex_container{
        flex-wrap: wrap;
    }
}

header .content{
    width: 100%;
    max-width: 1200px;
}
#header-tag{
    width: 63%;
    margin-left: 12vw;
}
#header-save-date{
    width: 35%;
    margin-left: 36.5vw;
    margin-top: -3.5vw;
}

@media only screen and (max-width: 1000px) {
    .flex_container, .fv_flex_container{
        flex-wrap: wrap;
    }
}

/**** CAROUSEL STYLES ****/

.slick-prev,
.slick-next {
    position: absolute;
    top: 30%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
    height: 45px;
    text-indent: -999em;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: .2;
}
.slick-prev {
    left: -50px;
    background: url('/ASCD2024/template/images/icon-arrow-left.svg') left top no-repeat;
}
.slick-next {
    right: -50px;
    background: url('/2023/template/images/icon-arrow-right.svg') left top no-repeat;
}
.slick-dots{
    margin-left: 45%;
}
.slick-dots>li::before{
    color: transparent;
}
.slick-dots li button:before {
    color: transparent;
}

.calendar_header{
     width: 100%;
     max-width: 800px;
     margin: auto;
     text-align: center;
}
.calendar_header img{
     max-width: 240px;
     margin: auto;
     padding: 0px 0px;
     text-align: center;
}
.schedule_links{
    width: 100%;
    max-width: 800px;
    margin: auto;
}
.date_head_desktop{
    width: 100%;
    background-color: #81589f;
    border: 1px solid #81589f;
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    font-weight: normal;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    padding-top: 14px;
    padding-bottom: 6px;
}
.date_links{
    display: flex;
    flex-wrap: wrap;
}
.date_links_flex{
    display: flex;
    justify-content: center;
    width: 100%;
}
.date_link_item{
    display: inline-block;
    width: 100%;
    min-width: 10px;
    text-align: center;
    color: #61298a;
    border-top: 1px solid #81589f;
    border-left: 1px solid #81589f;
    border-bottom: 1px solid #81589f;
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    padding-top: 3px;
    padding-bottom: 4px;
    cursor: pointer;
}
.date_link_item:hover,
.date_link_item.active{
    background-color: #81589f;
    color: #fff;
}

.date_link_item span{
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    font-size: 38px;
    line-height: 36px;
    margin: 0px;
}

@media screen and (max-width: 620px) {
    .calendar_header img{
        max-width: 140px;
    }
    .date_head_desktop{
        height: 50px;
        font-size: 20px;
        line-height: 44px;
    }
    .date_link_item{
        font-size: 14px;
    }
    .date_link_item span{
        font-size: 28px;
        line-height: 26px;
    }
}
@media screen and (max-width: 480px) {
    .date_link_item{
        font-size: 10px;
    }
}
.day_schedule {
    width: 100%;
    max-width: 800px;
    font-size: 1.2em;
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    margin: auto;
    padding-bottom: 30px;
}
.schedule_block{
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 4px 10px;
}
.schedule_highlight{
    background-color: #0084a9;
    color: #fff;
    padding: 10px 10px 6px 10px;
}
.schedule_highlight .schedule_time, .schedule_highlight .schedule_title{
    color: #fff;
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
}
.schedule_time{
    width: 30%;
}
.schedule_title{
    width: 100%;
}
.schedule_description{
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #eee;
}
@media screen and (max-width: 750px) {
    .schedule_block{
        flex-wrap: wrap;
    }
    .schedule_time, .schedule_title{
        width: 100%;
    }
    .schedule_time{
        font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    }
    .schedule_title{
        padding-bottom: 16px;
    }
}

.session_type_callout{
    display: flex;
    margin-top: 50px;
    padding-bottom: 50px;
}
.session_type_callout .flex_item{
    text-align: center;
    width: 30%;
    max-width: 330px;
}
@media screen and (max-width: 750px) {
    .session_type_callout{
        flex-wrap: wrap;
        width: 100%;

    }
    .session_type_callout .flex_item{
        width: 100%;
        max-width: 330px;
        margin: auto;
    }
}

/**
 * MENU STYLES
 */

.menu-items {
    display: flex;
    flex-direction: row;
}

.menu-header {
    width: 150px;
    display: flex;
}

.menu-header img {
    width: 95px;
}

#menu-button {
    display: none;
}

.menu-item,
.menu-item a,
#menu-button {
    background: none;
    font-size: 16px;
    color: var(--dark-grey);
    text-transform: uppercase;
    line-height: 55px;
    text-decoration: none;
    font-family: "Poppins-SemiBold", arial, sans-serif;
    cursor: pointer;
}

.menu-item, .menu-item a {
    display: inline-block;
}

.menu-item a {
    padding: 0px 15px;
}

.menu-item.active,
.menu-item a.account.active {
    padding-bottom: 0px;
    border-bottom: 4px solid #0084a9;
    color: #0084a9;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.dropdown {
    position: absolute;
    top: 100px;
    border: 0;
    font-family: "AvenirNextLTPro-Demi", arial, sans-serif;
    line-height: 16px;
    padding: 50px 40px 70px;
    width: 100%;
    display: none;
    background-color: #fff;
    border-collapse: separate;
    z-index: 100;
    text-align: center;
    font-size: 0;
}

.dropdown table {
    padding: 0 15px;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
    max-width: 225px;
    margin: 0px 10px;
    vertical-align: top;
}

.dropdown table tbody {
    border: 0;
}

.dropdown table tbody tr {
    background: #fff;
}

.dropdown table tbody tr td {
    text-align: left;
    padding: 6px;
}

.dropdown table tbody tr td strong {
    font-family: Poppins-Regular, Helvetica;
    font-size: 16px;
}

.dropdown table tbody tr td a {
    color: var(--links);
    font-family: Poppins-Regular, Helvetica;
    font-size: 0.9375rem;
    text-transform: none;
    text-decoration: none;
}

.dropdown table tbody tr td a:hover {
    color: var(--forest-green);
    text-decoration: underline;
}

.mobile-menu-items .menu-item a {
    display: none;
}

#mainMenu .mobile-button:hover {
    color: #fff;
}

#mainMenu .mobile-menu-items .menu-item{
    margin-right: 0;
}

@media screen and (max-width: 1023px) {
    #mainMenu {
        position: initial;
        height: fit-content;
    }
}

@media screen and (max-width: 768px) {
    /* #mainMenu {
        position: relative;
        flex-wrap: wrap;
        padding: 0;
        justify-content: flex-start;
    } */

    .menu-header img {
        max-height: 35px;
    }

    #menu-button {
        display: inline-block;
    }

    .menu-item, #menu-button {
        width: 100%;
        text-align: center;
    }

    .menu-items {
        display: flex;
        flex-direction: column;
    }

    .menu-item {
        display: none;
    }

    .desktop-menu-items .menu-item a {
        display: none;
    }

    .mobile-menu-items .menu-item a {
        display: block;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;

    }

    .dropdown {
        top: 100px;
    	-moz-column-count: 3;
        column-count: 3;
    }

    .dropdown table {
        width: auto;
        display: table;
        margin: 0 0 20px 0;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .dropdown table tbody tr td {
        padding: 5px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 660px) {
    .dropdown {
        -moz-column-count: 2;
        column-count: 2;
    }

    .dropdown table tbody tr td a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 29.9375em) {
    .dropdown {
        top: 80px;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 14, 45, 0.4)
}

.dropdown-overlay+#mainMenu > div:not(.active),
.dropdown-overlay+#mainMenu > a.account {
    opacity: 0.6;
}

.dropdown .dropdown-close {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    z-index: 2000;
    top: 20px;
    right: 20px;
    color: var(--forest-green);
    font-size: 2rem;
    text-decoration: none;
}





/**
 * Small Login
 */

#smallLoginWrapper [type='email'],
#smallLoginWrapper [type='password'] {
    width: 100%;
    max-width: none;
}

#smallLoginWrapper input[type='submit'],
#smallLoginWrapper input[type='button'] {
    margin: 5px 0px 0px 0px;
}

@media screen and (max-width: 29.9375em) {
    #smallLoginWrapper input[type='email'],
    #smallLoginWrapper input[type='password'] {
        font-size: 12px;
    }

    #smallLoginWrapper input[type='submit'],
    #smallLoginWrapper input[type='button'] {
        padding: 6px 10px;
        margin: 0px;
    }

    .smallLoginDialog .ui-dialog-titlebar {
        padding: 2px;
    }

    .smallLoginDialog .ui-dialog-title {
        font-size: 14px;
    }

    .smallLoginDialog .ui-dialog-titlebar-close {
        width: 16px;
        height: 16px;
        top: 16px;
    }
}


/*** ui-dialog overrides ***/

.ui-widget-header {
    color: #fff;
}
.ui-dialog .ui-dialog-title{
    font-size: 1.6rem;
}

.ui-dialog{
    padding: 0;
}

.ui-dialog .ui-button:focus {
    
}

.ui-dialog .ui-button:hover {
    background-color: #fff;
    color: var(--rosa);
    border: 1px solid var(--hot-pink);
}
.ui-dialog .ui-dialog-titlebar {
    background-color: var(--h1-color);
}

.ui-dialog .ui-dialog-titlebar span {
    font-family: Poppins-Bold;
    color: #fff;
}
.ui-dialog .ui-dialog-titlebar {
    padding: 0.6em 1em 0.4em 1em;
    position: relative;
}

.ui-dialog .ui-dialog-titlebar-close {
    width: 26px;
    height: 26px;
    right: 0.8em;
    top: 50%;
    margin: -8px 0 0 0;
    padding: 5px;
    background-color: var(--h1-color);
    border-color: var(--h1-color);
}
.ui-dialog .ui-dialog-titlebar-close:hover {
    background-color: var(--h3-color);
    border-color: var(--h3-color);
}
.ui-dialog .ui-dialog-titlebar-close::after {
    content: "";
}
.ui-dialog .ui-dialog-titlebar-close span.ui-button-icon.ui-icon.ui-icon-closethick {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
}
.ui-button{
    border: 0px;
    background: transparent;
    font-weight: normal;
    color: var(--dark-green);
}
.ui-icon {
    width: 26px;
    height: 26px;
}
.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
}
span.ui-button-icon.ui-icon.ui-icon-closethick {
    background-image: url(/ASCD2025/template/images/icon_close_x_white.svg);
    background-size: contain;
    background-position: center center;
}

/* For the OK button */
.ui-dialog-buttonset .ui-button {
    background-color: var(--main-btn);
    border-color: var(--main-btn);
}

.ui-dialog-buttonset .ui-button:focus {
    background-color: var(--main-btn);
    border-color: var(--main-btn);
    color: #fff;
}
.ui-dialog-buttonset .ui-button:hover {
    background-color: var(--main-btn-hover);
    color: var(--main-btn);
}

/**
 * Account Social Graphics
 */

.accountgraphic_container {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}

.accountgraphic_container div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-flex: 1 1 1 1 20%;
    -ms-flex: 1 1 1 1 20%;
    flex: 1 1 1 1 20%;
    width: 20%;
    margin: 10px 5px;
    text-align: center;
    border: none;
    padding: 5px;
    position: relative;
}

.accountgraphic_container div img {
    width: 100%;
    max-width: 400px;
    border: none;
    margin-bottom: 10px;
}

.accountgraphic_container div h3 {
    text-align: center;
}

.accountgraphic_container div p {
    margin-bottom: 8px;
    text-align: left;
}

@media (max-width: 750px) {
    .accountgraphic_container {
        display: block;
    }

    .accountgraphic_container div {
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
        width: 80%;
        margin: 10px auto;
    }
}


/**
 * DASHBOARD
 */

div.dashboardcontainer {
    width: 100%;
    display: block;
}

div.splitleft {
    width: 50%;
    display: inline-block;
    float: left;
    padding-right: 25px;
}

div.splitright {
    width: 50%;
    display: inline-block;
    float: right;
    padding-left: 25px;
}

div.splitbottom {
    width: 100%;
    display: block;
    clear: both;
}

@media only screen and (max-width: 1000px) {
    div.splitleft {
        width: 100%;
        display: block;
        float: none;
        border: none;
        padding: 0px;
    }

    div.splitright {
        width: 100%;
        display: block;
        float: none;
        border: none;
        padding: 0px;
    }
}


/**
 * Mobile Styles
 */



.desktop_only {
    display: block;
}

.mobile_only {
    display: none;
}
#filter_apply{
    display: none;
}

@media only screen and (max-width: 800px) {
    .desktop_only {
        display: none;
    }

    .mobile_only {
        display: block;
    }
    #filter_apply{
        display: inline-block;
    }
}


/**
 * Hamburger Styles
 */

.iste-hamburger-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.iste-hamburger {
    cursor: pointer;
}

.iste-hamburger-menu {
    display: none;
    z-index: 999;
}

.iste-hamburger-menu li:before {
    content: '';
}

.iste-hamburger-menu > ul {
    position: absolute;
    top: 0px;
    margin: 50px 0px 0px 15px;
    padding: 0px;
    width: 300px;
    background-color: #fff;
    border-radius: 3px;
}

.iste-hamburger-menu > ul > li {
    cursor: default;
    margin: 0px;
    padding: 10px;
    color: #000;
}

.iste-hamburger-menu > ul > li.iste-hamburger-menu-section {
    cursor: pointer;
    position: relative;
}

.iste-hamburger-menu > ul > li.iste-hamburger-menu-section > span.iste-hamburger-menu-toggle {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}

.iste-hamburger-menu > ul > li > strong {
    text-transform: uppercase;
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    font-size: 15px;
    color: #000d2d;
}

.iste-hamburger-menu > ul > li > ul.iste-hamburger-menu-submenu {
    display: none;
    margin: 0px 0px 0px 20px;
    padding: 0px;
}

.iste-hamburger-menu > ul > li > ul.iste-hamburger-menu-submenu > li {
    margin: 0px;
    padding: 3px;
    color: #000;
}

.iste-hamburger-menu > ul > li > ul.iste-hamburger-menu-submenu > li.iste-hamburger-menu-subsection {
    padding: 10px 3px 3px 3px;
}

.iste-hamburger-menu > ul > li > ul.iste-hamburger-menu-submenu > li > strong {
    text-transform: uppercase;
    font-family: "AvenirNextLTPro-DemiCn", arial, sans-serif;
    font-size: 15px;
    color: #000d2d;
}

.iste-hamburger-menu > ul > li > ul.iste-hamburger-menu-submenu > li > a {
    color: #61298a;
    font-size: 0.9375rem;
}

.iste-hamburger-menu > ul > li > ul.iste-hamburger-menu-submenu > li > a:hover {
    text-decoration: underline;
}

.container {
	margin: 20px 10% 20px 10%;
	text-align: left;
}

.mobile-container {
	margin: 10px 10% 10px 10%;
	text-align: justify;
}

.info-heading {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 0.5em;
}

.toggle_info_details {
	display: none;
}

.expandSelect {
	cursor: pointer;
	color: blue;
}

.special-thank-you {
    font-weight: 600;
    color: var(--dark-purple);
}

/* Mobile Floorplan */
.floorplan-grid {
    display: flex;
}
.grid-left{
    width: 73%;
}
.collapse_filter{
    width: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-right{
    width: 25%;
}

@media screen and (min-width: 2000px){
    .grid-left{
        width: 78%;
    }
    .grid-right{
        width: 20%;
    }
}

@media screen and (max-width: 1000px){
    .floorplan-grid {
        display: grid;
        grid-template-columns: auto;
    }
    .collapse_filter{
        display: none;
    }
}

.fancy-header {
    background-color: #5C326F;
    color: white;
    padding-left: 40px;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-size: 2.3rem;
}

.faq-block {
    margin-bottom: 30px;
}

.year-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: center;
}

.year-grid p {
    font-weight: 700;
}

@media screen and (max-width: 550px){
    .year-grid {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
}

.session_detail_item_top a p:hover{
    color: var(--hot-pink);
}

.expander:hover, .plus:hover, .minus:hover, .top_container a:hover, div.spkr-name a:hover, .presenter_detail_item:hover .name, .exhibitor_detail_item:hover .exhibitor_detail_info strong{
    color: var(--hot-pink);
}