/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(218,28): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(235,32): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(358,32): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(369,32): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(511,28): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(517,28): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(674,32): run-time error CSS1039: Token not allowed after unary operator: '-selected-color'
(675,28): run-time error CSS1039: Token not allowed after unary operator: '-selected-color'
(850,28): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(863,32): run-time error CSS1039: Token not allowed after unary operator: '-button-hover-color'
(869,28): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(882,32): run-time error CSS1039: Token not allowed after unary operator: '-button-hover-color'
(950,21): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(958,21): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(966,25): run-time error CSS1039: Token not allowed after unary operator: '-button-hover-color'
(979,21): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(987,21): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(995,25): run-time error CSS1039: Token not allowed after unary operator: '-button-hover-color'
(1150,32): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(1257,28): run-time error CSS1039: Token not allowed after unary operator: '-button-color'
(1473,33): run-time error CSS1039: Token not allowed after unary operator: '-selected-hover-color'
(1479,33): run-time error CSS1039: Token not allowed after unary operator: '-selected-color'
(1598,28): run-time error CSS1039: Token not allowed after unary operator: '-selected-color'
 */
:root {
    --button-color: red; /* 0056b3Giá trị mặc định của biến toàn cục cho màu sắc */
    --selected-color: red; /* 0056b3Giá trị mặc định của biến toàn cục cho màu sắc */
}
/* Khai báo một biến toàn cục khác nếu cần thiết */
:root {
    --button-hover-color: yellow;
    --selected-hover-color: yellow;
    
}

.userpicaction:hover {
    background-color: black;
    color: #fff;
    border-color: black;
}

.userpicaction:active {
    background-color: black;
    color: #fff;
    border-color: black;
}

#bookingheader .userpicaction .f-btn-icon {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 5px;
}

#bookingheader .userpicaction .f-btn-text {
    margin-left: 8px;
    line-height: 40px;
}

#WindowNotify_ctl00.f-widget-content {
    border: none;
}

#WindowNotify_Form5_ctl00.f-widget-content {
    border: none;
}

#WindowNotify_Form5_ctl00_btnSignOut {
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px 20px;
    background-color: black;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    width: 90% !important;
    transition: background-color 0.3s ease;
}

.user-info {
    text-align: center;
    background-color: #fff;
    width: 100%;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none; /* Ẩn hình ảnh khi không có */
    }

    .avatar.no-image img {
        display: none; /* Đảm bảo hình ảnh không hiển thị nếu không có */
    }

    .avatar.no-image::before {
        content: attr(data-initial);
    }

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.user-name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px; /* Khoảng cách giữa tên và biểu tượng */
}

.edit-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.user-email {
    font-size: 14px;
    color: #666;
    margin: 5px 0 20px;
}

.icons {
    display: flex;
    justify-content: space-around;
    width: 120px; /* Đặt độ rộng của vùng chứa các biểu tượng */
    margin: 0 auto; /* Căn giữa */
    margin-bottom: 20px; /* Khoảng cách giữa icons và các phần tử phía dưới */
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

    .icon:hover {
        background-color: #bbb;
        transform: scale(1.1);
    }

    .icon img {
        width: 16px;
        height: 16px;
    }

/* Tạo kiểu cho container chứa phần loading */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Canh giữa phần tử con theo chiều ngang */
    gap: 20px; /* Khoảng cách giữa spinner và message */
    padding: 20px;
    background-color: #f5f5f5; /* Màu nền nhẹ để nổi bật phần loading */
    border-radius: 8px;
    border: 1px solid #ddd; /* Đường viền nhẹ */
}

/* Tạo kiểu cho vòng tròn xoay */
.loading-spinner {
    border: 8px solid #f3f3f3; /* Màu nền của spinner */
    border-top: 8px solid #3498db; /* Màu của phần xoay */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite; /* Chạy animation xoay */
}

/* Animation cho spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Tạo kiểu cho thông báo */
.loading-message {
    font-size: 16px;
    color: #333;
    max-width: 300px; /* Giới hạn chiều rộng tối đa */
}

.StripeElement {
    margin-top: 10px;
    width: 100% !important;
    display: none;
}

#apple-pay-button {
    display: none;
    background-color: black;
    border: none;
    border-radius: 5px;
}

.bottom-button_pay {
    margin-top: 5px;
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--button-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
    .bottom-button_pay {
        margin-top: 5px;
        width: 100% !important;
        display: inline-block;
        padding: 12px 20px;
        background-color: var(--button-color);
        color: #fff;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        text-align: center;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    #apple-pay-button {
        display: block;
        background-color: black;
        border: none;
        border-radius: 5px;
    }
}
.windowlogincss {
    /*position: fixed;*/ /* Đặt vị trí cố định */
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Đảm bảo phần tử nổi bật */
    text-align: center; /* Căn giữa nội dung văn bản */
   /* padding: 2px;*/
}
.settingcss {
    border-radius: 10px 0 0 10px; /* Bo tròn góc dưới bên trái với 16px */
}

