/** Single Session */
.speaker-list .speaker-card {
    background-color: #eaeaea;
    border-radius: 8px;
    text-align: left;
    margin: 15px 0;
    padding: 24px 16px;
}

.speaker-list .left-column {
    text-align: end;
}
.speaker-list .right-column {
    padding-left: 25px;
}
.speaker-list .speaker-card img {
    object-fit: cover;
    height: 200px;
    width: auto;
    max-width: 200px;
}

.speaker-list .speaker-card p {
    margin-bottom: 8px;
}

.speaker-list .speaker-card .speaker-card__bio p {
    font-size: 80%;
    line-height: 1.75;
}

.speaker-list .speaker-card .elementor-button {
    margin: 0 auto;
    margin-top: 8px;
    background-color: transparent;
}
.speaker-list .speaker-card .elementor-button p {
    margin-bottom: 0;
}

.speaker-list .speaker-card .speaker-card__postion {
    margin-bottom: 8px;
}

/**
 *
 * Video and Tabs content
 *
 */

 .session-content-wrapper {
     display: flex;
 }

/**
 * Video Wrapper
 */

 .video-session-wrapper {
    flex: 1;
 }

 .video-container {
    left: 0;
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

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


/**
 * Tabs
 */

.tabs-section {
    margin: 0px;
	padding: 0px;
    float:right;
    max-width: 450px;
    width:28.5%;
    margin-left: 1.5%;
}

#tabs ul {
    list-style: none;
    list-style-type: none;
}

 .ui-tabs .ui-tabs-nav {
    margin: 0;
    /*margin-top: -44px;*/
    display: flex;
    flex-direction: row;
    align-items: center;
	line-height: normal;
	height: auto;
	border: none;
    text-align:left;
    margin-bottom: 0px;
    position: relative;
    z-index: 5;
	}

.ui-tabs .ui-tabs-nav li {
    display:inline-block;
    border: 0px solid #333;
    background-color: rgba(51,51,51,1);
    border-radius: 3px;
    padding: 4px;
    transition: all .1s ease-in-out;
	}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    color: #ffffff;
    border-bottom: hidden;
    border: 3px solid #333;
    background-color: rgba(51,51,51,1);
    border-radius: 3px 3px 0 0;
    margin: 0 6px;
	}

.ui-tabs .ui-tabs-nav li:first-of-type.ui-tabs-active {
    margin-left: 0;
	}
	
.ui-tabs .ui-tabs-nav li a,
.ui-tabs .ui-tabs-nav li a:link {
	font-size:18px; 
    color:#fff;
    font-weight: 700;
	border-radius: 2px;
	padding: 6px 20px;
    border: none;
    display: block;
	}
	
.ui-tabs .ui-tabs-nav li a:visited,
.ui-tabs .ui-tabs-nav li a:active, 
.ui-tabs .ui-tabs-nav li a:focus {
    color: #ffffff;
    outline:0;
}

.ui-tabs .ui-tabs-nav li a:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,0.15);
}


.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a:hover {
	color: #ffffff;
	}
	
	
.ui-tabs .ui-tabs-nav li.ui-tabs-selected,
.ui-tabs .ui-tabs-nav li.ui-state-disabled  {
	background: none;
	padding: 0px;
	margin: 0px;
	}

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-hide { display: none !important; }

.ui-tabs-panel {
    padding: 2rem 1rem;
    background-color: #333;
    border-radius: 3px;
    color: #fff;
    position: relative;
    z-index: 4;
    min-height: 400px;
}
.ui-tabs-panel:first-of-type {
    border-radius: 0 3px 3px 3px;
}

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

    .session-content-wrapper {
        flex-wrap: wrap;
    }

    .video-session-wrapper {
        width:100%;
        flex: auto;
    }

    .tabs-section {
        width: 100%;
        margin-left: 0;
        margin-top: 1%;
        max-width: 100%;
    }

    .ui-tabs-panel {
        min-height: 300px;
    }
}