/************************************************* CSS RESETS */

@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

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

html, body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: initial;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    flex-direction: column;
}

#error-page, #base-page {
    overflow-x: hidden;
}

.line-break {
    display: block;
}

/******************************************* Colors */

:root{
    --ruby_orange: #FF6633;
    --tangerine_orange: #F6821F;
    --mango_orange: #FBAD41;
    --blackberry: #0F006B;
    --dark_blackberry: #070033;
    --light_gray: #DFDFDF;
    --dark_gray: #747474;
    --white: #ffffff;
    --success_light: #BCECCB;
    --success: #57CF7D;
    --danger: #FC3D2E;
    --danger_dark: #B0291C;
}

/************************************************* Typography */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;600;700;800&display=swap');

h1, h2, h3, h4, h5, h6, p, ul, ol, li, a {
    font-family: 'Inter' !important;
}

h2 {
    font-size: 37px !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    color: #000000 !important;
    font-weight: 400 !important;
}

h3 {
    font-size: 21px;
}

p {
    line-height: 1.4em;
    display: block;
    font-size: 18px;
}

.bold {
    font-weight: 700 !important;
}

.semi-bold {
    font-weight: 600 !important;
}

.italic {
    font-style: italic !important;
}

.red-text {
    color: #DA291C;
}

.dark-gray-text {
    color: var(--dark_gray) !important;
}

.thin {
    font-weight: 400 !important;
}

/************************************************* General Styles */

body {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #000000 !important;
}

.black-text {
    color: #000 !important;
}

.desktop {
    display: flex;
}

.mobile {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(to right, #fbad41, #f63);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/************************************************* Navigation Bar */

#logout-bar {
    height: 40px;
    background-color: #f6821fc2;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 3;
}

.logout {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 5px;
    margin-left: auto;
}

.logo img {
    width: 200px;
}

/******************************************* Header */

#header {
    width: 100%;
    background-color: #ff663394;
    padding: 25px;
    position: absolute;
    top: 0;
    z-index: 3;
}

#header-nav {
    text-align: right;
}

#header-container {
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header-container-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

#header-container-content .left-col, #header-container-content .right-col {
    width: 49%;
}

#header-banner {
    color: #fff;
    padding: 75px;
    text-align: center;
}

#header-banner p {
    margin-bottom: 0;
    font-size: 18px !important;
}

#header-banner p span {
    display: block;
}

#header-nav img {
    width: 33%;
    margin-left: 0;
    margin-right: auto;
    display: block;
    text-align: left;
}

#header-nav a {
    color: #ffffff !important;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline;
}

#header-nav a:hover {
    text-decoration: underline !important;
}

#nav-contact-desktop {
    display: inline;
}

#nav-contact-mobile {
    display: none;
}

/************************************************* General Structure */

.container {
    display: inline-block;
    cursor: pointer;
}

hr {
    width: 100%;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-top: 1.5px solid #c8c8c8 !important;
}

input[type="text"]{
    background-color: #5A5A5A10;
    color: #000;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #807C7B40;
}

input[type="password"]{
    background-color: #5A5A5A10;
    color: #000;
    padding-left: 10px;
    padding-right: 2px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #807C7B40;
}

input[type="email"] {
    background-color: #5A5A5A10;
    color: #000;
    height: 40px;
    line-height: 40px;
    border: 1px solid #807C7B40;
    padding: 0 10px;
    width: 100%;
    max-width: 418px;
}

select {
    -webkit-appearance: none;
    background-color: #5A5A5A10;
    color: #5a5a5a;
    padding-left: 10px;
    padding-right: 30px;
    height: 40px;
    line-height: 40px;
    width: auto;
    border: 1px solid #807C7B40;
    background-image: url('/confluent/EmeaCab/images/arrow.svg');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .85em auto, 100%;
}

#page-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

#auth-content-container, #error-content-container, #base-page-container {
    flex: 1 !important;
    width: 100%;
}

#error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#error-page .line-break {
    display: block;
    font-weight: 700;
}

#error-page #copyright {
    position: fixed;
}

/* LOGIN PAGE  ***************************/

#auth-page, #error-page, #base-page {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    height: 100%;
    margin: 0px;
    background: url(../images/cloudflare-background.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    flex-direction: column;
}

body > div:first-of-type {
    width: 100%;
}

.auth-shapes {
    position: absolute;
    width: 26%;
}

#shapes-1 {
    bottom: 52px;
    left: 0;
    position: fixed;
    width: 28%;
}

#shapes-2 {
    right: 0;
    top: -15%;
}

#dots-1 {
    bottom: 9%;
    right: -5px;
    width: 32%;
    opacity: .3;
}

