.container.tabsContainer,
.tabsContainer .container {
    padding:0;
}

.tabsContainer {
    background-color: var(--color-primary) !important;
}

.tabsContainer .tabs {
    color: var(--color-lp-accent);
    display: flex;
}
.tabsContainer .tabsPanel {
    position: relative;
    width: 100%;
    color: #FFFFFF;
    background-color: var(--color-primary) !important;
    display: flex;
    flex-direction: column;
    padding: 0 12px 12px 12px;
}

.tabsContainer .tabWindowContainer {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.tabsContainer .presentationListContainer {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.tabsContainer button > span {
    text-transform: none;
    color: white;
    border-radius: 0;
}

.tabsContainer button {
    border-radius: 0;
}

.tabsContainer button.focused > span {
    text-transform: none;
    color: var(--color-white);
}

.tabsContainer button.focused {
    color: var(--color-white);
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    outline: none;
}

.tabButton.focused .v-icon.tabIcon {
    color: var(--color-red) !important;
}

.tabsContainer button.tabInteract {
    flex-grow: 1;
    align-self: start;
    justify-content: flex-start;
}

.tabsContainer button.tabInteract.focused {
    color: var(--color-white);
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    border-left: 1px solid var(--color-white);
}

.tabsContainer button::before {
    background-color: var(--color-primary);
}

.tabsContainer button.unfocused {
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-white);
    outline: none;
}


/*Tab Information*/

.tab.presentationListContainer .infosSession {
    padding-top: 10px;
    padding-left: 0;
}

.tab.presentationListContainer .presentationList {

	height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 10px;

}

.tab.presentationListContainer .presentationListColumn {
    padding: 0
}

.tab.presentationListContainer .presentationList::-webkit-scrollbar {
    width: 11px;
}

.tab.presentationListContainer .presentationList::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #717171;
}

.tab.presentationListContainer .presentationList::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ADB6C1;
}

.tabsContainer .presentationContainer {
    padding:0 10px 0 0;
	margin-bottom:10px;
}

.tabsContainer .avatarCol {
	padding:0 10px;
}

.tabsContainer .speakerAvatar, .informationSession .chairsList .chairItem .chairAvatar {
	background-color: var(--color-lp-accent) !important;
}

.tabsContainer .speakerAvatar .speakerInitials {
	color: var(--color-white);
	font-weight:500;
}

.tabsContainer .v-avatar img {
	height: auto;
}

.presentationContainer .presRow {
    margin-right: 0;
    margin-left: 0;
}
.presentationContainer .hourCol {
    padding-left: 0;
    padding-right: 0;
	padding-top:15px;
	width:50px;
}

.presentationContainer .presentationInfoColumn {
    padding: 0;
}

.informationSession .presentationList .presentationContainer .hour .presentationStartingTime {
    color: var(--color-white);
    font-weight:500;
}

.presentationContainer .presentationTitleColumn {
    padding: 0;
}

.tabsPanel .informationSession .presentationList .presentationContainer {
    display: flex;
    align-items: baseline;
    margin: 10px 0;
}

.tabsPanel .presentationInfo {
    line-height:1
}

.informationSession .presentationList .presentationContainer .hour {
    position: relative;
    top: 2px;
}

.presentationContainer .presentationTitle {
    color: var(--color-white);
	font-weight:500;
    padding-bottom: 0;
    display: block;
    line-height: 1.4;
    margin-top: 4px;
}

.presentationContainer .speakerName {
    color: var(--color-white);
    text-transform: uppercase;
	font-weight:500;
	font-size:.8rem;
}

.presentationContainer .speakerList div span:last-Child {
	margin-right:5px;
}

.presentationContainer .speakerList {
    padding: 0;
	flex-wrap:wrap;
}

.container .informationSession {
    padding:0;
    overflow-y: auto;
    max-height: 380px;
}

.informationSession .sessionHourTypeInfosColumn {
	margin:0 !important;
	padding:0;
}

.sessionHourTypeInfos {
	margin:10px 0 0 0 !important;
}

