/* HTML5 Reset CSS */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
    display: block;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Apply a natural box layout model to all elements: http://paulirish.com/2012/box-sizing-border-box-ftw/ */
*, *:before, *:after {
    box-sizing: border-box;
}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
    max-width: 100%;
}

/* force a vertical scrollbar to prevent a jumpy page */
html {
    overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */
ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: bold;
    vertical-align: bottom;
}

td {
    font-weight: normal;
    vertical-align: top;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {
    vertical-align: text-bottom;
}

input[type="checkbox"] {
    vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
    vertical-align: baseline;
}

.ie6 input {
    vertical-align: text-bottom;
}

select, input, textarea {
    font: 1rem sans-serif;
}

table {
    font-size: inherit;
    font: 100%;
}

small {
    font-size: 85%;
}

strong {
    font-weight: bold;
}

td, td img {
    vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
    font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
    margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
    width: auto;
    overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
    -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */
.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/* Virtual Experience CSS */
@font-face {
    font-family: 'Barlow', sans-serif;
    src: url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');
    /* You can also provide local paths to your font files if you have them */
}

body {
    font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
    font-size: 80%;

}

.page-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.full-width {
    width: 100%;
}

textarea:focus,
button:focus,
input:focus,
select:focus {
    outline: 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.text-center {
    text-align: center
}

.inline-block {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.bold {
    font-weight: bold;
}

.red {
    color: #ff0000;
}

.bold {
    font-weight: bold;
}

.message {
    display: none;
    text-align: left;
    /*font-size: 90%;*/
}

.message.error {
    color: #E20913;
}

.message.success {
    color: #079100;
}

.center {
    margin: 0 auto;
}

.clear {
    clear: both;
}

.hide {
    display: none;
}

.gray {
    color: #666;
}

.main {
    width: 100%;
    margin-top: 25px;
}

.content-box {
    width: 100%;
    margin-top: 3px;
    color: #333333;
}

/* Button Style */
button {
    border: 0;
    padding: 8px 10px;
    height: auto;
    line-height: 20px;
    margin: 0;
    cursor: pointer;
    font-size: 100%;
    color: white;
    background-color: #aaa;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

/* PopUp Dialog Style */

.dialog {
    position: relative;
    width: 100%;
    height: 100%;
    color: #000;
    word-wrap: break-word;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    background: rgba(3, 2, 0, 0.4);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#656363', endColorstr='#656363'); /* IE */
}

.dialog .dialogHeader {
    position: absolute;
    margin: 5px;
    height: 30px;
    clear: both;
}

.dialog .dialogHeader .dialogIcon {
    margin: 2px 2px 0 5px;
    float: left;
}

.dialog .dialogHeader .dialogTitle {
    color: #ffffff;
    line-height: 30px;
    float: left;
}

.dialog .dialogContainer {
    position: absolute;
    margin: 40px 5px 5px 5px;
    background: #eeeeee;
}

.dialog .dialogFooter {
    position: absolute;
    margin: 5px 5px 0 5px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.dialog .dialogFooter .button {
    padding: 0 15px;
    display: none;
}

#common-container {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

#messageCard {
    position: absolute;
    display: none;
    color: gray;
    z-index: 2000;
    width: 300px;
    height: auto;
}

#messageCard .cardTitle {
    color: #4B4B4B;
    font-weight: bold;
    margin-bottom: 15px;
}

#messageCard .cardBody {
    margin-bottom: 15px;
}

#messageCard .cardBtn {
    cursor: pointer;
    float: right;
    margin-top: -50px;
}

.msg-body {
    background-color: #FFFFFF;
    margin: 5px;
    padding: 15px;
}

#header {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}

#header hr {
    margin: 0;
}

.header-container {
    width: 100%;
    max-width: 960px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    cursor: pointer;
    line-height: 50px;
    font-size: 180%;
}

#header-banner {
    cursor: pointer;
}

#header-banner img {
    max-width: 960px;
    height: 50px;
}

#splash-bottom-box {
    width: 700px;
    height: 95px;
    margin: 50px auto 0 auto;
    overflow: hidden;
}

#splash-bottom-box img {
    width: 700px;
    height: 95px;
}

#footer {
    width: 100%;
    margin: 35px auto 10px auto;
    border-top: 1px solid #D9D5D6;
}

#footer-new, .card-box-shadow {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.4);
}