#dots-2 {
    top: 35px;
    left: -5px;
    width: 32%;
    opacity: .3;
}

#base-logo {
    width: 22%;
}

#error-page, #base-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#error-container, #base-page-container {
    margin-top: -100px;
    text-align: center;
}

#base-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#base-page-container h1 {
    margin-top: 80px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

#base-message {
    color: #ffffff;
}

#base-message a {
    color: inherit !important;
}

h1.login {
    font-size: 42px;
    padding: 0px !important;
    margin-left: 0px;
    color: #000;
}

h1.login-pw {
    font-size: 42px;
    padding-bottom: 0px;
    margin-left: 0px;
    padding-left: 0px;
    color: #000;
}

/* EVENT PAGE ***************************/

li {
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 10px !important;
    line-height: 1.4em;
}

li:nth-last-child(1) {
    margin-bottom: 0 !important;
}

ul {
    margin-bottom: 20px !important;
}

.section-title {
    font-size:14px;
    font-weight: bold;
    color:#000000;
    padding-bottom:15px;
    border-bottom:2px solid #1a1a1a20;
    padding-top:15px;
}


#event-container {
    width:80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-top:50px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

a {
    color: #0079FF;
}

#event-banner {
    background-image: url(../images/cloudflare-background.jpg);
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    padding-bottom: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* border-bottom: 3px solid #787878; */
    background-size: cover;
    background-position: right center;
    /* box-shadow: inset 0 0 3px #000000; */
    padding-top: 90px;
}

.event-banner-text {
    width: 80%;
    max-width: 1200px;
    margin-left:auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size:60px;
    line-height:1.2em;
    font-weight:300;
}

.event-banner-text h1 {
    font-size: 48px;
    margin: 0;
    margin-bottom: 15px;
    line-height: 1.1em;
    color: var(--white);
    font-weight: 700;
}

.event-banner-text h2 {
    font-size: 24px !important;
    margin: 0em;
    margin-bottom: 0 !important;
    display: block;
    font-weight: 700 !important;
}

h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 28px;
    color: #009ADA;
    line-height: 1.5em;
}

h4 {
    margin-bottom: 8px;
    font-size: 24px;
}

.date-dash {
    margin-left: 2px;
    margin-right: 3px;
}

#line-break-to-from {
    display: block;
}

#banner-logo {
    width: 33%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    margin-top: -3%;
}

#event-banner-content {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

#banner-shape-1, #banner-shape-2 {
    position: absolute;
    right: 0%;
    bottom: -4%;
    width: 16%;
}

#banner-shape-2 {
    left: 0;
    right: initial;
    top: 0;
    bottom: initial;
    width: 14%;
}

#calendar-header {
    border-bottom: 0;
}

.sidebar-nav {
    width: 298px;
    position: sticky;
    align-self: flex-start;
    top: 50px;
}

.main-content {
    width: 70%;
}

.body-text-pad {
    margin-bottom: 20px;
    padding-bottom: 0;
}

p.event-section-title {
    margin-bottom: 10px;
    font-weight: 700;
}

