@font-face {
    font-family: 'pepper_sauceregular';
    src: url('fonts/pepper_sauce-webfont.woff2') format('woff2'),
        url('fonts/pepper_sauce-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nefiltregular';
    src: url('fonts/nefilt-webfont.woff2') format('woff2'),
        url('fonts/nefilt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'riona_sansregular';
    src: url('fonts/rionasans-regular-webfont.woff2') format('woff2'),
        url('fonts/rionasans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
}

.main {
    width: 100%;
    position: absolute;
    height: 100%;
    overflow: hidden;
    background: url('assets/bg.jpg') no-repeat center center/cover;
}

/*category*/

.category-section {
    display: flex;
    height: 100%;
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
}

.categories-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.tickets-heading {
    font-family: 'pepper_sauceregular';
    font-size: 4.0vw;
    font-weight: 400;
    line-height: 87.64px;
    text-align: center;
    text-transform: uppercase;
    color: #FFF100;
    margin-bottom: 27px;
}

.categories-list {
    width: 100%;
}

.categories-list img {
    cursor: pointer;
    width: 100%;
    /* height: auto; */
}

.categories-list-image {
    transform: rotateY(90deg);
    transition: all .6s cubic-bezier(0.265, 0.920, 0.315, 1.555);
}

.categories-list-image .ticket {
    transform: scale(1);
    /* Normal size */
    transition: transform 0.5s ease;
    /* Smooth transition for scaling */
}

.categories-list-image .ticket:hover {
    transform: scale(1.05);
}

.categories-list-image.show {
    transform: rotateY(0deg);
    /* Full size */
}

.progress-bar-container {
    display: none;
}


@media (max-width: 1024px) {
    .category-section {
        justify-content: center;
        width: 100%;
        padding: 0px;
    }

    .tickets-heading {
        font-size: 45px;
        font-weight: 400;
        line-height: 60px;
        margin-bottom: 20px;
        padding: 0 6%;
    }

    .categories-list {
        display: block;
        padding-left: 6%;
    }

    .categories-list .categories-list-image {
        margin-right: 20px;
    }

    .categories-list .categories-list-image:last-child {
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    .main {
        background: url('./assets/mob-bg.png') no-repeat center center/cover;
    }

    .category-section {}

    .tickets-heading {
        padding: 0 9%;
        font-size: 34px;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .categories-list {
        display: block;
        padding-left: 4%;
    }

    .categories-list .categories-list-image {
        margin-right: 16px;
    }

    .categories-list .categories-list-image:last-child {
        margin-right: 0px;
    }

    .progress-bar-container {
        display: block;
        width: 85%;
        margin: 0 auto;
        height: 5px;
        background-color: #464646;
        margin-top: 40px;
        border-radius: 11px;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        width: 0%;
        background: #FFF100;
        transition: width 0.3s ease-in-out;
    }
}

/**** Product Section ****/
.products-section {
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
    height: 100%;
}

.product-list-container {
    width: 100%;
    padding: 0 15%;
}

.product-list-container .product-list {
    padding: 20px 10px 20px 20px;
    border-radius: 20px;
    border: 0.5px solid #FFF100;
    background: #df7f912b;
}

.product-list-wrapper {
    max-height: 50vh;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow-y: auto;
    padding-right: 10px;
}

::-webkit-scrollbar-track {
    background-color: #464646;
    width: 5px;
    border-radius: 11px;
}

::-webkit-scrollbar {
    background-color: #464646;
    width: 5px;
    border-radius: 11px;
}


::-webkit-scrollbar-thumb {
    background-color: #FFF100;
    border-radius: 11px;
    width: 5px;
}

.product-card {
    /* background: #DF7F9078; */
    background: #814954;
    border-radius: 19px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

.product-card:hover {
    background: #88545e;
}

.product-card img {
    max-width: 100%;
    margin-bottom: 9px;
}

.product-card h4 {
    color: #FFFFFF;
    font-family: 'riona_sansregular';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

.choice-conatiner {
    margin-top: 21px;
    width: 400px;
}
@media screen and (max-width: 1200px) {
    .choice-conatiner {
        width: 50%;
    }
}
.choice-conatiner h4 {
    font-family: 'pepper_sauceregular';
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 7px;
    color: #FFFFFF;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F2F2F2B2;
    border-radius: 7px;
    width: 100%;
    padding: 6px;
    padding-bottom: 8px;
}

.custom-input {
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
    color: #333;
    margin-left: 10px;
    width: 100%;
    font-family: 'pepper_sauceregular';
}

.custom-input::placeholder {
    font-family: 'riona_sansregular';
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.send-button {
    background: #C00044;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-transform: uppercase;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border: none;
    padding: 6px 20px 3px 20px;
    outline: none;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 16.89px;
    box-shadow: 0px 4px 2px black;
}

.send-button:disabled {
    cursor: not-allowed;
    filter: grayscale(100%);
    box-shadow: 0px 4px 2px black;
}

.change-btn.mobile {
    display: none;
}

.change-category {
    position: absolute;
    bottom: 35px;
    left: 40px;
    width: 9%;
    text-align: center;
    cursor: pointer;
}

.change-category-image {
    background: #DF7F9033;
    border-radius: 18px;
    border: #FFF10080;
    padding: 5px 13px;
}

.change-category img {
    /* width: 80%;
    height: auto;
    margin: 0 auto; */
    width: 100%;
    height: auto;
}

.change-btn {
    font-family: 'pepper_sauceregular';
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
    background: unset;
    outline: unset;
    border: unset;
    text-transform: uppercase;
    color: #FFF100;
    text-align: left;
    cursor: pointer;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .products-section .tickets-heading {
        margin-bottom: 25px;
        margin-top: 110px;
    }

    .product-list-container {
        padding: 0 5%;
    }

    .product-list-container .product-list {
        padding: 2%;
        border-radius: 17px;
    }

    .product-list-wrapper {
        grid-template-columns: repeat(3, 1fr);
        padding-right: 5px;
        gap: 13px;
        max-height: 45vh;
    }

    .product-card {
        padding: 15px;
    }

    .product-card img {
        margin-bottom: 15px;
    }

    .product-card h4 {
        font-size: 19px;
        line-height: 18px;
        font-weight: 400;
    }

    .choice-conatiner {
        margin-top: 22px;
        width: 60%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .choice-conatiner h4 {
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .input-container {
        padding: 8px;
        padding-bottom: 10px;
    }

    .custom-input::placeholder {
        font-size: 16px;
        font-weight: 400;
        line-height: 32px;
    }

    .send-button {
        color: white;
        font-family: "pepper_sauceregular";
        font-size: 20px;
        font-weight: 400;
        line-height: 18px;
    }

    .change-category {
        display: none;
    }

    .change-btn.mobile {
        display: block;
        text-align: center;
        margin: auto;
        margin-top: 15px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .products-section {
        margin-top: 30px;
    }
    .products-section .tickets-heading {
        margin-top:unset;
    }
}

@media (max-width: 767px) {
    .products-section .tickets-heading {
        margin-bottom: 15px;
    }

    .product-list-container {
        padding: 0 30px;
    }

    .product-list-container .product-list {
        padding: 2.5%;
        border-radius: 13px;
        border: 1.5px solid #FFF100;
    }

    .product-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 5px;
        gap: 10px;
        max-height: 40vh;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        margin-bottom: 5px;
    }

    .product-card h4 {
        font-size: 12px;
        line-height: 16px;
        font-weight: 400;
    }

    .choice-conatiner {
        margin-top: 17px;
        width: 85%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .choice-conatiner h4 {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .input-container {
        padding: 5px;
        padding-bottom: 8px;
    }

    .custom-input::placeholder {
        font-size: 12px;
        font-weight: 400;
        line-height: 32px;
    }

    .send-button {
        color: white;
        font-family: "pepper_sauceregular";
        font-size: 18px;
        font-weight: 400;
        line-height: 18px;
    }

    .change-btn.mobile {
        display: block;
        text-align: center;
        margin-top: 15px;
        font-size: 18px;
    }
}

@media (max-width:344px) {
    .product-list-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* start */
.logo{
    width: 125px;
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 2;
}
@media screen and (max-width:720px) {
    .logo{
    width: 100px;
    left: 20px;
    top: 20px;
    }
}
.logo-rift{
    width: 125px;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 2;
    display: none;
}
@media screen and (max-width:720px) {
    .logo-rift{
        width: 100px;
        right: 20px;
        top: 20px;
    }
}
.logo-rift.show{
    display: block;
}
@media screen and (max-width:720px) {
    .logo-rift{
        width: 80px;
    }
}
.machine{
    width: 250px;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    opacity: 0.3;
    transition: all  0.5s ease;
}
@media screen and (max-height:900px) and (min-height: 500px) {
    .machine{
        width: 200px;
    }
    .intro-screen .rift-w-logo {
        width: 300px;
    }
}
@media screen and (max-width:720px) {
    .machine{
        width: 165px;
    }
}
.machine.show{
    opacity: 1;
}
.enter-btn {
    width: 64%;
    position: absolute;
    top: 70%;
    left: 18%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}
.enter-btn:hover{
    transform: scale(1.1);
}
.enter-btn span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #000;
    margin-top: -2px;
    font-family: 'pepper_sauceregular';
    text-align: center;
    width: 6ch;
    white-space: nowrap;
    overflow: hidden;
    line-height: 36px;
}
@media screen and (max-width:720px) {
    .enter-btn span{
        font-size: 30px;
        margin-top: 0px;
    }
}
.machine.show .enter-btn span{
    animation: typing 1.2s steps(6),  step-end infinite alternate;
}
@keyframes typing {
    from {
      width: 0
    }
  }
.machine.show .enter-btn{
    opacity: 1;
    visibility: visible;
}
.machine-txt{
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    width: 100vw;
    text-align: center;
}
.machine-txt h2{
    font-size: 70px;
    line-height: 55px;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease;
    padding: 0px 20px;
}
@media screen and (max-width:1300px) {
    .machine-txt h2{
        font-size: 55px;
        line-height: 45px;
    } 
}
@media screen and (max-width:720px) {
    .machine-txt h2{
        font-size: 40px;
        line-height: 36px;
    } 
}
.machine-txt h2 .gift-gift-logo2{
    width: 200px;
    margin: 0px auto;
}
@media screen and (max-width:720px) {
    .machine-txt h2 .gift-gift-logo2{
    width: 150px;
}
}
.machine-txt p{
    font-size: 24px;
    line-height: 30px;
    color: #FFF;
    font-family: 'pepper_sauceregular';
    margin-top: 10px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease 0.5s;
    max-width: 590px;
    margin: 20px auto 0px;
    padding: 0px 20px;
}

@media screen and (max-width:1300px) {
    .machine-txt p {
        font-size: 20px;
        line-height: 22px;
    }
}
@media screen and (max-height:720px) {
    .machine-txt p {
        font-size: 20px;
        line-height: 22px;
    }
}
.machine.show .machine-txt h2{
  opacity: 1;
  transform: translateY(0px);
}
.machine.show .machine-txt p{
    transform: translateY(0px);
    opacity: 1;
}
.intro-screen{
    width: 100%;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all  0.2s ease;
}
.intro-screen .rift-w-logo{
    width: 400px;
    margin: 20px auto 0px;
    opacity: 0;
    transition: all  0.8s ease 0.2s;
}
@media screen and (max-width:720px) {
.intro-screen .rift-w-logo {
    width: 220px;
}
}
.intro-screen h1{
    font-size: 70px;
    line-height: 85px;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease;
    text-transform: uppercase;
}
@media screen and (max-width:1300px) {
    .intro-screen h1{
        font-size: 55px;
        line-height: 45px;
    } 
}
@media screen and (max-width:720px) {
    .intro-screen h1{
        font-size: 40px;
        line-height: 36px;
    } 
}
.intro-screen h2{
    font-size: 24px;
    line-height: 30px;
    color: #FFF;
    font-family: 'pepper_sauceregular';
    margin-top: 20px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease 0.5s;
    padding: 0px 20px;
    text-transform: uppercase;
}
@media screen and (max-width:1300px) {
    .intro-screen h2{
        font-size: 25px;
        line-height: 28px;
    }
}
@media screen and (max-width:720px) {
    .intro-screen h2{
        font-size: 20px;
        line-height: 25px;
    }
}

.capcha{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease 0.7s;
}
.intro-screen.show-intro{
    opacity: 1;
    visibility: visible;
}
.intro-screen.show-intro h1{
    transform: translateY(0px);
    opacity: 1;
}
.intro-screen.show-intro .rift-w-logo{
    transform: translateY(0px);
    opacity: 1;
}
.intro-screen.show-intro h2{
    transform: translateY(0px);
    opacity: 1;
}
.intro-screen.show-intro  .capcha{
    opacity: 1;
    transform: translateY(0px);
}
.capcha img{
    width: auto;
}
.triger-loader{
    width: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    display: none;
}
.triger-loader2{
    width: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    display: none;
}
.triger-loader h2{
    font-size: 70px;
    line-height: 64px;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 50px);
    transform: translateX(-50%);
    width: 100vw;
    text-align: center;
    padding: 0px 20px;
}
@media screen and (max-width:1300px) {
    .triger-loader h2{
        font-size: 55px;
        line-height: 45px;
    } 
}
@media screen and (max-width:1300px) {
    .triger-loader h2{
        font-size: 40px;
        line-height: 36px;
    } 
}
.triger-message{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100%;
    background: #000000ad;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.triger-message.show{
    opacity: 1;
    visibility: visible;
}
.triger-message-wrapper.show .triger-message-text-box{
    transform: scale(1);
}
.triger-message-wrapper{
    width: 690px;
}
@media screen and (max-height:1300px) {
    .triger-message-wrapper{
        width: 480px;
    }
}
.triger-message-wrapper h2{
    font-size: 70px;
    line-height: 65px;
    width: 150%;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width:1300px) {
    .triger-message-wrapper h2{
        font-size: 55px;
        line-height: 45px;
    } 
}
@media screen and (max-width:720px) {
    .triger-message-wrapper h2{
        font-size: 35px;
        line-height: 30px;
        width: 100%;
    } 
}
.triger-message-wrapper.show h2{
    opacity: 1;
    transform: translateY(0px);
    transform: translateX(-50%);
}
.triger-message-text-box{
    position: relative;
    transition: all  1s ease;
    transform: scale(0);
}
.triger-message-wrapper.show .triger-message-text-box.move{
    transform: scale(1) translateX(200%);
}
.triger-message-text-box p{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px 18%;
    color: #FFF100;
    text-align: center;
    font-size: 30px;
    line-height: 35px;
    font-family: 'pepper_sauceregular';
    text-transform: uppercase;
}
@media screen and (max-width:1300px) {
    .triger-message-text-box p{
        font-size: 25px;
        line-height: 28px;
    }
}
@media screen and (max-width:720px) {
    .triger-message-text-box p {
        font-size: 20px;
        line-height: 22px;
    }
}
.trigger-cta-btn{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    transition: all  0.4s ease;
    transform: translateY(50px);
    opacity: 0;
}
@media screen and (max-width:720px) {
    .trigger-cta-btn{
        margin-top: 20px;
    }
}
.formscreen .trigger-cta-btn{
    transition: all  0.4s ease 1.3s;
}
.triger-message-wrapper.show .trigger-cta-btn, .formscreen.show .trigger-cta-btn{
    transform: translateY(0px);
    opacity: 1;
}

.trigger-cta-btn button, .submit-button button{
    background: none;
    border: none;
    cursor: pointer;
    margin: 0px 10px;
}
.trigger-cta-btn button.new-triger{
    width: 50%;
    transition: all  0.8s ease;
}
.trigger-cta-btn button.new-triger:hover{
    transform: scale(1.1);
}
.trigger-cta-btn button.cont-btn{
    width: 40%;
    transition: all  0.8s ease;
}
.trigger-cta-btn button.cont-btn:hover{
    transform: scale(1.1);
}
.go-back-btn, .go-back-btn2{
    width: 180px;
}
@media screen and (max-width:720px) {
    .go-back-btn, .go-back-btn2{
        width: 150px;
    }
}
.category-section-container, .product-list-outercontainer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100%;
    background: #000000ad;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all  0.5s ease;
}
.category-section-container.show, .product-list-outercontainer.show{
    opacity: 1;
    visibility: visible;
}
.formscreen{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100%;
    background: #000000ad;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}
.formscreen.show{
    opacity: 1;
    visibility: visible;
}
.dnd-text{
    font-size: 14px;
    color: #FFF;
    margin-top: 20px;
    text-align: center;
    font-family: 'pepper_sauceregular';
}
.formscreen-wrapper{
    max-width: 840px;
    text-align: center;
    padding: 0px 20px;
}
.formscreen-wrapper h2{
    font-size: 70px;
    line-height: 85px;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease;
}
@media screen and (max-width:1300px) {
    .formscreen-wrapper h2{
        font-size: 55px;
        line-height: 45px;
    }
}
@media screen and (max-width:720px) {
    .formscreen-wrapper h2{
        font-size: 40px;
        line-height: 36px;
    }
}
.formscreen-wrapper p{
    font-size: 24px;
    line-height: 30px;
    color: #FFF;
    font-family: 'pepper_sauceregular';
    margin-top: 20px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease 0.5s;
}
@media screen and (max-height: 1300px) {
    .formscreen-wrapper p{
        font-size: 20px;
        line-height: 22px;
    }
}
.formscreen.show .formscreen-wrapper h2, .formscreen.show .formscreen-wrapper p, 
.formscreen.show .submit-button, .formscreen.show .text-box{
    transform: translateY(0px);
    opacity: 1;
}
.submit-button{
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease 0.9s;
}
.submit-button button{
    width: 200px;
    position: relative;
    transition: all  0.8s ease;
}
@media screen and (max-width:720px) {
    .submit-button button{
        width: 150px;
    }
}
.submit-button button:hover{
    transform: scale(1.1);
}
.submit-button span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #000;
    margin-top: -2px;
    font-family: 'pepper_sauceregular';
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    line-height: 36px;
    width: 7ch;
}
@media screen and (max-width:720px) {
    .submit-button span{
      font-size: 32px;
    }
}
.formscreen.show .submit-button span{
    animation: typing2 1.2s steps(7) 1.1s, infinite alternate;
}
@keyframes typing2 {
    from {
        width: 0ch
      }
      to {
        width: 7ch
      }
  }
.text-box{
    max-width: 430px;
    margin: 20px auto;
    transform: translateY(-50px);
    opacity: 0;
    transition: all  0.8s ease 0.7s;
}
.text-box input{
    width: 100%;
    height: 50px;
    border: none;
    padding: 0px 20px;
    background: #FFF;
    border-radius: 5px;
    color: #515151;
    font-size: 20px;
    font-family: 'riona_sansregular';
}

.text-box input::-webkit-outer-spin-button,
.text-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.text-box input[type=number] {
  -moz-appearance: textfield;
}
    
@media screen and (max-width:720px) {
    .text-box input{
        font-size: 14px;
    }
}

.triger-msg-txt{
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    height: 58vh;
    pointer-events: none;
    display: none;
    z-index: -1;
}
.tr-txt{
    position: absolute;
    font-size: 20px;
    width: 33vw;
    font-family: 'pepper_sauceregular';
  color: transparent;
  text-shadow: #FFF100 0 0 5px;
}
@media screen and (max-width:720px) {
    .tr-txt{
       width: 45vw;
       font-size: 16px;
    }
}

.tr-txt1{
    top: 10%;
    left: 10%;
}
.tr-txt2{
    top: 40%;
    left: 6%;
}
.tr-txt3{
    bottom: 20%;
    left: 10%;
}
.tr-txt4{
    top: 10%;
    right: 10%;
    text-align: right;
}
.tr-txt5{
    top: 40%;
    right: 6%;
    text-align: right;
}
.tr-txt6{
    bottom: 20%;
    right: 10%;
    text-align: right;
}

.thankyou-msg{
    width: 650px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -325px;
    margin-top: -175px;
    visibility: hidden;
    z-index: 10;
}
@media screen and (max-width:420px) {
    .thankyou-msg{
        width: 100%;
        margin-left: -50%;
    }
}
.thankyou-msg h2{
    font-size: 70px;
    line-height: 55px;
    color: #FFF100;
    font-family: 'pepper_sauceregular';
    transition: all  0.8s ease;
    padding: 0px 20px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}
@media screen and (max-width:1300px) {
    .thankyou-msg h2{
        font-size: 55px;
        line-height: 45px;
    } 
}
@media screen and (max-width:1300px) {
    .thankyou-msg h2{
        font-size: 55px;
        line-height: 45px;
    } 
}
@media screen and (max-width:720px) {
    .thankyou-msg h2{
        font-size: 40px;
        line-height: 36px;
    } 
}
.thankyou-msg p {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px 5%;
    color: #FFF100;
    text-align: center;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    font-family: 'pepper_sauceregular';
}
@media screen and (max-width:720px) {
    .thankyou-msg p {
        font-size: 55px;
        line-height: 55px;
    }
}
.thankyou-msgi-bg{
    position: relative;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}


.show-thank {
    animation-name: grow;
    animation-duration: 900ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    visibility: visible;
  }

  .show-thank .thankyou-msgi-bg{
    animation-name: grow;
    animation-delay: 0.6s;
    animation-duration: 900ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    visibility: visible;


  }
  
  @keyframes grow {
    0% {
      opacity: 0;
      transform: scale(0) rotateY(20deg)
    }
    40% {
      transform: scale(1.1)
    }
    50% {
      transform: scale(0.9)
    }
    60% {
      opacity: 1;
      transform: scale(1.05)
    }
    70% {
      transform: scale(0.95)
    }
    80% {
      transform: scale(1.02)
    }
    90% {
      transform: scale(0.98) rotateY(0)
    }
    100% {
      opacity: 1;
      transform: scale(1)
    }
  }

  .mid-text{
    font-family: 'nefiltregular';
  }

  .loding-anim{
    display: inline-block;
    width: 4ch;
    text-align: left;
    padding-left: 5px;
}
.loding-anim span{
    width: 0ch;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    /* animation: typing3 1.2s; */
    animation: typing3 1.2s steps(3)  infinite;
}
@keyframes typing3 {
    from {
        width: 0ch
      }
      to {
        width: 3ch
      }
  }

.error-msg {
    display: none;
    color: red !important;
    font-size: 14px;
    font-family: 'riona_sansregular';
}

/* end  */