*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
}

:root {
    --primary-color: #01A245;
    --colorRed: #ff3333;
    --colorGray: #5C5C5C;
    --colorDark: #2d2d2d;
    --colorYellow: #ffd43b;
}

body {
    overflow-x: hidden;
}

@font-face {
    src: url("../fonts/roboto/Roboto-Bold.ttf");
    font-family: "roboto";
    font-weight: bold;
}

@font-face {
    src: url("../fonts/roboto/Roboto-Regular.ttf");
    font-family: "roboto";
    font-weight: normal;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.row-0 {
    margin: 0px !important;
    padding: 0px 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.row-5 {
    padding: 0px 10px !important;
}

.pd-5 {
    padding: 0px 5px 8px 5px !important;
}


.row-8 {
    padding: 0px 7px !important;
}

.pd-8 {
    padding: 0px 8px 8px 8px !important;
}

.clearleft {
    clear: both;
}

.container {
    margin-right: 0px;
    margin-left: 0px;
}

.button_style {
    background-color: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 5px 25px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 5px;
}

.button_style:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.button_style:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.container {
    width: 100% !important;
    max-width: 100% !important;
}

body {
    background: transparent url(../images/bg_lotus.gif) repeat scroll center top;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto auto;
    padding: 10px 0;
    font-family: "roboto";
    font-weight: normal;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 #ddd;
}

a {
    text-decoration: unset !important;
}

h1, h2, h3, h4, h5, h6, b, strong {
    font-family: "roboto";
    font-weight: bold;
}

div#wrapper {
    width: 100%;
    background: #fff;
    border-radius: 10px;
}

/**header**/
header#header {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 150px;
    border-radius: 8px 8px 0 0;
}

header#header > #logo {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

header#header > #logo img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    object-position: center center;
}

header#header .header-language {
    width: auto;
    position: absolute;
    top: 10px;
    right: 10px;
}

header#header .header-language ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
}

header#header .header-language ul li {
    list-style: none;
}

header#header .header-language ul li a img {
    width: 30px;
    border: 1px solid #fff;
}

header#header .header-language ul li:not(:last-child) {
    margin-right: 10px !important;
}

header#header .header-search {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 200px;
}

header#header .header-search form {
    width: 100%;
    display: inline-block;
    position: relative;
}

.input-search {
    border-radius: 50px !important;
    width: 100%;
    border: 1px solid #d9d9d9 !important;
    height: 35px !important;
    font-size: 14px;
    color: var(--colorDark)
}

button.btnSearch {
    background: var(--primary-color);
    border: 0px !important;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px;
    font-size: 15px;
}


/**footer**/
footer#footer {
    background-color: #00923f;
    border-top: 3px solid #008639;
    width: 100%;
    display: inline-block;
    padding: 30px 0;
    border-radius: 0 0 8px 8px;
}

footer#footer .footer-top {
    width: 100%;
    display: inline-block;
}

footer#footer .footer-top .footer-title h2 {
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    margin: 0 0 30px 0;
    position: relative;
    width: auto;
    display: inline-block
}

footer#footer .footer-top .footer-title h2:after {
    content: '';
    height: 3px;
    width: calc(100% - 20%);
    background: #fff;
    position: absolute;
    left: 0px;
    bottom: -10px;
}

footer#footer .footer-top .footer-address-item {
    width: 100%;
    display: inline-block;
}

footer#footer .footer-top .footer-address-item:not(:last-child) {
    margin-bottom: 15px;
}

footer#footer .footer-top .footer-address-item h3 {
    color: var(--colorYellow);
    font-size: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

footer#footer .footer-address-item p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

footer#footer .footer-address-item p:not(:last-child) {
    margin: 0 0 10px 0;
}

footer#footer .footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

footer#footer .footer-social a:hover {
    transition: 0.3s ease-in-out;
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
}

footer#footer .footer-copyright {
    width: 100%;
    margin: 20px 0 0 0;
    color: #fff;
    font-size: 15px;
}

/**menu**/
.header-bottom {
    width: 100%;
    background: var(--primary-color);
    height: 40px;
    display: inline-block;

}

.header-bottom ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-flow: wrap;
}

.header-bottom ul li {
    list-style: none;
    height: 40px;
    position: relative;
}

.header-bottom ul li a {
    color: #fff;
    line-height: 40px;
    display: block;
    padding: 0px 6px;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "roboto";
    font-weight: bold;
}