.networking .event-section-title {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.location .event-section-title {
    margin-top: 30px;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.event-section-title-adjustment {
    margin-top: 30px !important;
    margin-bottom: 10px !important;
}

.event-section-title-link-below {
    margin-bottom: 10px !important;
    margin-top: 30px !important;
}

.networking-line-break {
    display: block;
    font-weight: 800;
}

.address-section p {
    margin-bottom: 0 !important;
}

a.event-link {
    color: #000000;
    text-decoration: underline !important;
    cursor: pointer;
}

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

.body-text-bold-pad {
    padding-bottom: 15px;
    font-family: 'Inter';
}

a.body-text-pad {
    margin-bottom: 20px;
    padding-bottom: 0;
    display: block;
}

.main-content p {
    line-height: 1.4em;
}

.sidebar-nav-info {
    width: 100%;
    padding: 7%;
    background-color: #f8f8f8;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.sidebar-nav-info p:nth-child(1) {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--ruby_orange);
}

.sidebar-nav-info p:nth-child(2) {
    padding-bottom: 15px;
}

.logout-link {
    width: auto;
    color:#fff;
    text-decoration: none;
    font-family: 'Inter';
    margin-left: auto;
    font-size: 14px;
    -webkit-appearance:none;
    cursor: pointer;
}

.logout-link:hover {
    text-decoration: none !important;
    color: #f0f0f0;
}

.logout-pipe {
    margin-right: 3px;
    margin-left: 3px;
}

.header-reg {
    width: auto;
    color: #ffffff !important;
    background-color: var(--ruby_orange) !important;
    text-decoration: none;
    padding: 0px 25px 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 50px;
    max-width: 255px;
    margin-right: auto;
    font-family: 'Inter';
    font-size: 16px;
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
}

.header-reg:hover, .sidebar-nav .header-reg:hover {
    background-color: var(--blackberry) !important;
    color: #fff;
    text-decoration: none;
}

.back-to-top:hover, .back-to-top:focus {
    background-color: #da291c;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.back-to-top:hover, .back-to-top:focus {
    background-color: var(--blackberry) !important;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.sidebar-nav .header-reg {
    margin-top: 10px;
    background-color: #da291c;
    color: #fff;
}

.back-to-top {
    color: #fff;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 50px;
    width: 185px;
    -webkit-appearance: none;
    margin-left: auto;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px !important;
    font-weight: 700;
    border-radius: 10px;
}

.back-to-top span {
    display: inline-block;
    padding-right: 10px;
    margin-bottom: -5px;
}

.back-to-top img {
    margin-top: -8px;
}

.grey-menu-level {
    width: 100%;
    background-color: #f8f8f8;
    border-bottom: 1px solid #c8c8c8;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px 0px 15px 25px;
}

.menu-border-top {
    border-top: 1px solid #c8c8c8;
}

.grey-menu-level:nth-last-child(1) {
    border-bottom:0px solid #CCCCCC;
}

.grey-menu-level:hover {
    background-color:#E3E3E3;
    text-decoration: none;
    cursor: pointer;
}

a.grey-menu-level p {
    color:#000;
    text-decoration: none;
    margin-bottom: 0;
    margin-left: 5px;
    font-size: 16px;
}

.grey-menu-level .icon {
    width: 40px;
    display: flex;
}

section {
    margin-bottom: 70px !important;
}

.intro {
    font-size: 20px;
    width: 95%;
}

.intro p:nth-child(1) {
    font-size: 32px;
    /*    color: #da291c;*/
    color: #000000;
    font-weight: 600;
}

.separator {
    display: flex;
    margin-bottom: 25px;
}

.separator img {
    margin-right: 15px;
    width: 50px;
    border-radius: 50%;
    height: 50px;
}

.icon img {
    width: 25px !important;
    height: 20px !important;
}

.icon-height-adjust img {
    height: 25px !important;
}

.separator p {
    font-size: 22px;
    border-bottom: 2px solid var(--ruby_orange);
    padding-bottom: 10px;
    width: 100%;
    align-self: flex-start;
    color: #000000;
    font-weight: 600;
}

.sessiontitle {
    font-size: 16px;
    padding-bottom: 0;
    font-weight: 700;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.session-description {
    font-weight: 400;
    font-size: 13px;
    margin-top: -4px;
    color: var(--dark_gray);
}

.time p {
    font-size: 16px !important;
    margin-bottom: 5px !important;
    margin-top: 5px !important;
    font-weight: 400;
}

.section-details {
    display: flex;
    flex-direction: column;
}

.networking .section-details, .location .section-details {
    flex-direction: column;
}

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

.section-details img {
    margin-right: 30px;
    align-self: flex-start;
    height: auto;
    object-fit: fill;
    width: 100%;
}

.event-section-title {
    font-family: 'Inter';
    padding-bottom: 7px;
}

.event-climate {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.event-climate p.climate-detail {
    width: 41%;
    margin-right: 5%;
    margin-bottom: 0;
}

.weather {
    display: flex;
    width: 50%;
    height: 180px;
}

.temp:nth-child(1) {
    border: 2px solid var(--ruby_orange);
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
}

.temp:nth-child(2) {
    border-top: 2px solid var(--ruby_orange);
    border-right: 2px solid var(--ruby_orange);
    border-bottom: 2px solid var(--ruby_orange);
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.temp p:nth-child(1) {
    font-size: 60px;
    color: #000;
    margin-bottom: 0 !important;
    margin-right: -12px;
    font-weight: 600;
}

.temp p:nth-child(2) {
    margin-top: -5px;
}

.calendar, .transportation-table {
    width: 100%;
    margin-bottom: 30px;
}

.transportation-table th {
    font-weight: 700;
    padding: 10px;
    font-size: 16px;
    background-color: #f0f0f0;
    color: var(--dark_gray);
}

.transportation-table td {
    border-right: 2px solid #c8c8c8;
    border-top: 1px solid #CCCCCC;
    padding: 10px;
    font-size: 16px;
}

.transportation-table tbody tr:first-of-type td {
    border-top: initial;
}

.transportation-table tr td:nth-child(1) {
    width: 25%;
}

.transportation-table tr td:nth-child(2) {
    width: 25%;
}

.transportation-table tr td:nth-child(3) {
    width: 50%;
    border-right: initial;
}

.event-row {
    width:100%;
    display: flex;
    border-bottom:1px solid #CCCCCC;
}

.event-row:nth-last-child(1) {
    border-bottom:0px solid #CCCCCC;
}

.event-date {
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
    font-weight: 700;
    color: var(--dark_gray);
    font-size: 16px;
}

.event-date span {
    font-size: 13px;
    font-weight: 500;
    margin-left: 5px;
}

.time {
    width: 25%;
    border-right: 2px solid #c8c8c8;
    padding: 10px 20px;
}

.time-third-split {
    width: 26%;
}

.event-info-third-split {
    width: 39.5%;
}

.time .mobile {
    display: none;
}

.event-info {
    width: 75%;
    padding: 10px 20px;
}

.event-info-third-title {
    background-color: #f0f0f0;
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    padding: 5px 20px;
}

.event-info-first {
    border-right: 1px solid #CCCCCC;
}

.event-info-third-content {
    width: 100%;
    background-color: #f0f0f05e;
}

.contact-info-block .event-section-title, .networking-block {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
    margin-top: 10px !important;
}

#meeting-info, #contact-info, #networking-info {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#networking-info {
    margin-top: 15px;
}

.networking-title {
    font-size: 18px !important;
}

.meeting-info-block, .contact-info-block, .networking-block {
    width: 50%;
    border-left: 4px solid #c8c8c8;
    padding-left: 30px;
}

.contact-info-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.networking-block {
    display: flex;
    align-items: center;
}

.networking-block span {
    display: block;
    font-size: 16px;
    line-height: 23px;
}

.networking-block span:first-of-type {
    margin-top: 5px;
}

#contact-text {
    margin-top: 15px;
}

#back-top {
    text-align: right;
    margin-top: 50px;
    margin-bottom: 80px;
    margin-left: auto;
}

#footer {
    width: 100%;
    background-color: #0e0e0e;
    display: flex;
    flex-direction: column;
    color:#fff;
    font-family: 'Inter';
    height: 350px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-content {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 80%;
    max-width: 1200px;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#footer .event-link {
    text-decoration: none !important;
    color: #ffffff !important;
}

#footer .event-link:hover {
    color: var(--tangerine_orange) !important;
}

.footer-content img {
    width: 300px;
}

.footer-content div:nth-child(1) {
    margin-bottom: 30px;
}

.ft_title {
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 600;
}

/* Body Styles */

.hr {
    width: 100%;
    height: 10px;
    margin-bottom: 35px;
    border-bottom: solid 1px #c7c9c8;
    clear: both;
}

li.list {
    line-height: 1.4em;
    padding-bottom:5px;
    background-size: 15px;
    background-position: 0 10px;
    padding-left: 5px;
    font-size: 20px;
}

ol.list {
    line-height: 1.4em;
    padding-bottom:5px;
    background-size: 15px;
    background-position: 0 10px;
    padding-left: 5px;
    font-size: 20px;
}

/* Page Styles */

.container {
    margin: auto;
    background-color: #ffffff;
    z-index: 100;
    width: 100%;
    color: #53565A;;
    padding-bottom: 100px;
    padding-top:6 0px;
    overflow: hidden;
}

.content {
    margin: auto;
    max-width: 1000px;
    width: 80%;
    height: auto;
    padding-bottom: 50px;
}

/* Footer Styles */

#footer {
    clear:both;
    width:100%;
    min-width:800px;
    background-color: #0e0e0e;
    height:auto;
    padding-top:50px;
    margin-top:50px;
}

.footer_content {
    margin:auto;
    height:auto;
    width:900px;
    text-align:center;
    padding-bottom:50px;
}

.ft_info {
    font-size:18px;
    color:#ffffff;
    font-weight:300;
}

a.ft_link {
    color: #DA291C;
    text-decoration: none;
}

a.ft_link:hover {
    text-decoration: none;
    color: #14449A;
}

#secondary-footer {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #000;
}