WindowLoadingCss {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Căn giữa nội dung văn bản */
}
@media screen and (max-width: 768px) {
    .windowlogincss {
        /*position: fixed;*/ /* Đặt vị trí cố định */
        background-color: #f8f9fa;
        border: 0px solid #ddd;
        border-radius: 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000; /* Đảm bảo phần tử nổi bật */
        text-align: center; /* Căn giữa nội dung văn bản */
        /* padding: 2px;*/
    }
}
.windowWelcomecss {
    /*position: fixed;*/ /* Đặt vị trí cố định */
    /*z-index: 1000;*/ /* Đảm bảo phần tử nổi bật */
}


.wrapper {
    height: 96vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logowel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: top 1s ease;
}

.logowel, .companyname, .centered-content {
    max-height: 100%; /* Đảm bảo chiều cao tối đa không vượt quá vùng cha */
}

    .logowel img {
        width: 150px; /* Đảm bảo kích thước ảnh không quá lớn */
        height: auto; /* Giữ tỷ lệ ảnh */
        display: block; /* Đảm bảo ảnh được hiển thị như một khối */
    }


.centered-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Căn giữa nội dung theo chiều dọc */
    align-items: center; /* Căn giữa nội dung theo chiều ngang */
    position: relative;
    opacity: 0; /* Ẩn nội dung ban đầu */
    transition: opacity 1s ease; /* Hiệu ứng chuyển tiếp cho opacity */
    text-align: center; /* Căn giữa văn bản */
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Căn giữa các nút theo chiều dọc */
    align-items: center; /* Căn giữa các nút theo chiều ngang */
    margin-top: 20px; /* Khoảng cách giữa tên công ty và các nút */
}

    .buttons button {
        background-color: transparent; /* Không có màu nền */
        color: #36404a; /* Màu chữ của nút */
        border: 1px solid #36404a; /* Border ngoài với màu sắc và độ dày */
        border-radius: 5px; /* Bo góc nhẹ cho border */
        padding: 11px 45px; /* Khoảng cách nội dung bên trong nút */

        cursor: pointer; /* Hiển thị con trỏ tay khi di chuột qua nút */
        transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease; /* Hiệu ứng chuyển tiếp */
        margin: 5px; /* Khoảng cách giữa các nút */
        max-width: 330px; /* Đặt kích thước bằng nhau */
        text-align: center; /* Căn giữa văn bản */
        min-width: 200px;
        font-weight: bold;
    }

        .buttons button:hover {
            color: #36404a; /* Màu chữ khi di chuột qua nút */
            border-color: var(--button-color); /* Màu border khi di chuột qua nút */
        }

.loadingwel {
    position: absolute;
    top: calc(50% + 50px ); /* Đặt vòng tròn loading dưới logo với khoảng cách 5px */
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 5px solid #f3f3f3; /* Màu nền của vòng tròn loading */
    border-radius: 50%;
    border-top: 5px solid var(--button-color); /* Màu của phần xoay */
    animation: spin 1s linear infinite; /* Hiệu ứng quay liên tục */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Kiểu chung cho container */
.container {
    width: 100%;
    max-width: 1200px; /* Giới hạn chiều rộng tối đa của container */
    margin: 0 auto; /* Canh giữa container trên màn hình */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    box-sizing: border-box; /* Đảm bảo padding không làm tăng kích thước tổng của container */
    background-color: #fff;
}

#totalPrice {
    padding-left: 120px;
}

/* Kiểu cho máy tính bảng */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 30px; /* Giảm khoảng cách nội dung từ lề trái và lề phải */
        padding-right: 30px; /* Giảm khoảng cách nội dung từ lề trái và lề phải */
        padding-bottom: 40px;
        padding-top: 20px;
    }

    #totalPrice {
        padding-left: 20px;
    }
}


.navbar-top {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    height: 40px;
}

