body {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    background: #000000;
    color: #D4D4D4;
    margin: 0;
    padding: 0;
}

p{
    margin: 0;
}

.app__header{
    border-bottom: 1px solid #303030;
    padding-top: 10px;
}

.app__header .effective{
    font-size: 20px;
    font-weight: 500;
    color: #D4D4D4;
    text-align: center;
    margin-bottom: 25px;
}

.app__header .navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.app__header .navbar span{
    font-size: 16px;
    color: #D4D4D4;
    font-weight: 500;
    padding: 0 13px 11px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.app__header .navbar span svg path{
    fill: #D4D4D4;
    transition: 0.3s;
}

.app__header .navbar span b{
    font-weight: 500;
}

.app__header .navbar span svg{
    width: 18px;
    height: 20px;
    max-width: 100%;
    display: block;
    transition: 0.3s;
}

.app__header .navbar span.active{
    border-color: #E21A1A;
    color: #E21A1A;
}
.app__header .navbar span.active svg path{
    fill: #DB1A15;
}
.app__header .navbar span.active:last-child svg path{
    stroke: #DB1A15;
}

.ticket__info{
    padding: 15px 20px 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    display: none;
    transition: 0.3s;
}

.ticket__info.active{
    display: block;
}

.info__item{
    border-bottom: 1px solid #303030;
    padding: 6px 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info__item .image{
    min-width: 45px;
    max-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info__item .image svg{
    min-width: 24px;
    max-width: 24px;
    width: 24px;
    display: block;
}

.info__item .data p{
    font-size: 16px;
    color: #787878;
    font-weight: 500;
    margin-bottom: 4px;
}

.info__item .data div{
    font-size: 22px;
    color: #D4D4D4;
    font-weight: 500;
}

.info__item:last-child{border-bottom: 0}

.button__wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 20px 30px;
    background: #1A1A1A;
}

.button__wrapper button{
    padding: 10px 20px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background: #E21A1A;
    outline: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.qr{
    width: 100%;
    max-width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background: #fff;
}

.qr img{
    width: 100%;
    max-width: 100%;
    display: block;
}

.code{
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-top: 3px;
}

.ticket-info__wrapper{
    overflow: hidden;
}