.copyright {
    font-size: 12px;
    color: #464646;
    margin-bottom: 0;
}

.copyright a {
    color: #464646;
}

#copyright-spacing {
    margin-left: 10px;
    margin-right: 10px;
}

div#login-copyright {
    text-align: center;
    color: #adadad;
    margin-top: 20px;
}

/************************************************* Login Pages Styles */

body {
    position: relative !important;
}

.submit_button {
    margin: 30px auto 0 auto;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 10px;
    color: #ffffff;
    background-color: var(--ruby_orange) !important;
    border: 0px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
    cursor: pointer;
    display: block;
    font-weight: 550;
}

.log-in-form {
    width: 75%;
    max-width: 900px !important;
    margin: auto !important;
    background-color: #fff !important;
    text-align: center !important;
    border-radius: 10px;
    margin-top: 150px !important;
    margin-bottom: 100px !important;
}

div#log-in-form-content {
    padding: 85px 50px;
    border-top: 1px solid var(--ruby_orange);
}

.log-in-form label {
    display: block;
    width: 100%;
    margin-bottom: -10px;
    font-weight: 400;
}

.form-info {
    padding-top:40px;
    text-align: left;
    width:86%;
    margin:auto;
}


.welcome {
    font-size:38px;
    line-height: 1.3em;
    font-weight: 900;
    color:#000;
    width:100%;
    margin:auto;
    text-align:center;
}