.navbar-top-bottom {
    top: 40px;
    background-color: #fff;
    overflow: hidden;
    position: fixed;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px; /* Điều này làm cho navbar-bottom có chiều cao cố định */
    border-bottom: 1px solid #ccc;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.centered-container-top-bt {
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.centered-container-top-hed {
    display: flex;
    align-items: center;
    height: 40px;
}

.branding {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between; /* Các phần tử con sẽ căn cách xa nhau */
    align-items: center;
    width: 100%; /* Để đảm bảo hai phần tử con nằm trên cùng một hàng */
    height: 100%; /* Đảm bảo chiều cao cố định cho .branding */
}

.logo img{
    font-weight: bold;
    color: #fff;
}

.company-name {
    color: #fff;
}

/* Thêm các tùy chỉnh cho button và step-title tại đây */
.navbar-bottom-step {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    height: auto;
    border-top: 1px solid #ccc;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    text-align: center; /* Căn giữa nút trên điện thoại */
    /* padding: 10px 20px;*/
    height: 58px;
}

.columnstep1,
.columnstep2 {
    display: inline-block; /* Hiển thị nút trên cùng một dòng */
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 6px;
}

/* CSS cho nút */
/* CSS cho nút */
.bottom-button {
    background-color: red; /* Màu nền nút */
    color: #fff; /* Màu văn bản là màu trắng */
    border: none; /* Loại bỏ viền */
    border-radius: 4px; /* Bo tròn các góc */
    padding: 10px 20px; /* Kích thước nút */
    text-align: center;
    text-decoration: none; /* Loại bỏ đường gạch chân mặc định */
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
}

/* CSS cho nút "Back" */
.columnstep1 .bottom-button {
    background-color: var(--button-color);
    color: #fff;
}

/* CSS cho nút "Continue Booking" */
.columnstep2 .bottom-button {
    background-color: var(--button-color);
    /* #0056b3;Màu xanh lá cây */
    color: #fff;
}


.logo img{
    /*width: 200px;*/ /* Định rộng của thẻ <div> theo ý muốn */
    height: 30px; /* Định chiều cao của thẻ <div> theo ý muốn */
    position: relative;
    overflow: hidden;
}

    /*.logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/

/* Điều kiện truy vấn phương tiện cho màn hình điện thoại */
@media screen and (max-width: 768px) {
    .navbar-bottom-step {
        flex-direction: row-reverse; /* Đảm bảo nút "Continue Booking" ở bên phải */
        text-align: right;
    }

    /* Điều chỉnh vị trí của nút "Back" và "Continue Booking" */
    .columnstep1 {
        order: 2; /* Đặt nút "Back" sau cùng */
    }

    .columnstep2 {
        order: 1; /* Đặt nút "Continue Booking" trước cùng */
    }
    .logo img{
     /*   width: 100px;*/
        max-height:30px;
        height:auto;
    }
}






body {
    /* background: none !important;
            background-color: #000 !important;*/
    padding: 0 !important;
}
/* Select a theme */
#themecontainer ul {
    list-style-type: none;
    margin: 10px 0 0;
    padding: 0;
}

    #themecontainer ul li {
        cursor: pointer; /* Đặt con trỏ thành con trỏ tay để chỉ ra tính năng click */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px dotted #ccc;
        /* margin-bottom: 10px;*/
    }

        #themecontainer ul li .title {
            text-align: center;
            color: #666;
            font-size: 13px;
            margin-top: 5px;
        }

        #themecontainer ul li.hover,
        #themecontainer ul li.active {
            border-bottom-color: #fff;
        }

            #themecontainer ul li.hover .title,
            #themecontainer ul li.active .title {
                color: #fff;
                font-weight: bold;
            }

        #themecontainer ul li img {
            width: 125px;
        }

#themecontainer .grouptitle {
    color: #ccc;
    font-size: 16px;
    border-bottom: solid 1px #333;
    padding: 5px;
    margin: 10px;
}

#themecontainer .note {
    color: #ccc;
    font-size: 11px;
    margin-left: 10px;
    display: inline-block;
}

    #themecontainer .note a {
        color: #ccc;
    }

/* Thiết lập CSS cho cột checkbox */
.checkbox {
    /*flex: 1;*/
    flex: 0 0 60px; /* Kích thước cột số 1 là 40px */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Thiết lập CSS cho nút checkbox tùy chỉnh */
.custom-checkbox {
    width: 34px;
    height: 34px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


    /* Thiết lập CSS cho biểu tượng chữ "V" */
    .custom-checkbox .check,
    .custom-checkbox .plus {
        display: none;
        color: #000;
    }
/* Ẩn hộp kiểm mặc định */
input[type="checkbox"] {
    display: none;
}

    /* Xác định trạng thái đã chọn của nút checkbox */
    input[type="checkbox"]:checked + .custom-checkbox .check {
        display: block;
    }

    /* Xác định trạng thái đã chọn của nút checkbox và thay đổi biểu tượng thành dấu cộng */
    input[type="checkbox"]:checked + .custom-checkbox .plus {
        display: block;
        color: #fff; /* Màu chữ trắng */
        font-weight: bold;
    }
    /* Thiết lập màu nền của checkbox khi được chọn */
    input[type="checkbox"]:checked + .custom-checkbox {
        background-color: var(--selected-color);
        border-color: var(--selected-color);
    }

/* Thiết lập CSS cho cột nội dung */
.content {
    flex: 1;
}

/* Thiết lập CSS cho cột giá tiền */
.price {

    /*flex: 0 0 80px;*/ /* Kích thước cột số 3 là 80px */
    float:right;
}


/* Menu ở dưới cùng */
.navbar-bottom {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1; /* Để đảm bảo hiển thị dưới cùng */
    height: 58px;
    border-top: 1px solid #ccc; /* Thêm đường gạch dưới */
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); /* Thêm đổ bóng */
}

    .navbar-bottom a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

.navbar-top a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    padding-left: 0;
    text-decoration: none;
}

#form1 {
    margin-top: 68px; /* Để đảm bảo nội dung không bị che khuất bởi thanh menu */
    overflow-y: scroll;
}
/* Phần CSS để cố định nút "Next" ở cuối trang */
.step {
    display: none;
}

    .step.active {
        display: block;
    }

.prebutton {
    border-radius: 50%;
    height: 32px;
    width: 32px;
    min-width: 32px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f0f0f0;
    border: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    margin-right: 12px;
}
/* CSS để căn giữa nút button */
.centered-container {
    display: flex;
    justify-content: left; /* Căn nút theo chiều ngang */
    align-items: center; /* Căn nút theo chiều dọc */
    height: 100%; /* Để giữ nút ở giữa theo chiều dọc */
    padding-left: 20px;
}

