@charset "utf-8";

#container {
    text-align: center;
}

.container {
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
}

.container #date {
    height: 50px;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    font-size: 16px;
    color: #4b2f48;
    line-height: 50px;
}

.container #station {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    background: rgba(181, 181, 181, 0.2);
    border-bottom: 1px solid #ddd;
}

.container #station h3 {
    font-size: 32px;
}

.container #station p {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
}

.container #station img {
    margin: 0 40px;
}

.container #ticket_info {
    height: 290px;
    margin: 0 355px;
}

.container #ticket_info .top {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.container #ticket_info .top h4 {
    font-size: 16px;
    color: #4b2f48;
}

.container #ticket_info .info {
    display: flex;
    justify-content: space-between;
    text-align-last: left;
}

.container #ticket_info .info p::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 5px 0;
}

.container #ticket_info .info h4 {
    font-size: 18px;
}

.container #ticket_info>p {
    color: #4b2f48;
    font-weight: bold;
    font-size: 12px;
    text-align: left;
}

.container #ticket_info #buttons {
    display: flex;
    justify-content: space-between;
}

.container #ticket_info #buttons button {
    width: 150px;
    height: 45px;
    padding-bottom: 3px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border-style: none;
    background: #4b2f48;
    color: #fff;
    margin-top: 40px;
}

.container #ticket_info #buttons .ticket_refund {
    background: #B5B5B6;
}

.container #ticket_info #buttons .ticket_print {
    background: #fff;
    color: #4b2f48;
    border: 1px solid #B5B5B6;
}