#login-logo {
    width: 24%;
    margin-bottom: 35px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-top: 80px;
}

.welcome h2 {
    font-weight: 700 !important;
}

.description {
    font-size:16px;
    line-height: 1.3em;
    width:80%;
    color:#000;
    margin:auto;
    text-align:center;
    font-family: sans-serif;
    font-weight: 400;
    padding-bottom: 0;
}

label {
    font-size:14px;
    padding-bottom:15px;
    color:#53565A;
    width: 80%;
    margin:auto;
    text-align:left;
    font-family: 'Inter';
}

.loginField, .loginFieldRed {
    background-color: #f0f0f0;
    border-radius: 0px !important;
    border: 1px solid #dfdfdf;
    text-indent: 6px;
    font-weight: 400;
    height: 32px;
    font-size: 12px;
    width: 100%;
    margin: auto;
    font-family: 'Inter' !important;
}

.loginFieldRed {
    background-color: #f0f0f0;
    border-radius: 0px !important;
    border: 1px solid  #dfdfdf;
    text-indent:3px;
    font-weight: 400;
    height:28px;
    font-size: 12px;
    width: 100%;
    margin:auto;
}

.loginFieldRed {
    border: 1.5px solid #0079FF;
}

#asterix {
    color: #53565A;
}

#copyright {
    padding: 20px 0;
    font-size: 10px;
    /*position: fixed;*/
    bottom: 0;
    background-color: #000000;
    width: 100%;
    color: #ffffff87;
    font-size: 12px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    font-family: sans-serif;
}

#login-form-container {
    width: 100%;
    position: relative;
    z-index: 0;
}

.submit_button:hover, .back-to-top:hover {
    background-color: var(--blackberry) !important;
    cursor: pointer;
}

.highlight {
    color: #b71234;
}

#login-form-email {
    width: 90%;
    margin-top:10px;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
}


#login-form-table {
    margin: auto;
}

#login-email-container {
    width: 90%;
    margin-top:10px;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
}

#back-to-top-span {
    display: inline-block;
    padding-right: 10px;
    margin-bottom: -5px;
}

.error-login-message {
    background-color: #f0f0f0;
    color: #000;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 25px;
    margin-top: 35px;
    padding: 45px 30px 35px 30px;
    font-family: sans-serif;
    line-height: 18px;
    text-align: center;
    position: relative;
    max-width: 410px;
}

.error-login-message p {
    font-size: 14px;
    margin-bottom: 0;
}

#login-email-field {
    width: 70%;
    margin: 30px auto 35px auto;
    max-width: 410px;
}

.error-login-exclamation {
    color: #fff;
    position: absolute;
    top: -17px;
    background-color: var(--danger_dark);
    width: 15px;
    height: 15px;
    font-size: 25px;
    font-weight: 800;
    font-family: sans-serif;
    border-radius: 50%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
}

div#line-break-login {
    display: block;
    margin-top: 10px;
}

.hide-mobile {
    margin-left: 10px;
    margin-right: 10px;
}

#agenda-no-slot-descript {
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
}

.para-space-top {
    margin-top: 10px;
}

.margin-padding-bottom-0 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

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

#login-banner-desktop {
    display: block;
}

#login-banner-mobile {
    display: none;
}

.login-banner img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

/***************************************************************** HEADSHOTS PAGE */

#headshots-page .nav, #headshots-page #countdown-container-gradient, #headshots-page .footer {
    display: none !important;
}

#headshots-page {
    background-color: #1c1c1c;
}

#headshots-page .footer-line {
    margin-top: 200px;
}

.headshots-banner {
    width: 100%;
}

#mobile-headshots-banner {
    display: none;
}

#desktop-headshots-banner {
    display: block;
}

