.table{
    border: solid 1px #000;
    border-bottom: none;
    text-align: center;
    margin: 30px 0;
}
.table p{
    display: none;
}
.heading{
    font-weight: bold;
    color: #fff;
    background: #4473c5;
    border-bottom: solid 1px #000;
}

.table .title{
    font-size: 14px;
    font-weight: bold;
    color: #000;
    padding: 10px 10px 10px calc(30% + 10px);
    border-bottom: solid 1px #000;
    text-align: left;
}
.event{
    border-bottom: solid 1px #000;
}

.time{
    float: left;
    width: 30%;
    padding: 10px;
}
.meeting{
    float: left;
    width: 70%;
    padding: 10px;
    text-align: left;
    border-left: solid 1px #000;
}
.heading .meeting{
    border-left: solid 1px #fff;
}


.tabs-block{
    position: relative;
    background: #f8f8f8;
    margin: 30px 0;
}
.tabs-block p{
    display: none;
}

.tabs{
    width: 300px;
}
.tab{
    padding: 20px;
    line-height: 20px;
    background: #ebebeb;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    cursor: pointer;
}
.tab.active{
    background: #f8f8f8;
    border-right: solid 1px #f8f8f8;
}
.tabs-info{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 300px);
    height: 100%;
}
.info{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.info.active{
    z-index: 1;
    opacity: 1;
    -webkit-transition: all 0.25s ease-out 0.25s;
       -moz-transition: all 0.25s ease-out 0.25s;
         -o-transition: all 0.25s ease-out 0.25s;
            transition: all 0.25s ease-out 0.25s;
}

.info a{
    position: absolute;
    left: 50%;
    top: 50%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.info  img{
    max-height: 100%;
}



/* Responsive ----------------------------------------------------------*/


@media (max-width: 800px){
    .tabs{
        width: 100%;
    }
    .tab{
        float: left;
        width: 50%;
    }
    .tabs-info{
        position: relative;
        width: 100%;
        height: 250px;
    }
    .info a{
        width: 90%;
        text-align: center;
    }
}


@media (max-width: 600px){
    .table{
        margin: 30px -20px 30px -40px;
        font-size: 14px;
    }
    .tabs-block{
        margin: 30px -20px 30px -40px;
    }
    .tab{
        float: none;
        width: auto;
    }
}

@media (max-width: 400px){
    .table{
        font-size: 12px;
    }
    .time,
    .meeting{
        padding: 5px;
    }
    .table .title{
        font-size: 11px;
        padding: 5px 5px 5px calc(30% + 5px);
    }
}