  /*****************************************************/
  /*****************   Typography   ********************/
  /*****************************************************/

  :root {
    --white-color: #FFFFFF;
    --black-color: #000000;
  }

  * {
    margin: 0;
    padding: 0;
  }

  html {
    position: relative;
    overflow-x: hidden;
  }

  body {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    background-color: var(--white-color);
    background-image: url(../images/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    overflow-x: hidden;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
    display: inline-block;
  }

  a:hover {
    text-decoration: none;
  }

  a:focus {
    outline: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
  }

  img {
    border: none;
    max-width: 100%
  }

  button {
    border: none;
  }

  button:focus {
    border: none;
    outline: none;
    box-shadow: none;
  }

  .align_center {
    align-items: center;
  }

  .no_padding {
    padding: 0;
  }

  .section_padding {
    padding: 50px 0px;
  }


  /*****************************************************/
  /******************   Hero Area   ******************/
  /*****************************************************/

  .header-menu-trigger {
    text-align: right;
    display: block;
    max-width: 1700px;
    margin: 40px auto;
    margin-right: 70px;
  }

  .header-menu-trigger button {
    background-color: transparent;
  }

  .header-menu-trigger button i {
    color: var(--white-color);
    font-size: 36px;
  }

  .header-menu-trigger .ot-nav-menu-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white-color);
    position: fixed;
    width: fit-content;
    padding: 60px 28px 28px 28px;
    height: 100vh;
    right: 0;
    z-index: 2;
    top: 0;
    transform: translate(100%);
    transition: 0.2s;
    min-width: 330px;
    background: #8fe4f5;
  }

  .header-menu-trigger .ot-nav-menu-area.active {
    transform: translate(0%);
  }

  .header-menu-trigger .ot-profile {
    justify-content: center;
  }

  .header-menu-trigger .ot-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .menu-header a img {
    width: 130px;
  }

  .menu-header i {
    color: #6F176D !important;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo a img {
    height: 82px;
    width: auto;
  }

  .hero-content h2 {
    font-size: 134px;
    color: #fff;
    width: 80%;
    margin: 80px auto 50px;
    line-height: 100px;
    font-family: 'Provicali';
  }

  .hero-content>p a {
    color: var(--white-color);
    text-decoration: underline;
  }

  .hero-content>p {
    font-family: "Barlow", sans-serif;
    color: var(--white-color);
    font-weight: 500;
    font-size: 27px;
  }

  .hero-btn-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0 50px;
  }

  .hero-btn-area>a {
    background: #FEC56A;
    text-decoration: none;
    padding: 8px 40px;
    min-width: 330px;
    font-weight: 900;
    border-radius: 16px;
    margin: 40px 0 10px;
    color: var(--white-color);
    border: 2px solid transparent;
    font-size: 24px;
    transition: 0.3s;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }

  .hero-btn-area>a:hover {
    background: #ffffff20;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
  }

  .hero-btn-area p,
  .hero-btn-area p a {
    color: #000000;
    font-family: "Barlow", sans-serif;
  }

  .hero-btn-area p a {
    text-decoration: underline;
  }

  .hero-area {
    position: relative;
  }


  .hero-area::before {
    position: absolute;
    content: "";
    left: -18px;
    top: -80px;
    width: 660px;
    height: 100%;
    background: url('../images/shape-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    transform: rotate(-7deg);
  }

  .hero-area::after {
    position: absolute;
    content: "";
    right: -25px;
    top: 230px;
    width: 600px;
    height: 100%;
    background: url('../images/shape-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .hero-content {
    position: relative;
  }

  .hero-content::after {
    position: absolute;
    content: "";
    left: 30px;
    bottom: -82px;
    background: url('../images/Phone2.png');
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }

  .wallet-ready {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-left: 75px;
  }

  .wallet-ready-items ul {
    display: flex;
    gap: 20px;
  }

  .wallet-ready-items ul li a {
    color: var(--white-color);
    width: 50px;
    height: 50px;
  }

  .wallet-ready-items ul li a p {
    font-size: 9px;
    line-height: 18px;
  }

  /* Tip Features */

  .tip-features-area {
    margin: 50px 0 70px;
  }

  .tip-features-content {
    display: flex;
    align-items: center;
    background: #ffffff40;
    padding: 30px;
    gap: 11px;
    border-radius: 40px;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
  }

  .single-feature {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 30px;
    border-radius: 32px;
    backdrop-filter: blur(2px);
    transition: 0.2s;
  }

  .single-feature:hover {
    background: #ffffff30;
  }

  .single-feature p {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
  }

  /* tips-payment-method */

  .tips-payment-method {
    margin: 50px 0;
  }

  .tips-payment-method ul {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .tip-payment-video {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50.35%;
    height: 0;
    border-radius: 35px;
    overflow: hidden;
  }

  .tip-payment-video .cover-container,
  .tip-payment-video .video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .tip-payment-video .cover-container .cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
  }

  .tip-payment-video .cover-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    background: #FEC56A;
    border-radius: 100%;
  }

  .tip-payment-video .cover-container:hover .play-button {
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
    transform: translate(-50%, -50%) scale(1.2);
  }

  .tip-payment-video iframe {
    width: 100%;
    height: 100%;
  }


  /* Faq */

  .faq-area .container>h2 {
    text-align: center;
    font-size: 64px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 25px;
    font-family: 'Provicali';
  }

  .faq-content {
    background: #ffffff40;
    padding: 30px;
    border-radius: 24px;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
  }

  .single-faq-item {
    background: #ffffff00;
    padding: 19px;
    border-radius: 24px !important;
    backdrop-filter: blur(2px);
    border: 2px solid #ffffff40;
    margin: 6px 0;
    cursor: pointer;
    overflow: hidden;
  }

  .single-faq-item .accordion-button {
    padding: 0 0 0 50px;
    margin-left: 30px;
    background: transparent;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--black-color);
  }

  .single-faq-item .accordion-button::after {
    position: absolute;
    left: 0;
  }

  .single-faq-item .accordion-body {
    margin-left: 60px;
  }

  .single-faq-item h2 i {
    transition: 0.3s;
  }

  .single-faq-item h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
  }

  .single-faq-item h2 i {
    margin: 0 45px 0 30px;
  }


  /* Footer */

  footer {
    margin: 50px 0 20px;
  }

  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 916px;
    width: 100%;
    margin: 0 auto;
  }

  .footer-content p {
    font-size: 13px;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: var(--white-color);
    font-weight: 400;
  }

  .footer-content ul {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .footer-content ul li {
    position: relative;
  }

  .footer-content ul li:before {
    content: "";
    position: absolute;
    top: 4px;
    right: -25px;
    width: 1px;
    height: 25px;
    background: var(--white-color);
  }

  .footer-content ul li:last-child::before {
    display: none;
  }

  .footer-content ul li a {
    color: var(--white-color);
    font-size: 15px;
    font-family: 'Galvji';
    font-weight: 700;
    transition: 0.2s;
  }

  .footer-content ul li a:hover {
    color: var(--black-color);
  }

  .footer-content ul:last-child {
    gap: 30px;
  }

  .footer-content ul:last-child li::before {
    right: -15px;
  }

  .footer-content ul:last-child li a {
    font-size: 20px;
  }


  /*****************************************************/
  /******************   User Tip Page  *****************/
  /*****************************************************/


  .user-tip-logo-area {
    margin-bottom: 150px;
  }

  .user-tip-logo-area .container {
    text-align: center;
    width: fit-content;
  }

  .user-tip-logo-desktop {
    height: 43px;
  }

  .user-tip-logo-mobile {
    display: none;
  }

  .user-tip-form-area .container {
    border-radius: 24px;
    backdrop-filter: blur(2px);
    padding: 0;
    max-width: 1106px;
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;

  }

  .user-tip-content {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    padding: 30px;
    border-radius: 24px;
    position: relative;
    transform: scale(1.005) translate(0px, 1px);
  }

  .user-tip-image {
    background: #ffffff40;
    padding: 20px;
    border-radius: 24px;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    width: fit-content;
    margin: -150px auto 0;
  }

  .user-tip-image img {
    border-radius: 13px;
    height: 230px;
    width: 260px;
    object-fit: cover;
  }

  .user-tip-info-tagline {
    position: absolute;
    top: -80px;
    right: 12%;
  }

  .user-tip-info-tagline p {
    font-size: 28px;
    color: var(--white-color);
    line-height: 28px;
    font-family: 'Provicali';
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
  }

  .user-tip-info-tagline p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    width: 1px;
    height: 55px;
    background-color: #707070;
    transform: translateY(-50%);
  }

  .tip-share {
    position: absolute;
    top: 40px;
    right: 37px;
    background: #ffffff20;
    padding: 3px 30px;
    border-radius: 24px;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    text-transform: capitalize;
  }

  .user-tip-amount-area {
    margin: 30px auto;
    max-width: 379px;
  }

  .user-tip-amount {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #000;
  }

  .user-tip-amount span {
    font-size: 63px;
    font-weight: 700;
  }

  .user-tip-amount input {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 63px;
    font-weight: 700;
    width: 170px;
    outline: none;
  }

  .user-tip-amount-area p {
    text-align: right;
    color: var(--white-color);
    margin-top: 5px;
  }

  .user-tip-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 834px;
    margin: 0 auto;
  }

  .user-tip-info input,
  .user-tip-info textarea {
    width: 100%;
    font-size: 16px;
    padding: 9px 25px;
    border-radius: 35px;
    background: #ffffff20;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    outline: none;
  }

  .user-tip-info textarea {
    min-height: 166px;
    border-radius: 24px;
  }

  .user-tip-info label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
  }

  .user-tip-info label input {
    width: auto;
  }

  .user-tip-submit {
    text-align: center;
    margin: 15px;
    position: relative;
  }

  .user-tip-submit button {
    background: #FEC56A;
    text-decoration: none;
    padding: 12px 40px;
    min-width: 263px;
    font-weight: 700;
    border-radius: 13px;
    color: var(--white-color);
    font-size: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border: 2px solid transparent;
    transition: 0.2s;
  }

  .user-tip-submit button:hover {
    background: #ffffff20;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
  }

  .user-tip-submit a {
    color: var(--black-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
  }

  .user-tip-submit a:hover {
    color: var(--white-color);
  }


  /* Tip Info */

  .user-tip-information-area .container {
    padding: 0;
    padding-top: 25px;
    margin-top: 50px;
    border-top: 1px solid #fff;
    max-width: 1106px;
  }

  .single-user-tip-info {
    background: #ffffff40;
    border-radius: 24px;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    padding: 30px 110px;
    display: flex;
    align-items: center;
  }

  .single-user-tip-info h2 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    margin-right: 30px;
    padding-right: 30px;
  }

  .single-user-tip-info h2::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 55px;
    background-color: #000000;
    transform: translateY(-50%);
  }

  /*****************************************************/
  /*****************   Register Page *******************/
  /*****************************************************/

  .register-form-area {
    margin-bottom: 200px;
    padding: 0px 20px;
  }

  .registration-header {
    margin: 115px 0 88px;
  }

  .registration-header .container {
    display: flex;
    align-items: center;
    gap: 19px;
    justify-content: center;
  }

  .registration-header a img {
    height: 35px;
  }

  .registration-header a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .registration-header .container a span {
    font-family: "Barlow", sans-serif;
    color: var(--white-color);
    font-size: 10px;
    line-height: 10px;
  }

  .registration-header .container p {
    font-size: 36px;
    color: var(--white-color);
    line-height: 27px;
    font-family: 'Provicali';
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
  }

  .registration-header .container p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    width: 1px;
    height: 55px;
    background-color: #707070;
    transform: translateY(-50%);
  }

  .register-form-area .container {
    padding: 75px 55px;
    border-radius: 24px;
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    text-align: center;
    max-width: 976px;
    width: 100%;
  }

  .register-form-header {
    margin-bottom: 20px;
  }

  .register-form-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .register-alert {
    color: #008324;
    font-weight: 700;
  }

  .register-form-header p {
    max-width: 510px;
    margin: 0 auto;
  }

  .label-group {
    display: flex;
    gap: 50px;
  }

  .label-style {
    width: 100%;
    text-align: left;
    margin-top: 15px;
  }

  .label-style span {
    font-size: 14px;
    font-weight: 500;
  }

  .ot-personal-info-form input {
    margin-top: 0 !important;
  }

  .label-style input {
    width: 100%;
    background: #ffffff4f;
    border: 2px solid #ffffff73;
    border-radius: 8px;
    padding: 8px 20px;
    backdrop-filter: blur(2px);
    outline: none;
    margin-top: 5px;
    font-size: 16px;
  }

  .label-style span span {
    color: #FF0000;
  }

  .label-group-style-2 label:nth-child(1) {
    width: 70%;
  }

  .label-group-style-2 label:nth-child(2) {
    width: 30%;
  }

  .ot-personal-info-form .update-btn {
    margin-top: 27px;
  }

  .label-style select {
    background: #ffffff40;
    border-radius: 8px;
    padding: 10px 20px;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    display: block;
    /* width: 93%; */
    margin-top: 5px;
    background-image: url(../images/chevron-down.png);
    background-repeat: no-repeat;
    background-position: 97% center;
    box-shadow: none;
    outline: none;
    font-size: 16px;
    color: var(--black-color);
  }

  .label-style select:focus {
    box-shadow: none;
    outline: none;
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
  }

  .register-terms {
    margin-top: 30px;
  }

  .register-terms input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--black-color);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    transform: translateY(4px);
    padding: 0;
    border-radius: 0;
  }

  .user-tip-info input[type="checkbox"] {
    transform: translateY(0px);
  }

  .register-terms input[type="checkbox"]:checked {
    background-color: var(--black-color);
    border-color: var(--black-color);
  }

  .register-terms input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .register-terms a{
    color: #000;
    font-weight: bolder;
  }
  .register-btn {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 30px;
  }

  .register-btn a,.register-btn button {
    background: #FEC56A;
    text-decoration: none;
    padding: 8px 40px;
    width: 47%;
    font-weight: 700;
    border-radius: 13px;
    color: var(--white-color);
    font-size: 13px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border: 2px solid transparent;
    transition: 0.2s;
  }

  .register-btn a:hover ,.register-btn button:hover {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
  }

  .register-btn a span {
    font-weight: 400;
  }

  .register-btn a:nth-child(2) {
    background: #82BEF0;
    backdrop-filter: blur(2px);
  }

  .register-step {
    margin-top: 80px;
  }


  /*****************************************************/
  /************** Personal Information Page ************/
  /*****************************************************/

  /* NAV */

  .ot-nav {
    width: 100%;
    padding: 7px 30px;
    max-width: 1520px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 20px;
    margin-top: 55px;
    margin-bottom: 130px;
  }

  .ot-brand-logo img {
    height: 20px;
    width: auto;
  }

  .ot-nav-content-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .ot-nav-content {
    display: flex;
    align-items: center;
    gap: 18px
  }

  .ot-shop-wrapper {
    max-width: 844px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .ot-links {
    display: flex;
    gap: 40px;
    align-items: center
  }

  .ot-links li.active a {
    font-weight: 600;
  }

  .ot-links li a {
    color: var(--black-color);
    transition: 0.2s;
    font-weight: 500;
  }

  .ot-links li a:hover {
    color: #731871;
  }

  .ot-brand {
    font-weight: 800;
    letter-spacing: 1px
  }

  .ot-link-danger {
    color: #FF0000 !important;
  }

  .ot-profile {
    display: flex;
    align-items: center;
    gap: 12px
  }

  .ot-profile-info {
    display: flex;
    flex-direction: column;
    text-align: right;
  }

  .ot-profile-info a {
    color: #1B2F5B;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
  }

  .ot-profile-info a:last-child {
    font-weight: 400;
    color: #8C989A;
  }
  .ot-profile-info a:last-child:hover{
    color:red;
  }
  .ot-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover
  }

  .mobile-menu-trigger {
    background: transparent;
    font-size: 25px;
    display: none;
  }

  /* Personal Information */

  .ot-personal-info-area {
    margin-top: -70px;
    margin-bottom: 130px;
  }

  .ot-personal-information {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 24px;
    padding: 25px 110px 40px 50px;
  }

  .ot-personal-avatar {
    padding: 14px;
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    width: 262px;
    height: 229px;
  }

  .ot-personal-avatar img,
  .ot-personal-avatar video {
    border-radius: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .profile-upload-area {
    display: flex;
    align-items: center;
    gap: 90px;
  }

  .ot-upload-btn {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    padding: 12px 45px;
    border-radius: 10px;
    overflow: hidden;
  }

  .ot-upload-btn:focus {
    border: 2px solid #ffffff40;
  }

  .profile-upload-area span {
    font-size: 12px;
    margin-top: 8px;
    color: var(--black-color);
    display: block;
  }


  .ot-personal-tip-area {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 24px;
    padding: 24px;
  }

  .ot-tip-card {
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
  }

  .ot-tip-card-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .ot-tip-card h3 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    padding: 0px 30px 10px;
    margin-top: -5px;
  }

  .ot-tip-card span {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    width: 100%;
    display: block;
    padding: 30px 0;
    border-radius: 24px;
    overflow: hidden;
    font-size: 32px;
    font-weight: 700;
    transform: scale(1.02) translate(0px, 2px);
  }

  .ot-tip-donation-history {
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 24px;
    margin-top: 22px;
  }

  .ot-tip-donation-history h3 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    padding: 0px 30px 10px;
    text-align: center;
    padding: 12px;
  }

  .ot-donation-selection-area {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    border-radius: 24px;
    padding: 12px;
    transform: scale(1.01) translate(0px, 1px);
  }

  .ot-donation-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ot-donation-selection select {
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    background: transparent;
    padding: 3px 8px;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    margin-top: 5px;
    background-image: url(../images/chevron-down.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    appearance: none;
    font-weight: 500;
  }

  .ot-donation-selection select:focus {
    outline: none;
  }

  .ot-donation-selection h4 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
  }

  .history-tip-amount p {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 17px 0 3px;
  }

  .ot-wallet-area {
    background: #ffffff2e;
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 24px;
    padding: 24px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .wallet-qr-area {
    border: 2px solid #FFFFFF7D;
    backdrop-filter: blur(2px);
    border-radius: 10px;
    padding: 20px;
  }

  .wallet-logo-area p {
    color: var(--white-color);
    font-size: 10px;
    line-height: 28px;
    margin-top: -10px;
    text-align: center;
  }

  .wallet-qr-area h4 {
    font-size: 14px;
    text-align: center;
    margin: 10px;
    font-weight: 700;
  }

  .wallet-qr-area img {
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .wallet-qr-area h6 {
    font-family: 'Provicali';
    font-size: 18px;
    color: var(--white-color);
    line-height: 18px;
  }

  .wallet-download-area h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .wallet-download-app ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .wallet-download-app ul li a {
    background-color: #1E1E1E;
    border-radius: 9px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--white-color);
  }

  .wallet-download-app ul li a img {
    height: 25px;
  }

  .wallet-download-app ul li a p {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
  }

  .wallet-btn-area a {
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 3px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-size: 10px;
    font-weight: 500;
  }

  .wallet-btn-area h4 {
    margin-top: 15px;
  }
  .wallet-btn-area p{
    line-height: normal;
    padding: 8px 0;
  }
  /*****************************************************/
  /*********************  Payment Page *****************/
  /*****************************************************/

  .payment-box {
    max-width: 849px;
    margin: 0 auto 175px;
    border-radius: 20px;
    padding: 40px 50px;
    box-sizing: border-box;
    text-align: center;
    background: #ffffff40;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
  }

  .payment-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 23px 0 45px;
  }

  .payment-box>img {
    height: 48px;
    width: 48px;
    border-radius: 100%;
  }

  .payment-box form>h2 {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
  }

  .update-btn {
    width: 100%;
    margin-top: 55px;
    padding: 13px 15px;
    font-size: 17px;
    border: none;
    border-radius: 12px;
    background: #FEC56A;
    color: var(--white-color);
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border: 2px solid transparent;
    transition: 0.2s;
    text-transform: capitalize;
  }

  .update-btn:hover {
    background: #ffffff20;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    color: var(--black-color);
  }

  .payment-nofications {
    background: #ffffff20;
    backdrop-filter: blur(2px);
    width: fit-content;
    margin: 65px auto;
    padding: 8px 75px 8px 45px;
    border-radius: 20px;
  }

  .payment-nofications label {
    font-weight: 700;
    margin-top: 0;
  }

  .payment-nofications input {
    margin-right: 35px;
  }


  /*****************************************************/
  /*********************  Shop Page ********************/
  /*****************************************************/

  .ot-shop-wrapper {
    padding: 35px;
    gap: 25px;
    border-radius: 24px;
    background: #ffffff20;
    border: 2px solid #ffffff20;
    backdrop-filter: blur(2px);
  }

  .ot-shop-card {
    display: flex;
    border-radius: 20px;
    gap: 25px;
    background: #ffffff40;
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
  }

  .ot-shop-image {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ot-shop-image img {
    width: 210px;
    border-radius: 12px;
  }

  .ot-shop-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(1px);
    border-radius: 16px;
    overflow: hidden;
    padding: 40px 65px 20px;
    width: 60%;
  }

  .ot-shop-title {
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
  }

  .ot-shop-description {
    font-size: 14px;
    line-height: 25px;
    margin-top: 10px;
    font-weight: 500;
  }

  .ot-shop-price {
    margin-top: 15px;
  }

  .ot-shop-price>span {
    font-size: 11px;
    line-height: 14px;
  }

  .ot-shop-price p {
    font-size: 20px;
    font-weight: 600;
  }

  .ot-shop-price p span {
    font-weight: 400;
  }

  .ot-shop-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
  }

  .ot-shop-qty {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #ffffff40;
    backdrop-filter: blur(2px);
    padding: 10px 15px;
    border-radius: 16px;
    min-width: 125px;
    justify-content: space-between;
  }

  .ot-shop-qty button {
    border: none;
    background: transparent;
    font-size: 40px;
    cursor: pointer;
  }

  .minus {
    transform: translateY(-3px);
  }

  .ot-shop-add {
    padding: 10px 45px;
    background: #FEC56A;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
  }

  .ot-shop-add:hover {
    background: #6F176D;
  }

  /*****************************************************/
  /*********************  Reviews Page *****************/
  /*****************************************************/

  .review-title {
    margin-bottom: 22px !important;
    text-align: left;
    margin-left: 22px !important;
  }

  .single-review {
    border: 2px solid #ffffff40;
    backdrop-filter: blur(2px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 35px;
    margin-bottom: 20px;
  }

  .single-review button {
    background: transparent;
    width: 5%;
  }

  .single-review h2 {
    max-width: 20%;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    font-weight: 900;
    margin: 0 40px 0 50px;
    position: relative;
    width: 100%;
  }

  .single-review h2::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 55px;
    background-color: #000000;
    transform: translateY(-50%);
  }

  .single-review>p {
    width: 50%;
    font-size: 14px;
    text-align: left;
    line-height: 24px;
  }

  .review-tip {
    width: 15%;
    text-align: right;
  }

  .review-tip p {
    font-size: 11px;
  }

  .review-tip span {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }


  /* Terms & Conditions */

  .terms-conditions-content {
    text-align: left;
  }

  .terms-conditions-content h1 {
    font-size: 30px;
    border-bottom: 2px solid #ffffff40;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 700;
  }

  .terms-conditions-content h2,
  .terms-conditions-content h3,
  .terms-conditions-content h4 {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .terms-conditions-content h4 {
    font-size: 20px;
  }

  .terms-conditions-content p {
    margin: 15px 0;
    line-height: 1.7;
  }

  .terms-conditions-content ul,
  .terms-conditions-content ol {
    margin-left: 30px;
    margin-top: 10px;
    padding-left: 0;
  }

  .terms-conditions-content ul li {
    list-style: disc;
  }

  .terms-conditions-content ol li {
    list-style: decimal;
  }

  .terms-conditions-content li {
    margin-bottom: 8px;
  }

  .terms-conditions-content a {
    color: #6F176D;
    font-weight: 600;
  }
  .forget-password a{
    font-size:14px;
  }