/*
common
*/
ul, li {
    padding: 0 0;
    margin: 0;
    list-style: none;
}

ul > li > .detail {
    width: 80%;
    flex-direction: row;
    line-height: 200%;
    -moz-box-shadow:0 0 10px #d4d4d4;
    -webkit-box-shadow:0 0 10px #d4d4d4;
    box-shadow:0 0 10px #d4d4d4;
}

#buy-tickets-now {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#buy-tickets-now > .banner {
    width: 100vw;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.banner > img {
    -webkit-user-drag: none;
}

#buy-tickets-now > .banner > .title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #aace3f;
    transform: translate(-50%,-50%);
}

#buy-tickets-now > .banner > .title > .one {
    display: inline-block;
    border: 1px solid #aace3f;
    padding: 5px;
    font-size: 40px;
    font-weight: bold;
}

#buy-tickets-now > .banner > .title > .two {
    font-size: 22px;
    display: inline-block;
}

#buy-tickets-now > .container {
    width: 100vw;
    padding: 5vh 0;
}

.container > li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
}

/**
customize
 */
.detail table {
    width: 60vw;
}
.detail table thead {
    border-bottom: 1px #dadada solid;
}
.detail table thead tr th {
    padding: 4vh 2vw 2vh 2vw;
    font-size: 14px;
}
.detail table thead tr th:first-child {
    padding: 4vh 2vw 2vh 4vw;
}
.detail table thead tr th:last-child {
    padding: 4vh 4vw 2vh 2vw;
}

.detail table tbody tr {
    border-bottom: 1px #dadada solid;
}

.detail table tbody tr td {
    padding: 1vh 0 1vh 1.5vw;
    font-weight: normal;
}

.detail table tbody tr td:first-child {
    padding: 1vh 0 1vh 3vw;
    font-weight: normal;
}

.detail table tbody tr .num {
    display: flex;
    flex-direction: row;
    line-height: 100%;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.detail table tbody tr .num > * {
    margin: 1vh;
    width: 20px;
    height: 20px;
    text-align: center;
}

.detail table tbody tr .num > .cut-back {
    border: 1px #dadada solid;
    color: #dadada;
    cursor: pointer;
}

.detail table tbody tr .num > .number {
    align-self: center;
    margin: 0;
    color: #aace3f;
}

.detail table tbody tr .num > .addition {
    width: 20px;
    height: 20px;
    text-align: center;
    border: 1px #aace3f solid;
    color: #aace3f;
    cursor: pointer;
}

.reimburse {
    padding: 2vh 3vw;
}

.sign-up {
    float: right;
    padding: 2vh 3vw;
    font-size: 24px;
}

.sign-up > * {
    margin-top: 1vh;
}

.sign-up > .money {
    text-align: right;
    padding: 1vh;
}

#sign-up-button {
    cursor: pointer;
    padding: 1vh 2vw;
    background: #aace3f;
    color: #ffffff;
    font-size: 20px;
}
