[class*=inner]{
    margin-top: 20px;
    max-width: 770px;
    padding: 0 20px;
}


img{
    max-width: 100%;
}

header{
    text-align: center;
}

h1{
    margin: 20px 0 40px;
    color: #fff;
    text-align: center;
    background: #595757;
    padding: 20px;
}

@media (max-width:767px){
    header img{
        height: 80px;
     }
    h1{
       font-size: 16px;
    }
}

#tiket{
    padding-bottom: 80px;
}

.print-btn{
    cursor: pointer;
    background: #D1291A;
    font-weight: bold;
    width: 200px;
    height:40px;
    display: block;
    font-size: 16px;
    position: relative;
    text-align: center;
    padding: 12px;
    letter-spacing: 0.1rem;
    z-index:99;
    margin: 0 auto;
    color: #FFF;
}

.print-btn::after{
    content: '';
    position: absolute;
    width: 200px;
    height:40px;
    border-right:solid 2px #D1291A;
    border-bottom:solid 2px #D1291A;
    bottom: -5px;
    right: -5px;
    z-index: 0;
}

.print-btn:hover{
    background: #FFF;
}
.print-btn:hover::after{
    border-right:solid 3px #D1291A;
    border-bottom:solid 3px #D1291A;
}

@media print{
    header img{
        width: 20mm;
        height: auto;
    }
    .print-btn{
        display: none;
    }
    #tiket{
        width: 150mm;
        page-break-after: auto;


    }
}