.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.8em !important;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    display: table;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.styled-table thead tr {
    background-color: #00aeef;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table th {
    background: linear-gradient(45deg, #498595, #B4C9DE, #A3CBEE);
    color: #fff;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.styled-table tbody tr {
    /*border-bottom: 1px solid #dddddd;*/
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #00aeef;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #00aeef;
}

input[type='checkbox'] {
    display: none;
}

.wrap-collabsible {
    margin: 1rem 0;
}

.lbl-toggle {
    display: block;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: left;
    padding: 0rem;
    color: #00aeef;
    background: #ffffff;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
    /*color: #FFF;*/
}

.lbl-toggle::before {
    content: ' ';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
    transition: transform .2s ease-out;
}

.toggle:checked+.lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
}

.toggle:checked+.lbl-toggle+.collapsible-content {
    max-height: 1500px;
}

.toggle:checked+.lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    background: white;
    /* rgba(0, 105, 255, .2);*/
    border-bottom: 1px solid white;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1rem;
    font-size: .9em;
}

.collapsible-content p {
    margin-bottom: 0;
}

/* video container */
.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-container::after {
    padding-top: 56.25%;
    /* 75% if 4:3*/
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.exhibitors-center {
    margin: auto;
    width: 90%;
}

.exhibitors-column {
    flex: 50%;
    padding: 20px;
    position: relative;
}

.exhibitors-row {
    display: flex;
    background-color: #c90c80;
    border-radius: 10px;
    padding: 10px;
}