#custom-footer {
    width: 100%;
    max-width: 950px;
    overflow: hidden;
    word-wrap: break-word;
    /*word-break: break-all;*/
    color: #555;
    margin: 35px auto 0 auto;
}

#custom-footer.tw-col-span-2 {
    max-width: initial;
}

.default-footer {
    width: 100%;
    max-width: 960px;
    position: relative;
    color: #666;
    margin: 5px auto;
}

.footer-links {
    font-size: 90%;
    margin-top: 3px;
}

.footer-links li {
    float: left;
    line-height: 22px;
}

.footer-links .divider {
    margin: 0 10px;
}

.footer-links a {
    color: #666666;
    font-weight: normal;
    text-decoration: underline;
    float: left;
}

.footer-links a:hover {
    color: #999999;
}

.footer-logo {
    margin-right: 10px;
}

.footer-logo img {
    margin-top: 3px;
    height: 15px;
}

/* Mask Style */

#mask {
    background: #555555;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    -khtml-opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    /* display: none; */
    z-index: 1000;
    height: 100%;
    width: 100%;
    display: none;
}

/* System Checker Style*/

#systemChecker {
    position: absolute;
    display: none;
    /*width: 530px;*/
    /*height: 410px;*/
    width: 584px;
    height: 460px;
    border: solid 1px #D6D6D6;
    border-radius: 5px;
}

#systemChecker .dialog {
    color: #767676;
    background: #fff;
    height: auto;
}

#systemChecker .dialog-bg {
    width: 582px;
    height: 555px;
    background: #fff;
    margin: 10px;
    float: left;
}

#systemChecker .dialogHeader {
    background: #fff;
    height: 45px;
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #D6D6D6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#systemChecker .dialogIcon {
    margin-left: 18px;
}

#systemChecker .dialogTitle {
    color: #767676;
    margin-left: 7px;
    font-weight: bold;
}

#systemChecker .dialogContainer {
    background: #fff;
    margin: 50px;
}

#systemCheckerDescription {
    margin: 11px 0 5px;
    padding-bottom: 14px;
    border-bottom: 1px solid #D6D6D6;
}

#systemCheckerStatus {
    padding-top: 3px;
    line-height: 30px;
    height: 30px;
}

#systemCheckerStatus .detail {
    float: left;
    font-weight: bold;
}

#systemCheckerStatus .action {
    float: right;
    padding-right: 5px;
}

#systemCheckerStatus .action .button {
    display: none;
}

#systemCheckerExportBtn {
    float: right;
}

#systemCheckerItems {
    list-style: none;
    margin: 10px 0 0;
}

#systemCheckerItems li {
    height: 30px;
    line-height: 30px;
    border-bottom: 1px dashed #D6D6D6;
    clear: both;
    padding-top: 7px;
}

#systemCheckerItems #systemCheckerFlashVersion {
    border: none;
}

#systemCheckerItems .name {
    float: left;
}

#systemCheckerItems .result {
    position: absolute;
    padding-left: 298px;
}

#systemCheckerItems .icon {
    float: right;
    height: 30px;
    display: none;
}

#systemCheckerItems .questionMark {
    float: right;
    width: 19px;
    height: 19px;
    cursor: pointer;
    display: none;
    background: url("images/system-checker/icon-question-mark.png") center center no-repeat;
}

#systemChecker .dialogFooter {
    margin: 0;
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
}

#systemChecker .checking {
    background: url('images/system-checker/icon-checking.gif') no-repeat;
    width: 43px;
    height: 8px;
    margin: 10px 0 0 298px;
    position: absolute;
}

#host-video-container {
    position: absolute;
}

.star {
    color: #e7131f;
}

