
body {
    font-family: Manrope, sans-serif;
    color: var(--font-color);
    font-size: var(--font-size);
    font-weight: 400;
    transform: transale3d(0,0,0);
    scrollbar-gutter: stable both-edges;
}

a {
    color: var(--link-color);
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: none;
}

b, strong, .bold {
    font-family: Manrope, Arial, sans-serif;
    font-weight: 700;
}

.light {
    font-family: Manrope, Arial, sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Manrope", sans-serif;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    /*padding: 15px 0;*/
    border-bottom: 2px solid var(--secondary-gradient);
}

#header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "Manrope", sans-serif;
    min-width: 180px;
}

#header .logo a {
    color: #16507b;
}

#header .logo img {
    max-height: 75px;
    margin-top: 0px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 80%;
    margin-left: auto;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 14px 0 14px 5px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: var(--menu-link-color);
    transition: 0.3s;
    font-size: 13px;
    font-family: Manrope, sans-serif;
    text-align: center;
    min-width: 90px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a,.nav-menu a:hover svg .st0 {
    color: var(--menu-link-color-hover);
    fill:var(--menu-link-color-hover);
}
.nav-menu a:hover svg .st1,.nav-menu a:hover svg .st3{
    stroke: var(--menu-link-color-hover);
}
.nav-menu a:hover svg .st2{
    stroke: var(--menu-link-color-hover);
    fill: var(--menu-link-color-hover);
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
    transition: 0.3s;
    border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--menu-link-color);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: var(--menu-link-color-hover);
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 18px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: var(--menu-link-color);
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--menu-link-color);
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--menu-link-color-hover);
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(10, 38, 58, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    padding-top: 80px;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    color: var(--menu-link-color);
    font-family: "Manrope", sans-serif;
}

#hero h2 {
    color: #5e5e5e;
    margin: 10px 0 0 0;
    font-size: 22px;
}

#hero .btn-get-started {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: var(--menu-link-color-hover);
}

#hero .btn-get-started:hover {
    background: #3194db;
}

#hero .icon-boxes {
    margin-top: 100px;
}

#hero .icon-box {
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

#hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#hero .icon-box .title a {
    color: var(--menu-link-color);
    transition: 0.3s;
}

#hero .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

#hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: var(--menu-link-color-hover);
}

#hero .icon-box:hover {
    transform: scale(1.08);
}

#hero .icon-box:hover .title a {
    color: var(--menu-link-color-hover);
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px), (max-height: 500) {
    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
}

.section-bg {
    background-color: #f8fbfe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--menu-link-color);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #87c1ea;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: var(--menu-link-color-hover);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f8fbfe;
    min-height: 40px;
    margin-top: 80px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 62px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #1a5e90;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: var(--font-color);
    font-size: 14px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
    z-index: 160;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Manrope", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--menu-link-color);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--menu-link-color-hover);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--menu-link-color-hover);
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--font-color);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: var(--menu-link-color-hover);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #3194db;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: var(--font-color);
}
.modal{
    max-height: 93%;
}
.modal-body{
    max-height: 100%;
}
#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--menu-link-color-hover);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 5px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #3194db;
    color: #fff;
    text-decoration: none;
}


/*LIVEON*/

body {
    background-color: #d6d6d6;
    overflow-x: hidden;
}

.liveon-icon {
    display: block;
    padding: 20px;
    background: var(--main-gradient);
    border-radius: 10px 10px 0 10px;
    font-size: 15px;
    text-align: center;
}

#header {
    height: auto;
    padding: 0 10px;
    position: sticky;
    z-index: 151;
    top: 0;
}
.subscribed-msg {
    /*float: right;*/
    font-family: Manrope;
    font-weight: 300;
    margin-left: 15px;
}
#footer {
    height: 96px;
    top: 0px;
    position: relative;
}

#main {
    height: auto;
    position: relative;
    top: 0;

}
ul.share-buttons {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 10px;
}
ul.share-buttons li{
    display: inline;
}

ul.share-buttons li img{
    opacity: .5;
}

ul.share-buttons .sr-only{
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
#main.lobby {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 74vh;
    background-repeat: no-repeat;
    background-size: cover;
}

#main.session-single, #main.sponsors, #main.networking {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

#main.sponsors {
    padding-bottom: 10vh;
}


.rollup {
    width: 200px;
    height: auto;
    margin-right: 50px;
    margin-left: 50px;

}


.rollup.rol1 {
    margin-bottom: 30px;
}

.rollup.rol2 {
    margin-bottom: 50px;
}

.rollup.rol3 {
    margin-bottom: 80px;
}

.rollup.rol4 {
    margin-bottom: 50px;
}

.rollup.rol5 {
    margin-bottom: 30px;
}

.sessions-list h3.text-purple {
    font-size: 2.5rem;
    font-family: Manrope;
    font-weight: 700;
}

#welcomevideo {
    width: 500px;
    height: 47px;
    max-width: 100%;
    position: absolute;
    left: calc(50% - 250px);
    top: 120px;
    z-index: 10;

}

.event-right-body > div {
    margin-bottom: 10px;
}

.footer-logos img {
    max-width: 100%;
}

.footer-logos {
    width: 150px;
}

.row.subfooter {
    height: auto;
    top: 0;
    position: relative;
    padding: 6px 20px !important;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}
.network-btn svg {
    width: 36px;
    display: block;
    margin: 0 auto;
}
.sponsor-group img {
    max-height: 95px;
}

.sponsor-group.swiper-slide {
    display: flex;
    align-items: center;
    height: 95px;
    width: auto;
    margin: 0 10px;
    padding: 0 25px;
}

.ui-pnotify-text {
    font-size: 17px;
    font-weight: bold;
}

.sponsor-group.swiper-slide span {
    margin-right: 20px;
}

/*.sponsor-group.swiper-slide::after {*/
/*    content: "";*/
/*    height: 97px;*/
/*    width: 1px;*/
/*    background: #333;*/
/*    margin-left: 40px;*/
/*}*/

.sponsor {
    border-radius: 5px;
    background: #fff;
    padding: 0px;
    margin: 5px;
    /*max-width: 657px;*/
}
.sponsor-large {
    width: 98.7%;
}

.sponsor-big {
    width: 49%;
}


.sponsor-medium {
    width: 24.1%;
}

.sponsor-header {
    display: flex;
    padding: 15px;
    height: 120px;
    justify-content: space-between;
    position: relative;
}

.sponsor-header .liveon-icon {
    color: #fff;
}

.sponsor-header img {
    width: auto;
    height: 100px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.sponsor-body {
    padding: 15px;
    height: 200px;
}

.sponsor-body div {
    color: #333;
    font-size: 15px;
    font-weight: 300;
    text-align: justify;
    max-height: 150px;
    overflow: auto;
    padding: 0 10px 0 0;
}

.sponsors-list.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 10%;
}

.liveon-icon.horizontal-icon {
    padding: 5px 10px;
    height: 30px;
    display: flex;
    font-size: 13px;
    align-items: center;
    width: auto;
    line-height: 1;
}

.executives-grid .person-name {
    font-size: 17px;
}

.sponsor-medium .sponsor-header img {
    width: auto;
    height: 50px;
    margin-top: 50px;
}

.small-sponsors div {
   margin-top: 20px;
    height: auto;
    align-items: center;
    flex-wrap: wrap;
}

.small-sponsors .liveon-icon.horizontal-icon {
    color: #fff;
    padding: 10px;
    height: 40px;
    line-height: 1;
    width: 125px;
    justify-content: center;
    margin-right: 40px;
}

.small-sponsors {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    align-items: flex-start;
    width: 100%;
}

.small-sponsors div img {
    height: 50px;
    margin: 0 5px;
}

.sponsor-body > strong {
    color: #222;
    text-transform: none;
}

.sponsor-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /*min-height: 320px;*/
    /*height: 320px;*/
    margin: 0 5%;
    max-width: 90%;
}

.eventfile.col-md-6{
    margin: 5px 0;
}

.persons-grid.executives-grid {
    margin: 0 5.5%;
}

.sponsor-video {
    width: 50%;
}

.sponsor-data {
    width: 50%;
    background: var(--main-gradient);
    padding: 30px 15px 10px;
    color: #e6e7e8;
    font-size: 13px;
    height: 100%;
    /*min-height: 300px;*/
}

.sponsor-data .light {
    height: 115px;
}

.reddy {
    color: #ed1c24;
    margin: 0;
}

