:root{
    --white-color: #ffffff;
    --black-color: #000;
    --green-color: #00a236;
}


.horizondal-ticket{
    min-height: 350px;
    display: flex;
}

.horizondal-ticket-left{
    width: 30%;
    border-radius: 15px;
    position: relative;
    overflow: hidden; /* Add this to contain the shine effect */
}


.horizondal-ticket-left::after{
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-image: url(../img/horizondal-ticket-abstract.png);
    background-size: 50%;
    background-repeat: no-repeat;
    /* animation: bgZoomInOut 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; */
}

/* @keyframes bgZoomInOut {
    0% {
        background-size: 50%;
    }
    25% {
        background-size: 50.5%;
    }
    50% {
        background-size: 51%;
    }
    75% {
        background-size: 50.5%;
    }
    100% {
        background-size: 50%;
    }
} */


.horizondal-ticket-tag{
    position: absolute;
    top: 0px;
    width: 150px;
    padding: 5px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
    border-radius: 0px 0px 15px 15px;
    text-align: center;
    left: 50%; 
    transform: translateX(-50%);
}

.horizondal-ticket-right{
    width: 70%;
    border-radius: 15px;
    padding: 20px;
}

.horizondal-ticket .horizondal-ticket-rate{
    color: var(--white-color);
    text-align: right;
    background: #ffffff1f;
    padding: 10px;
    border-radius: 10px;
    margin: 0px auto;
    margin-top: 20px;
    border: 1px solid #ffffff30;
}

.horizondal-ticket .horizondal-ticket-rate h4{
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}

.horizondal-ticket .horizondal-ticket-rate h6{
        color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    margin: 0px;
}

.horizondal-ticket-rate span{
    font-size: 15px;
    font-weight: 400;
}

.ticket-left-content{
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    border-right: 2px dashed var(--white-color);
}


