﻿.button-main {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    background-color: #f67e42;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    text-transform:uppercase;
}
.button-main:hover
{
    background-color:#000000;
    color:white;
}

.form-group .radiolistmain input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none;
}

    .form-group .radiolistmain input[type="radio"] ~ label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 22px;
        display: inline-block;
        color: #000000;
        margin-bottom: 0;
        font-weight: normal !important;
    }

.form-group .radiolistmain input[type="radio"] ~ label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form-group .radiolistmain input[type="radio"] ~ label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #f67e42;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

    .form-group .radiolistmain input[type="radio"]:checked ~ label:before {
        border-color: #f67e42;
    }

    .form-group .radiolistmain input[type="radio"]:checked ~ label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

/*.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #23638e;
    width: 100%;
    padding: 1vw;
    position: fixed;
    bottom: 0;
    z-index: 500;
}

    .toolbar ul {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        margin: 0;
        width: 100%;
    }

        .toolbar ul li {
            text-align: center;
            width: 25%;
            line-height: 1;
        }

            .toolbar ul li a {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #fff;
                text-decoration: none;
            }

                .toolbar ul li a span {
                    font-weight: 400;
                    color: #fff;
                    font-size: 14px;
                    margin-top: 5px;
                    display: block;
                }

                .toolbar ul li a img {
                    height: 15px;
                    width: auto;
                    margin-bottom: 5px;
                }*/
/* Đoạn mã CSS cho màn hình điện thoại */
@media only screen and (max-width: 767px) {
    .toolbar {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        background: #23638e;
        /* background: rgba(35, 99, 142, 0.7);*/
        width: 100%;
        padding: 1vw;
        position: fixed;
        bottom: 0;
        z-index: 500;
    }

        .toolbar ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
            margin: 0;
            width: 100%;
        }

            .toolbar ul li {
                text-align: center;
                width: 25%;
                line-height: 1;
            }

                .toolbar ul li a {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    color: #fff;
                    text-decoration: none;
                }

                    .toolbar ul li a span {
                        font-weight: 400;
                        color: #fff;
                        font-size: 14px;
                        margin-top: 5px;
                        display: block;
                    }

                    .toolbar ul li a img {
                        height: 15px;
                        width: auto;
                        margin-bottom: 5px;
                    }
}

/* Ẩn toolbar trên các thiết bị có độ rộng màn hình lớn hơn 767px */
@media only screen and (min-width: 768px) {
    .toolbar {
        display: none;
    }
}

.Titlt-Content1 {
    border-bottom: 2px solid #676c6b; /* Màu của đường gạch ngang */
    width: 100%; /* Đường gạch ngang chiếm toàn bộ chiều rộng */
    text-align: left; /* Căn giữa văn bản */
    line-height: 38px; /* Điều chỉnh khoảng cách giữa văn bản và đường gạch ngang */
    margin: 0;
    padding: 0;
    font-size:22px;
    margin-bottom:20px;
}