.sponsor-footer .reddy {
    font-size: 12px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.chat-button {
    background-image: url("ethos_img/chat-btn.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 112px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
}

.video-button {
    background-image: url("ethos_img/video-btn.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 112px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sponsor-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sponsor-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

h3.text-purple {
    margin: 8px auto 0;
    margin-bottom: 0px;
    padding: 5px 45px;
    max-width: max-content;
    height: auto;
    background: #fff;
    border-radius: 17px;
    color: var(--text-purple-color);
    text-align: center;
    box-shadow: 0 4px 4px #3e49540a;
}

h3.text-purple span {
    font-size: 15px;
    margin-left: 5px;
}
.awn-toast-content{
    max-width: 100%;
    overflow: auto;
}
.general-btn {
    /*background-image: url("ethos_img/general-btn.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    background: var(--main-gradient);
    display: inline-block;
    padding: 5px 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    border-radius: 10px 10px 0 10px;
}


.network-btn {
    background: transparent;
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 14px;
    padding: 10px;
    border-radius: 0;
    flex-wrap: wrap;
    color: var(--main-gradient)!important;
}
.network-btn img {
    display: block;
    margin: 0 auto;
    filter: grayscale();
}
#videomodal .modal-dialog {
    width: 1150px;
    max-width: 100%;
}
.person-card.participant.full-width {
    width: 100%;
}
.text-center .network-btn {
    text-transform: uppercase;
}

.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
    margin-left: 5px !important;
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
fieldset .text-muted.light.small {
    display: flex;
}
legend.bold {
    font-size: 15px;
    text-align: center;
}
fieldset img {
    width: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 -15px;
    border-radius: 3px;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 30px;
    z-index: 50;
}
.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn.is-active {
    /* box-shadow: 2px 2px 10px 3px #888; */
    font-weight: bold;
}

.general-btn + .general-btn {
    margin-left: 5px;
}

.persons-grid {
    display: flex;
    flex-wrap: wrap;
}

.person-card {
    display: block;
    width: 100%;
    margin: 4px;
    border-radius: 5px;
}
.session-small .left-session-body {
    display: block;
    width: 100%;
    text-align: center;
}
.person-header {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-header img,.face {
    display: block;
    width: 80px;
    /*height: auto;*/
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 15;
    position: relative;
    background: var(--main-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
}


div.face {
    height: 80px;
    font-size: 3vw;
    max-width: 100%;
    max-height: 80px;
    width: 80px;
    display: inline-block;
    text-align: center;
    position: relative;
}
.person-body {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    position: relative;
    top: -40px;
    z-index: 10;
    display: block;
    text-align: center;
    color: #333;
    height: auto;
    /*min-height: 250px;*/
    padding-top: 50px;
}
.person-header {
    width: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}
.person-status {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: auto;
    right: 15px;
    background: #fff;
    z-index: 100;
    bottom: 5px;
    border: 2px solid #fff;
}


.simple .person-status{
    bottom: 15px;
}

.person-offline {
    background: red;
}

.person-online {
    background: #00a500;
}

.general-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    left: 0;
    flex-wrap: wrap;
}

.sessions-list-banner img {
    max-width: 100%;
}

.session-header {
    color: #fff;
    padding: 10px 15px;
    /*position: sticky;*/
    /*top: 95px;*/
    /*z-index: 90;*/
}

.session-title {
    font-size: 17px;
    margin: 0;
}

.sessions-list {
    padding: 15px;
}

.session-body {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.left-session-body {
    display: flex;
    width: 70%;
}

.session-info img, .session-data img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.session-info span {
    color: #888;
    font-size: 13px;
}

.session-info strong {
    font-size: 14px;
}

.session-info {
    font-size: 19px;
}

.session-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-wrap: wrap;
    width: 80px;
}

.session-img img {
    border-radius: 10px 10px 0 10px;
    display: block;
    width: 80px;
}

.right-session-body {
    display: flex;
    align-items: center;
    /*z-index: 1;*/
    position: relative;
}

.session-data span {
    color: gray;
    font-size: 15px;
    display: block;
}

.session-single-banner, .sponsor-single-banner {
    display: flex;
    align-items: center;
    /* background: rgb(70,0,52); */
    /* background: linear-gradient(90deg, rgba(70,0,52,1) 0%, rgba(120,28,94,1) 100%); */
    background: var(--banner-bg);
    padding: 0 5%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.session-single-banner img {
    width: 140px;
    padding: 40px;
    box-sizing: unset;
    margin-top: -10px;
    margin-bottom: 0px;
}

.session-single-banner div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.session-single-banner div * {
    display: block;
    width: 100%;
    color: #fff;
}

.session-single-banner div em {
    font-size: 22px;
    font-weight: 300;
}

.session-single-banner div b {
    margin-top: 15px;
    margin-bottom: 15px;
}

h3 {
    font-family: Manrope;
    font-weight: 700;
}

.event-info {
    display: flex;
    width: 700px;
    margin: 25px auto 0;
}

.event-left-body, .event-right-body {
    min-height: 250px;
}

.session-data {
    margin-right: 20px;
    text-align: center;
}

.event-left {
    width: 30%;
}

.event-left-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.event-left-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 15;
}

.event-left-body {
    background: var(--main-gradient);
    border-radius: 5px;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    color: #fff;
    position: relative;
    top: -40px;
    z-index: 10;
    padding-top: 50px;
}

.event-left-body div {
    font-size: 13px;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.event-left-body div img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


.event-right {
    width: 68%;
    margin-left: 2%;
}

.event-right-header {
    height: 80px;
}

.event-right-body {
    background: var(--main-gradient);
    border-radius: 5px;
    top: -40px;
    position: relative;

}

.event-starts-in img {
    width: 80px;
    display: inline-block;
    margin: 30px;
}

.event-starts-in {
    color: #fff;
}

.rounded-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.periptero {
    height: 100px;
}

.periptero * {
    display: block;
    text-align: center;
    color: #fff;
}

.periptero .periptero-num {
    font-size: 30px;
    font-weight: 300
}

.periptero span {
    display: block;
    font-size: 15px;
    line-height: 1;
    margin-top: -5px;
    margin-bottom: 5px;
}

.panel {
    width: 100%;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    top: -30px;
    min-height: 80px;
}

.panel-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 50px;
    z-index: 15;
}

.panel-body {
    background: var(--main-gradient);
    border-radius: 5px;
    position: relative;
    top: -70px;
    z-index: 10;
    padding: 15px;
}

.event-arada {
    display: flex;
    color: #fff;
    align-items: center;
    margin-bottom: 15px;
    white-space: normal;
}

.event-arada div span {
    display: block;
    font-size: 13px;
}

.event-arada img {
    margin-right: 15px;
    flex-shrink: 0;
    flex-grow: 0;
}

.panel-attending {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.syntonistis-name {
    font-size: 15px !important;
    font-family: Manrope;
    font-weight: 300;
}

#main.stream_page{
    background: #fafafa;
}

#mainplayerview {

    /* height: 82vh; */
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;


}
#mainplayerview .white-box{
    padding: 15px;
}


.lang-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.now-playing{
    /*margin-top: 3px;*/
}
.now-playing .toast-header {
    justify-content: space-between;
}

.now-playing .light.title {
    font-size: 17px;
}
.now-playing .subtitle {
    font-size: 13px;
}
.syntonistis-omilitis-name {
    font-size: 13px;
}
.session-stats {
    color: #fff;
    font-size: 17px;
    font-family: Manrope;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}
.session-stats span {
    font-size: 28px;
}

.btn-liveon {
    background: var(--main-gradient);
    border: 0;
    border-radius: 10px 10px 0 10px;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    box-shadow:none!important;
}
.btn-liveon.is-active{
    background: var(--secondary-gradient);
    font-weight: 700;
    text-decoration: underline;
}

.btn-liveon + .btn-liveon {
    margin-left: 10px;
}
.syntonistis-idiotita {
    font-size: 13px;
}

.omilitis-name {
    font-size: 15px !important;
}

.omilitis-idiotita {
    font-size: 12px;
}

.network-grid {
    padding: 15px;
}

.persons-grid.networking-grid {
    margin-top: 15px;
}

.network-grid .network-btn.is-active {
    opacity: 1;
    font-weight: bold;
}

.network-grid .network-btn {
    opacity: .8;
}

.menu-btn {
    display: none;
}

.sponsor-single-banner img {
    max-width: 100%;
}

#chatapp {
    height: auto;

}

#chatfeed {
    height: auto;
    max-height: 80%;

    padding: 15px;
    overflow: auto;
    min-height: 120px;

}

#chatinput {
    height: 40px;
    position: relative;
    margin-right: 10px;
}

#chatinputfield {
    height: 40px;
    width: 100%;
    line-height: 40px;
    font-size: 17px;
}

#chatheader {
    text-align: center;
    font-weight: bold;
    padding: 10px;
}

.bubble {
    display: block;
    width: 100%;
}

.bubble em {
    display: block;
    font-size: 10px;
    color: #333;
}

.bubble span {
    background: #eee;
    display: inline-block;
    font-size: 13px;
    color: #333;
    padding: 5px;
    border-radius: 10px;
    font-family: Manrope;
    font-weight: 300;
}

.bubble.pull-right {
    text-align: right;
}

.bubble.pull-left {
    text-align: left;
}

#chatinput button {
    position: absolute;
    right: 0;
    top: 0;
}

#chatinput button {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    border: 1px solid;
    border-left: 1px solid #ccc;
}

#chatinputfield {
    border: 1px solid;
    padding-right: 40px;
}

#clockdiv > div:nth-child(4n) {
    display: none;
}

#localVideo {
    max-width: 20%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}

#remoteVideo {
    width: 100%;
    position: relative;
    z-index: 0;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.sponsor-logo {
    display: block;
    background: #fff;
}

.sponsor-logo img {
    width: 190px;
}

.sponsor-name {
    text-transform: none;
    font-size: 40px;
    font-family: Manrope;
    font-weight: 300;
    color: inherit;
}

#welcomevideo::before {
    content: "";
    width: 10px;
    background: black;
    height: 122px;
    display: block;
    position: absolute;
    top: -75px;
    left: -10px;
    border-radius: 0 0 0 3px;
}

#welcomevideo::after {
    content: "";
    width: 10px;
    background: black;
    height: 122px;
    display: block;
    position: absolute;
    top: -75px;
    right: -10px;
    border-radius: 0 0 3px 0;
}


.swiper-button-prev {
    background: var(--button-prev);
    width: 55px !important;
    height: 55px !important;
    background-size: contain;
}

.swiper-button-next {
    background:var(--button-next);
    width: 55px !important;
    height: 55px !important;
    background-size: contain;
}

.swiper-button-prev::after, .swiper-button-next::after {
    display: none !important;
}

#faq-content {
    padding: 20px 10%;
}

#faq-content h2 {
    display: block;
    font-size: 25px;
    border-bottom: 1px solid #d4d4d4;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

#faq-content h2::before {
    content: "+";
    margin: 10px;
    display: inline-block;
}

#faq-content h2.isopen::before {
    content: "-";
    margin: 10px;
    display: inline-block;
}
.liveondrop .badge.badge-warning {
    /*position: absolute;*/
    top: 0;
    right: 20px;
    color: #fff;
}
#faq-content p {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
}
#faq-content blockquote {
    padding: 20px;
    margin-top: -20px;
    margin-bottom: -5px;
    font-weight: bold;
    text-align: center;
    background: #fafafa;
    margin-left: 10;
}
.sessions-list-banner {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

#faq-content .sponsor-body {
    display: none;
}

#faq-content h2 + div {
    display: none;
}