.round {
    position: relative;
    z-index: auto;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

.round-3 {
    position: relative;
    z-index: auto;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

.round-5 {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

.round-10 {
    position: relative;
    z-index: auto;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

.round-12 {
    position: relative;
    z-index: auto;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    -khtml-border-radius: 12px;
    border-radius: 12px;
}

a {
    outline: none;
    cursor: pointer;
    display: inline-block;
    /*vertical-align: middle;*/
}

.header-container.section {
    background-color: transparent;
}

.section {
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 4px;
}

.section.section-no-border {
    border: 0 !important;
}

.section.section-no-radius {
    border-radius: 0 !important;
}

.section.section-transparent {
    background: transparent;
}

.sub-section {
    border: none;
    border-top: 1px solid #ccc;
    border-radius: 0;
    width: auto;
}

.section-header {
    border-bottom: solid 1px #ccc;
    width: 100%;
    height: auto;
    line-height: 16px;
    position: relative;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: flex;
    align-items: center;
    padding: 8px 8px;
    box-sizing: border-box;
}

.sub-section-header {
    margin: 15px 0 0 15px;
}

.section-arrow {
    width: 13px;
    height: 7px;
    background: url("images/arrow-down.png");
    margin-left: 22px;
    position: absolute;
    top: 0;
    left: 0;
}

.section-icon {
    width: 25px;
    height: 25px;
}

.section-title {
    margin-left: 15px;
    font-weight: bold;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    float: left;
    color: #333;
}

.logo {
    margin: 0 10px 0 0;
    /*margin: 3px 0 0 15px;*/
    /*position: absolute;*/
}

.footer-links {
    float: left;
}

.footer-links-container {
    float: right;
    margin: -3px 5px 0 0;
    text-align: right;
}

/*
 *  Drop down list style
*/
.dropdown-contents {
    visibility: hidden;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto
}

.dropdown.open .dropdown-contents {
    visibility: visible
}

.dropdown.striped .dropdown-contents li:nth-of-type(odd) {
    background-color: #f2f2f2
}

.touch .dropdown select, .no-js .dropdown select {
    height: 100%;
    width: 100%;
    z-index: 999
}

.dropdown select, .dropdown.mixed select {
    height: 1px;
    width: 1px;
    top: 0;
    left: 0;
    background: 0;
    -ms-filter: "alpha(opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    border: 0;
    position: absolute;
    z-index: 0
}

.dropdown-default {
    border: 2px solid #ccc;
    float: left;
    position: relative;
    cursor: pointer;
    min-width: 174px;
    z-index: 3
}

.no-touch .dropdown-default:hover, .no-touch .dropdown-default:hover .selected-text, .no-touch .dropdown-default:hover .dropdown-contents, .dropdown-default.focused {
    border-color: #5a5a5a !important
}

.error .dropdown-default, .dropdown-default.error, .error .dropdown-default .dropdown-contents, .dropdown-default.error .dropdown-contents, .error .dropdown-default:hover, .dropdown-default.error:hover, .error .dropdown-default:hover .dropdown-contents, .dropdown-default.error:hover .dropdown-contents {
    border-color: #f00 !important
}

.error .dropdown-default .selected-text, .dropdown-default.error .selected-text {
    color: #f00
}

.error .dropdown-default li, .dropdown-default.error li {
    color: #000
}

.dropdown-default .selected-text {
    color: #007dba;
    padding: 9px 8px 8px 8px;
    line-height: 1em;
    display: inline-block;
    float: left
}

.dropdown-default .dropdown-carat {
    position: relative;
    float: right;
    padding: 12px 8px 11px;
    border-left: 1px solid #CCC !important
}

.dropdown-carat span {
    display: inline-block;
    height: 8px;
    width: 12px;
}

.dropdown-default .dropdown-contents {
    top: 33px;
    background-color: #fff;
    overflow-x: hidden;
    left: -2px;
    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc
}

.dropdown-default.open {
    border-bottom: 0
}

.dropdown-default .dropdown-contents li {
    background: 0;
    border-top: 1px solid #ccc;
    line-height: 1em;
    padding: 9px 18px 8px 8px;
    margin: 0
}

.dropdown-default.open .dropdown-contents li:hover {
    background-color: #007dba;
    color: #fff
}

.dropdown-link {
    float: right;
    /*-moz-border-radius: 0 5px 0 5px;
    -webkit-border-radius: 0 5px 0 5px;
    border-radius: 0 5px 0 5px;*/
    position: relative;
    cursor: pointer;
    width: 238px;
}

.dropdown-link.critical {
    background-color: #d7410b;
    border-left: 2px solid #d7410b;
    border-right: 2px solid #d7410b
}

.dropdown-link.critical.focused, .dropdown-link.critical:hover {
    background-color: #c1401a;
    border-left: 2px solid #c1401a;
    border-right: 2px solid #c1401a
}

.dropdown-link.primary {
    background-color: #0096d6;
    border-left: 2px solid #0096d6;
    border-right: 2px solid #0096d6
}

.dropdown-link.primary.focused, .dropdown-link.primary:hover {
    background-color: #007dba;
    border-left: 2px solid #007dba;
    border-right: 2px solid #007dba
}

.dropdown-link.secondary {
    background-color: #5a5a5a;
    border-left: 2px solid #5a5a5a;
    border-right: 2px solid #5a5a5a
}

.dropdown-link.secondary.focused, .dropdown-link.secondary:hover {
    background-color: #767676;
    border-left: 2px solid #767676;
    border-right: 2px solid #767676
}

.dropdown-link.open {
    /*-moz-border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0*/
    z-index: 200;
}

.dropdown-link .selected-text {
    color: #fff;
    padding: 10px 12px 10px 15px;
    line-height: 1em;
    width: 160px;
    text-align: left;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
}

.dropdown-link.slim .selected-text {
    font: bold 1.2em Arial, serif;
    padding: 10px 12px 6px 10px
}

.dropdown-link .dropdown-carat {
    position: relative;
    float: right;
    padding: 14px 8px 12px;
    border-left: 1px solid #fff
}

.dropdown-link.secondary .dropdown-carat {
    border-left: 1px solid #ccc
}

.dropdown-link.slim .dropdown-carat {
    padding: 13px 11px 8px;
}

.dropdown-link.critical .dropdown-carat span, .dropdown-link.primary .dropdown-carat span {
    /*background-position: -4px -54px*/
}

.dropdown-link.secondary .dropdown-carat span {
    /*background-position: -4px -38px*/
}

.dropdown-link .dropdown-contents {
    background-color: #fff;
    overflow-x: hidden;
    text-align: left;
    left: -2px;
    top: 35px;
    border-left: 2px solid #5a5a5a;
    border-right: 2px solid #5a5a5a;
    border-bottom: 2px solid #5a5a5a;
}

.dropdown-link.slim .dropdown-contents {
    top: 28px
}

.dropdown-link .dropdown-contents li {
    background: 0;
    border-bottom: 1px solid #ccc;
    line-height: 1em;
    margin: 0;
    padding: 9px 18px 8px 8px;
    cursor: pointer
}

.dropdown-link.mixed .dropdown-contents li {
    cursor: default
}

.dropdown-link .dropdown-contents li:last-child {
    border-bottom: 0;
    padding-bottom: 9px
}

.dropdown-link.slim .dropdown-contents li {
    padding: 5px 18px 4px 8px
}

.dropdown-link.slim .dropdown-contents li:last-child {
    padding-bottom: 5px
}

.dropdown-link .dropdown-contents li:hover, .dropdown-link .dropdown-contents li:hover a {
    background-color: #0096d6
}

.dropdown-link.critical .dropdown-contents li:hover, .dropdown-link.critical .dropdown-contents li:hover a {
    background-color: #d7410b;
    color: #fff;
}

.dropdown-link.secondary .dropdown-contents li:hover, .dropdown-link.secondary .dropdown-contents li:hover a {
    background-color: #5a5a5a;
    color: #fff
}

.dropdown-link.mixed .dropdown-contents li:hover {
    background-color: #fff;
    color: inherit
}

.dropdown-contents li .icon {
    margin-right: 4px
}

.ui-sprite {
    background: url("images/down-arrow.png") no-repeat;
}

.hidden {
    visibility: hidden;
}

/**splash-top-box**/
#splash-top-box {
    width: 725px;
    height: 265px;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 15px;
}

.splash-top-box__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#splash-top-box img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.menu-container {
    width: 154px;
    position: absolute;
    right: 0;
}

.menu-container .menu-icon {
    background: white;
    width: 55px;
    height: 30px;
    margin-top: 10px;
    float: right;
    cursor: pointer;
    border: 1px solid #CCC;
    border-radius: 5px;
    position: relative;
}

.menu-container .menu-icon .setting-icon {
    width: 18px;
    position: absolute;
    top: 5px;
    left: 8px;
    opacity: 0.7;
}

.menu-container .menu-icon .setting-arrow {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 12px;
    opacity: 0.7;
}

.menus {
    font-size: 12px;
    border: 1px solid #CCC;
    border-radius: 3px;
    padding: 5px 0;
    background-color: #fff;
    width: 154px;
    float: right;
    color: #494949;
    display: none;
}

.menus a,
.menus a:link,
.menus a:active {
    width: 152px;
    text-decoration: none;
    color: #414141;
    padding: 8px 0 8px 24px;
}

.menus a:hover {
    background-color: #eee;
}

.menus div {
    margin: 13px 20px;
    cursor: pointer;
}

.menus hr {
    border: 1px solid #ccc;
    border-bottom: none;
}

.reminder-container {
    width: auto;
    height: 45px;
    padding: 5px;
    border-bottom: 1px dashed #ddd;
    cursor: pointer;
}

.reminder-container-bg {
    background: #fff;
}

.reminder-icon {
    float: left;
    margin-top: 5px;
    margin-left: 10px;
    height: 27px;
}

.reminder-text {
    margin-top: 10px;
    padding-left: 50px;
}

#welcome-box .content ul,
#register-welcome-text ul,
#webinar-detail ul,
#thank-you-text-box .content ul {
    list-style: disc;
    padding: 10px 40px;
}

#custom_question_text_section ul {
    list-style: disc;
}