/* CSS để căn giữa nút button */
.centered-container-bottom {
    /*display: flex;
    justify-content: center;*/ /* Căn nút theo chiều ngang */
    /*align-items: center;*/ /* Căn nút theo chiều dọc */
    height: 100%; /* Để giữ nút ở giữa theo chiều dọc */
    display: flex; /* Sử dụng flexbox cho layout */
    /*justify-content: space-between;*/ /* Cách đều các cột */
    justify-content: center;
    align-items: center; /* Căn giữa các phần tử bên trong */
}

.centered-container-item {
    display: flex;
    justify-content: center; /* Căn nút theo chiều ngang */
    align-items: center; /* Căn nút theo chiều dọc */
    height: 100%; /* Để giữ nút ở giữa theo chiều dọc */
}
/* Định dạng cho group-header */
/* Định dạng cho group-header */
.group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    position: relative;
    font-weight: bold; /* Tô đậm font chữ */
    border-bottom: 1px dotted #333; /* Kẻ border */
    transition: background-color 0.3s; /* Thêm hiệu ứng màu nền */
    height: 50px;
    text-decoration: none;
    cursor:pointer;
}

    /* Định dạng cho group-header khi hover */
    .group-header:hover {
        background-color: #f0f0f0; /* Màu xám khi hover */
    }

.projectname {
    font-weight: 700;
    color: #36404a;
    line-height: 18px;
    padding-top: 2px;
    padding-bottom:1px;
}

.projectdes {
    color: #979797;
    line-height: 18px;
    padding-top: 1px;
    padding-bottom: 2px;
}
/* Định dạng cho nút collapse/expand */
.collapse-button {
    cursor: pointer;
    text-decoration: none; /* Một ví dụ về cách làm thẻ <span> trông giống một liên kết */
}

/* Định dạng cho biểu tượng */
.collapse-icon {
    position: absolute;
    right: 10px;
}

/* Ẩn nhóm khi khởi tạo */
.group-content {
    display: none;
}


.step-title {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    color: #36404a;
    /* line-height: 1.1;*/
}


/* CSS cho nút bottom-button-1 */
#bottom-button-1 {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--button-color);
    color: #fff; /* Màu chữ */
    border: none;
    border-radius: 5px; /* Góc bo tròn */
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Hiệu ứng khi hover */
}

    /* Hiệu ứng hover */
    #bottom-button-1:hover {
        background-color: var(--button-hover-color); /* Màu nền thay đổi khi hover */
    }
/* CSS cho nút bottom-button-1 */
.bottom-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--button-color);
    color: #fff; /* Màu chữ */
    border: none;
    border-radius: 5px; /* Góc bo tròn */
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Hiệu ứng khi hover */
}

    /* Hiệu ứng hover */
    .bottom-button:hover {
        background-color: var(--button-hover-color);
    }

.pricecss {
    font-size: 16px;
    font-weight: 700;
    color: #36404a;
    margin: 0;
    padding: 0;
    margin: 0;
}

.servicecss {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #36404a;
}
/* CSS cho column1 và column2 */
.column1,
.column2 {
    float: none; /* Huỷ float trước khi sử dụng media query */
    width: 100%; /* 100% chiều rộng trên mobile */
    padding-left: 5px;
    padding-right: 5px;
}
.hello {
    width: 60%; /* Đặt chiều rộng của div là 50% của trang */
    margin: 0 auto; /* Căn giữa theo chiều ngang bằng cách đặt margin-left và margin-right là "auto" */
    text-align: center; /* Căn nội dung bên trong div theo chiều ngang */
    padding: 10px; /* Thêm padding cho đẹp */
}
/* Media query cho thiết bị có chiều rộng nhỏ hơn 768px (mobile) */
@media screen and (max-width: 768px) {
    .column1 {
        float: left; /* Column1 nằm bên trái trên mobile */
    }

    .column2 {
        float: right; /* Column2 nằm bên phải trên mobile */
        padding-right: 5px;
    }

    .navbar-bottom a {
        float: right;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
    .hello {
        width: 98%; /* Đặt chiều rộng của div là 50% của trang */
        margin: 0 auto; /* Căn giữa theo chiều ngang bằng cách đặt margin-left và margin-right là "auto" */
        text-align: center; /* Căn nội dung bên trong div theo chiều ngang */
        padding: 10px; /* Thêm padding cho đẹp */
    }
}
/* CSS cho biểu tượng Font Awesome */
/* CSS cho biểu tượng Font Awesome */
.containerlink {
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
}

    .containerlink span i.fas.fa-plus-circle {
        /* Các thuộc tính CSS bạn muốn áp dụng cho biểu tượng ở đây */
        font-size: 24px; /* Kích thước biểu tượng */
        color: var(--button-color);
        margin-right: 10px; /* Khoảng cách với văn bản bên cạnh */
    }

    /* CSS cho liên kết */
    .containerlink span a {
        /* Các thuộc tính CSS bạn muốn áp dụng cho liên kết ở đây */
        text-decoration: none; /* Loại bỏ gạch chân mặc định */
        color: var(--button-color); /* Màu của văn bản liên kết */
        font-size: 16px;
        display: flex; /* Sử dụng flexbox cho phần văn bản */
        align-items: center; /* Căn giữa theo chiều dọc */
    }

        /* CSS khi hover vào liên kết */
        .containerlink span a:hover {
            color: var(--button-hover-color); /* Màu văn bản khi hover */
        }

.containerlinkright {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-top: 10px;
}

    .containerlinkright span i.fas.fa-plus-circle {
        /* Các thuộc tính CSS bạn muốn áp dụng cho biểu tượng ở đây */
        font-size: 24px; /* Kích thước biểu tượng */
        color: var(--button-color);
        margin-right: 10px; /* Khoảng cách với văn bản bên cạnh */
    }

    /* CSS cho liên kết */
    .containerlinkright span a {
        /* Các thuộc tính CSS bạn muốn áp dụng cho liên kết ở đây */
        text-decoration: none; /* Loại bỏ gạch chân mặc định */
        color: var(--button-color); /* Màu của văn bản liên kết */
        font-size: 16px;
        display: flex; /* Sử dụng flexbox cho phần văn bản */
        align-items: center; /* Căn giữa theo chiều dọc */
    }

        /* CSS khi hover vào liên kết */
        .containerlinkright span a:hover {
            color: var(--button-hover-color); /* Màu văn bản khi hover */
        }
/* Định dạng cho container chứa thông báo */
.notiall {
    display: flex;
    justify-content: center; /* Căn giữa theo chiều ngang */
    align-items: center; /* Căn giữa theo chiều dọc */
    /*height: 100vh;*/ /* Chiều cao bằng toàn bộ viewport */
}

/* Định dạng cho khung thông báo */
.notialert {
    text-align: center;
    padding: 20px;
    /*           border: 1px solid #ccc;
            border-radius: 5px;*/
    background-color: #fff;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
}

/* Định dạng cho hình ảnh */
.noti-img img {
    width: 50px; /* Điều chỉnh kích thước của hình ảnh */
    height: 50px;
}

/* Định dạng cho tiêu đề */
.noti-content h3 {
    font-size: 18px; /* Điều chỉnh kích thước font chữ cho tiêu đề */
    margin: 10px 0;
}

/* Định dạng cho đoạn văn bản và liên kết */
.noti-content p {
    font-size: 14px; /* Điều chỉnh kích thước font chữ cho đoạn văn bản */
    margin: 5px 0;
}

.notilink {
    color: blue; /* Màu cho liên kết */
    text-decoration: none; /* Gạch chân cho liên kết */
    cursor: pointer; /* Con trỏ thay đổi khi di chuột qua liên kết */
}



#note {
    height: 150px;
    border-radius: 8px;
}