#faq-content img {
    width: 200px;
    height: 200px;
    margin: auto;
    object-fit: fill;
}
.rollup img {
    max-width: 100%;
}
.day-slots .select-day{
    white-space: nowrap;
}
.nav-menu .liveon-icon {
    display: flex;
    width: 65px;
    background: #fff;
    border-radius: 0;
    font-size: 15px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.eventfile a {
    padding: 15px 10px;
    display: block;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 5px 1px #ccc;
    text-align: center;
}

.eventfile a:hover {
    border: 1px solid #bbb;
}

.nav-menu ul ul {
    display: none;
    position: absolute;
    padding: 15px;
    background: #fff;
    width: auto;
    right: 0;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #c4c4c4;
    margin: 0px 10px 0;
    border-bottom: 1px solid transparent;
    color: #fff;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: var(--text-purple-color);
    border-bottom: 1px solid transparent;
    color: #fff;
}
#dayTabs {
    margin-bottom: -14px;
}
.nav-tabs{
    border-bottom: 0px solid var(--main-gradient);
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
     border-bottom: 1px solid var(--main-gradient);
}

/*#videomodal {*/
/*    position: relative;*/
/*}*/

/*!*.modal-header{*!*/
/*!*    padding: 5px;*!*/
/*!*    font-size: 14px;*!*/
/*!*    cursor: move;*!*/
/*!*    color:#444;*!*/
/*!*    text-shadow: 1px 0 0px #eee;*!*/
/*!*    vertical-align: middle;*!*/

/*!*}*!*/

/*!*.modal-dialog {*!*/
/*!*    position: fixed;*!*/
/*!*    width: 100%;*!*/
/*!*    margin: 0;*!*/
/*!*    padding: 10px;*!*/
/*!*}*!*/

@media screen and (max-width: 1230px){

    .nav-menu ul ul {
        width: 100%;
    }

    .menu-btn .badge.badge-warning.text-white {
        position: absolute;
        width: 16px;
        height: 16px;
        background: #ffc107;
        border: 1px solid #ffc107;
        top: 15px;
        right: 0;
    }
    .liveondrop .badge.badge-warning{
        right: auto;
    }
}

.nav-menu ul ul li {
    display: block;
    margin: 5px 0;
}

#nettitle {
    text-transform: capitalize;
}

a {
    cursor: pointer;
}

.sponsor-data .light {
    height: 215px;
    overflow: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

#chatheader small {
    display: flex;
    justify-content: space-between;
}

.desktop-slide a {
    display: block;
    margin: 0 5px;
}

#chatheader small b {
    text-align: center;
    font-size: 12px;
}

.session-title.bold .person-status {
    position: absolute;
    left: auto;
    top: 10px;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
}

.session-title.bold .person-status::before {
    content: "LiveOn ΤΩΡΑ!";
    position: absolute;
    left: -115px;
}

#chatheader small b em {
    font-family: Manrope;
    font-weight: 300;
    display: block;
    font-size: 12px;
}

#localVideo, #remoteVideo {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

#videochat label {
    position: relative;
    top: 0;
    left: 0;
    font-size: 12px;
    margin: 0;
}

.general-btn[disabled] {
    /*opacity: .5;*/
    /*pointer-events: none;*/
}

#footer .sponsors.swiper-container-initialized.swiper-container-horizontal {
    margin-left: 90px;
    margin-right: 90px;
    overflow: hidden;
}

.sponsor-single-banner p {
    margin-bottom: 30px !important;
    position: relative;
}

#videomsg {
    display: none;
}

.bigger {
    width: 47px;
    height: 47px;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0 auto;
}

.sponsor-group.swiper-slide span {
    margin-right: 40px;
    margin-left: -35px;
    text-transform: lowercase;
    width: 110px;
}

br + em.small.light {
    margin-top: 15px;
    display: inline-block;
}

.sessions-list-banner {
    margin-top: 5px;
}

.face {
    background-image: url("ethos_img/ethoseventslogo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100%;
    max-height: 100%;
    font-size: 1vw;
}

.swiper-button-next, .swiper-button-prev {
    top: 45% !important;
}

.liveon-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    max-width: unset;
    position: absolute;
}

.liveon-icon svg path{
    /*fill: #fff;*/
}

.person-card .person-body {
    overflow: hidden;
}

.person-card .person-body:hover {
    overflow: auto;
}

.session-img {
    min-width: 80px;
}

.sponsors-group {
    width: 100%;
    padding: 8px 5px 8px 0;
    max-height: 135vh;
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
}

.sponsor-group-item {
    border-radius: 10px 10px 0 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 3px 5px;
    background: #fff;
    width: 44%;
    font-size: 12px;
    font-family: Manrope;
    font-weight: 300;
    margin: 3%;
}
.btn-liveon:hover{
    color: #fff;
}
.sponsors-group img {
    max-width: 100%;
    max-height: 65px;
    display: block;
    margin: 0 auto;
}

#clockdiv {
    font-family: sans-serif;
    color: #fff;
    display: block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    margin: 0 0 30px;
}
#sponsors-content .sponsor {
    border: 1px solid;
}

#clockdiv > div {
    padding: 10px;
    border-radius: 3px;
    background: rgba(50, 50, 50, .3);
    display: inline-block;
}

#clockdiv div > span {
    padding: 15px;
    border-radius: 3px;
    background: rgba(50, 50, 50, .3);
    display: inline-block;
}

.smalltext {
    padding-top: 5px;
    font-size: 16px;
}

.person-card.infokiosk.participant .person-body {
    /*min-height: 290px;*/

}

#faq-content {
    padding: 30px !important;
}

.person-isa {
    position: absolute;
    left: 10px;
    top: 7px;
    font-size: 12px;
}

.event-left .person-card {
    width: 100%;
    margin-top: 0;
}

.event-left .person-body {
    display: block;
    min-height: 320px !important;
}

@media screen and (max-height: 800px) {
    #welcomevideo {
        top: 110px;
    }

    .rol1, .rol5 {
        margin-bottom: 15px !important;
    }

    .rol2, .rol4 {
        margin-bottom: 35px !important;
    }

    .rol3 {
        margin-bottom: 60px !important;
    }

    #mainplayerview {
        /*height: 95vh;*/
    }

}

.sponsors-mobile {
    display: none;
}


.swal2-popup {

    width: 20em !important;
    max-width: 100% !important;
    padding: 10px !important;
    font-size: 16px !important;
}

.swal2-icon {
    margin: 10px auto !important;
    width: 3em !important;
    height: 3em !important;
}

.swal2-title {
    font-size: 1.3em !important;
}

.swal2-content, .swal2-styled.swal2-confirm, .swal2-styled.swal2-cancel {
    font-size: .9em !important;
}

.swal2-icon .swal2-icon-content {
    font-size: 1.6em !important;
}

.swal2-container.swal2-center {
    /*align-items: flex-end !important;*/
    /*justify-content: flex-end !important;*/
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
    margin: 0 !important;
}

#remoteVideo {
    max-height: 500px;
}

#localVideo {
    max-height: 80px;
}
#sessionform {
    width: 100%;
}
.viewform {
    width: 100%;
    display: block;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    position:relative;
}

.viewform > * {
    width: 100%;
    height: 70px;

    display: flex;
    align-content: center;
    margin: 0px;

}

.viewform p {
    margin: 10px 10px 10px 0;
    width: 200px;
    border-radius: 15px 15px 0px 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    background: var(--main-gradient);
    color: #fff;
    display: none;
}

.viewform button {
    margin: 15px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope;
    font-weight: 300;
    height: 50px;
    position: absolute;
    z-index: 1;
    top: 0;
    height: auto;
    right: 0;
    text-transform: lowercase;
}
.footer-logos.text-center.politikidesktop a {
    font-weight: bold;
    margin: 0 10px;
}
.break-desktop {
    display: block;
}
.viewform button:hover {
    color: #fff;
}

/*.viewform::after {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    left: auto;*/
/*    top: 0;*/
/*    right: 16px;*/
/*    bottom: 0;*/
/*    width: 200px;*/
/*    height: 70px;*/
/*    background: #fff;*/
/*    top: 5px;*/
/*    z-index: 0;*/
/*}*/
#sponsors-content .sponsors-list.sponsors-grid{
    padding: 0;
}
.informative {
    padding: 15px 15px 15px 50px;
    background: #fff;
    border-radius: 10px;
    width: 80%;
    margin: 20px auto;
    position: relative;
}

.informative::after {
    content: "";
    background: url("/ethos_img/info.svg");
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
}
.viewform textarea {
    background: #fff;
    padding-right: 155px;
    margin-top: 15px;
    border: 1px solid #ccc;
}

.politikimobile {
    display: none;
}

.usernamespan {
    display: inline-block;
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.reddy.infokioskready {
    padding: 20px;
}

#faq-content h2 + div {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    word-break: break-word;
}

.sponsor-data .general-btn {
    padding: 10px;
    font-family: Manrope;
    font-weight: 700;
}

.persons-grid.executives-grid .person-card {
    width: 285px;
}
.session-playing > strong {
    display: block;
    text-align: center;
    margin: 15px;
}
@media screen and (min-width: 1025px) {
    .sponsor-data .light {
        height: 100%;
        overflow: auto;
        margin-bottom: 1%;
        padding-right: 10px;
    }

}

