#tc-order-history-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

#tc-order-history-modal.show {
    visibility: visible;
    opacity: 1;
}

.tc-oh-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tc-oh-content {
    width: 30%;
    height: 70%;
    position: fixed;
    z-index: 2;
    background: #fff;
}

.tc-oh-header {
    box-shadow: 0px 1px 0px #ccc;
    padding: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
    position: relative;
}

.tc-oh-close {
    float: right;
    padding: 0 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.tc-oh-loader {
    background: url(../images/loader.gif) no-repeat center center;
    background-size: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.tc-oh-body {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    z-index: 1;
}

.tc-oh-control {
    position: absolute;
    bottom: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.tc-oh-control button {
    width: 100%;
    font-size: 14px;
    text-decoration: none;
    text-transform: none;
}

.tc-oh-control button:hover {
    text-decoration: none;
}

.tc-oh-tickets {
    width: 100%;
    padding: 60px 20px 0 20px;
}

.tc-oh-tickets table {
    margin: 0 auto;
}

.tc-oh-tickets th,
.tc-oh-tickets td {
    font-size: 14px;
}

.tc-oh-tickets tr {

}

body.tc-oh-modal-open {
    overflow: hidden;
}

.tc-oh-no-tickets {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 16px;
}