#welcome-box .content ol,
#register-welcome-text ol,
#webinar-detail ol,
#thank-you-text-box .content ol {
    list-style: decimal;
    padding: 10px 40px;
}

#register-text p {
    line-height: 120%;
}

#btn-linkedin-login {
    background-size: cover;
    width: 100%;
    max-width: max-content;
    line-height: 18px;
    font-weight: bold;
    font-size: 80%;
    cursor: pointer;
    border: solid 1px #d6d6d6;
    border-radius: 11px;
    padding: 3px 12px 3px 8px;
    background: linear-gradient( 
360deg
, rgb(220 217 217) 0%, rgb(239 235 235) 44%, rgba(255,255,255,1) 100%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btn-linkedin-register {
    width: fit-content !important;
}

.linkedin-icon {
    width: 18%;
    height: 18%;
}

#language-box.legacy-login {
    font-size: 90%;
    width: 220px;
    margin-top: -10px;
    margin-bottom: 10px;
    background: #ddd url("../../event/images/down-arrow-black.png") no-repeat 199px;
    float: right;
}

#language-box:hover, #language-select:hover{
    cursor: pointer;
}

#language-box div {
    width: 190px;
}

#login-main #language-box {
    margin-bottom: 15px;
}

.gray-out {
    opacity: 0.5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
}