.registration-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

    .registration-container label {
        margin-top: 15px;
        display: block;
        margin-bottom: 10px;
        font-weight: bold; /* Đặt độ đậm cho label */
        color: #333;
    }

/* Thêm đường viền cho trường input và textarea */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    /* margin-bottom: 15px;*/
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}
/*#dialCode {
    padding: 8px;
    border: 1px solid #ccc;*/ /* Viền cho phần tử select */
    /*border-left: 1px solid #ccc;*/ /* Viền bên trái cho phần tử select */
    /*border-right: none;*/ /* Loại bỏ viền bên phải cho phần tử select */
    /*border-radius: 4px 0 0 4px;*/ /* Viền cong chỉ cho bên trái của phần tử select */
    /*appearance: none;*/ /* Loại bỏ giao diện mặc định của select */
/*}*/
#dialCode {
    width: 80px;
    padding: 8px;
    border: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    max-width: 100%;
    box-sizing: border-box;
    /*appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;*/ /* Màu nền của select */
    /*background-image: none;*/ /* Loại bỏ hình ảnh nền mặc định */
}

    #dialCode option {
        padding-left: 30px; /* Khoảng cách giữa icon và nội dung */
        background-repeat: no-repeat;
    }

        /*#dialCode option.flag-icon::before {
            margin-right: 10px;*/ /* Khoảng cách giữa icon và nội dung */
        /*}*/

input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    /* margin-bottom: 15px;*/
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0; /* Border radius cho phía bên phải */
    transition: border-color 0.3s;
}
    /* Màu xám cho đường viền khi trường được focus */
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border-color: #aaa;
    }

    /* Đường viền đỏ cho trường không hợp lệ */
    input[type="text"].invalid,
    input[type="tel"].invalid,
    input[type="email"].invalid,
    textarea.invalid {
        border-color: red;
    }

    /* Bỏ đường viền đỏ cho trường bắt buộc nhập */
    input[required].invalid,
    textarea[required].invalid {
        border-color: #ccc;
    }

.center-button {
    text-align: center;
}