.theme-header-module__themeHeader--_qNqy {
    height: 0 !important;
}

#headshots-container {
    /*    background-image: url(../images/mandalay-bay-bg.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #f4f4f4;
    background-position-y: -270px;
    margin-bottom: -200px;
}

#headshot-content {
    margin: auto;
    width: 1000px !important;
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: block !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 50px;
    margin-bottom: 60px;
    background-color: #f4f4f4;
}

#headshot-content-inner {
    padding: 85px 100px 0 100px;
}

#headshots-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    margin-bottom: 0;
}

#headshot-directions {
    margin-left: 15px;
}

#headshots-logo img {
    width: 45%;
    margin-bottom: 40px;
    margin-top: 100px;
}

#headshot-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 30px;
    color: #000000;
    font-family: Gilroy-Bold;
    line-height: 1.2em;
    margin-bottom: 15px !important;
    text-transform: initial !important;
}

#headshots-page .hr {
    margin-bottom: 25px !important;
    margin-top: 15px !important;
    border-bottom: solid 1px #787878 !important;
}

#headshot-requirements li, #logo-requirements li, #headshot-directions li {
    line-height: 1.6em;
    font-size: 18px;
    margin-left: 30px;
}

#headshot-requirements li, #logo-requirements li {
    margin-left: 0;
}

#headshot-directions li {
    margin-top: 0;
}

#headshots-page .content iframe {
    height: 915px;
    width: 100%;
    border: 0 !important;
}

.headshots-header {
    font-family: Gilroy-Bold;
    font-size: 20px;
}

.participants-content [data-name="Babineaux-Fontenota"] .name:nth-child(2) {
    line-height: 1;
    margin-top: 10px !important;
}

#upload-box-container {
    background-color: #f4f4f4;
}

#headshots-page .content {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-top: -25px !important;
}

#location-info-split {
    display: block;
}

/************************************************* Media Queries */

@media screen and (max-width: 1500px) {

    #line-break-to-from {
        display: initial;
    }

    .time {
        width: 27%;
    }

    .time-third-split {
        width: 28.1% !important;
    }

    .event-banner-text h1 {
        font-size: 50px;
        line-height: 1em;
        width: 40%;
    }

    .event-banner-text h2 {
        font-size: 20px !important;
    }

    .main-content {
        width: 65%;
    }

}

@media screen and (max-width: 1400px) {
    .time {
        width: 25%;
    }
    .time-third-split {
        width: 26% !important;
    }
}

@media screen and (max-width: 1350px) {

    .event-banner-text h1 {
        width: 53%;
    }

    .time {
        width: 30%;
    }

    .time-third-split {
        width: 30.9% !important;
    }

    #event-banner {
        min-height: 315px;
    }

    #banner-shape-1 {
        width: 22%;
    }

    #banner-shape-2 {
        width: 18%;
    }

}

@media screen and (max-width: 1200px) {
    .contact-info-block, .networking-block {
        padding-left: 10px;
    }
    .main-content {
        width: 62%;
    }
}

@media screen and (max-width: 1100px) {

    #headshots-page .content {
        margin-top: 0px !important;
    }

    #headshots-page .content iframe {
        height: 850px;
    }

    #headshot-content-inner {
        padding: 60px 75px 0 75px;
    }

    #mobile-headshots-banner {
        display: block;
    }

    #desktop-headshots-banner {
        display: none;
    }

    #headshot-content {
        width: 80% !important;
    }

    .contact-info-block, .networking-block {
        padding-left: 30px;
    }

    .time {
        width: 22%;
    }

    .time-third-split {
        width: 22.3% !important;
    }

    #banner-logo {
        width: 38%;
    }

    .sidebar-nav {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 40px;
    }

    .main-content {
        width: 100%;
    }

    #event-container {
        flex-direction: column;
        width: 85%;
    }

    .sidebar-nav {
        position: initial;
    }

    .sidebar-nav-info {
        padding: 5%;
    }

}


@media screen and (max-width: 1000px) {

    #header-nav img {
        width: 50%;
    }

    #headshots-page .content:first-of-type {
        padding-bottom: 0;
    }

    #headshots-logo img {
        width: 65%;
    }

    .event-banner-text h1 {
        width: 68%;
        font-size: 47px;
    }

    .event-banner-text h2 {
        font-size: 19px !important;
    }

    .form {
        width: 90%;
    }

}