@media (max-width: 768px) {
    #btn-linkedin-login {
        font-size: 100%;
        justify-content: center;
    }
    .linkedin-icon {
        width: 14%;
        height: 14%;
    }
    
    
}

/* New Login styles */
body.new-login {
    font-family:'Barlow';
    font-size: 80%;
    display: none;
    --vwc-font-family-default: Barlow, sans-serif;
}

.new-login button {
    font-family: 'Barlow';
}

.header-container.new-login {
    height: 50px;
    position: relative;
    z-index: 29;
    line-height: 50px;
    font-size: 180%;
}

.new-login #splash-top-box {
    overflow: unset;
    height: auto;
}

.new-login #splash-top-box .banner {
    height: auto;
}

.new-login #splash-top-box .slick-list,
.new-login #splash-bottom-box .slick-list {
    max-height: 100%;
    border-radius: 1.5rem;
}

.new-login #splash-top-box,
.new-login #welcome-box,
.new-login #calendar-box,
.new-login #additional-text-box, {
    width: 100%;
    float: initial;
}

.new-login #welcome-box .content a,
.new-login #additional-text-box .content a {
    font-size: inherit;
}

.new-login #btn-linkedin-login {
    background: #000;
}

#language-box.new-login {
    width: 130.36px;
    position: absolute;
    top: 20px;
    right: 5rem;
}

#language-box.new-login #language-select {
    position: relative;
    height: auto;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-size: 1rem;
    background-color: #7D96A7;
    border-radius: 1rem;
    color: #000;
    cursor: pointer;
    box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.2);
    z-index: 30;
    background: rgba(255, 255, 255, 0.4);
}

#language-box.new-login::after {
    --size: 0.4rem;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none;
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;
    z-index: 30;
}

.cst-rounded,
.cst-rounded select,
.cst-rounded button ,
.cst-rounded .vwc-input__fake-file-input {
    border-radius: var(--vwc-size-radius-full);
}

@media (max-width: 768px) {
    #language-box.new-login::after {
        --size: 0.4rem;
        content: "";
        position: relative;
        right: 1.5rem;
        pointer-events: none;
        border-left: var(--size) solid transparent;
        border-right: var(--size) solid transparent;
        border-top: var(--size) solid black;
    }
}

.page-container.new-login #agenda-box-new .vwc-tooltip__trigger-wrapper {
    width: 100%;
}