#pairing-nav {
    margin: 50px 0;
    text-align: center;
}
#pairing-nav > * {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
#pairing-nav .this {
    padding: 0 70px;
}
#pairing-nav h1 {
    color: #3548A4;
    font-size: 24pt;
    font-weight: 600;
    line-height: 120%;
}
#pairing-nav h3 {
    color: #BBB;
    font-size: 13pt;
    font-weight: 300;
}
#pairing-nav .prev,
#pairing-nav .next {
    font-size: 12pt;
    color: #555;
    font-weight: 400;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#pairing-nav .prev {
    padding-right: 75px;
}
#pairing-nav .next {
    padding-left: 75px;
}
#pairing-nav .prev:after,
#pairing-nav .next:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: #000;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-family: "Nanum Gothic", "나눔고딕", sans-serif;
    font-size: 16pt;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#pairing-nav .prev:after {
    content: '<';
    right: 0;
    letter-spacing: 4px;
}
#pairing-nav .next:before {
    content: '>';
    left: 0;
    letter-spacing: -4px;
}
#pairing-nav .prev:hover:after,
#pairing-nav .next:hover:before {
    background-color: #3548A4;
    color: #FFF;
}

#pairing-cont-wr {
    overflow: hidden;
}
#pairing-cont {
    position: relative;
    display: grid;
    grid-template-columns: 100% 100% 100% 100% 100% 100% 100%;
}
/*div[id^='pairing-'] {
    display: none;
}
div[id^='pairing-'].on {
    display: block;
}*/
div[id^='pairing-'] {
}
div[id^='pairing-'] table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}
div[id^='pairing-'] table th,
div[id^='pairing-'] table td {
    padding: 15px 20px;
}
div[id^='pairing-'] table th {
    text-align: center;
    background-color: #F5F5F5;
    border: 1px solid #e8e8e8;
}
div[id^='pairing-'] table td {
    font-size: 11pt;
    border-bottom: 1px solid #e8e8e8;
}
div[id^='pairing-'] table .empty {
    text-align: center;
}

div[id^='pairing-'] table .subject {
    font-size: 12pt;
    font-weight: 600;
}
div[id^='pairing-'] table .time,
div[id^='pairing-'] table .category,
div[id^='pairing-'] table .replay {
    width: 140px;
    white-space: nowrap;
    text-align: center;
}
div[id^='pairing-'] table .time {
    color: #b2976a;
    font-weight: 600;
}
div[id^='pairing-'] table .replay .btn {
    display: inline-block;
    width: 58px;
    line-height: 26px;
    height: 26px;
    text-align: center;
    color: #FFF;
    font-size: 9pt;
    background-color: #b49e6d;
    padding: 0;
    font-weight: 300;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
div[id^='pairing-'] table .replay .btn:hover {
    background-color: #37499F;
}