/* ---------- agenda Model ---------- */
.agModal .modal-content {
    border-radius: 10px;
    font-size: 16px;
}

.agModal .modal-body {
    padding: 1.5rem 2.2rem;
}

.modal-body h5 {
    text-align: center;
}

.modal-body p {
    margin-bottom: 5px;
    line-height: 1.8;
}

.agModal .modal-header {
    border-bottom: none;
}

.agModal h3 {
    font-weight: 700;
}


.agenda-content-class::before {
    content: url(../img/icon/book.svg);
    display: inline-block;
    transform: translateY(2px);
    width: 16px;
    height: 16px;
    color: #353535;
}

.modal-body .list-inline {
    margin-bottom: 0;
}

.agenda-content-class p {
    margin-bottom: 0;
}

.agModal .tag {
    font-size: 13px;
}

.agModal-sp {
    margin-bottom: 20px;
}

.agModal-sp img {
    display: block;
    margin: 0 auto;
    max-width: 120px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.main-tag,
.tag {
    display: inline-block;
    margin-bottom: 20px;
}

.main-tag span,
.tag span {
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 5px;
}

.main-tag span {
    background-color: #6db9ff;
    color: #fff;
}

.tag span {
    background-color: #EDEEED;
}



@media (min-width: 768px) {
    .agModal {
        max-width: 650px;
    }
}

@media (max-width:650px) {

    .agenda-content::after,
    .agenda-break::after {
        content: none;
    }

}


/* ---------- speaker Model ---------- */
.sp-modal .modal-body h3 {
    background-color: #e4f8ff;
    font-weight: 700;
    margin: 0 0 .5rem;
    padding: 5px 10px;
    border-radius: 0;
    line-height: 1.2;
    text-align: center;
}

.sp-modal h5 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.sp-modal .modal-header {
    border-bottom: none;
}

.sp-modal .modal-body {
    padding: 0 2.5rem 2rem;
}

.sp-modal .modal-body p {
    font-size: 16px;
    margin-bottom: 10px;
}

.modal-photo {
    max-width: 250px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto 2rem;
    border: 1px solid #dfdfdf;
}

.modal-photo img {
    display: block;
    width: 100%;
}

/* ---------- agenda Model ---------- */
.agenda-modal .modal-body h3 {
    background-color: #e4f8ff;
    font-weight: 700;
    margin: 0 0 .5rem;
    padding: 5px 10px;
    border-radius: 0;
    line-height: 1.2;
}

.agenda-modal .modal-body h5 {
    text-align: left;
}

/* ---------- dropdown ---------- */
.agenda-modal .modal-body article {
    overflow: hidden;
    z-index: 99;
}

.agenda-modal .modal-body article p {
    margin: 10px;
}

.agenda-modal .modal-body a {
    color: unset;
    transition: 400ms transform ease;
}

.agenda-modal .modal-body input[type="checkbox"] {
    position: absolute;
    margin: 0;
    width: 800px;
    height: 800px;
    right: 10px;
    top: 10px;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.agenda-modal .modal-body input[type="checkbox"]:checked~.portlet-header a {
    transform: rotate(180deg);
}

.agenda-modal .modal-body input[type="checkbox"]:checked~.portlet-content {
    grid-template-rows: 1fr;
}

.agenda-modal .modal-body .portlet {
    position: relative;
    border: 1px solid #fff;
    border-radius: 2px;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 0 5px #cccccc;
}
.agenda-modal .modal-body .portlet .img-box{
    padding: 20px 0 5px;
}
.agenda-modal .modal-body .portlet .img-box img{
    display: block;
    margin: 0 auto;
    max-width: 180px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.agenda-modal .modal-body .portlet-header {
    background-color: #fff;
    color: #222;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    /* box-shadow: 0 0 5px #eee; */
}

.agenda-modal .modal-body .portlet-header span {
    font-weight: 600;
    font-size: 18px;
}

.agenda-modal .modal-body .portlet-header i {
    color: #055f8c;
}

.agenda-modal .modal-body .portlet-content {
    position: relative;
    display: grid;
    grid-template-rows: 0fr;
    transition: 400ms grid-template-rows ease;
}

.agenda-modal .modal-body .portlet-content article::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    background: #d8d8d8;
}

.agenda-modal .modal-body .portlet-content p {
    padding: 10px;

}