body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #ffffff;
}
.mobile-container {
    max-width: 430px;
    /* height: 100vh; */
    width: 100%;
    /* padding: 10px; */
    box-sizing: border-box;
    background: #ffffff;
    background-size: 100%;
    color: #fff;
    margin: auto;
    position: relative;
    /* overflow: hidden; */
    /* border: 6px solid #01a758;
    box-shadow: inset 0 0 0px 3px rgb(156 156 156); */
}

@media (max-width: 1000px) {
    body {
        display: unset;
        justify-content: unset;
        align-items: unset;
        height: unset;
        background: #ffffff;
    }
}

@media (max-width: 480px) {
    .mobile-container {
        position: fixed;
    }
}

.image-bottom {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 84%;
    height: 25px;
    content: "";
    /* background-image: url(/assets/images/bg/text-warn.webp); */
    background-size: 100%;
    background-repeat: no-repeat;
}

/* Title */
.font-vnm {
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

/* SELECT */
.select2-container .select2-selection--single {
    height: unset;
    padding: 9px;
    border-radius: 20px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    text-align: center;
    text-transform: uppercase;
    color: #26b064;
    font-family: "Manulife JH Sans";
    padding-top: 3px;
    font-weight: 600;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 8px;
}

/* FORM */
/* Custom form input */
.form-group {
    margin-bottom: 1rem;
    /* display: flex;
    justify-content: center; */
}
.form-control {
    width: 100% !important;
    padding: 23px 0px 23px 0px;
    background: unset;
    color: #383838;
    border: unset;
    font-family: "Manulife JH Sans";
    border-bottom: 2px solid #e6e6e8;
    font-size: 1.2rem;
    font-weight: 400;
}
.form-control:focus {
    color: #383838;
    background: unset;
    border-color: unset;
    outline: 0;
    border-bottom: 2px solid #0ba95c;
}
.form-control::placeholder
/* .form-control:-webkit-input-placeholder
.form-control:-moz-placeholder
.form-control:-ms-input-placeholder
.form-control::-webkit-input-placeholder  */ {
    text-align: left;
    color: #c3c3c3;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

/* BTN */
.btn-primary {
    text-transform: uppercase;
    color: #000000;
    font-size: 1.1rem;
    background-color: #ededed;
    border-color: #ededed;
    box-shadow: none;
    /* border-radius: 23px; */
    padding: 8px;
    width: 85%;
    font-family: "Manulife JH Sans";
    font-weight: 600;
}

.btn-back {
    background-color: #ffffff !important;
    border-color: #ea2b00 !important;
    border-width: 2px;
}

/* FORM WITH IMAGE TITLE */
.input-with-image {
    position: relative;
    /* margin-bottom: 15px; */
}

.input-with-image .bg-input {
    width: 100%;
    height: 12vh;
}

.field-input {
    position: absolute;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-family: "Manulife JH Sans";
}
.field-input::placeholder {
    color: #e1dfdf !important;
    opacity: 1; /* Optional: makes the placeholder text fully opaque */
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

.input-reset {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    color: inherit;
    background: none;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* .input-with-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/assets/images/bg/input-bg.webp');
} */

.input-with-image-email::after {
    background-image: url(/assets/images/icon/icon-email.png);
}
.input-with-image-password::after {
    background-image: url(/assets/images/icon/icon-password.png);
}
.input-with-image-user::after {
    background-image: url(/assets/images/icon/icon-user.png);
}
.input-with-image-phone::after {
    background-image: url(/assets/images/icon/icon-phone.png);
}

/* Style checkbox */
/* Style cho toàn bộ label */
.pl-custom {
    padding-left: 2rem !important;
}
.form-checkbox-custom {
    width: 85%;
}
.form-check-label {
    font-size: 0.68rem !important;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}
.form-check-span {
    font-size: 0.53rem !important;
    color: #cccccc;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}
.checkbox-custom label {
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

/* Style cho input checkbox */
.checkbox-custom input[type="checkbox"] {
    display: none;
}

/* Tạo khung check với border và size */
.checkbox-custom label::before {
    position: absolute;
    top: 3px;
    left: -2rem;
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1.5px solid #ddd;
    border-radius: 3px;
}

/* Thêm dấu tick bên trong khi checked */
.checkbox-custom input[type="checkbox"]:checked + label::before {
    content: "";
    width: 25px;
    height: 25px;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-image: url(/assets/images/icon/icon-tick.png);
}

/* Modal custom */
/* .modal-body,
.modal-content {
    border: unset;
    padding: 0 !important;
    background-color: unset;
    box-shadow: unset;
} */
.modal {
    background: rgb(103 107 138 / 85%);
}

.icon-close-modal {
    width: 18px;
    height: 18px;
}

.box-image-gift-sampling {
    position: relative;
}

.btn-ok-modal {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #cccccc;
    padding: 5px 32px;
    opacity: 0;
}

/* btn custom */
.btn-buy-combo .buy {
    font-weight: 400;
    font-family: "Manulife JH Sans";
}

.btn-buy-combo .etc {
    color: #fff;
    background: #26b064;
    width: 50px;
    height: 50px;
    padding: 6px 8.44px 6px 12px;
    border-radius: 50%;
    letter-spacing: 4px;
    font-size: 1.5rem;
    text-align: center;
    font-family: "Manulife JH Sans";
    font-weight: 600;
}

/* Chrome, Safari, Edge, Opera */
.btn-buy-combo .etc::-webkit-outer-spin-button,
.btn-buy-combo .etc::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.btn-buy-combo .etc[type="number"] {
    -moz-appearance: textfield;
}

.btn-buy-combo .combo {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: "Manulife JH Sans";
}

/* Btn buy package */
.mb-6 {
    margin-bottom: 4rem !important;
}
.btn-buy-package {
    z-index: 2;
}
.btn-buy-package .title {
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: initial;
    font-family: "Manulife JH Sans";
    margin-bottom: -5px;
}

.btn-buy-package .sub-title {
    font-weight: 400;
    font-size: 1rem;
    text-transform: initial;
    font-family: "Manulife JH Sans";
}

/* Input custom buy package */
.input-wrapper {
    position: absolute;
    top: -2.4rem;
    z-index: 1;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-input {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: unset;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    font-family: "Manulife JH Sans";
    font-weight: 600;
    text-shadow: 4px 3px 4px #000000;
}

.round-input:focus {
    outline: none;
}

.round-input::placeholder {
    color: #fff;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}
.round-input:-webkit-input-placeholder {
    color: #26b064;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

.round-input:-moz-placeholder {
    color: #26b064;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

.round-input:-ms-input-placeholder {
    color: #26b064;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

.round-input::-webkit-input-placeholder {
    color: #26b064;
    font-family: "Manulife JH Sans";
    font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
.round-input::-webkit-outer-spin-button,
.round-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.round-input[type="number"] {
    -moz-appearance: textfield;
}

.btn-buy-package:hover {
    color: #26b064;
    background-color: #ffffff;
}
.btn-buy-package:focus {
    color: #26b064;
    background-color: #ffffff;
}

.btn-package-active {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-package-active:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
.btn-package-active:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Roll wheel */
.roll-wheel-total {
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 1px 4px;
}
