/*
/* Whitespace Reset */

*{
  padding: 0;
  margin: 0;
}

/*
/* Box-sizing fix */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}
/* 
/*Typography and highlighting coloring*/


html {
  font-family: 'Open Sans', -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-size:  14px;
  line-height: 1.5;
}

body, table, th, td, form, input, textarea, option, select {
  font: inherit;
  color:#000;
}


.page-footer a {
  text-decoration: none;
  display:inline-block;
  color:#000;
}
a:hover{
  text-decoration: none;
}
.hover-color-effect{
  transition: color 0.3s ease-in;
  -webkit-transition: color 0.3s ease-in;
  -moz-transition: color 0.3s ease-in;
  -ms-transition: color 0.3s ease-in;
  -o-transition: color 0.3s ease-in;
}

.hover-color-effect:hover{
  color: #ee1100;
}

.hover-zoom-effect{
  transition: all 0.3s ease-in !important;
  -webkit-transition: all 0.3s ease-in !important;
  -moz-transition: all 0.3s ease-in !important;
  -ms-transition: all 0.3s ease-in !important;
  -o-transition: all 0.3s ease-in !important;
}

.hover-zoom-effect:hover{
  transform:scale(1.2);
  -webkit-transform:scale(1.2);
  -moz-transform:scale(1.2);
  -ms-transform:scale(1.2);
  -o-transform:scale(1.2);
}

a.card{
  display: block;
}

/*
ul {
    display: block !important;
    list-style-type: none !important;
    margin-top: 1em !important;
    margin-bottom: 1 em !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 40px !important;
}
ul:not(.browser-default)>li { 
  list-style-type: none !important;
} */