.error-message {
    color: red;
    font-size: 12px; /* Đặt font nhỏ hơn cho error message */
    margin-top: 5px;
    margin-left: 5px; /* Đặt khoảng cách từ trái của error message đến input */
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 6px solid transparent;
    border-top: 6px solid var(--button-color); /* Màu mặc định, bạn có thể thay đổi màu này */
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Hiệu ứng quay vòng tròn */
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -20px; /* -1/2 của chiều cao */
    margin-left: -20px; /* -1/2 của chiều rộng */
    display: none; /* Ẩn ban đầu */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.comname {
    font-weight: bold;
}
/* Media Query cho thiết bị di động */
@media (max-width: 768px) {
    .registration-container {
        padding: 10px 0; /* Padding 10px trên và dưới, 0px trái và phải */
        /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/ /* Thêm bóng cho hiệu ứng nổi bật */
    }
}

/*@media (max-width: 480px) {
    .registration-container {
        padding: 5px;*/ /* Giảm padding thêm cho màn hình rất nhỏ */
        /*font-size: 14px;*/ /* Điều chỉnh kích thước chữ để phù hợp với màn hình nhỏ */
    /*}
}*/
@media (max-width: 1024px) { /* Mobile và iPad */
    .f-mask {
        pointer-events: none; /* Cho phép click xuyên qua lớp phủ */
    }
}

/*.containerlink-item_staff {
    display: flex;
    gap: 20px;*/ /* Khoảng cách giữa các mục */
/*align-items: center;
}
        .containerlinkright_staff {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-top: 15px;
    margin-right: 15px;
}
    */
.containerlinkright_staff {
    display: flex;
    align-items: center;
    margin-top: 15px;
    margin-right: 15px;
    overflow-x: auto; /* Cho phép cuộn ngang */
    white-space: nowrap; /* Giữ các mục không bị xuống dòng */
    justify-content: flex-end; /* Căn chỉnh sang bên phải trên PC */
    scrollbar-width: none; /* Ẩn thanh cuộn ngang trên Firefox */
}

/* Ẩn thanh cuộn ngang trên các trình duyệt khác */
.containerlinkright_staff::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn ngang trên Chrome, Safari, và Edge */
}
.containerlink-item_staff {
    display: inline-flex; /* Sử dụng inline-flex để các mục không xuống dòng */
    gap: 20px; /* Khoảng cách giữa các mục */
    align-items: center;
}
/* Media query cho màn hình nhỏ */
@media (max-width: 768px) {
    .containerlinkright_staff {
        justify-content: flex-start; /* Căn chỉnh sang bên trái trên màn hình nhỏ */
    }
    .containerlink-item_staff {
        display: inline-flex; /* Sử dụng inline-flex để các mục không xuống dòng */
        gap: 10px; /* Khoảng cách giữa các mục */
        align-items: center;
    }

}


.containerlinkright_staff input[type="radio"] {
    display: none;
}

.lblStaff {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 5px;
    transition: outline 0.3s ease, box-shadow 0.3s ease;
}

.containerlinkright_staff input[type="radio"]:checked + label {
    box-shadow: none; /* Loại bỏ hiệu ứng nổi khối */
    border-radius: 15px; /* Bo góc nhẹ cho đường viền */
    background-color: var(--button-color); /* Màu nền khi được chọn */
    color: white; /* Màu chữ khi được chọn */
    /*  font-weight: bold;*/
}

.lblStaff i {
    margin-right: 5px; /* Khoảng cách giữa icon và text */
}



#icon_staff {
    font-size: 1.2em; /* Tăng kích thước icon, bạn có thể điều chỉnh giá trị này */
    margin-right: 5px; /* Khoảng cách giữa icon và text */
}
/* CSS cho bảng giỏ hàng */
table {
    width: 100%;
    margin-top: 20px;
    text-align: left;
    border-collapse: collapse;
}

th, td {
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 20px;
}

/* Thêm border-bottom cho Dòng 2 và Dòng 3 */



/* Thêm border-bottom cho dòng tiêu đề */
th {
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;
}
/* Bôi đậm và thay đổi màu cho tên sản phẩm */
td.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #36404a;
}
/* Điều chỉnh khoảng cách giữa Dòng 1 và Dòng 2 */
tr.row2 {
    height: 30px;
}
tr.row3 {
    height: 30px;
   
}
tr.row3 td {
    border-bottom: 1px dotted #ccc;
    font-weight: bold;
  
}
    tr.row3a td {
        border-bottom: 1px dotted #ccc;
    }
tr.row2 td {
    color: #979797;
  /*  line-height: 1.3;
    margin-bottom: 3px;*/
}
.employee {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.employee-image img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    margin-right: 10px;
}

.employee-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.employee-name {
    font-weight: bold;
}

.employee-actions button {
    cursor: pointer;
}
/* CSS cho nút xóa */
button.remove-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    float: right;
    right: 0;
}

    button.remove-button:hover {
        text-decoration: none; /* Bỏ đường viền khi di chuột qua */
    }
    button.remove-button i {
        color: black; /* Màu mặc định của biểu tượng */
        font-size:16px;
    }

    button.remove-button:hover i {
        color: red; /* Màu khi hover */
    }
/* CSS cho popup container */
#popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;  
}

/* CSS cho popup */
/* CSS cho popup */
#popup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    max-height: 80vh;  
    overflow-y: auto; 
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* CSS cho liên kết chọn nhân viên */
.select-delivery-link {
    text-decoration: none;
   /* color: var(--button-color) !important;*/
    cursor: pointer;
    float: right;
    right: 0;
    font-weight: 400;
}
/* Đặt màu cho biểu tượng */
/*.fas.fa-user {
    color: blue;*/ /* Thay màu này bằng màu bạn muốn sử dụng */
/*}*/

/* Đặt kích thước cho biểu tượng */
.fas.fa-user {
    font-size: 16px; /* Thay đổi kích thước này theo kích thước bạn muốn */
    padding-right:10px;
}

    /* Thêm hiệu ứng hover cho biểu tượng */
    /*.fas.fa-user:hover {
        transform: scale(1.2);*/ /* Tăng kích thước khi di chuột qua */
        /*transition: transform 0.3s ease;*/ /* Thời gian và kiểu chuyển tiếp */
    /*}*/

