.speaker-info {
    position: relative;
}

.speaker-info .imgbox {
    max-width: 220px;
    border-radius: 5px;
    overflow: hidden;
}

.speaker-info .speaker-title p {
    font-size: 16px;
}

.speaker-txt {
    margin-top: 12px;
}
.speaker-txt p {
    margin: 5px 0;
}

@media (max-width:767px) {
    .speaker-info .imgbox {
        max-width: 250px;
        margin: 0 auto 20px auto;
    }
}



/*====================================
# share
==================================== */

.btn_wrap .container i {
    opacity: 0;
    font-size: 24px;
    color: #008fff;
    will-change: transform;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.btn_wrap {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    width: 160px;
    height: 50px;
    background-color: #f8f8f8;
    border: 1px solid #008fff;
    border-radius: 80px;
    padding: 0 18px;
    will-change: transform;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn_wrap:hover {
    /* transition-delay: .4s; */
}

.btn_wrap span {
    position: absolute;
    z-index: 99;
    width: 160px;
    height: 50px;
    border-radius: 80px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background-color: #008fff;
    padding: 0 14px;
    -webkit-transition: all 1.2s ease;
    transition: all 1.2s ease;
}

.btn_wrap .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 160px;
    height: 50px;
    border-radius: 80px;
}

.btn_wrap .container i:nth-of-type(1) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.btn_wrap .container i:nth-of-type(2) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.6s;
}

.btn_wrap .container i:nth-of-type(3) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.btn_wrap .container i:nth-of-type(4) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.btn_wrap:hover span {
    /* -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s; */
    -webkit-transform: translateX(-280px);
    transform: translateX(-280px);
}

.btn_wrap:hover i {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn_wrap .container .facebook,
.btn_wrap .container .linkedin {
    position: relative;
    margin-top: 5px;
}

.btn_wrap .container .facebook a,
.btn_wrap .container .linkedin a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


@media (max-width:767px) {
    .btn_wrap {
        margin: 0 auto 10px;
    }
}

/*====================================

==================================== */

.speech-list {
    list-style: none;

}

.speech-list h5 {
    color: #212121;
}

.speech-list h5:hover {
    color: var(--main-color);
}


.speech-list li {
    position: relative;
    padding-left: 10px;
    color: #666666;
    border-bottom: 1px solid #cfcfcf;
    padding: 0 10px 12px;
    margin-bottom: 12px;
}

.speech-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    position: absolute;
    top: 10px;
    left: -20px;
}



/*====================================
講者議程
==================================== */

.agenda-info {
    background-color: #e8f6ff;
}

.agenda-area {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.agenda-area span {
    color: #5e5e5e;
    padding: 0;
    font-size: 18px;
}

.agenda-area p {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}


.agenda-area li {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.agenda-area .btn-content {
    color: #fff;
    font-size: 16px;
}

/* .button-area{
  display: inline-block;
  background-color: #0068cf;
  border-radius: 500px;
  padding: 5px 16px;
}

.button-area button{
  position: relative;
  color: #fff;
}

.button-area button a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.button-area i{
  padding: 10px;
  transition: all .2s ease-in;
}

.button-area button:hover i{
  border-radius: 50%;
  background-color: #fff;
  color: #0068cf;
} */