.drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.drop-area p {
    margin: 0;
}

.drop-area.dragover {
    border-color: #ff5722;
    /* Change border color when dragging over */
}

.pre-tag{
    white-space: pre-wrap;
    font-size: 16px;
    font-family: none;
}

.h-w100px {
    height: 100vh;
}

.overlay-hide{
    overflow: hidden;
}

@media (max-width: 992px) {
    .balaeno-py-sm {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .balaeno-py-sm .h-w100px{
        height: auto;
    }
}
.centered-card {
    border-top: 4px solid #4263eb !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease;
}

.floating {
    animation: floatY 2s ease-in-out infinite;
}
@keyframes floatY {
    0% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}
.fnt-5rem{
    font-size: 5rem;
}

.high-light{
    color: #4263eb;
}

.wp-bg-pay img{
    border-radius: 10px;
}
.wp-bg-pay:hover{
    /* border: 4px solid #4263eb; */
    border-radius: 13px;
    background: #4263eb;
}

.wp-bg-active {
    border-radius: 13px;
    background: #4263eb;
}

.w25px {
    width: 25px;
}

.w70px{
    width: 70px;
}

.sys-app-wfix{
    width: 50px;
}

.sys-app-wfix img{
    border-radius: 25px;
}

.w-s200px{
    width: 150px;
}


.btn-primary,
.btn-check:checked+.btn.btn-primary,
.btn-check:active+.btn.btn-primary,
.btn.btn-primary:focus:not(.btn-active),
.btn.btn-primary:hover:not(.btn-active),
.btn.btn-primary:active:not(.btn-active),
.btn.btn-primary.active,
.btn.btn-primary.show,
.show>.btn.btn-primary
{
    background-color: #4263eb !important;
    border-color: #4263eb !important;
}

.progress-bar{
    background-color: #4263eb !important;
}

.btn-visible{
    visibility: hidden;
}


.map-h-400 {
    width: 100%;
    height: 400px;
}

.border-none .card-header {
    border: none;
}

.w-50px{
    width: 50px;
}

.w-100px{
    width: 100px;
}

/* .drawer{
    z-index: 9999999 !important;
} */
.scrolltop,
.app-layout-builder-toggle{
    z-index: 999999 !important;
}

/* @media (min-width: 992px) {
    [data-kt-app-header-fixed=true] .app-header {
        z-index: 999999 !important;
    }
} */

.post-relative{
    position: relative;
}
.centered-axis-xy {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height: 2px;
    width: 100%;
    background: #d0d3dd;
}

.wh-50px{
    width: 50px;
}

.br-5px{
    border-radius: 5px;
}

.owl-prev {
    width: 15px;
    /* height: 100px; */
    position: absolute;
    top: 40%;
    margin-left: -20px;
    display: block !important;
    border:0px solid black;
}

.owl-next {
    width: 15px;
    /* height: 100px; */
    position: absolute;
    top: 40%;
    right: -25px;
    display: block !important;
    border:0px solid black;
}
.owl-prev i, .owl-next i { color: #333;}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2caae1;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}


  /* Message styles */
  #kt_drawer_chat_content{
    position: relative;
  }
 #kt_drawer_chat_content .message {
      display: flex;
      align-items: flex-start;
      /* gap: 10px; */
      margin-bottom: 10px;
  }

  #kt_drawer_chat_content .user-message {
      justify-content: end;
      /* flex-direction: row-reverse; */
  }

  #kt_drawer_chat_content .user-message .message-bubble {
      background-color: #007bff;
      color: white;
      /* position: absolute; */
      /* left: 0; */
  }

  #kt_drawer_chat_content .chatgpt-response .message-bubble {
        background-color: #e6ffe6;
        color: black;
        /* position: absolute; */
        /* right: 0; */
  }

  #kt_drawer_chat_content .message-bubble {
    max-width: 90%;
    padding: 10px 15px;
    border-radius: 15px;
    position: relative;
    font-size: 14px;
    animation: fadeIn 0.5s ease-in-out;
    /* max-width: 100%; */
    word-wrap: break-word;
    white-space: pre-wrap;
  }

  /* Avatars */
  #kt_drawer_chat_content .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
  }

  #kt_drawer_chat_content .user-message .avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #007bff;
        color: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-weight: bold;
        margin-left: 5px;
        order: 1;
  }

  #kt_drawer_chat_content .chatgpt-response .avatar {
      background-image: url('/webnalytics/apps/bot.svg');
  }

  .blinker {
      display: inline-block;
      animation: blink 1s step-start 0s infinite;
  }

  @keyframes blink {
      50% {
          opacity: 0;
      }
  }

  /* Typing cursor animation */
  /* @keyframes blink {
      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0;
      }
  }

#kt_drawer_chat_content .typing::after {
      content: "|";
      display: inline-block;
      margin-left: 5px;
      animation: blink 0.5s step-start infinite;
  } */


  .am5-modal{
    z-index: 0 !important;
  }

.fs-10px{
    font-size: 10px;
}
.btr-rm{
    border: unset !important;
}

.pay_success{
    background-color: #D5D9E2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    min-height: 100%;
    font-weight: normal;
    font-size: 15px;
    color: #2F3044;
    margin: 0;
    padding: 0;
    width: 100%;
}

.pay_div_ta1{
    background-color: #ffffff;
    padding: 45px 0 34px 0;
    border-radius: 24px;
    max-width: 600px;
}

.table_tr{
    display: flex;
    justify-content: space-between;
    color: #7E8299;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px
}
.tr-right{
    color: #50cd89;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif
}
.tr-left{
    font-family: Arial, Helvetica, sans-serif
}

.parent {
    position: relative;
    height: 100vh;
}

.wizard-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wizard-right-bottom{
    position: fixed;
    right: 10px;
    bottom: 20px;
    /* transform: translate(50%, 50%); */
}

.custom-symbol .symbol-label{
    background-color:unset;
}

/* {
    overflow: hidden;
} */

#kt_drawer_chat{
    overflow: hidden !important;
}


.chat-blinker {
    animation: gptblink 1s step-end infinite;
    font-style: italic;
    color: #888;
}

@keyframes gptblink {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}


.overflow-balano {
    overflow: hidden;
}
