
@font-face {
    font-family: 'franklin_gothic_mediumregular';
    src: url('../fonts/franklin-gothic-medium-webfont.woff2') format('woff2'),
         url('../fonts/franklin-gothic-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    background-color: transparent;
    font-family: 'franklin_gothic_mediumregular';
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    color: #121212;
  }


  
  


.welcome-wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    
  }
.welcome-main{
    background: linear-gradient(180deg, #FDB03E 0%, #FFC977 100%);
    justify-content: space-between;

}

.welcome-logo{
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 50px 0;
    min-height: 40%;
}

.welcome-bg img{
    width: 100%;
    height: auto;
}

.welcome-logo img{
    max-width: 250px;
}

/* .welcome-bg::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background: linear-gradient(181.35deg, rgba(18, 18, 18, 0) 40.2%, rgba(18, 18, 18, 0.65) 73.3%, #121212 98.84%);
} */

.discount-bg-top{
    min-height: 150px;
    padding: 10px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discount-bg-top .discount-total{
    font-size: 50px;
    line-height: 62px;
    color: #301D01;
    font-weight: 600;
    margin-top: 5px;
}

.discount-pro{
    font-size: 32px;
    color: #fff;
}

.main-wrapper{
    max-height: calc(100vh - 200px);
    min-height: max-content;
    height: 100%;
}

.middle-screen.success-screen{
    min-height: 55%;
    justify-content: center;
    align-items: center;
}
.middle-screen.success-screen .welc-text-inner{
  align-items: center;
}

.middle-screen.success-screen .welcome-text{
    gap: 0;
    justify-content: center;
}

.success-screen-wrapper .bags-wrapper.added-bag-wrapper{
  min-height: 45%;
}

.success-screen-wrapper .sug-box.bag-box{
 max-height:344px;
}

.middle-screen{
    height: auto;
    min-height: 65%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    overflow: auto;

}

.bags-wrapper{
    height: auto;
    min-height: 35%;
}
.welcome-text{
    flex-direction: column;
    display: flex;
    gap: 70px;
    justify-content: space-between;
    min-height: 265px;
}

.welcome-text.wt-full{
    flex: 1;
}

.welc-text-inner{
    flex-direction: column;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.sug-box.bag-box .two-col{
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 35px;

}
.sug-box.bag-box .two-col .item{
    background-color: #fff;
    border: 2px solid #D9D9D9;
}

.sug-box.bag-box .two-col .item img{
    max-width: 60px;
    height: auto;
}

.sug-box.bag-box .two-col .item .item-name{
    display: flex;
    justify-content: space-between;
    flex: 1;
    gap: 20px;

}

.sug-box.bag-box{
    max-height: 255px;
    overflow: auto;
}
.two-col{
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.two-col .item{
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid #D9D9D9;
}

.bags-wrapper.added-bag-wrapper{
    justify-content: flex-start;
    position: relative;
    min-height: calc(35% - 60px);
}

.bags-wrapper.added-bag-wrapper .fixed-text{
    position: relative;
}

.item-name.item-jb{
 justify-content: space-between;
 flex-direction: column;
 display: flex;
 padding-bottom: 10px;
}

@keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.4;
    }
    
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }
  
  @keyframes pulse-shadow {
    0% {
      box-shadow: 0 0 0 0 rgba(253, 176, 62, 0.6);
    }
    
    100% {
      box-shadow: 0 0 0 2rem rgba(253, 176, 62, 0.2);
    }
  }

.welcome-text button{
    display: inline-flex;
    background-color: transparent;
    border: 0;
    outline: none;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    flex: 0 0 80px;
    max-width:80px;
    margin: 0 auto;
    animation: pulse-shadow 3s 2s linear infinite;
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #fdb03e;
    
}

.welcome-text button::after, .welcome-text button::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fdb03e;
    border-radius: 100%;
    z-index: -1;
  }
  
  .welcome-text button:after {
    animation: pulse 3s linear infinite;
  }
  
  .welcome-text button:before {
    animation: pulse 3s 1s linear infinite;
  }

.welcome-text .welc-text-inner p{
    font-size: 24px;
    line-height: 34px;
    margin: 0;
}

.bags-wrapper{
    background-color: #f2f2f2;
    padding: 20px 0px 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

}

.bags-wrapper .bag-text{
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    padding: 0 35px;
}

.cart-middle{
    text-align: center;
}
.cart-middle img{
    max-width: 80px;
}


.fixed-text{
    background-color: #9DC1E6;
    padding: 15px 35px;

}


.fixed-text p{
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
}

.speak-text{
    color: #3C87D3;
    font-size: 25px;
    line-height: 34px;
}

.item-name{
    text-align: left;
}

.item-name p{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.item-name .price{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.sug-text{
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 30px;
}

.generated-texts{
    max-height: 200px;
    overflow: auto;
    text-align: center;
    margin-top: 40px;
}

.generated-texts #status{
    color: #3C87D3;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
.welcome-text .welc-text-inner p{
    font-size: 20px;
    line-height: 32px;
    margin: 0;
}
.discount-bg-top .discount-total{
    font-size: 36px;
    line-height: 48px;
}
.discount-pro{
    font-size: 24px;
    line-height: 32px;

}
.speak-text{
    font-size: 22px;
    line-height: 34px;
}
.discount-bg-top{
    padding: 15px 40px;
    min-height: 100px;

}

.cart-middle img{
    max-width: 85px;
    height: auto;
}
.welcome-text{
    gap:50px;
}

.main-wrapper{
    max-height: calc(100vh - 100px);
    min-height: max-content;
    height: 100%;
    overflow: auto;
}
.item-name p{
    font-size: 20px;
    line-height: 32px;
    
}

.item-name .price{
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
}


.middle-screen{
 padding: 20px 40px 60px;
}

.bags-wrapper .fixed-text{
    padding: 10px 15px;
}

.bags-wrapper .fixed-text p{
    font-size: 13px;
    line-height: 22px;
}
.two-col .item{
    padding: 15px;
}

.middle-screen.success-screen .welcome-text img{
   max-width: 70px;
}

}

@media (max-width: 768px) {

.welcome-logo img{
    max-width: 200px;
    width: 100%;
    height: auto;
}
.discount-bg-top{
    min-height: 100px;
}

.item-name p{
    font-size: 16px;
    line-height: 28px;
   
}
.two-col .item{
    padding: 10px;
}
.sug-box.bag-box .two-col .item{
    border-width: 1px;
}

.welcome-text button{
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
    width: 60px;
}

.welcome-text button img{
    max-width: 40px;
    height: auto;
}

.item-name .price{
    font-size: 16px;
    line-height: 28px;
 
}

.welcome-text .welc-text-inner p{
    font-size: 20px;
    line-height: 32px;
    margin: 0;
}
.discount-bg-top .discount-total{
    font-size: 32px;
    line-height: 42px;
}
.discount-pro{
    font-size: 24px;
    line-height: 36px;
    
}
.speak-text{
    font-size: 20px;
    line-height: 32px;
}



}

@media (max-width: 479px) {

    .welcome-logo img{
        max-width: 180px;
        width: 100%;
        height: auto;
    }

    .item-name p{
        font-size: 14px;
        line-height: 22px;
       
    }
    
    .item-name .price{
        font-size: 14px;
        line-height: 26px;
     
    }
    
    .welcome-text .welc-text-inner p{
        font-size: 18px;
        line-height: 30px;
        margin: 0;
    }
    .discount-bg-top .discount-total{
        font-size: 34px;
        line-height: 46px;
    }
    .discount-pro{
        font-size: 22px;
        line-height: 30px;
        
    }
    .speak-text{
        font-size: 18px;
        line-height: 28px;
    }

    .two-col{
        flex-direction: column;
        display: flex;
    }

    .discount-bg-top{
        padding: 20px;
    }
    .welcome-text{
        gap: 20px;
    }
    .sug-box.bag-box .two-col{
        padding: 20px;
    }
    .middle-screen{
        padding: 20px 20px 50px;
    }
    .bags-wrapper.added-bag-wrapper .fixed-text{
        position: relative;
    }
    
}