.tabsContainer .sessionTitleColumn {
	padding-top:8px;
	padding-bottom:0;
}

.tabsContainer .chairsList {
    padding-top: 0;
}

.tabsContainer .chairItem {
	margin-right:5px;
}

.tabsContainer  .informationSession .chairName {
    color:#fff;
    font-size: .9rem;
    margin-bottom: 0;
}

.tabsContainer .informationSession .sessionTime {
	color:#f58c31 ;
    border: 1px solid;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 10px;    
    border-radius: 12px;    
    padding-right: 5px !important;
    padding-left: 5px !important;
}

.tabsPanel .informationSession .sessionType {
    color: #adb6c1;
    font-size: .8rem;
    font-weight: 500;
}

.tabsPanel .informationSession .separator {        
    font-weight: 500;
    background: none;
    margin : 0 5px;
}

.tabsPanel .informationSession .icons {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    font-size: 0.85rem;
    padding: 0%;
}

.tabsPanel .informationSession .icons .breakout {        
    content: "";
    display: inline-block;
    background:  url(../images/voice_chat.svg) no-repeat;
    background-size: 20px 20px;
    width:20px;
    height: 20px;    
    animation: fadeIn 1s normal cubic-bezier(.18,.99,.53,1);
    opacity: 1;
}
@-webkit-keyframes fadeIn {
    0%{
        opacity: 0;
      }
    80%,
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    0%{
        opacity: 0;
      }
    80%,
    100% {
      opacity: 1;
    }
  }

.tabsPanel .informationSession .icons li {
    overflow: hidden;    
    list-style: none;
    white-space:nowrap;    
    display: inline-flex;
}

.tabsPanel .informationSession .icons li .label {
    opacity: 0;
    background-color: #fff;
    max-width: 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 12px;
    padding: 0 6px 0 6px;
    margin: 0 4px 0 4px;
    transition: max-width .1s ease-out .1s, opacity .1s ease-out .1s;
}

.tabsPanel .informationSession .icons li:hover .label {
    opacity: 1;
    max-width: 100%;
    transition: max-width .2s ease-out .1s, opacity .3s ease-out .1s;
}

.tabsPanel .informationSession .sessionTitle {
    color: #fff;
    font-size: 1.1rem;
    line-height:1.2;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0;
    display: block;
}

.tabsPanel .informationSession .sessionTitleContainer {
    margin: 0;
}

.informationSession .sessionType,
.informationSession .sessionTitle,
.informationSession .chairsLibelle {
    color: var(--color-white);
	min-width: 50px;
	font-weight: bold;
}

.informationSession .chairsLibelle {
    font-size:.9rem;
    color: #ADB6C1;
    text-transform: uppercase;
}


.informationSession .separatorChairs {
    display: none;
    margin-right: 12px;
}

.informationSession .separatorChairs hr{
    width: 94%;
    margin: 10px auto 20px auto;
    border-color: #ADB6C1;
    background-color: #ADB6C1;
}

.tabsContainer button > span {
	letter-spacing:0;
	font-size: .95rem;
}

.tabWindowContainer .chat-error-no-session {
	color:var(--color-white);
	margin-top:10px;
}

/* tab chat */

.container.tabsContainer .iframeChat {
    height:500px;
}

@media screen and (min-width:1280px) {
    .container.tabsContainer .iframeChat {
        height:345px;
    }
}

@media screen and (min-width:1600px) {
    .container.tabsContainer .iframeChat {
        height:505px;
    }
}
@keyframes blinkingBackground{
    0%		{ background-color: var(--color-primary);}
    100%		{ background-color:  var(--color-lp-accent);}
}
.tabsPanelHeader .tabButton.blink{
    animation: blinkingBackground 1s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}

/* tab evaluation */

.iframeEvaluation {
    min-height:500px !important;
    margin-top: 8px;
    transform: scale(0.75);
    transform-origin:0 0;
    width:100%;
}

.noChatSession {
    margin-top: 10px;
    text-align: left;
}
