@import '../../../style/variables.scss';

.e-ticket{
    .e-ticket-box{
        max-width: 784px;
        margin: 0 auto;
        overflow: hidden;
        .top{
            padding: 24px;
            border: 4px solid $primary;
            border-bottom: 2px dashed $mainBorder;
            position: relative;
            text-align: center;
            @media only screen and (min-width: 768px){
                padding: 32px;
            }
            @media only screen and (min-width: 1200px){
                padding: 50px 32px 86px;
            }
            &::after,&::before{
                content: '';
                position: absolute;
                bottom: -30px;
                width: 60px;
                height: 60px;
                border-radius: 100%;
                background: $white;
                border: 4px solid $primary;
                @media only screen and (min-width: 768px){
                    bottom: -55px;
                    width: 110px;
                    height: 110px;
                }
            }
            &::after{
                right: -30px;
                @media only screen and (min-width: 768px){
                    right: -55px;
                }
            }
            &::before{
                left: -30px;
                @media only screen and (min-width: 768px){
                    left: -55px;
                }
            }
            .qr-code{
                display: inline-block;
            }
            .skeleton-box{
                width: 238px;
            }
        }
        .bottom{
            padding: 40px 20px 20px;
            border: 4px solid $primary;
            border-top: none;
            @media only screen and (min-width: 768px){
                padding: 60px 32px 32px;
            }
            @media only screen and (min-width: 1200px){
                padding: 86px 32px 32px;
            }
        }
        .user-content-list{
            max-width: 100%;
            border-bottom: 2px dashed $mainBorder;
            margin-bottom: 32px;
            padding-bottom: 32px;
            @media only screen and (min-width: 640px){
                grid-template-columns: repeat(2, 1fr);
            }
            @media only screen and (min-width: 1200px){
                gap: 32px;
            }
            li{
                .label-name{
                    font-size: 16px;
                    // font-family: '__Cinzel_338bf7', '__Cinzel_Fallback_338bf7';
                    // text-transform: lowercase;
                }
                i{
                    font-size: 12px;
                    @media only screen and (min-width: 1200px){
                        font-size: 14px;
                    }
                    @media only screen and (min-width: 1441px){
                        font-size: 16px;
                    }
                }
                p{
                    text-transform: capitalize;
                    margin: 0;
                }
            }
        }
        .download-btn{
            width: 100%;
        }
    }
}