@media screen and (max-width: 1230px) {
    .informative{
        width: 98%;
        line-height: 1.2;
    }
    .sponsors-group{
        max-height: unset;
        overflow: visible;
    }
    .break-desktop {
        display: none;
    }
    .viewform button {
        padding: 5px;
        width: 90%;
        margin: 5%;
        position: relative;
    }

    .now-playing{
        min-height:unset;
    }

    .viewform textarea {
        padding: 5px;
        z-index: 100;
        position: relative;
        margin: 0;
        box-sizing: border-box;
        width: 100%;
        height: auto;
    }

    .viewform{
        display: block;
    }

    .viewform::after{
        display: none;
    }
    .session-info {
        text-align: center;
    }
    .session-stats {
        text-align: center;
    }
    .session-playing > strong {
        display: block;
        text-align: center;
        padding: 15px;
    }

    .viewform p {
        margin: 5%;
        width: 90%;
        border-radius: 15px 15px 0px 15px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
        background: var(--main-gradient);
        color: #fff;
    }

    .sponsor-medium {
        width: 100%;
        display: block;
    }

    .small-sponsors .liveon-icon.horizontal-icon {
        color: #fff;
        padding: 10px;
        height: 40px;
        line-height: 1;
        width: 125px;
        justify-content: center;
        margin-right: 40px;
        margin-bottom: 20px;
    }

    .sponsor-medium {
        width: 100%;
    }

    .sponsor-medium .sponsor-header {
        display: block;
    }

    .sponsor-medium .liveon-icon.horizontal-icon {
        display: block;
        height: auto;
        margin-bottom: 5px;
    }

    .sponsor-medium .sponsor-header img {
        width: auto;
        height: 70px;
        margin-top: 0;
        display: block;
        position: relative;
        bottom: auto;
        margin: auto;
    }

    .nav-menu ul ul {
        padding-left: 90px;
    }

    .nav-menu ul ul li {
        display: block;
        margin: 30px 0;

    }

    .nav-menu ul ul li a {
        font-family: Manrope;
        font-weight: 700;
    }

    .usernamespan {
        max-width: unset;
    }

    #header .logo img {
        margin-top: 0;
    }

    .sponsors-mobile {
        display: block;
    }

    .sponsors-desktop {
        display: none;
    }

    #header, #main.lobby {
        height: auto;
    }

    #main.lobby {
        display: block;
    }

    #footer {
        max-width: 100%;
        overflow: hidden;
    }

    #welcomevideo {
        width: 100%;
        min-height: 47px;
        max-width: 100%;
        position: relative;
        left: 0;
        top: 0;
        z-index: 10;
        background-image: url("ethos_img/welcomevideobtn.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }

    #welcomevideo::before,#welcomevideo::after{
        display: none;
    }

    .rollup {
        display: block;
        width: 100%;
        margin: 0;
        height: auto;
        background: none;
        margin-bottom: 0 !important;
    }

    .rollup.rol1 {
        margin-top: 0;
    }

    .sponsor-body {
        /*display: none;*/
    }

    .session-action .liveon-icon {
        display: inline-block;
        margin: 10px 0;
    }

    .menu-btn {
        width: 40px;
        height: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        cursor: pointer;
        margin-left: auto;
    }
    .nav-menu {
        width: 100%;
        justify-content: center;
        display: flex;
        position: absolute;
        top: 10px;
        left: 0;
    }

    .menu-btn span {
        display: block;
        width: 100%;
        height: 5px;
        background: #888;
    }

    .sponsor-group img {
        max-height: 75px;
    }
    .politikimobile a {
        font-weight: 700;
    }

    .nav-menu > ul {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 100;
        background: #fff;
        top: 75px;
        border-bottom: 2px solid #ccc;
        box-shadow: 0 15px 15px 0 #888;
        border-top: 1px solid #ccc;
    }

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 6px 10px;
        margin: 0 0 0px;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a {
        display: flex;
        position: relative;
        color: var(--menu-link-color);
        transition: 0.3s;
        font-size: 14px;
        font-family: Manrope, sans-serif;
        align-items: center;
        justify-content: flex-start;
        font-weight: 700;

    }

    .nav-menu a span {
        margin-right: 15px;
    }

    .session-body {
        display: block;
    }

    .left-session-body {
        display: block;
    }

    .right-session-body {
        display: block;
        text-align: center;
    }

    .event-info {
        display: block;
        width: 100%;
        margin: 40px auto;
    }

    .panel-body {

        padding-top: 55px;
    }

    .panel-header {
        display: block;
        text-align: center;
        justify-content: flex-end;
        position: relative;
        top: -30px;
        z-index: 15;
    }

    .person-card {
        display: block;
        width: 100%;
        margin: 4px;
        border-radius: 5px;
    }

    .sponsors-list.sponsors-grid {
        padding: 0;
    }




    .sponsor-big {
        width: 100%;
    }

    .sponsor-medium {
        width: 47%;
    }

    .small-sponsors {
        display: block;
        margin: 5px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .sponsor-info {
        width: 100%;
        display: block;
        height: auto;
        min-height: unset;
    }

    .sponsor-video, .sponsor-data {
        width: 100%;
        height: auto !important;
    }

    h3.text-purple {
        display: block;
        text-align: center;
    }

    h3.text-purple span {
        display: block;
        margin: 0 auto;
    }

    .network-grid div {
        display: block;
        width: 100%;
        text-align: center;
    }

    .network-grid .network-btn {
        margin: 10px auto;
        line-height: 3;
    }

    .row.subfooter {
        height: auto;
    }

    .rollup img {

        margin: 0;
        padding: 0
    }

    .left-session-body {
        width: 100%;
    }

    .event-left {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .event-right {
        width: 100%;
        margin: 0;
        padding: 15px;
    }

    footer .sponsors.swiper-container-initialized.swiper-container-horizontal {
        margin-left: 50px;
        margin-right: 67px;
        overflow: hidden;
    }

    .small-sponsors {
        margin: 5px;
    }

    .sponsor-info {
        margin: 0;
        padding: 15px;
    }

    .sponsor-info {
        margin: 5%;
        padding: 15px;
        box-sizing: border-box;
        max-width: 90%;
    }

    .sponsor-group.swiper-slide span {
        margin-right: 10px;
        margin-left: -10px;
        /* width: 100%; */
        display: block;
        text-align: left;
    }

    .small-sponsors {
        display: block;
    }

    .small-sponsors div {
        display: block;
        width: 100%;
        height: auto;
        align-items: center;
    }

    .nav-menu .liveon-icon {
        margin: 0 15px 0 0;
    }

    .liveondrop img {
        margin: 0 22px 0 10px;
    }

    .sponsor-group.swiper-slide::after {
        display: none;
    }

    .sponsor-group.swiper-slide {
        padding: 0 10px;
        display: block;
    }

    .sponsor-group.swiper-slide {
        /*display: flex;*/
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        margin-top: 5px;
        text-align: center;
    }


    #footer {
        height: auto;
    }

    .b24-widget-button-block {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
    }

    .b24-widget-button-inner-block {
        height: 50px !important;
    }

    .b24-widget-button-inner-mask {
        display: none !important;
    }

    .footer-logos.text-center.politikidesktop {
        display: none !important;
    }

    .politikimobile {
        width: 100%;
        text-align: center;
        display: block;
        height: auto;
    }

    .politikimobile a {
        display: block;
        text-align: center;
        margin: 5px 0;
    }

    .nav-menu {
        display: none;
    }

    #header .logo img {
        max-height: 65px;
        margin-top: 0px;
    }
    #header{
        padding: 10px;
    }


    #main.stream_page {
        max-width: 100%;
        overflow: hidden;
    }
    .subscribed-msg {
        float: right;
        font-family: Manrope;
        font-weight: 300;
        font-size: 9px;
        padding-top: 5px;
    }
    .sponsor-header .liveon-icon{
        font-size: 12px;
    }
    .small-sponsors div img {
        height: 65px;
        margin: 0 5px;
    }
    div#mainplayerview .row {
        margin: 0;
        overflow: hidden;
        max-width: 100%;
        display: block;
    }
    /*.person-card.attendee.all.participant {*/
    /*    margin-bottom: -40px;*/
    /*}*/
    .sponsors-mobile{
        height: 140px;
    }
    .sponsor-group.swiper-slide span {
        margin-right: 40px;
        margin-left: -35px;
        text-transform: lowercase;
        display: block;
        width: 180px;
        text-align: center;
    }
    .sponsor-group img {
        max-height: 80px;
    }
    .sponsor-group.swiper-slide{
        margin-left: -7px;
    }
    .sponsor-group.swiper-slide span{
        margin-left: 0;
        margin-right: 0;
    }

    #welcomevideo {
        background-image: url("../../ethos_img/welcomebannermob.jpg") !important;
        width: 100%;
        min-height: 55px;
        max-width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }

    #header{
        position: relative;

    }
    .person-isa {
        position: absolute;
        left: auto;
        top: 0;
        font-size: 12px;
        right: 30px;
    }
}
.small-sponsors.cp div img {
    height: 65px;
}


a.general-btn:hover{
    color: #d3a809;
}

#filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    box-sizing: border-box;
    margin: 0 10px;
}
#filter-text {
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    width: 320px;
    margin-right: auto;
    background: url("/search_icon.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
#log-content .list-group-item {
    font-weight: bold;
}
.change-view{
    height: 24px;
    width: 24px;
    margin: 0 5px;
    opacity: .5;
}
.change-view.is-active{
    opacity: 1;
    pointer-events: none;
}
.change-view g{
    fill: var(--text-purple-color);
}

#filter-text + .change-view {
    margin-left: 50px;
}
.session-info span strong {
    color: var(--text-purple-color);
    font-size: 16px;
}

#welcomevideo{
    /*display: none!important;*/
}
fieldset .text-muted.light.small {
    display: flex;
    margin: 10px 0;
}

.text-muted.light.small:hover {
    color: #000 !important;
}
.alert-warning{
    /*background: #3489aa;*/
    /*color: #fff;*/
}
.persons-grid.networking-grid.simple .person-card {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin: 5px auto;
}

@media screen and (max-width:1024px){
    /*.persons-grid.networking-grid.simple .person-card{*/
    /*    width: 90%;*/
    /*}*/
}
.connects.general-btn {
    color: #fff;
}
.simple .person-body{
    width: 100%;
    height: auto!important;
}

.oloi{

}

.oloi:hover{
}

.network-btn:hover,.sponsor-data a{
    color: #d3a809;
}

.simple .person-header,.simple .person-body{
    display: block;
    background: #fff;
    min-height: unset;
    top: auto;
    padding: 0;
    color:#444;
    border-radius: 0;
    text-align: left;
    display: flex;
}


.simple .general-btns{
    justify-content: flex-end;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
    margin: 20px;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--text-purple-color);
    border-color: var(--text-purple-color);
}
.session-action .liveon-icon {
    padding: 8px;
    margin-bottom: 5px;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--link-color);
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.persons-grid.networking-grid nav {
    width: 100%;
}
.tab-pane {
    padding: 20px 0;
}
.addeventatc[aria-expanded="false"] {
    border-color: #ccc !important;
    z-index: 149 !important;
    font-size: 13px !important;
}

.addeventatc[aria-expanded='true']{
    z-index: 99999!important;
}

#videochat.loading {
    width: 100%;
    height: 100%;
    margin-top: 0;
    top: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
}
.nav-tabs .nav-link {
    font-weight: bold;
    font-size: 17px;
}

