/*.alert {*/
/*    position: absolute;*/
/*    !*opacity: 1;*!*/
/*    visibility: visible;*/
/*    transform: translateX(0px);*/
/*    transition: visibility 0s, opacity 250ms, transform 250ms;*/
/*    width: 100%;*/
/*    opacity: 0.8;*/
/*    z-index: 9;*/
/*    background-color: #ff000d;!* #00a65a;*!*/
/*    color:#ffffff;*/
/*}*/
.alert.hide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px); // translateX, translateY, translateZ works well
    transition: visibility 0s 250ms, opacity 250ms, transform 250ms;
    width: 100%;
}


.rating-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.rating-emoji {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.rating-emoji:hover {
  transform: scale(1.2);
}

.rating-emoji.selected {
  color: gold;
  transform: scale(1.3);
}

.rating-text {
  font-size: 1.2rem;
  margin-left: 10px;
}

.landing-DarkBox
{
  margin: 0 auto; /* مرکز کردن افقی */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 1.7rem;
  width: 80%;
  background-color: #52597d;
  border-radius: 2rem 2rem 2rem 2rem;

  /*  min-height: 100vh;*/
  /*display: flex;*/
  /*justify-content: center;  !* مرکز افقی محتوا *!*/
  /*align-items: center;      !* مرکز عمودی محتوا *!*/
}

.wallet-DarkBox
{
  margin: 0 auto; /* مرکز کردن افقی */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 1.7rem;
  width: 100%;
  background-color: #7a7a9c;
  border-radius: 1rem 1rem 1rem 1rem;
  /*background-image: url('../../assets/img/pages/profile-banner.png');*/
  /*background-size: auto;  !* تصویر تمام div را پر کند *!*/
  /*background-position: center;*/
  /*background-repeat: repeat-x;*/
  height: 80px;
  /*display: flex;*/
  /*justify-content: center;  !* مرکز افقی محتوا *!*/
  /*align-items: center;      !* مرکز عمودی محتوا *!*/
}

.landing-SmallBusiness-financial-Box
{
  /*margin: 0 auto; !* مرکز کردن افقی *!*/
    padding-left: 50.5%;
  padding-right: 1.5rem;
  padding-top: 5rem;
  padding-bottom: 1.7rem;
  width: 100%;
  background-image: url('../../qrline_assets/images/landing/financial-section-desktop.png');
  background-size: cover;  /* تصویر تمام div را پر کند */
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  /*  min-height: 100vh;*/
  /*display: flex;*/
  /*justify-content: center;  !* مرکز افقی محتوا *!*/
  /*align-items: center;      !* مرکز عمودی محتوا *!*/
}
/*!* ++++++++++++++ *!*/
/*    #loader-wrapper {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        background-color: #fff; !* Or a semi-transparent background *!*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        z-index: 9999; !* Ensure it's on top *!*/
/*    }*/

/*    .loader {*/
/*        !* Your loader animation styles *!*/
/*        border: 8px solid #f3f3f3;*/
/*        border-top: 8px solid #3498db;*/
/*        border-radius: 50%;*/
/*        width: 50px;*/
/*        height: 50px;*/
/*        animation: spin 2s linear infinite;*/
/*    }*/

/*    @keyframes spin {*/
/*        0% { transform: rotate(0deg); }*/
/*        100% { transform: rotate(360deg); }*/
/*    }*/