.header-bottom ul li a i {
    display: none !important;
}

.header-bottom ul li:hover,
.header-bottom ul li.active {
    background: rgba(255, 255, 255, 0.1);
}

.header-bottom ul li > ul.sub-menu {
    position: absolute;
    top: 40px;
    background: var(--primary-color);
    z-index: 99;
    min-width: 300px;
    box-shadow: 0px 2px 16px rgb(0 0 0 / 10%);
    display: none;
    border: 1px solid var(--primary-color);
    border-top: 0px !important;
}

.header-bottom ul li > ul.sub-menu li {
    padding: 0px 5px;
    height: unset !important;
    width: 100% !important;
    position: relative;
}

.header-bottom ul li > ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header-bottom ul li > ul.sub-menu a {
    line-height: unset !important;
    padding: 8px 8px !important;
    font-weight: normal;
    font-size: 13px;
}

.header-bottom ul li > ul.sub-menu li > ul.sub-menu {
    top: 0px;
    left: 100%;
}

.header-bottom ul li:hover > ul.sub-menu {
    display: block;
}

/**main**/
main#main {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
}

/**post big**/
.post__big {
    width: 100%;
    display: inline-block;
}

.post__big .post__thumbnail {
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    height: 300px;
    padding: 5px;
}

.post__big .post__thumbnail img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

.post__big .post__content {
    width: 100%;
    padding: 15px 0 0 0;
}

.post__big .post__content h4 {
    margin: 0;
}