@media screen and (max-width: 1024px){
    #dayTabs li {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    #filters-bar{
        flex-wrap: wrap;
    }


    .simple .person-header {
        width: 39%;
    }
    .simple .general-btns {
        justify-content: right;
        position: relative;
        margin: 0;
        padding: 0;
    }
    .simple .general-btns .network-btn {
        padding: 5px;
        margin: 0;
    }
    .simple .person-isa {
        left: auto;
        right: 30px;
        top: 0px;
    }
    /*.person-status{*/
    /*    top:5px*/
    /*}*/

    .session-header{
        top:0
    }
    #header .nav-menu.d-lg-block{
        display: none!important;
    }

    .nav-menu ul ul{
        position: relative;
    }
}


#stage-list .session-info a {
    display: block;
    background: #fff;
    margin: 5px;
    border-radius: 10px 10px 0 10px;
    padding: 10px;
    font-size: 13px;
}
#stage-list .session-info span {
    display: inline-block;
    width: 75%;
    vertical-align: middle;
    padding-left: 10px;
}
#stage-list {
    max-height: 80vh;
    overflow: auto;
    margin-top: 15px;
}
#stage-list .session-info a.is-active {
    background: var(--main-gradient);
    color: #fff;
}
#stage-list .session-info a.is-active *{
    color: #fff;
}
.ui-pnotify.ui-pnotify-fade-normal.ui-pnotify.ui-pnotify-move{
    top:100px
}

.questions-list.toast {
    min-height: 40vh;

    padding: 5px;
    /*margin-top: 15px;*/
    max-height: 45vh;
}
.questions-list.toast .toast-body {
    overflow: auto;
    max-height: 35vh;
}
.questions-list .bubble {
    border-radius: 10px 10px 0 10px;
    background: #fff;
    padding: 5px;
    margin: 5px 0;
    font-size: 80%;
}
.stage-tabs {
    padding: 0;
    margin: 0 0 5px 0;
    position: relative;
    z-index: 10;
    display: flex;
}
.stage-tabs li {
    display: block;
}
.stage-tabs li a{
    /*background: var(--main-gradient);*/
    /*display: block;*/
    /*padding: 5px;*/
    /*color:#fff;*/
    /*border-radius: 10px 10px 0;*/
}
.btn.visually-hidden {
    margin: -4px;
}
.stage-tabs li.active a{
    background: #fff;
    color: #333;
    display: block;
}
.btn-like {
    display: inline-block;
    position: relative;
    /*margin-right: 35px;*/
}

.btn-like svg {
    width: 20px;
    height: 20px;
    margin-left: 0;
    z-index: 9;
    position: relative;
}
.btn-like span {
    display: inline-block;
    float: right;
    margin-top: 2px;
    padding: 0 5px 0 35px;
    background: #eee;
    color: #000;
    border-radius: 5px 5px 0;
    position: absolute;
    left: 0;
}



.card {
    padding-top: 20px;
    margin: 10px 0 20px 0;
    background-color: rgba(214, 224, 226, 0.2);
    border-top-width: 0;
    border-bottom-width: 2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card .card-heading {
    padding: 0 20px;
    margin: 0;
}

.card .card-heading.simple {
    font-size: 20px;
    font-weight: 300;
    color: #777;
    border-bottom: 1px solid #e5e5e5;
}

.card .card-heading.image img {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-right: 15px;
    vertical-align: top;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.card .card-heading.image .card-heading-header {
    display: inline-block;
    vertical-align: top;
}

.card .card-heading.image .card-heading-header h3 {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    color: #262626;
}

.card .card-heading.image .card-heading-header span {
    font-size: 12px;
    color: #999999;
}

.card .card-body {
    padding: 0 20px;
    margin-top: 20px;
}

.card .card-media {
    padding: 0 20px;
    margin: 0 -14px;
}

.card .card-media img {
    max-width: 100%;
    max-height: 100%;
}

.card .card-actions {
    min-height: 30px;
    padding: 0 20px 20px 20px;
    margin: 20px 0 0 0;
}

.card .card-comments {
    padding: 20px;
    margin: 0;
    background-color: #f8f8f8;
}

.card .card-comments .comments-collapse-toggle {
    padding: 0;
    margin: 0 20px 12px 20px;
}

.card .card-comments .comments-collapse-toggle a,
.card .card-comments .comments-collapse-toggle span {
    padding-right: 5px;
    overflow: hidden;
    font-size: 12px;
    color: #999;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-comments .media-heading {
    font-size: 13px;
    font-weight: bold;
}

.card.people {
    position: relative;
    display: inline-block;
    width: 170px;
    height: 300px;
    padding-top: 0;
    margin-left: 20px;
    overflow: hidden;
    vertical-align: top;
}

.card.people:first-child {
    margin-left: 0;
}

.card.people .card-top {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 170px;
    height: 150px;
    background-color: #ffffff;
}

.card.people .card-top.green {
    background-color: #53a93f;
}

.card.people .card-top.blue {
    background-color: #427fed;
}

.card.people .card-info {
    position: absolute;
    top: 150px;
    display: inline-block;
    width: 100%;
    height: 101px;
    overflow: hidden;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card.people .card-info .title {
    display: block;
    margin: 8px 14px 0 14px;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    color: #404040;
}

.card.people .card-info .desc {
    display: block;
    margin: 8px 14px 0 14px;
    overflow: hidden;
    font-size: 12px;
    line-height: 16px;
    color: #737373;
    text-overflow: ellipsis;
}

.card.people .card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    line-height: 29px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card.hovercard {
    position: relative;
    padding-top: 0;
    overflow: hidden;
    /*text-align: center;*/
    background-color: rgba(214, 224, 226, 0.2);
}

.card.hovercard .cardheader {
    /*background: url("http://lorempixel.com/850/280/nature/4/");*/
    background-size: cover;
    height: 135px;
}

.card.hovercard .avatar {
    position: relative;
    top: -50px;
    text-align: center;
    margin-bottom: -50px;
}

.card.hovercard .avatar img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.5);
}

.card.hovercard .info {
    padding: 4px 8px 10px;
}

.card.hovercard .info .title {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1;
    color: #262626;
    vertical-align: middle;
}

.card.hovercard .info .desc {
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #737373;
    text-overflow: ellipsis;
}

.card.hovercard .bottom {
    padding: 0 20px;
    margin-bottom: 17px;
}

.liveon-icon img {
    max-width: 150%;
}
#exhibitors-list,#exhibitorTabsContent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#exhibitorTabs {
    width: 100%;
}

#exhibitorTabsContent .tab-pane.active {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}


.sponsor-socials a {
    text-indent: -10000px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
}

.sponsor-socials a[href*="facebook"] {
    background-image: url("/facebook.svg");
}

.sponsor-socials a[href*="twitter"] {
    background-image: url("/twitter.svg");
}
.sponsor-socials a[href*="linkedin"] {
    background-image: url("/linkedin.svg");
}

.sponsor-socials a[href*="youtube"] {
    background-image: url("/youtube.svg");
}
.sponsor-socials a[href*="instagram"] {
    background-image: url("/instagram.svg");
}

.sponsor-single .reddy.bold{
    width: 100%;
}
.reddy.bold ul.share-buttons {
    float: right;
    margin-top: -28px;
    z-index: 10;
    position: relative;
}
#meeting_duration {
    font-weight: bold;
    text-align: right;
    position: absolute;
    float: right;
    padding: 3px 6px;
    box-sizing: border-box;
    width: 60px;
    font-family: courier;
    background: rgba(0,0,0,.5);
    border-radius: 10px 10px 0;
    border: 1px solid #ccc;
    left: 2px;
    top: 2px;
    color: #fff;
    z-index: 1;
    cursor: help;
}


.unisearch {
    text-align: center;
    margin: 15px 0;
}

#unisearch {
    height: 31px;
    border: 1px solid #ccc;
    border-radius: 10px 10px 0;
    text-align: center;
    width: 320px;
}
.list-group-item .general-btns {
    justify-content: flex-end;
}

.card.hovercard .info .desc{
    font-size: 15px;
}

@media screen and (max-width: 480px){
    .list-group-item .general-btns {
        justify-content: flex-end;
        display: block;
        clear: both;
        position: relative;
    }
    .reddy.bold ul.share-buttons{
        margin-top: 0;
    }
    .card.hovercard .info .desc{
        font-size: 15px;
    }
    .sponsor-header span {
        width: 110px;
        text-align: left;
        display: flex;
        align-items: center;
    }
}
.poll-btns{
    padding: 10px;
    text-align: center;
}
.stream-poll {
    /*margin: 10px 5px 10px 14px;*/
}
.stage-tabs li {
    margin: 5px;
}
.infokiosk .plires-onoma a {
    color: #fff !important;
}

.networking .plires-onoma a{
    /*color: #fff!important;*/
}

.networking .simple  .plires-onoma a{
    color: #333!important;
}
.now-playing .cv {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 10px;
    z-index: 999;
    box-sizing: unset !important;
    width: 100%;
    max-width: 400px;
    border-radius: 10px 10px 0;
}

.swiper-slide{
    width: auto!important;
}
.persons-grid.executives-grid .general-btns {
    font-weight: bold;
}

#exhibitorTabsContent .card-body,#exhibitorTabsContent .card-header {
     padding: 5px;text-align: center;
 }
#exhibitorTabsContent .card.card-info{
    padding: 5px;
}

.btn.btn-outline-secondary.btn-block[disabled]{
    /*pointer-events:  none;*/
    opacity: .5;
}
#scheduletabsContent .card-header {
    padding: 5px !important;
    text-align: center;
}
#scheduletabsContent .card-body {
    padding: 5px;
}
.btn.btn-block.btn-outline-primary {
    background: #fff;
    color: #000;
}

#scheduletabs.nav-tabs .nav-link {
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
}
#scheduletabsContent {
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
}

#scheduletabsContent .tab-pane {
    padding: 0px 0;
}

#scheduletabsContent .tab-pane .card {
    padding: 0px 15px 10px;
    margin-top: 0;
    flex: min-content;
}

#scheduletabsContent .card-header {
    position: sticky;
    top: 0;
    background: #eff1f1;
    z-index: 99;
}
#schedule_tpl .card {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 10px;
    padding-right: 0;
    padding-left: 0;
}

