/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

@font-face {
    font-family: "Noto Sans Thai";
    src: url(../font/NotoSansThai-VariableFont_wdth,wght.ttf) format("truetype");
}


body {
    --bs-body-font-family: "Noto Sans Thai", sans-serif;
}

.bg-auth bg-overlay-login {
    opacity: 0.2;
    background-color: #0576b9;
}
.text-bg-light {
    background-color: #f8f9fa !important;
}

.emotion-icon {
    font-size: 40px;
}

.button-radio {
/*    
        list-style-type: none;
    margin: 25px 0 0 0;
    padding: 0;*/
}



    .button-radio label,
    .button-radio input {
        padding-top: 0px;
        padding-right: 10px;
        padding-bottom: 0px;
        padding-left: 10px;
        
    }

        .button-radio input[type="radio"] {
            /* opacity: 0.01;
    z-index: 100;*/
            display: none;
        }

            .button-radio input[type="radio"]:checked + label,
            .Checked + label {
                background: #f765ae87;
            }

.button-radio label {
/*       padding: 5px;
border: 1px solid #CCC;
cursor: pointer;
z-index: 90;*/
}

.button-radio label:hover {
    background: #f0ebeb;
}

.text-poor {
    --bs-text-opacity: 1;
    color: rgb(228 218 16) !important;
}
.bg-purple {
    --bs-bg-opacity: 1;
    background-color: rgb(114 128 236) !important;
}

.bg-pink {
    --bs-bg-opacity: 1;
    background-color: #e42c8887 !important;
}
.bg-suggestion-title {
    --bs-bg-opacity: 1;
    background-color: rgb(245 189 88 / 11%) !important;
}

.bg-pink-detail {
    --bs-bg-opacity: 1;
    background-color: #f793c51f !important;
}

.bg-success-detail {
    --bs-bg-opacity: 1;
    background-color: #b3dbcb66 !important;
}
.bg-info-detail {
    --bs-bg-opacity: 1;
    background-color: #c1ecfc75 !important;
}
.bg-warning-detail {
    --bs-bg-opacity: 1;
    background-color: #f9cbc0a8 !important;
}


/***heart */
.heart-float {
    position: fixed; /* เปลี่ยนจาก absolute เป็น fixed */
    font-size: 1rem;
    color: red;
    opacity: 0;
    pointer-events: none;
    animation: floatUp 1s ease-out forwards;
    z-index: 9999;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(1.8);
    }
}