.horizondal-ticket-free{
    background: linear-gradient(90deg, #e88f00 0%, #d0ff00 100%) !important;
}

.horizonal-ticket-button{
    background: transparent;
    color: var(--white-color);
    height: 45px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    padding: 0px 20px;
    border: 1px solid rgb(255 255 255 / 54%);
    outline: none;
    margin: auto;
    display: block;
}

.ticket-right-content h3{
    color: black;
    font-size: 18px;
    font-weight: 600;
    width: 70%;
    margin: 0px;
}

.ticket-right-content button{
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #363636;
    border: none;
    outline: none;
}

.ticket-right-content p{
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
}



.horizondal-ticket-features{
    gap: 10px;
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
}

.horizondal-ticket-features li{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2px 6px;
    border-radius: 50px;
}

.horizondal-ticket-features li::before {
    content: '\f00c'; /* Simple checkmark */
    font-family: 'Font Awesome 6 Free', 'FontAwesome';
    display: inline-block;
    margin-right: 8px;
    font-size: 10px;
    font-weight: 900;
    color: var(--white-color);
    height: 15px;
    width: 15px;
    display: grid;
    place-items: center;
    border-radius: 100%;
}


/* ticket green color */
 .ticket-bg-green .horizondal-ticket-features li::before{
    background: var(--green-color);
 }

 .ticket-bg-green .horizondal-ticket-left{
    background: linear-gradient(0deg, #00a236 0%, #003c14 100%);
}

 .ticket-bg-green .ticket-right-content p span {
    color: var(--green-color);
 }

 .ticket-bg-green .horizondal-ticket-right {
    background: linear-gradient(96deg, rgb(58 255 0 / 27%) 0%, rgb(255 255 255 / 10%) 100%);
    border: 1px solid #00a236;

 }

 .ticket-bg-green .horizondal-ticket-tag{
    background: #00a236;
 }

 .ticket-bg-green .horizondal-ticket-features li{
     background: linear-gradient(96deg, rgb(244 255 241) 0%, rgb(255 255 255 / 10%) 100%);
 }
/* ticket green color */


/* ticket red color */
.ticket-bg-red .horizondal-ticket-left{
    background: linear-gradient(0deg, #C02926 -0.01%, #470706 99.99%) !important;
}

.ticket-bg-red .horizondal-ticket-right {
    background: linear-gradient(96deg, #ffa7a6 0%, #c0292600 100%);
    border: 1px solid #a82220;
 }

.ticket-bg-red .horizondal-ticket-features li::before{
    background: #a5211f;
}

.ticket-bg-red .ticket-right-content p span{
    color: #a5211f;
}

 .ticket-bg-red .horizondal-ticket-tag{
    background: #a5211f;
 }

 .ticket-bg-red .horizondal-ticket-features li{
    background: linear-gradient(96deg, rgb(255 255 255 / 53%) 0%, rgb(255 255 255 / 10%) 100%);
 }
/* ticket red color */

/* ticket Blue color */

.ticket-bg-blue .horizondal-ticket-left{
    background: linear-gradient(0deg, #0081C5 -0.01%, #050FAE 99.99%) !important;
}

.ticket-bg-blue .horizondal-ticket-right {
    background: linear-gradient(96deg, #0510ae39 0%, #c0292600 100%);
    border: 1px solid #050FAE;
 }

.ticket-bg-blue .horizondal-ticket-features li::before{
    background: #050FAE;
}

.ticket-bg-blue .ticket-right-content p span{
    color: #050FAE;
}

 .ticket-bg-blue .horizondal-ticket-tag{
    background: #033db7;
 }

.ticket-bg-blue .horizondal-ticket-features li{
   background: linear-gradient(96deg, rgb(255 255 255 / 50%) 0%, rgb(255 255 255 / 10%) 100%)
 }

/* ticket Blue color */



/* ticket Light green color */

.ticket-bg-light-green .horizondal-ticket-left{
    background: linear-gradient(0deg, #00B95E -0.01%, #A8EA58 99.99%) !important;
}

.ticket-bg-light-green .horizondal-ticket-right {
    background: linear-gradient(96deg, #11be5d52 0%, #c0292600 100%);
    border: 1px solid #00B95E;
 }

.ticket-bg-light-green .horizondal-ticket-features li::before{
    background: #00B95E;
}

.ticket-bg-light-green .ticket-right-content p span{
    color: #00B95E;
}

.ticket-bg-light-green .horizondal-ticket-tag{
    background: #06bb5d;
}

.ticket-bg-light-green .horizondal-ticket-features li{
       background: linear-gradient(96deg, rgb(243 243 243) 0%, rgb(255 255 255 / 10%) 100%);
 }

/* ticket Light green color */


/* ticket orange color */

.ticket-bg-orange .horizondal-ticket-left{
    background: linear-gradient(0deg, #F27809 -0.01%, #C32E23 99.99%) !important;
}

.ticket-bg-orange .horizondal-ticket-right {
    background: linear-gradient(96deg, #f27a0944 0%, #c0292600 100%);
    border: 1px solid #F27809;
 }

.ticket-bg-orange .horizondal-ticket-features li::before{
    background: #F27809;
}

.ticket-bg-orange .ticket-right-content p span{
    color: #F27809;
}

.ticket-bg-orange .horizondal-ticket-tag{
    background: #F27809;
}


 .ticket-bg-orange .horizondal-ticket-features li{
    background: linear-gradient(96deg, rgb(255 255 255 / 53%) 0%, rgb(255 255 255 / 10%) 100%);
 }

/* ticket orange color */



/* ticket purple color */

.ticket-bg-purple .horizondal-ticket-left{
    background: linear-gradient(0deg, #5D2B7E -0.01%, #431B5A 99.99%) !important;
}

.ticket-bg-purple .horizondal-ticket-right {
    background: linear-gradient(96deg, #5d2b7e5a 0%, #c0292600 100%);
    border: 1px solid #5D2B7E;
 }

.ticket-bg-purple .horizondal-ticket-features li::before{
    background: #5D2B7E;
}

.ticket-bg-purple .ticket-right-content p span{
    color: #5D2B7E;
}

.ticket-bg-purple .horizondal-ticket-tag{
    background: #5D2B7E;
}

 .ticket-bg-purple .horizondal-ticket-features li{
    background: linear-gradient(96deg, rgb(255 255 255 / 53%) 0%, rgb(255 255 255 / 10%) 100%);
 }

 

/* ticket purple color */


/* button */

.horizonal-ticket-button {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--white-color);
    height: 45px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    padding: 0px 20px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    outline: none;
    margin: auto;
    display: block;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.horizonal-ticket-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    z-index: 1;
}

.horizonal-ticket-button:hover::before {
    animation: shine-sweep 1.3s ease-in-out forwards;
}

@keyframes shine-sweep {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
/* button */

 /* floating particles */

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(255, 255, 255, 0.6);
            animation: particleFloat 15s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
        .particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
        .particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 2s; }
        .particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 2.5s; }
        .particle:nth-child(7) { top: 40%; left: 90%; animation-delay: 3s; }
        .particle:nth-child(8) { top: 90%; left: 30%; animation-delay: 3.5s; }
        .particle:nth-child(9) { top: 50%; left: 10%; animation-delay: 4s; }
        .particle:nth-child(10) { top: 15%; left: 50%; animation-delay: 4.5s; }

        /* floating particles */


        /* coming soon */
        .horizondal-coming-soon{
            opacity: 0.5;
            position: relative;
        }

        .horizondal-coming-soon::before{
            position: absolute;
            width: fit-content;
            height: fit-content;
            justify-content: center;
            align-items: center;
            z-index: 10;
            content: 'coming soon';
            border-radius: 10px;
            font-size: 30px;
            text-transform: uppercase;
            color: var(--black-color);
            font-weight: 500;
            letter-spacing: 1px;
            padding: 5px 35px;
            border: 2px dashed #ffffff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ffffff63;
        }

        .horizondal-coming-soon::after{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9;
            content: '';
            color: white;
            text-transform: uppercase;
            background: #ffffff31;
            backdrop-filter: blur(4px);
            border-radius: 15px;
        }
        /* coming soon */



        /* shining animation */

        


        @media (max-width: 1200px) {
            .horizondal-ticket-tag{
                width: 100px;
                font-size: 12px;
            }
        }
        @media (max-width: 550px) {
            .horizondal-ticket{
                flex-direction: column;
                margin-bottom: 15px;
            }
            .horizondal-ticket-left{
                width: 100%;
            }

            .horizondal-ticket-right{
                width: 100%;
            }
            .ticket-left-content{
                margin: 0px;
                flex-direction: initial;
                align-items: center;
            }

            .horizondal-ticket .horizondal-ticket-rate{
                margin: 0px;
                
            }

            .horizondal-coming-soon::before{
                width: 80%;
                text-align: center;
            }

            .horizondal-ticket-tag{
                right: 0px;
                left: auto;
                transform: none;
                border-radius: 0px 0px 0px 15px;
            }

            .ticket-left-content{
                padding-top: 30px;
            }

            .ticket-left-content{
                border-right: 0px;
                border-bottom: 3px dashed var(--white-color);
            }
        }
        @media (max-width: 1200px) {}
        @media (max-width: 1200px) {}