.meeting_desc{
    height: 36px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 80%;
    max-width: 400px;

}

.btn.btn-liveon.streams {
    padding: 5px;
    height: auto;
    margin: 5px;
    height: 32.5px;
}
#profileTabs {
    flex-wrap: nowrap;
}
#profileTabs > li {
    width: 100%;
    text-align: center;
}

#profileTabs > li a{
    padding: 10px;
}
#profileTabsContent .tab-pane {
    padding: 20px;
}



.switch-field {
    display: flex;
    overflow: hidden;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    line-height: 1;
    text-align: center;
    padding: 5px 8px;
    margin-right: -1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #a5dc86;
    box-shadow: none;
}

.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}
.persons-grid.executives-grid .plires-onoma a {
    color: #fff !important;
}
.stage-filters {
    margin: 30px auto 20px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}



/*NEW MEETINGS*/
.schedule-tabs .tab-pane.active, .direction-tabs .tab-pane.active {
    -webkit-animation-name: fadeRight;
    animation-name: fadeRight;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.schedule-listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 15px;
    background: #fff;
}
.schedule-listing .schedule-slot-time {
    /*background: var(--main-gradient);*/
    /*color: #fff;*/
    padding: 60px 28px;
    font-size: 18px;
    font-weight: 700;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    max-width: 18%;
}
.schedule-listing .schedule-slot-info {
    position: relative;
    padding: 15px 0 20px;
    border-left: none;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    min-height: 150px;
    justify-content: space-between;
}
.schedule-slot-info:last-child {
    border: 0;
}
.schedule-listing .schedule-slot-time span {
    display: block;
    line-height: 26px;
    position: relative;

}
.schedule-listing .schedule-slot-info .schedule-slot-speakers {
    position: absolute;
    left: 40px;
    top: 0;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    bottom: 0;
    margin: auto;
}
.schedule-listing .schedule-slot-info .schedule-slot-title {
    font-size: 16px;
}
.schedule-listing .schedule-slot-info .schedule-slot-title strong {
    font-size: 14px;
    color: #888888;
}
.schedule-listing .schedule-slot-info p {
    margin-bottom: 0;
}
.schedule-listing:nth-of-type(2n) .schedule-slot-time {
    /*background: var(--main-gradient);*/
    /*opacity: .9;*/
}
.schedule-slot-info-content + img,.schedule-slot-info-content + img + img {
    right: 40px;
    margin: auto !important;
    left: auto !important;
}


.schedule-wrap {
    width: 82%;
}
.schedule-day {
    font-size: 50px;
    text-align: center;
    padding: 5px;
}
.schedule-date {
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    background: var(--main-gradient);
    color: #fff;
    margin-top: 5px;
}
.schedule-time-img {
    position: relative;
    font-size: 22px;
    display: block;
    text-align: center;
    width: 15%;
}
.schedule-title {
    font-size: 22px;
    margin-bottom: 10px;
}
.schedule-slot-info-content {
    width: 65%;
}
.schedule-actions {
    width: 30%;
    text-align: left;
    /*z-index: 10;*/
    position: relative;
    /*overflow: hidden;*/
    padding: 1%;
}
.schedule-participants {
    display: flex;
    align-items: center;
}
.schedule-participants img {
    margin-right: 10px;
}
.schedule-participants i {
    margin-left: 10px;
}
@media screen and (min-width: 769px){
    #log-content .list-group-item{
        padding-right: 280px;
    }
    .meeting_desc{
        max-width: 700px;
    }
}
#scheduletabsContent .btn.btn-outline-secondary.btn-block {
    font-size: 15px;
}
.plakato {
    background: var(--main-gradient);
    color: #fff;
    padding: 0 10px;
    font-size: 14px;
}
#scheduletabsContent label.btn {
    white-space: nowrap;
    font-size: 15px !important;
    padding: 5px 0;
}

#btnGroupDrop1 {
    display: none;
}

#btnGroupDrop1 + .dropdown-menu{
    position: relative;
    top: 0;
    display: flex;
}

.btn-session{
    min-width: 173px;
}
.persons-grid.networking-grid.executives-grid.simple .plires-onoma a {
    color: #333 !important;
}
.btn.btn-liveon.streams {
    width: auto;
}
.schedule-participants .badge {
    margin-left: 20px;
    padding: 3px 5px;
    font-size: 11px;
    line-height: 1;
}
@media screen and (max-width: 468px) {
    .general-btns {
        display: block;
    }

    .session-img{
        width: auto;
    }
    .session-info {
        text-align: left;
    }
    .btn-group.stage-filters {
        margin: 0 auto 20px;
        width: 100%;
        display: flex;
    }
    .schedule-wrap,.schedule-time-img {
        width: 100%;
    }
    .schedule-listing .schedule-slot-info{
        display: block;
    }
    .schedule-slot-info-content {
        width: 100%;
        box-sizing: border-box;
        padding: 0 10%;
    }
    .schedule-actions {
        width: 100%;
        text-align: center;
        z-index: 10;
        position: relative;
        overflow: hidden;
        padding: 1%;
    }
    .schedule-listing .schedule-slot-time {
        /* background: var(--main-gradient); */
        /* color: #fff; */
        padding: 20px 28px;
        font-size: 18px;
        font-weight: 700;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
        flex: 0 0 100%;
        max-width: 100%;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 9;
    }
    .schedule-listing .schedule-slot-time span {
        display: block;
        line-height: 26px;
        position: relative;
        top: auto;
    }
    .schedule-day{
        top:auto!important;
    }
}
#crudTable_filter {
    display: none;
}
.dropzone {
    min-height: 75px;
    border: 2px solid rgba(0,0,0,0.3);
    background: white;
    padding: 5px 5px;
    margin-right: 10px;
}

#stream_not_live {
    width: 100%;
    text-align: center;
    padding: 28% 5%;
    font-size: 25px;
    color: #fff;
    text-shadow: 0 0 2px #000;
    font-weight: bold;
    background: #333;
    box-shadow: 0 0 10px 1px #000 inset;
}
.schedule-slot-title ul {
    display: block;
}
.schedule-actions .badge.badge-danger {
    white-space: normal;
}
.schedule-actions #addeventatc1 {
    margin-top: 10px;
}
.meeting-close-btn.btn {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    top: -5px;
}
.meeting-close-btn.btn img {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}


.videopeople2 .session-info span {
    font-size: 15px !important;
    color: #333;
    background: #fafafa;
    display: block;
    margin: 5px 10px 5px 0;
    padding: 2px 5px;
    border: 1px solid #ccc;
}

.dropzone .dz-message{
    margin: 1em 0;
}
#tab-schedule #exhibitorTabsContent .row {
    width: 100%;
}
.faq-page #tab-schedule .actaslink {
    opacity: 1 !important;
    pointer-events: unset !important;
}

body.panel-open{
    left:-400px;
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.chat-window-recipient-img .img_jar {
    position: relative;
    width: 50px;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}
.chat-window-recipient-img .img_jar img {
    position: relative;
    margin: -10px;
}
#playerdiv img {
    max-width: 100%;
}

.logs_count:empty{
    display: none;
}
.sponsor-name {
    text-transform: none;
    font-size: 40px;
    font-family: Manrope;
    font-weight: 300;
    color: inherit;
}

#modality {
    width: 100% !important;
    height: auto !important;
    min-height: 540px;
    border: 0px solid black !important;
}
#modality[src*="player.vimeo.com"] {
    min-height: 600px;
}
.gateway {
    background: #fff;
    padding: 15px;
    border-radius: 2px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
}
#paypal-button-container {
    width: 100%;
}
.gateway > a {
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 175px;
}
.gateway > a > b {
    display: block;
    width: 100%;
    text-align: center;
    background: #343a40;
    color: #fff;
    margin-top: -10px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/*.gateway > a > b {*/
/*    display: block;*/
/*    width: 100%;*/
/*    text-align: center;*/
/*}*/
.gateway > a img {
    max-width: 300px;
    display: block;
    margin: auto;
}
.withvideo::after {
    content: "►";
    display: flex;
    position: absolute;
    z-index: 1000;
    top: 20%;
    left: 40%;
    background: no-repeat;
    width: 1vw;
    height: 1vw;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    justify-self: center;
    font-size: 1vw;
    color: #2a99e1;
    text-shadow: 1px 1px 2px #000;
}

.withvideolarge::after {
    content: "►";
    display: flex;
    position: absolute;
    z-index: 1000;
    top: 39%;
    left: 46%;
    background: no-repeat;
    width: 1vw;
    height: 1vw;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    justify-self: center;
    font-size: 3vw;
    color: #2a99e1;
    text-shadow: 1px 1px 2px #000;
}

.red, .red::after {
    color: red !important;
}

.no_link {
    cursor: unset!important;
}

.product-thumb img{
    max-width: 100%;
    margin-bottom: 10px;
}
#pleaserotate {
    display: flex;text-align:center;flex-wrap:wrap;align-items: flex-start;justify-content: center;width: 100%;height: 100vh;background: #FFFFFF;position: fixed;top: 0px;left: 0;z-index: 9999;
}

.no_link {
    cursor: unset!important;
}
.holds_checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
.holds_checkbox div {
    height: 100%;
    padding: 7px 15px;
}

select,.select2 {
    max-width: 100%;
}



.person-carda {
    width: 100%;
    display: flex;
    padding: 0!important;
}

.person-carda .person-header img {
    width: 46px;
    height: 46px;
}
.person-carda .startchat.btn.btn-sm.btn-outline-primary.bg-white.text-dark {
    display: none;
}
.person-carda .btn.btn-default.btn-like.btn-sm {
    display: none;
}

.person-carda .small.light {
    display: none;
}
.person-carda .plires-onoma {
    display: block;
    width: 100%;
    text-align: center;
}
.person-carda .plires-onoma {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    top: -4px;
    font-size: 13px;
}
.person-carda .general-btns {
    position: relative;
}

#videomodal{
    z-index: 999999999;
}

#tab-speaker {
    min-height: 400px;
}
.general-btns .btn {
    white-space: nowrap;
    line-height: 1!important;
}

