.ticket-card {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 10px 10px 10px 10px;
}

.ticket-card .watermark-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-card .watermark-container img {
    width: 50%;
    opacity: 0.1;
    transform: rotate(-25deg);
}

.ticket-card .ticket-header {
    width: 100%;
    background: #B22118;
    color: #fff;
    padding: 10px 10px;
    font-size: 25px;
    border-radius: 10px 10px 0px 0px;
}

.ticket-card .ticket-body {
    width: 100%;
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.ticket-card .ticket-body .top-container {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
}

.ticket-card .ticket-body .top-container .row1 {
    width: 33%;
    text-align: center;
}

.ticket-card .ticket-body .top-container .row1 .airline-from {
    font-size: 40px;
    color: #B22118;
    font-weight: bold;
}

.ticket-card .ticket-body .top-container .row2 {
    width: 33%;
    text-align: center;
}

.ticket-card .ticket-body .top-container .row2 .flight-icon img {
    width: 70px;
    transform: rotate(45deg);
    opacity: 0.7;
}

.ticket-card .ticket-body .top-container .row3 {
    width: 33%;
    text-align: center;
}

.ticket-card .ticket-body .top-container .row3 .airline-to {
    font-size: 40px;
    color: #B22118;
    font-weight: bold;
}

.ticket-card .ticket-body .bottom-container {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.ticket-card .ticket-body .bottom-container .box {
    width: 25%;
    text-align: center;
}

.ticket-card .ticket-body .bottom-container .box .title {
    font-size: 19px;
    color: #B22118;
    font-weight: 600;
    display: block;
}

.ticket-card .ticket-body .bottom-container .box .content {
    font-size: 19px;
    color: #000;
    display: block;
}

.ticket-card .ticket-body .actions-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ticket-right {
    width: 100%;
    background: #B22118;
    border-radius: 10px 10px 10px 10px;
    height: 100%;
}

.ticket-right .ticket-header {
    width: 100%;
    background: #B22118;
    color: #fff;
    padding: 10px 10px;
    font-size: 25px;
    border-radius: 10px 10px 0px 0px;
    border-bottom: 2px dotted #fff;
}

.ticket-right .ticket-body {
    width: 100%;
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.ticket-right .ticket-body .icon-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ticket-right .ticket-body .icon-container .icon {
    color: #fff;
    font-size: 100px;
}

.ticket-right .ticket-body .title {
    font-size: 25px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.ticket-right .ticket-body .description {
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
}


/** Small screens start ***/

@media only screen and (max-width: 690px) {
    .ticket-card {
        border-radius: 10px 10px 0px 0px;
    }
    .ticket-card .ticket-body .top-container {
        flex-wrap: wrap;
    }
    .ticket-card .ticket-body .top-container .row1 {
        width: 100%;
    }
    .ticket-card .ticket-body .top-container .row1 .airline-from {
        font-size: 30px;
    }
    .ticket-card .ticket-body .top-container .row2 {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .ticket-card .ticket-body .top-container .row2 .flight-icon img {
        transform: rotate(135deg);
    }
    .ticket-card .ticket-body .top-container .row3 {
        width: 100%
    }
    .ticket-card .ticket-body .top-container .row3 .airline-to {
        font-size: 30px;
    }
    .ticket-card .ticket-body .bottom-container {
        flex-wrap: wrap;
    }
    .ticket-card .ticket-body .bottom-container .box {
        width: 50%;
        margin-bottom: 15px;
    }
    .ticket-right {
        border-radius: 0px 0px 10px 10px;
        /* display: none; */
    }
}


/*** Small screens end ***/