.vi-slots-list {
    width: 100%;
}

.time-group {
    margin-bottom: 20px; /* Khoảng cách giữa các nhóm thời gian */
}

.time-group-title {
    font-size: 12px;
    font-family: Poppins,sans-serif;
    text-transform: uppercase;
    color: #979797;
    font-weight: 400;
    margin-bottom: 5px;
    padding-left: 5px;
}

.row {
    display: flex;
    flex-wrap: wrap;
   /* justify-content: space-between;*/
}

.item-col {
    flex-basis: calc(25% - 20px); /* 25% width for each item with margin */
    margin: 10px;
    text-align: center;
    max-width:25%;
}

.vi-slots-list--item {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; /* Thêm hiệu ứng chuyển đổi cho background-color */
    /* width: 100px;  Kích thước cố định cho mục thời gian */
    text-align: center;
}

    .vi-slots-list--item:hover {
        background-color: #f0f0f0; /* Màu nền khi hover */
        outline: 2px solid var(--selected-hover-color) /* Outline màu đỏ khi hover (thay thế cho border) */
        /*color: #fff;*/ /* Màu chữ đỏ khi hover */
    }

    .vi-slots-list--item.selected {
        background-color: #f0f0f0; /* Giữ màu nền là màu mặc định */
        outline: 2px solid var(--selected-color); /* Outline màu đỏ cho đối tượng được chọn */
        /*color: red;*/ /* Màu chữ màu đỏ cho đối tượng được chọn */
    }

h6 {
    margin-bottom: 10px;
}

.vi-horizontal-calendar {
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.vi-horizontal-calendar--head {
    background-color: #fff;
    color: #36404a;
    display: flex;
   /* justify-content: space-between;*/
    justify-content: center;
    align-items: center;
    padding: 5px;
    text-align: center;
    max-height:50px;
}

.vi-horizontal-calendar--head-date {
    position: relative;
    z-index: 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #36404a;
}

.vi-horizontal-calendar--body {
    display: flex;
    flex-direction: column;
}

.horizontal-calendar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.horizontal-calendar--arrow-btn {
    cursor: pointer;
    padding: 50px;
   
}

.horizontal-calendar--days {
    display: flex;
    justify-content: space-between;
}
.horizontal-calendar--days-item.disabled {
    /* Đặt các thuộc tính CSS mà bạn muốn áp dụng cho phần tử này */
    background-color: #fff; /* Màu nền */
    
}
    .horizontal-calendar--days-item.disabled .horizontal-calendar--days-item--number {
        min-width: 30px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        line-height: 30px;
        text-align: center;
        background: #fff;
        font-size: 12px;
        font-weight: 400;
        color: #a1a1a1;
        cursor: default;
        -webkit-transition: .2s;
        transition: .2s;
    }

.horizontal-calendar--days-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa theo chiều ngang */
    text-align: center;
    padding-left: 8px;
    padding-right: 8px;
}

.horizontal-calendar--days-item--label {
    font-size: 12px;
    font-weight: 400;
    color: #a1a1a1;
    display: inline-block;
    margin-bottom: 8px;
}

.horizontal-calendar--days-item--number {
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    background: #f6f6f6;
    font-size: 12px;
    font-weight: 400;
    color: #36404a;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
}


.horizontal-calendar--days-item.selected .horizontal-calendar--days-item--number {
    background-color: var(--selected-color);
    color: white; /* Màu chữ màu đỏ cho đối tượng được chọn */
}

#calendarDays {
    margin: 0 auto; /* Để căn giữa theo chiều ngang */
    text-align: center; /* Để căn giữa nội dung bên trong */
}

.current-day .horizontal-calendar--days-item--number {
     /*background-color: red;*/ /* Màu nền cho số ngày hiện tại */
    border: 1px solid #007bff; /* Border cho số ngày hiện tại */
}
#currentDate {
    position: relative;
    z-index: 55;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #36404a;
}


.containerlink {
    display: flex;
    justify-content: center; /* Căn giữa theo chiều ngang */
    align-items: center; /* Căn giữa theo chiều dọc */
    margin-top: 20px;
}
/* Định dạng chung cho phần tử preorder */
.preorder {
    width: 100%; /* Điều chỉnh chiều rộng theo nhu cầu của bạn */
    margin: 0 auto; /* Để căn giữa trang */
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 10px; /* Thay đổi giá trị này để điều chỉnh độ bo tròn */
}

/* Định dạng cho phần tử #date */
#bookdate {
    font-size: 16px;
    font-weight: bold;
}


/* Định dạng cho thẻ tbody */
#order {
    /*border: 1px solid #ccc;*/
}

/* Định dạng cho phần tử orderfooter */
.orderfooter {
    padding-top: 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
}


.orderprice {
    float: right;
    padding-right: 20px;
}

.orderdesc {
    color: #979797;
    line-height: 1.3;
    margin-bottom: 3px;
}

.ordername {
    font-size: 14px;
    font-weight: 600;
    color: #36404a;
}

.orderemp {
    font-weight: normal;
    padding-bottom:8px;
}
#txtDiscountCode_wrapper {
    width: 100% !important;
}