@media screen and (max-width: 900px) {

    .event-info-third-title {
        padding-top: 22px !important;
    }

    .time.time-third-split {
        padding-bottom: 8px;
        background-color: #cdcdcd;
    }

    .event-info.event-info-third-content {
        padding-top: 25px;
        padding-bottom: 20px;
    }

    .time-third-split, .event-info-third-split {
        width: 100% !important;
    }

    .sessiontitle {
        margin-top: -10px !important;
    }

    .location .event-section-title {
        margin-top: 15px;
    }

    #banner-logo {
        width: 60%;
    }

    #banner-shape-1 {
        width: 28%;
    }

    #banner-shape-2 {
        width: 24%;
    }

    .log-in-form {
        width: 700px !important;
        max-width: 700px !important;
    }

    .event-banner-text h2 {
        font-size: 22px;
    }

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

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

    .event-climate p.climate-detail {
        width: 100%;
        margin-bottom: 30px;
    }

    .temp {
        padding-bottom: 3%;
    }

    .weather {
        width: 100%;
    }

    .section-details img {
        height: 200px;
        object-fit: cover;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

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

    .time {
        width: 100%;
        border-left: 2px solid #da291c;
        border-right: 0px solid #da291c;
        padding-bottom: 5px;
    }

    .event-info {
        width: 100%;
        border-left: 2px solid #da291c;
        padding-top: 0px;
    }

    .event-date {
        width: 100%;
        border-left: 2px solid #da291c;
        border-right: 0px solid #da291c;
    }

    .time .desktop {
        display: none;
    }

    .time.mobile {
        display: block;
        padding-bottom: 5px;
        border-left: 0px;
    }

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

    #event-banner {
        min-height: 400px;
    }

}


@media screen and (max-width: 800px) {

    #nav-contact-desktop {
        display: none;
    }

    #nav-contact-mobile {
        display: inline-block;
    }

    .event-banner-text h1 {
        width: 68%;
        font-size: 40px;
    }

    .event-banner-text h2 {
        font-size: 18px !important;
    }

    #login-banner-desktop {
        display: none;
    }

    #login-banner-mobile {
        display: block;
    }

}

/************************** mobile breakpoint */



@media screen and (max-width : 768px) {
    #headshot-content h3 {
        font-size: 25px;
    }

    #shapes-2 {
        top: -31%;
    }

    .log-in-form {
        margin-top: 115px !important;
    }

    .auth-shapes {
        width: 50% !important;
    }

    .footer-content img {
        margin-bottom: 35px;
    }

    .sidebar-nav-info p:nth-child(1) {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .sidebar-nav-info {
        padding: 3% 5%;
    }

    #auth-page, #error-page {
        height: auto;
    }

    a.button {
        margin: 15px;
        float: none;
    }

}


@media screen and (max-width: 768px) {
    #footer {
        min-width: initial;
    }
    .footer-content {
        display: block;
    }
    .contact-info-block:nth-child(2), .networking-block:nth-child(2) {
        margin-top: 25px;
    }
    #contact-info {
        display: block;
    }
    .error-login-message {
        width: 100%;
    }

    div#login-email-field {
        width: 100%;
    }

    .submit_button {
        height: 40px;
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .desktop {
        display: none !important;
    }

    .mobile {
        display: flex !important;
    }

    .contact-row:nth-child(1) {
        width: 100%;
        min-width: 0px;
    }

    .contact-row {
        width: 100%;
        min-width: 0px;
    }

    .form {
        width: 90%;
    }

    .form-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        border-bottom:2px solid #000;
        padding-bottom:10px;
        margin-bottom:40px;
        padding-top:40px;
    }

    #logout-bar {
        padding-top: 20px;
        height: auto;
        padding-bottom: 20px;
    }

    #nav {
        position: fixed;
        background-color:#fff;
        width:100%;
        z-index: 10;
    }

    .logo {
        margin-left:10%;
    }

    .main-copyright {
        text-align: center;
        margin-right: 0%;
    }

    h1.login {
        font-size:38px;
    }

    .event-view {
        width: 100%;
        margin:auto;
        padding-top:20px;
        padding-bottom:20px;
    }

    .row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 0px;
    }

    .arrow {
        display: none;
    }

    .body {
        color:#1a1a1a;
    }

    .form {
        width:90%;
        margin:auto;
        background-color:#fff;
        min-height: 900px;
        margin-top:140px;
    }

}

@media screen and (max-width : 700px) {

    #header-nav img {
        width: 65%;
    }

    #headshots-logo img {
        width: 78%;
    }

    .contact-info-block, .networking-block {
        padding-left: 30px;
        width: 82%;
    }

    #shapes-2 {
        right: -10%;
    }

    h2 {
        font-size: 31px !important;
    }

    .description {
        width: 100%;
    }

    .event-banner-text h1 {
        width: 88%;
        font-size: 44px;
    }

    #banner-logo {
        width: 65%;
    }

    .log-in-form {
        width: 90% !important;
    }

    #login-logo {
        width: 40%;
    }

    #auth-page, #error-page {
        height: auto;
    }

}