.post__big .post__content h4 a {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 20px;
    display: block;
    text-transform: uppercase;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post__big .post__overview {
    color: var(--colorDark);
    font-size: 13px;
    line-height: 18px;
    margin-top: 5px;
}

.post__big .post__content h4 a:hover {
    color: var(--colorRed)
}

.post__big .post-read {
    float: right;
    font-weight: bold;
    font-size: 13px;
    color: var(--primary-color);
    margin: 5px 0 0 0;
}

.post__big .post-read a {
    color: var(--primary-color);
}

/**post item**/
.post__item {
    width: 100%;
    display: flex;
    flex-flow: wrap;
}

.post__item:not(:last-child) {
    margin-bottom: 10px;
}

.post__item .post__thumbnail {
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 140px;
    height: 110px;
    padding: 5px;
}

.post__item .post__thumbnail img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

.post__item .post__content {
    width: calc(100% - 140px);
    padding-left: 15px;
}

.post__item .post__content h4 {
    margin: 0;
}

.post__item .post__content h4 a {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 18px;
    display: block;
    text-transform: uppercase;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post__item .post__overview {
    color: var(--colorDark);
    font-size: 12px;
    line-height: 15px;
    margin-top: 5px;
}

.post__item .post__content h4 a:hover {
    color: var(--colorRed)
}

/*post grid**/
.post__grid {
    width: 100%;
    display: flex;
    flex-flow: wrap;
}

.post__grid:not(:last-child) {
    margin-bottom: 10px;
}

.post__grid .post__thumbnail {
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 200px;
    height: 150px;
    padding: 5px;
}

.post__grid .post__thumbnail img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

.post__grid .post__content {
    width: calc(100% - 200px);
    padding-left: 15px;
}

.post__grid .post__content h4 {
    margin: 0;
}

.post__grid .post__content h4 a {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    display: block;
    text-transform: uppercase;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post__grid .post__overview {
    color: var(--colorDark);
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0;
}

.post__grid .post__content h4 a:hover {
    color: var(--colorRed)
}

.post__grid .post-read {
    text-align: right;
}

.post__grid .post-read a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}

.post__grid:not(:last-child) {
    border-bottom: 1px dashed #EAE9E1;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/**branch**/
.bit__branch {
    width: 100%;
    display: inline-block;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px dashed #EAE9E1;
    padding: 10px;
}

.bit__branch .branch-item {
    width: 100%;
    height: 100px;
}

.bit__branch .branch-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/**slide**/
.owl-dots {
    display: none !important;
}

.owl-dots button {
    width: 10px !important;
    height: 10px !important;
    background: #B0B0B0 !important;
    min-height: 10px !important;
    border-radius: 50px !important;
    margin: 0px 5px !important;
}

.owl-dots button.active {
    background: var(--primary-color) !important;
}

.owl-nav button {
    margin: 0px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

button.owl-prev {
    left: -55px;
}

button.owl-next {
    right: -55px;
}

.owl-nav button img {
    width: 25px !important;
    height: 25px !important;
}

/**home title**/
.home-title {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px 0;
}

.home-title h3 {
    color: var(--primary-color);
    font-size: 16px;
}

/**post list**/
.post-list ul {
    padding: 0 !important;
    margin: 0px !important;
}

.post-list ul li {
    background: rgba(0, 0, 0, 0) url(../images/calendar_icon.png) no-repeat scroll left 2px;
    line-height: 16px;
    list-style: outside none none;
    padding-left: 30px;
    margin-bottom: 10px;
}

.post-list ul li a {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 18px;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-list ul li a:hover {
    color: var(--colorRed)
}

/**partner**/
.partner-item {
    width: 100%;
    height: 80px;
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ic_marquee0 {
    border-top: 1px solid #d9d9d9;
}


/**sidebar left**/
.banner-adv-left {
    width: 100%;
    display: inline-block;
}

.banner-adv-left img {
    width: 100%;
}


/*8menu left **/
.menu-left-top {
    width: 100%;
    display: inline-block;
    border-radius: 3px;
}

.menu-left-top ul {
    margin: 0px;
    padding: 0px !important;
}

.menu-left-top ul li {
    background: var(--primary-color);
    padding: 6px 10px;
    position: relative;
}

.menu-left-top ul li:first-child {
    border-radius: 3px 3px 0 0;
}

.menu-left-top ul li:last-child {
    border-radius: 0 0 3px 3px;
}

.menu-left-top ul li a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    display: block;
}

.menu-left-top ul li:hover, .menu-left-top ul li.active {
    background: #008639;
}

.menu-left-top ul li > ul.sub-menu {
    display: none;
    position: absolute;
    top: 0px;
    left: 100%;
    min-width: 250px;
    z-index: 99;
    padding-left: 6px !important;
}

.menu-left-top ul li > ul.sub-menu li {
    background: var(--primary-color);
}

.menu-left-top ul li > ul.sub-menu li:first-child {
    border-radius: 3px 3px 0 0;
}

.menu-left-top ul li > ul.sub-menu li:last-child {
    border-radius: 0 0 3px 3px;
}

.menu-left-top ul li > ul.sub-menu::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    top: 20px;
    left: -3px;
}

.menu-left-top ul li > ul.sub-menu::after {
    border-right-color: var(--primary-color);
}

.menu-left-top ul li > ul.sub-menu li:hover {
    background: #008639 !important;
}

.menu-left-top ul li:hover > ul.sub-menu {
    display: block;
}

.sidebar-gallery {
    width: 100%;
    display: inline-block;
}

h3.widget_title {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 0;
    text-align: center;
    font-size: 20px;
}

img.widget-image {
    width: 100%;
}


.sidebar-login {
    background: #efefef none repeat scroll 0 0;
    padding: 10px;
    box-shadow: 0px 0px 2px #ccc;
    border-radius: 2px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.sidebar-login h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
}

/*breadcrumbs*/
.bit-breadcrumbs ol.breadcrumb {
    background: #f5f5f5;
    padding: 8px 15px !important;
}

.bit-breadcrumbs ol.breadcrumb li a {
    font-size: 14px;
    color: var(--primary-color)
}

.bit-breadcrumbs ol.breadcrumb li {
    color: #ff0000;
    font-size: 14px;
}

/*8category**/
.cat_title h1 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 25px;
    margin: 0 0 20px 0;
    line-height: 35px;
}

/**paginate**/
.pagination nav {
    width: 100%;
    max-width: 100%;
}

.pagination {
    text-align: center;
    justify-content: center;
}

.pagination nav .page-item.active .page-link {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.pagination nav .page-link {
    color: var(--primary-color)
}

.pagination li span, .pagination li a {
    font-size: 15px;
    height: 30px !important;
    line-height: 30px;
    padding: 0px 10px;
}

/**menu mobile**/
#wrapper {
    transition: all 0.3s ease 0s;
}

.mobileNavWrapper {
    width: 250px;
    height: 100%;
    min-height: 100%;
    position: fixed;
    left: -250px;
    top: 0;
    overflow-x: hidden;
    z-index: 16;
    background: var(--primary-color);
    -moz-box-shadow: inset 10px 0 6px -9px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 10px 0 6px -9px rgba(0, 0, 0, 0.5);
    box-shadow: inset 10px 0 6px -9px rgba(0, 0, 0, 0.5);
}

.mobileNavWrapper ul {
    display: inline-block;
    width: 100%;
    padding: 10px !important;
    margin-bottom: 0px !important;
}

.mobileNavWrapper ul li {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.mobileNavWrapper ul li:last-child {
    border-bottom: 0px !important;
}

.mobileNavWrapper ul li a {
    width: 100%;
    float: left;
    display: block;
    color: #fff;
    font-weight: normal;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 10px 0;
    text-transform: uppercase;
    position: relative;
}

.mobileNavWrapper ul li i {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 10%;
}

.mobileNavWrapper ul li.active > .sub-menu {
    display: block;
}

.mobileNavWrapper.showNav, #wrapper.showNav {
    -webkit-transform: translateX(250px);
    -ms-transform: translateX(250px);
    transform: translateX(250px);
}


/**single**/
header.header-single {
    width: 100%;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #eee;
}

header.header-single h1 {
    font-size: 17px;
    line-height: 24px;
    color: var(--primary-color);
}

article.entry-content {
    font-size: 15px;
    color: #333;
}

article.entry-content p, article.entry-content ul li, article.entry-content ol li {
    margin: 0 0 10px 0 !important;
}

article.entry-content img {
    max-width: 100%;
    height: auto !important;
}

header.header-single .post-date {
    width: 100%;
    display: inline-block;
    margin: 0 0 10px 0;
}

header.header-single .post-date {
    color: var(--colorDark);
    font-size: 13px;
}

.text-left ul.pagination {
    justify-content: left;
}

/**form**/
#chronoform-Dang-ky-xet-tuyen, #chronoform-dang_ky_xet_tuyen_he_lop_10 {
    border: 3px dashed #008639;
    animation: blink 1s step-end infinite alternate;
    margin: 3px;
    text-align: left;
    background: #f5f5f5;
    padding: 20px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 2px #f5f5f5;
}

@keyframes blink {
    50% {
        border-color: red;
    }
}


.ui-checkbox, .ui-radio {
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
    padding-left: 28px;
    font-weight: 400;
    min-height: 20px
}

.ui-checkbox .input-span, .ui-radio .input-span {
    position: absolute;
    display: inline-block;
    height: 20px;
    width: 20px;
    left: 0;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

.ui-checkbox .input-span::after, .ui-radio .input-span::after {
    content: '';
    position: absolute;
    display: none;
    width: 5px;
    height: 10px;
    left: 7px;
    top: 3px;
    border: solid #888;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.ui-checkbox input, .ui-radio input {
    position: absolute;
    opacity: 0
}

.ui-checkbox:hover .input-span, .ui-radio:hover .input-span {
    border-color: #b8b8b8
}

.ui-checkbox.ui-checkbox-gray .input-span, .ui-checkbox.ui-radio-gray .input-span, .ui-radio.ui-checkbox-gray .input-span, .ui-radio.ui-radio-gray .input-span {
    background-color: #e6e6e6;
    border-color: transparent
}

.ui-checkbox.ui-checkbox-gray .input-span::after, .ui-checkbox.ui-radio-gray .input-span::after, .ui-radio.ui-checkbox-gray .input-span::after, .ui-radio.ui-radio-gray .input-span::after {
    border-color: #888
}

.ui-checkbox.disabled, .ui-radio.disabled {
    opacity: .7;
    cursor: not-allowed
}

.ui-checkbox.check-single, .ui-radio.check-single {
    padding-left: 18px
}

.img-circle, .ui-radio .input-span {
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.ui-radio .input-span::after {
    border: 0;
    height: 6px;
    left: 6px;
    top: 6px;
    width: 6px;
    background: #888;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.check-list .ui-checkbox + .ui-checkbox, .check-list .ui-radio + .ui-radio {
    margin-top: 8px
}

.ui-checkbox-inline, .ui-radio-inline {
    display: inline-block;
    margin-right: 15px
}

.ui-checkbox-primary input:checked ~ .input-span {
    background-color: #3498db;
    border-color: #3498db
}

.ui-checkbox-danger input:checked ~ .input-span::after, .ui-checkbox-info input:checked ~ .input-span::after, .ui-checkbox-primary input:checked ~ .input-span::after, .ui-checkbox-success input:checked ~ .input-span::after, .ui-checkbox-warning input:checked ~ .input-span::after {
    border-color: #fff
}

.s16_r input[type=radio]:checked + label, .ui-radio-primary .input-span, .ui-radio-primary:hover .input-span {
    border-color: #3498db
}

.badge-primary, .label-primary, .progress .progress-bar, .progress .progress-bar.progress-bar-primary, .ui-radio-primary input:checked ~ .input-span {
    background-color: #3498db;
}

.s16_r input[type=radio]:checked + label, .ui-radio-primary .input-span, .ui-radio-primary:hover .input-span {
    border-color: #3498db;
}

.ui-radio .input-span::after {
    content: '';
    border: 0;
    height: 6px;
    left: 6px;
    top: 6px;
    width: 6px;
    background: #888;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.ui-radio-danger input:checked ~ .input-span::after, .ui-radio-info input:checked ~ .input-span::after, .ui-radio-primary input:checked ~ .input-span::after, .ui-radio-success input:checked ~ .input-span::after, .ui-radio-warning input:checked ~ .input-span::after {
    background-color: #fff !important;
    display: block;
}

.gbs3 label b {
    color: #ff3333;
}

.gbs3 label {
    font-weight: 700;
    font-size: 15px;
}

.hidden {
    display: none;
}

.dropify-wrapper .dropify-message p {
    font-size: 15px;
}

article.entry-content table tr td {
    padding: 10px !important;
}

article.entry-content table {
    width: 100% !important;
}

.home-title {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
}

/*8footewr**/
.vci-register {
    width: 200px;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 99;
}

.vci-register a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vci-hotline {
    width: 200px;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99;
}

.vci-hotline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-fixed {
    position: fixed;
    left: 50%;
    width: 1000px;
    transform: translateX(-50%);
    z-index: 999;
    top: 0px;
}

/**gallery**/
.list-gallery {
    display: flex;
    width: 100%;
    margin: 15px 0 0 0;
    flex-flow: wrap;
    overflow: hidden;
}

.list-gallery .gallery-item {
    width: calc(100% / 5) !important;
    height: 80px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.list-gallery .gallery-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border: 2px solid #fff;
    background-size: 100% !important;
}

.list-gallery .gallery-item:before {
    content: '';
    width: 100%;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    position: absolute;
    left: 0px;
    transition: 0.3s ease-in-out;
    bottom: -100%;
}

.list-gallery .gallery-item i {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    z-index: 999;
    transition: 0.3s ease-in-out;
    top: -100%;
}

.list-gallery .gallery-item:hover:before {
    transition: 0.3s ease-in-out;
    bottom: 0%;
}

.list-gallery .gallery-item:hover i {
    transition: 0.3s ease-in-out;
    top: 50%;
}

.remore {
    text-align: center;
    margin: 10px 0;
}

.remore a {
    color: var(--primary-color);
    font-size: 13px;
}

/**register**/
.mobileRegister a {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    -webkit-animation: my 0.3s infinite;
    -moz-animation: my 0.3s infinite;
    -o-animation: my 0.3s infinite;
    animation: my 0.3s infinite;
}

@-webkit-keyframes my {
    0% {
        color: #F8CD0A;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #F8CD0A;
    }
}

@-moz-keyframes my {
    0% {
        color: #F8CD0A;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #F8CD0A;
    }
}

@-o-keyframes my {
    0% {
        color: #F8CD0A;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #F8CD0A;
    }
}

@keyframes my {
    0% {
        color: #F8CD0A;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #F8CD0A;
    }
}

/**post item**/
.post__item.post_new .post__thumbnail {
    width: 55px;
    height: 45px;
    padding: 3px;
}

.post__item.post_new .post__content h4 a {
    text-transform: unset !important;
    font-size: 12px;
    line-height: 18px;
}

.post__item.post_new .post__content {
    width: calc(100% - 55px)
}

.post__item.post_new .post__content h4 {
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.bx-wrapper {
    box-shadow: unset;
    margin: 0px;
    padding: 0;
}

.bx-wrapper .bx-pager {
    display: none !important;
}

.slide-gallery {
    margin: 15px 0 !important;
}

.gl_item {
    width: 100%;
    height: 230px;
}

.gl_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-light {
    background: #fff !important;
}


.gl-5 .gallery-item {
    width: calc(100% / 8) !important;
    height: 100px;
}

.__new_button {
    background: var(--primary-color);
    width: auto;
    display: inline-block;
    float: right;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
}

.__new_button a {
    color: #fff;
}


.gl-5 .gallery-item img {
    background-size: cover !important;
}

.menu-left-top ul li i {
    display: none !important;
}

.sidebar-gallery .owl-dots {
    display: none !important;
}
