#login-button:disabled {
    background-color: #d81a0d;
    color: white;
}

.denomItem.disabled {
    opacity: 0.5;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.body-loading {
    position: relative;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.body-loading::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9998;
    /* Lower z-index than ::after */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.body-loading::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("images/loading.html");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100px;
    animation: rotateBackground 2s linear infinite;
    transform-origin: center;
    z-index: 9999;
    /* Ensure it's above the ::before pseudo-element */
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDownOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeIn {
    animation: fadeUpIn 0.3s ease-out forwards;
}

.fadeOut {
    animation: fadeDownOut 0.3s ease-out forwards;
}

@keyframes rotate180 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

.rotate-180 {
    animation: rotate180 0.3s forwards;
}

@keyframes rotate180Reverse {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.rotate-180-reverse {
    animation: rotate180Reverse 0.3s forwards;
}

#sidebarLogin {
    position: fixed;
    top: 0;
    right: -286px;
    /* Ban Ä‘áº§u sidebar sáº½ bá»‹ áº©n ngoĂ i mĂ n hĂ¬nh */
    width: 286px;
    height: 100%;
    background: white;
    transition: right 0.3s ease;
    /* Thá»i gian vĂ  kiá»ƒu animation */
}

#sidebarLogin.open {
    right: 0;
    /* Khi cĂ³ class 'open', sidebar sáº½ di chuyá»ƒn vĂ o mĂ n hĂ¬nh */
}

.button-loading {
    visibility: hidden;
    opacity: 0;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    border-right-color: rgba(255, 255, 255, 0.404);
    border-left-color: rgba(255, 255, 255, 0.404);
    border-bottom-color: rgba(255, 255, 255, 0.404);
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.swiper {
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
}

/* @media screen and (max-width: 768px) {
  .bannerWrapper {
    padding-top: calc(100% * (142 / 375));
  }
} */

.grecaptcha-badge { 
    visibility: hidden !important;
}

  a {
    text-decoration: none !important;
  }
  .s-button-1 {
    display: flex;
    align-items: center;
    width: 400px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
    padding: 7px 10px;
    text-decoration: none;
    color: #000;
    font-family: sans-serif;
    border-radius: 20px;
    position: fixed;
    bottom: 25px;
    left: 15px;
  }

  .s-button-1 .s_logo {
    width: 10%;
    margin-right: 20px;
  }

  .s-button-1 .s_logo img {
    width: 100%;
    border-radius: 8px;
  }

  .s-button-1 .s_content {
    width: 70%;
  }

  .s-button-1 .s_content .title {
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .s-button-1 .s_content .title img {
    width: 20px;
    margin-left: 10px;
  }

  .s-button-1 .s_content .desc {
    color: #999;
  }

  .s-button-1 .s_mes {
    width: 10%;
  }

  .s-button-1 .s_mes img {
    width: 65%;
  }

  @media screen and (max-width: 575px) {
    .s-button-1 {
      width: 400px;
    }
  }

  @media screen and (max-width: 430px) {
    .s-button-1 {
      width: 350px;
    }

    .s-button-1 .s_content .title {
      font-size: 15px;
    }

    .s-button-1 .s_content .desc {
      font-size: 11px;
    }

    .s-button-1 .s_logo {
      margin-right: 10px;
    }

    .s-button-1 .s_content .title {
      margin-bottom: 5px;
    }

    .s-button-1 .s_content .title img {
      width: 15px;
    }
  }

  @media screen and (max-width: 375px) {
    .s-button-1 {
      width: 300px;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .s-button-1 {
    animation: fadeIn 1s ease-out;
    display: none;
  }

  @keyframes zoom {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.2);
    }
  }

  .s-button-1 .s_mes img {
    animation: zoom 1s ease-in-out 4;
  }

  .s-button-1 .s_mes img {
    width: 100%;
  }
  
  .toast-success {
      background-color: #00b09b;
  }
  .s-button-1 .s_close {
      width: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-size: 16px;
      color: #000;
      transition: color 0.3s;
    }
    
    .s-button-1 .s_close:hover {
      color: #ff0000; /* Màu khi hover */
    }
		
 .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.chat {
    width: 100%;


    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: black;
    background-color: #efefef;
}
.chat .chat-history {
    padding: 30px 0 20px 30px;
}

.chat .chat-history ul {
    overflow-y: scroll;
    padding-right: 30px;
    height: 575px;
}

.chat .chat-message {
    padding: 30px 30px 0 0;

}

.chat .chat-message textarea {
    width: 100%;
    height: 100%;
    border: 2px solid #dee2e6 !important;
    outline: 0 none;
    padding: 10px 20px;
    font: 14px/22px "Lato", Arial, sans-serif;
    margin-bottom: 10px;
    border-radius: 5px;
    resize: none;
}

.pill-button {
    border-radius: 1rem;
    background-color: #1ab394;
    border: none;
    padding: 10px 30px;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    color: #ffffff;
}

.chat .chat-history .message-data {
    margin-bottom: 15px;
}
.chat .chat-history .message-data-time {
    color: #a8aab1;
    padding-left: 6px;
}
.online {
    color: #86BB71;
}

.chat .chat-history .my-message {
    background: #86BB71;

}
.chat .chat-history .message {
    color: white;
    padding: 8px 16px;
    line-height: 26px;
    font-size: 14px;
    border-radius: 7px;
    margin-bottom: 30px;
    width: 90%;
    position: relative;
}
.chat .chat-history .message:after {
    bottom: 100%;
    left: 7%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #86BB71;
    border-width: 10px;
    margin-left: -10px;
}

.chat .chat-history ul {
    overflow-y: scroll;
    padding-right: 30px;
    height: 464px;
}


.chat .chat-history ul::-webkit-scrollbar {
    width: 8px;
    background-color: white;
    border-radius: 100px;
    border: none;
    color: green;
}
.chat .chat-history ul::-webkit-scrollbar-thumb {
    background-color: #3a3a3c;
    border: 2px solid #121212;
    border-radius: 100px;
    border: none;
    margin-left: 20px;
    height: 20px;
}
.chat .chat-history .other-message {
    background: #94C2ED;
}

.float-right {
    float: right !important;
}

.align-right {
    text-align: right;
}
.chat .chat-history .other-message:after {
    border-bottom-color: #94C2ED;
    left: 93%;
}


.me {
    color: #94C2ED;
}