@media screen and (max-width : 650px){

    h2 {
        font-size: 25px !important;
    }

    #login-logo {
        margin-top: 50px;
    }

    .log-in-form {
        margin-top: 120px !important;
    }

    .intro p:nth-child(1) {
        font-size: 24px;
    }

}

@media screen and (max-width : 600px){

    #header-nav img {
        width: 90%;
    }

    .contact-info-block, .networking-block {
        width: 80%;
    }

    #base-message {
        width: 89%;
        margin-right: auto;
        margin-left: auto;
    }

    #base-page-container {
        margin-top: -250px;
    }

    #base-logo {
        width: 45%;
    }

    #error-page h1, #base-page h1 {
        font-size: 38px;
        width: 61%;
        margin-right: auto;
        margin-left: auto;
    }

    #error-page h1, #base-page h1 {
        width: 85%;
        line-height: 40px;
    }

    #base-page br {
        display: none;
    }

    #login-email-field {
        margin: 40px auto;
    }

    #login-logo {
        width: 55%;
    }

    h2 {
        font-size: 22px !important;
    }

    #back-top {
        margin-bottom: 10px;
    }

    h1 {
        font-size: 38px;
    }

    #footer {
        min-width: 0px;
    }

    h3 {
        margin-bottom:30px;
    }

    .agenda {
        flex-direction: column;
    }

}


@media screen and (max-width : 600px){

    #headshot-content-inner {
        padding: 30px 35px 0 35px;
    }

    .hide-mobile {
        display: none;
    }

    .line-break-mobile {
        display: block;
    }

    .event-banner-text h2 {
        text-align: center;
        line-height: 23px !important;
    }

    .welcome {
        font-size: 25px;
        line-height: 1.0em;
        width:100%;
        margin:auto;
    }

    .description {
        width:100%;
        margin:auto;
    }

    label {
        width: 80%;
        margin:auto;
    }

    .log-in-form {
        width: 90%;
        margin-bottom: 100px;
    }

    .form-info {
        width:80%;
    }

}


@media screen and (max-width: 500px) {

    #banner-shape-2 {
        width: 30%;
    }

    #banner-shape-1 {
        width: 39%;
    }

    .contact-info-block, .networking-block {
        width: 95%;
    }

    .auth-shapes {
        width: 50% !important;
    }

    #shapes-2 {
        right: 0;
        top: initial;
        bottom: 52px;
        position: fixed;
    }

    section {
        margin-bottom: 45px;
    }

    #footer {
        height: 400px;
    }

    .footer-content {
        margin: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footer-content img {
        width: 300px;
        margin-bottom: 30px;
    }

    .event-banner-text h1 {
        font-size: 34px;
    }

    #event-banner {
        min-height: 350px;
    }

    .event-banner-text {
        margin: auto;
    }

    .event-banner-text h1 {
        font-size: 31px;
    }

    #banner-logo {
        width: 53%;
    }

    .event-banner-text h2 {
        font-size: 18px !important;
    }

    #logout-bar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    div#log-in-form-content {
        padding: 30px 10px;
    }
}


@media screen and (max-width: 450px) {

    #header-nav img {
        width: 97%;
    }

    #base-page-container {
        margin-top: -350px;
    }

    #logout-bar img {
        width: 100% !important;
    }

    .contact-row:nth-child(1) {
        flex-direction: column;
    }

    .contact-row {
        flex-direction: column;
        margin-top:60px;
    }

    .contact-card {
        width: 60%;
        margin: auto;
        margin-bottom:30px;
    }

    .login-left input {
        align-self: flex-start;
        width: 250px;
        -webkit-appearance:none;
    }

    .sub-footer img {
        margin:auto;
        padding-bottom: 30px;
        width: 60%;
    }

    .logo img {
        width: 150px;
        margin-top:10px;
    }

    select {
        width: 100%;
    }

    #logout-bar img {
        width: 100% !important;
    }

    .form {
        margin-top:60px;
        margin-bottom:60px;
    }

}

/*
@media screen and (max-height: 900px) {
    #copyright {
        position: relative;
        z-index: 2;
    }
    body {
        display: none;
    }
    .log-in-form {
        margin-bottom: 40px !important;
    }
    #error-page #copyright, #base-page #copyright {
        position: absolute;
    }
    #shapes-1 {
        position: absolute;
        z-index: 1;
    }
}
*/