#txtDiscountCode-inputEl {
    /* margin-top: 15px;*/
    width: 99% !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

#btnDiscount {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    width: 100% !important;
    transition: background-color 0.3s ease;
}

.containersubtotal {
    display: flex;
    flex-direction: column;
    width: 100%; /* Kích thước cho container */
}

.subtotalrow1 {
    /* margin-top:10px;*/
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc; /* Đường viền dưới của mỗi dòng */
    /*padding: 10px;*/
    padding-top: 15px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.subtotalrow2 {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc; /* Đường viền dưới của mỗi dòng */
    /*padding: 10px;*/
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.subtotalcl1, .subtotalcl2 {
    flex: 1; /* Phân phối không gian đều */
}

.subtotalcl1 {
    text-align: left; /* Căn trái cho cột đầu tiên */
    color: #757676;
}

.subtotalcl2 {
    text-align: right; /* Căn phải cho cột thứ hai */
    padding-right: 10px;
    color: #757676;
}

.containerfooter {
    display: flex;
    flex-direction: column;
    width: 100%; /* Kích thước cho container */
}

.footerow1 {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.footerow2 {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
    color: green;
}

.footerow3 {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.footercl1, .footercl2 {
    flex: 1; /* Phân phối không gian đều */
}

.footercl1 {
    text-align: left; /* Căn trái cho cột đầu tiên */
    font-weight: bold;
    font-size: 15px;
}

.footercl2 {
    text-align: right; /* Căn phải cho cột thứ hai */
    padding-right: 10px;
    font-weight: bold;
    text-align: right;
    font-size: 15px;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.align-center {
    display: flex;
    align-items: center;
}

.secure-payment-text {
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px; /* Add some space between the icon and text */
    color: rgb(119, 126, 144);
}
.payment-method-container {
   /* margin-top: 20px;*/
}

.list-group {
    list-style: none; /* Remove default list bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.checkout-payment-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    position: relative;
    font-weight: bold;
    /*   border-bottom: 1px dotted #333;
            transition: background-color 0.3s;
            height: 50px;*/
    
    text-decoration: none;
    cursor: pointer;
}
/* Styling for individual list items */

.list-group-item {
    list-style-type: none; /* Removes the bullet point */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer; /* Change cursor to pointer to indicate clickable item */
}

    .list-group-item label {
        display: flex;
        align-items: center; /* Vertically center content within label */
        width: 100%;
        position: relative; /* Ensure positioning is relative to the label */
        cursor: pointer; /* Change cursor to pointer to indicate clickable item */
        font-weight: 600;
        color: #333;
    }

    .list-group-item .d-flex label {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center; /* Vertically center content */
    }

.payment-logo {
    max-height: 40px;
    max-width: 100px;
    height: auto;
    float: right; /* Float the image to the right */
    cursor: pointer; /* Change cursor to pointer to indicate clickable item */
}
.payment-logoright {
    max-height: 40px;
    max-width: 100px;
    padding-left:5px;
    height: auto;
    float: right; /* Float the image to the right */
    cursor: pointer; /* Change cursor to pointer to indicate clickable item */
}
.payment-details {
    margin-top: 15px;
    display: none;
}

    .payment-details.show {
        display: block;
    }
.card-details-container {
   /* border: 1px solid #ccc;*/
    padding: 10px;
    border-radius: 8px;
    gap: 10px;
}

.form-group {
    margin-bottom: 10px;
}
.form-text {
    margin-bottom: 10px;
    text-align:center;
}

/*.d-flex {
    display: flex;
    gap: 10px;*/ /* Space between exp-date and cvc-code */
/*}*/
.d-flex {
    display: flex;
    align-items: center; /* Căn chỉnh theo chiều dọc */
    justify-content: space-between; /* Phân phối không gian đều giữa các phần tử con */
    gap: 10px;
    
}
.exp-date {
    flex: 1;
   /* max-width: 80px;*/
}

.cvc-code {
    flex: 1;
   /* max-width: 70px;*/
}

.card-number,
.card-holder-name {
    width: 100%;
}


.card-number-container {
    position: relative;
}

.card-number {
    padding-right: 50px; /* Adjust this based on icon size */
}
.magic-radio {
    /*margin: 0;*/ /* Loại bỏ bất kỳ khoảng cách ngoài */
    /*padding: 0;*/ /* Loại bỏ bất kỳ khoảng cách trong */
    vertical-align: middle; /* Căn chỉnh theo chiều dọc */
}
.ccicon {
    position: absolute;
    right: 10px; /* Adjust this based on your design */
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    pointer-events: none; /* Ensures the icon does not interfere with input focus */
}
@media (max-width: 768px) {
    .list-group-item .d-flex label {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center; /* Vertically center content */
    }
}

@media (max-width: 767px) {
    .exp-date {
        flex: 1;
        /*max-width: 50%;*/ /* Đảm bảo không vượt quá 50% chiều rộng của khung chứa */
        box-sizing: border-box; /* Để padding và border không làm phần tử vượt qua max-width */
   
    }

.cvc-code {
    flex: 1;
    /*max-width: 50%;*/ /* Đảm bảo không vượt quá 50% chiều rộng của khung chứa */
    box-sizing: border-box; /* Để padding và border không làm phần tử vượt qua max-width */
    }
}