.link{
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.foot-notes{
  font-size:12px;
  opacity: 0.54;
}
.highlighting-color{
  color:#ee1100 !important;
}


.highlighting-bgr{
  background:#ee1100 !important;
}


.btn.highlighting-bgr:hover{
  background:#bb0d00 !important;
}

.disable-bgr{
  background:#b2b2b2 !important;
}

.btn.disable-bgr:hover{
  background:#989898 !important;
}

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

.text-light{
  font-weight: 300 !important;
}

.text-italic {
  font-style: italic !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-center{
  display: block;
  text-align: center;
}

/* 
/* Basic margins */
.mt-0{
  margin-top: 0 !important;
}

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

.ml-0{
  margin-left: 0 !important;
}

.mr-0{
  margin-right: 0 !important;
}

.mt-0_5rem{
  margin-top: 0.5rem !important;
}

.mb-0_5rem{
  margin-bottom: 0.5rem !important;
}

.ml-0_5rem{
  margin-left: 0.5rem !important;
}

.mr-0_5rem{
  margin-right: 0.5rem !important;
}

.mt-1rem{
  margin-top: 1rem !important;
}

.mb-1rem{
  margin-bottom: 1rem !important;
}

.ml-1rem{
  margin-left: 1rem !important;
}

.mr-1rem{
  margin-right: 1rem !important;
}

.mt-1_5rem{
  margin-top: 1.5rem !important;
}

.mb-1_5rem{
  margin-bottom: 1.5rem !important;
}

.ml-1_5rem{
  margin-left: 1.5rem !important;
}

.mr-1_5rem{
  margin-right: 1.5rem !important;
}

.mt-2rem{
  margin-top: 2rem !important;
}

.mb-2rem{
  margin-bottom: 2rem !important;
}

.ml-2rem{
  margin-left: 2rem !important;
}

.mr-2rem{
  margin-right: 2rem !important;
}

.mt-3rem{
  margin-top: 3rem !important;
}

.mb-3rem{
  margin-bottom: 3rem !important;
}

.ml-3rem{
  margin-left: 3rem !important;
}

.mr-3rem{
  margin-right: 3rem !important;
}


.mt-4rem{
  margin-top: 4rem !important;
}

.mb-4rem{
  margin-bottom: 4rem !important;
}

.ml-4rem{
  margin-left: 4rem !important;
}

.mr-4rem{
  margin-right: 4rem !important;
}

.mt-5rem{
  margin-top: 5rem !important;
}

.mb-5rem{
  margin-bottom: 5rem !important;
}

.ml-5rem{
  margin-left: 5rem !important;
}

.mr-5rem{
  margin-right: 5rem !important;
}

.mt-6rem{
  margin-top: 6rem !important;
}

.mb-6rem{
  margin-bottom: 6rem !important;
}

.ml-6rem{
  margin-left: 6rem !important;
}

.mr-6rem{
  margin-right: 4rem !important;
}

.img-portrait{
  max-width: 100%;
  height: auto;
}

.img-landscape{
  max-height: 100%;
  width: auto;
}


/* 
/*Layout*/
  .container {
      width: 85%;
  }
body{
  display:flex;
  flex-direction: column;
}
.flex{
  display: flex;
}
.flex-column{
  flex-direction: column !important;
}
.justify-space-between{
  justify-content: space-between;
}
.align-items-center{
  align-items: center;
}
.align-top{
  -webkit-box-align: start !important;
  -webkit-align-items: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}

/* 
/* for layout 2 scroll section*/
.scroll-y{
  height: 390px;
  padding:0 1rem;
  overflow-y: scroll;
}

.scroll-bar-custom::-webkit-scrollbar{
  -webkit-appearance: none;
}

.scroll-bar-custom::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.scroll-bar-custom::-webkit-scrollbar-track {
  background-color: #ffffff;
}

.scroll-bar-custom::-webkit-scrollbar:vertical {
  width: 7px !important;
}

.site-header{
  background: #fff;
  height: 7.25rem;
  border-top: 1rem solid #e10;
}

.site-header-logo{
  width:18%;
  margin:0 1.25rem;
}
.site-header-logo img{
  margin:0 1.25rem;
}

.site-footer{
  background: #fff;
  color: #000;
  height: auto;
  border-left: 1rem solid #ee1100;
}

.site-main{
  background:  #f6f6f6;
  min-height: calc(100vh - 7.25rem - 10rem);
}

.site-main section{
  margin: 1.25rem;
}

.site-event{
  padding: 0.75rem;
}
.site-event.row{
  margin-bottom: 0;
}

.site-event-date{
  font-size:1.5rem;
}

.site-event .site-event-name{
  font-size: 3rem;
  line-height: 110%;
  font-weight: bold;
  margin: 0 0 .912rem 0;
}

.site-event .site-event-name .small{
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
}

.site-event-description p{
  margin-bottom: 0.5rem;
}
.site-event-agenda{
  font-size: 1.5rem;
  line-height: 110%;
  margin: 1.25rem 0 .5rem 0;
}

.agenda-table-row{
  display:flex;
  border-bottom: 1px solid #cccccc;
}

.agenda-table-head{
  font-weight: bold;
  border-top: 1px solid #cccccc;
}

.agenda-table-cell{
  flex: 0 0 33.33%;
  padding: 0.5rem 1rem;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

.agenda-table-cell:not(:last-child){
  border-right: none;
}
.agenda-table-row:not(.agenda-table-head) .agenda-table-cell {
  font-size: 1rem;
}

//.agenda-table-cell ul li:before{
//  content:"\2014";
//  display:inline-block;
//  color:#e10;
//}
.site-key-speakers .card{
  margin-bottom: 0;
}

.site-key-speakers .card-title,
.site-materials .card-title{
  font-size:1.5rem !important;
  margin: 0 0 .912rem 0;
}

.site-material-icon {
  font-size: 4rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.site-instructions i{
  margin: 1.25rem;
}

.site-instructions span {
text-align: left;
}

.site-instructions i.left-edge-align{
  margin-left: 0;
}

.site-register .btn-65{
  width:65%;
}

.site-register .card{
  margin-bottom: 0;
}

.site-register .card-actions .btn:not(:first-of-type){
  margin-top: 1rem;
}

.site-register .small {
  font-size:0.8rem;
}


/* 
/* Avatar image
*/
.avatar-media{
  width:20%;
}

.avatar-media:hover > .link{
  transform:scale(1.2);
  -webkit-transform:scale(1.2);
  -moz-transform:scale(1.2);
  -ms-transform:scale(1.2);
  -o-transform:scale(1.2);
}
.avatar-img{
  overflow: hidden;
  position: relative;
}


.avatar-img-round{
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.avatar-img:after{
  display: block;
  content: "";
  padding-bottom: 100%;
}

.avatar-img img{
  position: absolute;
  top:0;right:0;bottom:0;left:0;
}

.avatar-details{
  width:80%;
  flex-grow: 1;
  margin-left: 1.5rem;
}

.avatar-name {
  font-size: 1.5rem;
  font-weight: 300;
}

/*
/*  Media types */

/*  Tablet */
@media screen and (max-width:1024px){
  html {
      font-size: 14px;
  }
  .container {
      width: 95%;
  }
  .row .col{
      padding: 0 ;
  }

  .avatar-media{
      width:30%;
  }

}
/* 
/* Video player  */
.video-wrapper{
  z-index:1;
}

.video-js{
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  -o-transform:translate(-50%,-50%);
}

/* Tablet */

/*  Phone */

@media screen and (max-width:960px){
  html {
      font-size: 12px;
  }
  .site-header-logo{
      width:30%;
  }
  .mobile-flex-column{
      flex-direction: column !important;
  }
  .mobile-mt-1_5rem{
      margin-top: 1.5rem !important;
  }

  .mobile-txt-center{
      text-align: center;
  }

  .mobile-center{
      margin: 0 auto;    
  }

  .avatar-details{
      width:100%;
      margin-left: 0;
  }

  .mobile-flex-none{
      display: block;
  }

  .mobile-scroll-none{
      overflow-y: initial;
      height: auto;
  }

  .mobile-justify-end{
      justify-content: flex-end;
  }
}
@media screen and (max-width:667px){
  .site-event-date {
      font-size: 1.3rem;
  }
  .avatar-media{
      width:50%;
  }

  .agenda-table-row{
      flex-direction: column;
      border:1px solid #cccccc;
  }

  .agenda-table-row:not(:last-child){
      border-bottom: none;
  }
  .agenda-table-head{
      display: none;
  }
  .agenda-table-cell{
      flex:0 0 100%;
      border:none;
  }
  .avatar-name {
      text-align: center;
      font-size: 1.5rem;
  }
}

@media screen and (max-width:375px){
  .site-event-date {
      font-size: 1rem;
  }
  .site-event .site-event-name{
      font-size: 2.5rem;
  }
  .site-event .site-event-name .small{
      font-size: 0.9rem;
  }
  .avatar-name {
      text-align: center;
      font-size: 1.5rem;
  }
}