.stage_title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 1px #fff;
    font-weight: 600;
    pointer-events: none;
}
@media screen and (max-width: 900px){
    .general-btns {
        display: block;
    }
}


p{
    word-wrap: anywhere;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.holds_meetings_calendar .card.card-info {
    width: 100% !important;
    max-width: unset !important;
    flex: min-content;
}

.holds_meetings_calendar .card .card-body {
    padding: 0 5px;
    margin-top: 20px;
}

.alert{
    width: 100%;
}
.alert p{
    margin: 0;
}

.figure{
    background: rgba(238, 238, 238, 0.8);

}

.figure img{
    border: 1px solid #ccc;
}

.figure:hover {
    box-shadow: 0 0 2px 0px #666;
}
.btn.btn-outline-light.btn-sm.streams.is-active {
    background: #fff;
    color: #333;
}
.session-logos {
    width: 100px;
    padding: 15px;
    flex-shrink: 0;
    flex-grow: 0;
}
.session-logos img {
    max-width: 100%;
}

.toast{
    overflow: visible!important;
    font-size: 1.05rem;
}
.addeventatc{
    width: 100%;
    font-family: Manrope;
    color: #333 !important;
    font-weight: bold;
    line-height: 1;
}
.btn-session.btn.btn-outline-dark.bg-white.text-dark {
    border: 2px solid #c1c1c8;
    font-weight: bold;
    font-size: 14px;
}

#sessions .toast-header{
    color: inherit;
}

.btn-filter{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.alert svg {
    width: 32px;
    height: 32px;
    display: block;
    margin-right: 10px;
}
.btn-filter.active{
    background: #343a40;
    color: #fff;
}

#sessions .nav-tabs .nav-link{
    padding: 10px;
}

.gal-item {
    width: 200px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px 0 #666;
    cursor: pointer;
}
.gal-item:hover {
    box-shadow: 0 0 10px 0 #666;
}
.informative:empty {
    display: none;
}
.gallery {
    min-height: 70vh;
}

.speaker .h5,.speaker h5 {
    font-size: 1.08rem;
    font-weight: bold;
    color: #444;
}

.speaker .h6,.speaker h6 {
    font-size: .9rem;
    text-align: center;
}

.swal2-container.swal2-center {
    z-index: 9999999999;
}

.modal-header.bg-success span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90px;
}

.modal-header.bg-success {
    padding: 5px;
    font-size: 15px;
}

.videopeople .session-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#sidepanel.open {
    z-index: 999;
}

@media screen and (min-width: 1925px){
    #main.lobby{
        background-color: var(--lobby_bg_color);
        background-size: contain;
        background-position: center;
    }
}

@media screen and (max-width: 926px){

    .chat-window {
        max-height: 100%;
    }
    .modal-dialog {
        max-width: 86%!important;
        margin: 1.75rem auto;
    }

    .modal-header {

        padding: 5px;

    }

    #videomodal .modal-dialog{
        max-width: 100% !important;

    }

    #videomodal .embed-responsive{
        height: 75%;
    }
    .tawk-min-container .tawk-button-circle.tawk-button-large {
        width: 40px!important;
        height: 40px!important;
    }
    .tawk-min-chat-icon{
        width: 25px!important;
        height: 25px!important;
    }

    .videopeople .session-info {
        margin: 5px 0;
        border: 1px solid #888;
        padding: 5px;
        border-radius: 10px 10px 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .session-info img, .session-data img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }

    #videomodal #chatfeed {
        height: auto;
        max-height: 300px;
        background: #fafafa;
        padding: 5px;
        overflow: auto;
        min-height: 64px;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    #videomodal .modal-body {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 5px;
        max-height: 100vh;
    }

    #videomodal .dz-button {
        font-size: 14px !important;
    }


    #videomodal #video_contents {
        max-height: 87vh;
        overflow-x: hidden;
    }
    .thecommands a img {
        width: 26px;
        height: 26px;
        margin: 0 10px;
        display: block;
        margin: auto;
    }

    .toast-header strong, .toast-header em {
        white-space: nowrap;
    }
}
@media screen and (max-width: 768px){
    .thecommands a {
        display: block;
        text-align: center;
        font-size: 0;
    }
    .invite-friends-select {
        font-size: 14px;
    }

    #sessions .toast-header {
        color: inherit;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }
    #sessions .toast-body > div {
        display: block !important;
    }

    .session-logos {
        width: auto;
        padding: 0;
        text-align: center;
    }
    .session-logos img {
        max-width: 100%;
        width: 80px;
    }
}


#stageiframe .iframe-wrapper{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


#stageiframe .iframe-wrapper iframe{
    height: 60vh!important;
}

.file_manager .file:hover .hover,
.file_manager .file .file-name small{
    display: block
}
.file_manager .file {
    padding: 0 !important
}

.file_manager .file .icon{
    text-align: center
}


.file_manager .file {
    position: relative;
    border-radius: .55rem;
    overflow: hidden
}

.file_manager .file .image,
.file_manager .file .icon {
    max-height: 180px;
    overflow: hidden;
    background-size: cover;
    background-position: top
}

.file_manager .file .hover {
    position: absolute;
    right: 10px;
    top: 0px;
    display: none;
    z-index: 99999999;
    transition: all 0.2s ease-in-out
}

.file_manager .file a:hover .hover {
    transition: all 0.2s ease-in-out
}

.file_manager .file .icon {
    padding: 15px 10px;
    display: table;
    width: 100%
}

.file_manager .file .icon i {
    display: table-cell;
    font-size: 30px;
    vertical-align: middle;
    color: #777;
    line-height: 100px
}

.file_manager .file .file-name {
    padding: 10px;
    border-top: 1px solid #f7f7f7
}

.file_manager .file .file-name small .date {
    float: right
}

.file_manager .folder {
    padding: 20px;
    display: block;
    color: #777
}

@media only screen and (max-width: 992px) {
    .file_manager .nav-tabs {
        padding-left: 0;
        padding-right: 0
    }
    .file_manager .nav-tabs .nav-item {
        display: inline-block
    }
}

.file_manager .card {
    background: #fff;
    transition: .5s;
    border: 0;
    margin-bottom: 30px;
    border-radius: .55rem;
    position: relative;
    padding-top: 5px;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
}

.file_manager a:hover {
    text-decoration:none;
}

#subtitle_holder {
    z-index: 999999;
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    background: transparent;
    text-shadow: 0 1px 1px #000;
}
.streams.is-active + .dropdown {
    /* border-left: 0; */
    background: #fff;
    margin-left: -5px;
    border-radius: 5px;
}
.streams.is-active + .dropdown > button {
    color: #333;
}
.agenda-countdown {
    font-size: .9em;
    font-weight: normal;
    background: #fff;
    border: 1px solid #ccc;
    padding: 1px 5px;
    border-radius: 5px;
    width: 55px;
    display: inline-flex;
    justify-content: center;
}

.nav-menu {
    width: 100%;
    justify-content: center;
    display: flex;
}

@media screen and (max-width: 1500px){
    .nav-menu ul{
        width: 90%;
    }
}
@media screen and (max-width: 1360px){
    .nav-menu ul{
        width: 100%;
    }
}
@media screen and (max-width: 1300px){
    .nav-menu ul{
        width: 95%;
    }
}
@media screen and (max-width: 1280px){
    .nav-menu ul{
        width: 100%;
    }
    .version_3d .nav-menu > ul {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 100;
        background: #fff;
        top: 30px!important;
        border-bottom: 2px solid #ccc;
        box-shadow: 0 15px 15px 0 #888;
        border-top: 1px solid #ccc;
    }

    #filters-bar{
        margin: unset;
    }
}

@media screen and (min-width: 1280px) {
    .version_3d .nav-menu {
        width: auto;
    }
    .version_3d .nav-menu ul{
        width: unset;
        margin-left: unset;
    }

}


.slideable {
    position: fixed !important;
    left: -320px !important;
    width: 320px !important;
    max-height: 80vh !important;
    min-height: 10vh;
    top: 70px !important;
    transition: all 1s;
}

.slideable.open{
    left: 0 !important;
}



#slideable-panel {
    position: sticky;
    bottom: 0;
    height: 36px;
    background: rgba(255,255,255,.7);
    z-index: 999;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
}
.slideable-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 5px 10px;
    padding: 1px;
    opacity: .8;
    cursor: pointer;
}
.slideable-icon.open {
    opacity: 1;
}
.slideable-icon img {
    width: 100%;
}

#slideable-panel:empty{
    display: none;
}
#profileTabs {
    flex-wrap: wrap;
}
#profileTabs li {
    white-space: nowrap;
}
#profileTabs > li{
    width: auto;
    margin-top: 5px;
}

.rounded-circle,.toast-header strong,.toast-header em {
    flex-shrink: 0;
    flex-grow: 0;
}
.toast-header span {
    flex-grow: 0;
    flex-shrink: 0;
    white-space: normal;
    width: 65%;
}
.toast-header .badge.bg-info.text-white {
    width: auto;
}
.first-part {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.second-part {
    width: 15%;
    display: flex;
    justify-content: flex-end;
}


@media screen and  (max-width: 1600px){
    .first-part {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and  (max-width: 1024px){
    .sponsor-header {
        display: block;
        padding: 15px;
        height: auto;
        justify-content: space-between;
        position: relative;
        text-align: center;
    }
    .sponsor-header .liveon-icon {
        font-size: 12px;
        display: block;
        width: 100%;
    }
    .sponsor-header img {
        width: auto;
        height: auto;
        position: relative;
        bottom: unset;
        right: unset;
    }

    #exhibitorTabs.nav-tabs .nav-item {
        margin-bottom: -1px;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .osahan-post-header div.face {
        flex-grow: 0;
        flex-shrink: 0;
        max-height: 100%;
        max-width: 100%;
        align-items: center;
        display: flex;
    }
    #profileTabs > li{
        width: 100%;
        margin-top: 5px;
    }
}

.session-logos:empty {
    display: none;
}


@media screen and (max-width: 1230px){
    .first-part{
        width: 100%;
    }
    .second-part {
        width: auto;
        display: flex;
        justify-content: flex-end;
    }
    .toast-header.justify-content-between.align-items-center {
        flex-wrap: wrap;
    }
    .toast-header span{
        width: 80%;

    }

    #refr{
        grid-area: sidebar;
        width: 100%;
        max-width: unset;
    }
    #mainplayerview{
        grid-area: player;
        width: 100%;
        max-width: unset;
    }
    #stage-right-col{
        grid-area: sponsors;
        width: 100%;
        max-width: unset;
    }

    #stage-right-col .sponsors-group {
        display: grid !important;
        grid-template: ". . . . .";
        grid-gap: 10px 5%;
    }

    #stage-right-col .sponsors-group figure{
        max-width: unset;
    }

    #refr .toast{
        max-width: unset;
    }


    #main.stream_page .container-fluid > .row {
        display: grid;
        grid-template-areas: "player" "sidebar" "sponsors";
    }

    .session-main-body {
        width: 100%;
        flex-wrap: wrap;
    }
    .session-action {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-menu > ul {


        top: 55px;

        overflow: auto;
        height: 87vh;
    }
    .nav-menu ul ul {
        position: relative;
    }



}

