html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth
}

*,
*:before,
*:after {
	box-sizing: inherit
}

html,
body {
	margin: 0;
	padding: 0
}

body {
	background: #efeff3;
	color: #444;
	font: 14px/1.7 Arial, Helvetica, sans-serif;
	min-width: 320px
}

a {
	color: #FF9800;
	text-decoration: none
}

a:hover {
	text-decoration: none;
	color: #ff9800
}

img {
	max-width: 100%;
	height: auto;
	display: block
}

figure {
	margin: 0
}

p {
	margin: 0 0 14px
}

ul,
ol {
	margin: 0 0 14px;
	padding-left: 18px
}

/* bỏ dấu chấm trong widget sidebar sản phẩm/bài viết */
.lova-sidebar ul,
.lova-sidebar ol,
.lova-sidebar-widget ul,
.lova-sidebar-widget ol,
.lova-sidebar-product-list,
.lova-sidebar-post-list,
.lova-sidebar-link-list {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.lova-sidebar li,
.lova-sidebar-widget li,
.lova-sidebar-product-list li,
.lova-sidebar-post-list li,
.lova-sidebar-link-list li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 12px;
	color: #333;
	font-weight: 500;
	line-height: 1.35
}

h1 {
	font-size: 26px
}

h2 {
	font-size: 18px
}

h3 {
	font-size: 16px
}

table {
	width: 100%;
	border-collapse: collapse
}

th,
td {
	border: 1px solid #e7e7e7;
	padding: 10px 12px;
	vertical-align: top
}

input,
select,
textarea,
button {
	font: inherit
}

input[type=text],
input[type=search],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
	width: 100%;
	border: 1px solid #cfcfcf;
	background: #fff;
	padding: 8px 10px;
	color: #444
}

button,
.button,
input[type=submit] {
	background: #f47e20;
	color: #fff;
	border: 0;
	padding: 0px 8px;
	cursor: pointer
}

.screen-reader-text {
	position: absolute;
	left: -9999px
}

.lova-container {
	width: 1200px;
	max-width: calc(100% - 32px);
	margin: 0 auto
}

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column
}

.site-content {
	flex: 1;
	padding: 16px 0 30px
}

.lova-page-header {
	margin-bottom: 20px
}

.lova-page-title {
	font-size: 42px;
	font-weight: 400;
	color: #333
}

.admin-bar .site-header {
	margin-top: 32px
}

@media (max-width:991px) {
	.lova-container {
		max-width: calc(100% - 20px)
	}

	.lova-page-title {
		font-size: 28px
	}
}

@media (max-width:767px) {
	body {
		font-size: 13px
	}

	.site-content {
		padding-top: 12px
	}
}

/* Nút TOP */
.ls-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 34px;
    height: 34px;
    border-radius: 5%;
    background: #f47e20;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all .25s ease;
    z-index: 999;
}

.ls-back-to-top:hover {
    background: #d96b15;
}

.ls-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* mobile chỉnh lại chút cho gọn */
@media (max-width: 768px) {
    .ls-back-to-top {
        right: 12px;
        bottom: 70px;
        width: 30px;
        height: 30px;
    }
}

/* counter */
.lova-single-post__meta-item--views {
	margin: 0 0 12px;
    font-size: 12px;
    color: #FF9800;
}

.lova-single-post__meta-item--views svg {
	width: 16px;
	height: 16px;
}