@media screen and (max-width: 580px){
    #stage-right-col .sponsors-group {
        display: grid !important;
        grid-template: ". . .";
        grid-gap: 10px 5%;
    }
}

@media screen and (max-width: 380px){
    #stage-right-col .sponsors-group {
        display: grid !important;
        grid-template: ". .";
        grid-gap: 10px 5%;
    }
}

@media screen and (max-width: 768px){
    .sponsor-single-banner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .sponsor-logo {
        margin: 20px;
    }
    .reddy.bold {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    .sponsor-name {
        display: block;
        width: 100%;
        margin: auto;
    }
    .reddy.bold ul.share-buttons {
        float: none;
        position: static;
        margin: 0;
    }

}
.agenda-countdown.countdown {
    width: auto;
}
.sponsor-medium .sponsor-body > strong {
    color: #222;
    text-transform: none;
    white-space: nowrap;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    display: block;
}

.sponsor.sponsor-medium.white-box .sponsor-header {
    display: block;
    height: auto;
}

.sponsor-medium .sponsor-header img {
    width: auto;
    height: 50px;
    margin-top: 50px;
    position: relative;
    margin: auto;
    bottom: auto;
    right: auto;
    display: block;
}


.toast{
    position: relative;
    backdrop-filter: none;
}


.white-box{
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    border-radius: 10px;
    margin-bottom: 14px;
    background: #fff;
    margin-top: 15px;
}

.toast{
    border-radius: 10px;
}
.toast-header{
    background-color: unset;
    padding: 1.1rem .75rem;
}

#speakers-row{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}

@media screen and (max-width: 992px){
    #speakers-row{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px){
    #speakers-row{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 580px){
    #speakers-row{
        grid-template-columns: repeat(1, 1fr);
    }
}

#sponsor-single-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}


@media screen and (max-width: 1024px){
    #sponsor-single-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}
.yellow-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--secondary-gradient);
    align-items: center;
}
.sponsor-text {
    padding: 1rem;
}
.executives-list .person-card {
    width: auto;
    display: flex;
    align-items: center;
}
.executives-list .person-header {
    width: auto;
    margin: 0;
    position: relative;
}
.executives-list .person-body {
    width: 100%;
    padding: 0;
    top: auto;
    min-height: unset;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.executives-list .general-btns {
    position: relative !important;
    bottom: auto;
    left: auto;
    width: auto;
    flex-wrap: nowrap;
}

.executives-list .person-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: auto;
    right: 10px;
    z-index: 100;
    bottom: 5px;
}
.single-sponsor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

#filters-bar svg {
    width: 22px;
    height: 22px;
}
#filters-bar .btn.is-active {
    box-shadow: none;
    color: var(--main-gradient);
    font-weight: bold;
}
.filter-tools {
    margin-left: auto;
    width: max-content !important;
}

@media screen and (max-width: 695px){
    #filters-bar{
        justify-content: center;
    }
    #filter-text{
        margin-right: unset;
        margin-bottom: 15px;
    }
    .filter-tools{
        margin-left: unset;
    }
}

.persons-grid.networking-grid.simple .real-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    width: 100%;
    margin: 0 10px;
}


.persons-grid .real-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem;
    width: 100%;
    margin: 0 10px;
}

@media screen and (max-width: 1530px){
    .persons-grid .real-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1024px){
    .persons-grid .real-grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 0;
    }
}

@media screen and (max-width: 768px){
    .persons-grid .real-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 580px){
    .persons-grid .real-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.person-card .person-header {
    width: 100px;
    padding: 10px;
}
.network-grid div.general-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 3px 10px 0;
    position: relative;
    bottom: 0;
    width: max-content;
    left: auto;
    flex-wrap: wrap;
    display: flex;
    margin-left: auto;
}
.inner-body {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
}

.persons-grid.networking-grid .general-btns {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.persons-grid.networking-grid.simple .general-btns {
    width: 35%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
}

.simple .inner-body {
    width: 65% !important;
    display: block !important;
    text-align: left !important;
}
.person-body .inner-body .small.light {
    display: block;
    width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.person-body .inner-body .plires-onoma a {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.persons-grid.networking-grid:not(.simple) .person-card {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.persons-grid.networking-grid:not(.simple) .person-body {
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    top:0;
    height: 200px;
}


.persons-grid.networking-grid:not(.simple) .person-body .inner-body .small.light{
    width: 100%;
    overflow: hidden;
    white-space: unset;
}

.persons-grid.networking-grid.executives-grid.simple {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 1rem;
    /* width: 100%; */
    /* margin: 0 10px; */
}
bdi.plires-onoma {
    display: inline-block;
    width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1024px){
    .persons-grid.networking-grid.simple .real-grid {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
    }


}

@media screen and (max-width: 580px){
    .inner-body {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }
    .simple .inner-body {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }
    .inner-body .person-isa,
    .simple .inner-body .person-isa {
        position: relative!important;
        display: block;
        text-align: center;
        right: 0;
    }
    .persons-grid.networking-grid.simple .general-btns {
        width: auto;
         justify-content: center;
        align-items: center;
    }
    .network-grid div.general-btns {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 30px 0px 10px 0;
        position: relative;
        bottom: 0;
        width: max-content;
        left: auto;
        flex-wrap: wrap;
        display: flex;
        margin: auto;
    }
    .change-view{
        display: none;
    }
    .simple .person-header, .simple .person-body,.persons-grid.networking-grid.simple .person-card{
        display: block;
    }
}


.inner-body .person-isa {
    position: relative;
    display: block;
    text-align: center;
    right: 0;
    left: 0;
    top: 0;
}
.simple .inner-body .person-isa {
    left: auto;
    right: 10px;
    top: 6px;
    position: absolute;
}
.is-active svg * {
    fill: var(--main-gradient);
}

.persons-grid.omilites-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 3%;
}
.streams {
    color: #000;
}

.toast{
    border: 0;
}
#refr  #session_playing {
    margin-top: 15px;
}


.white-box.speaker{
    margin-top: 15px!important;
}

.white-box:not(.person-card):not(.speaker) + .white-box:not(.person-card):not(.speaker){
    margin-top: 15px!important;
}
.sessions-list-banner {
    display: none;
}
.executives-list .inner-body {
    text-align: left !important;
}


.thecommands {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    padding: 10px;
    border: 1px solid #666;
    border-radius: 30px;
    width: 33%;
    margin: 0 auto;
    border: 0;
    margin-bottom: 20px;
    box-shadow: -5px 3px 40px #5e5c9a1a;
    height: 68px;
    flex:0 0 68px;
    min-width:140px;
}

#add_friend,#hangup {
    width: 50px;
    display: flex;
    height: 50px;
    border-radius: 50%;
    background: #dddbdb;
    align-items: center;
    justify-content: center;
}
#hangup {
    background: #ef1b1a;
}
#videomodal .modal-body {
    background: #fafafa;
}
#videochat_tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--main-gradient);
    padding-bottom: 10px;
    padding-top: 10px;
}
#participants_t, #chat_t {
    background: transparent;
    color: var(--font-color);
}
#participants_t.active,#chat_t.active,#participants_t:hover,#chat_t:hover {
    border-color: transparent;
    color: var(--main-gradient);
}
.videopeople {
    padding: 15px;
    z-index: 40;
    position: relative;
}
.videopeople .session-info {
    margin: 15px 0;
}
.videopeople .session-info span {
    display: inline-block;
    width: 75%;
    vertical-align: middle;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.videopeople .session-info {
    margin: 15px 0;
    padding: 5px;
    border-radius: 10px 10px 0;
}
.videopeople strong {
    display: block;
    text-align: center;
}
#chatapp {
    height: auto;
    border-radius: 18px;
    background: #efefef;
    padding: 15px;
    height: 100%;
}
#chat_tab{
    padding: 15px;
    height: 65vh;
}

.border-bottom-themed{
    border-bottom: 2px solid var(--secondary-gradient);
}
#add_friend select {
    position: absolute;
    opacity: 0;
}
#awn-toast-container {
    z-index: 9999999999;
}
.session-month {
    margin: 0;
    background: #fff;
    font-size: 36px;
    color: var(--main-gradient);
    font-weight: bold;
    line-height: 1;
}
.session-day {
    font-size: 80px;
    font-weight: bold;
    padding: 0;
    line-height: 1;
}
.category-header {
    display: block;
    width: max-content;
    border: 1px solid rgba(0,0,0,.1);
    background: #fff;
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    border-radius: 20px;
    padding: 3px 20px;
    margin: -35px auto 12px;
    color: #333;
    font-weight: bold;
}

.filter-tools {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}
.filter {
    margin-left: 5%;
    max-width: 170px;
}

.filter-tools a{
    white-space: nowrap;
}


@media screen and (max-width: 768px) {
    .filter-tools {
        display: block;
        width: 100% !important;
    }
    .filter-tools .filter{
        display: block;
        width: 90%;
        margin-bottom: 5%;
        max-width: unset;
    }

    .filter-tools .filter .filterable{
        width: 100%!important;
        max-width: 100%;
        box-sizing: border-box;
    }

    .table-mb{
        flex-wrap: wrap;
    }

    .table-md-square{
        width:40% !important; 
    }
}