@charset "UTF-8";
/*
 * |---:[Đoạn này sẽ chứa các đoạn giới thiệu và thông tin về theme, như tên theme (Theme Name), tên tác giả (Theme Author), địa chỉ của tác giả (Author URI),...]:---|
 
 * Theme Name: Pt Theme
 * Description: Đây là một theme cá nhân để làm framework
 * Theme URI: 
 * Version: 1.0
 * Theme Author: Pt developer
 * Author URI: 
 * Tags: starter theme, framework theme, bootstrap, customize
 * Textdomain: pttheme
 */
/*
* Import file css
*/
@import url("styles/reset.css");
@import url("styles/bootstrap.min.css");
:root {
  --size-title: 30px;
  --border-basic: #ececec;
  --color-yellow: #eabe12;
  --color-red: #e81010;
  font-size: 16px;
}

*,
*::after,
*::before {
  color: inherit;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: var(--text-basic);
  line-height: 1.5;
}

#body_wrap {
  max-width: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-title);
  font-weight: bold;
  line-height: 1.5;
}

p,
ul,
li {
  color: var(--text-basic);
  font-weight: 300;
  line-height: 1.6;
}

i,
a {
  color: inherit;
}

ul {
  list-style: disc;
}

ul.ul_style-none {
  list-style-type: none;
}

ol,
ul {
  list-style-position: inside;
}

ol li,
ul li {
  margin-bottom: 1em;
}

ins,
a {
  text-decoration: unset;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
  color: var(--link-color);
}

a:hover {
  color: var(--link-hover);
}

section {
  position: relative;
}

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

svg {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

input {
  outline: unset;
}

p {
  font-size: 1em;
  margin-bottom: 1.4rem;
}

h1 {
  font-size: 1.7em;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.4em;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.1em;
  margin-bottom: 1.2rem;
}

h4 {
  font-size: 1.1em;
  margin-bottom: 1.2rem;
}

h5 {
  font-size: 1em;
  margin-bottom: 1.2rem;
}

h6 {
  font-size: 0.8em;
  margin-bottom: 1.2rem;
}

applet,
object,
iframe,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
ins,
kbd,
q,
s,
var,
fieldset,
form,
label,
legend,
table,
caption,
article,
canvas,
details,
embed,
figure,
figcaption,
hgroup,
output,
ruby,
summary,
time,
mark,
audio,
video {
  margin-bottom: 1.2rem;
  color: inherit;
}

.required {
  color: var(--color-red, #e81010);
}

b,
strong {
  font-weight: bold;
}

@media only screen and (max-width: 992px) {
  :root {
    --size-title: 25px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 575px) {
  :root {
    --size-title: 22px;
    font-size: 13px;
  }
  .hidden-sm {
    display: none;
  }
}

/*
* Import style for Shortcode
*/
.page-template-page-landing #header {
  display: none !important;
}

main {
  background-color: var(--bg-theme);
}

main:not(.page_full-width) {
  padding: 30px 0;
}

main.page_light {
  color: var(--text-basic, #666);
  background-color: white;
}

main > .container > :last-child {
  margin-bottom: 0px;
}

main.page_box,
main.page_bg {
  background-image: var(--bg-img-theme);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.article_thumbnail img {
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media only screen and (max-width: 991px) {
  .article_thumbnail img {
    height: 200px;
  }
}

@media only screen and (max-width: 575px) {
  .article_thumbnail img {
    height: 140px;
  }
}

body.archive > #main,
body.search > #main,
body.error404 > #main,
body.blog > #main {
  padding: 40px 0 80px;
}

body.error404 h1 {
  margin-bottom: 19px;
  border-bottom: 1px solid;
  padding-bottom: 16px;
}

body.error404 .col_text a {
  text-decoration: underline;
  color: var(--primary-color);
}

.page_paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0 0;
}

.page_paginate .page-numbers {
  margin: 0px 7px 14px;
  padding: 4px 18px;
  height: 36px;
  font-size: 0.9em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid;
  color: var(--text-basic);
}

.page_paginate .page-numbers.current,
.page_paginate .page-numbers:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

@media only screen and (max-width: 575px) {
  .page_paginate .page-numbers {
    margin: 0px 5px 12px;
    padding: 4px 12px;
    height: 30px;
  }
}

.article_header {
  background-color: var(--bg-gray);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.article_header h1 {
  margin-bottom: 12px;
  text-transform: capitalize;
  color: var(--text-title, #222);
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
  font-size: calc(var(--size-title, 30px) - 5px);
}

.article_header-img {
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.article_header-img::before {
  content: "";
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}

.article_header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.article_header-text {
  margin-left: 30px;
  display: block;
}

.article_header-cate {
  font-size: calc(1rem - 3px);
  opacity: 0.6;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  color: #111;
}

.article_header-cate a {
  font-weight: 500;
  font-size: calc(1rem - 3px);
}

.article_header-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.6;
  font-size: calc(1rem - 3px);
  text-transform: capitalize;
}

.article_header-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #111;
}

.article_header-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 10px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.article_header-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  color: #111;
}

.article_header-count i {
  color: inherit;
}

.article_header-count-view {
  margin-left: 5px;
}

.article_relate-title {
  font-size: 1.4em;
  font-weight: bold;
  border-bottom: 1px solid #ececec;
  padding-bottom: 16px;
  margin-bottom: 30px;
  margin-top: 60px;
}

@media only screen and (max-width: 991px) {
  .article_header h1 {
    padding-bottom: 7px;
  }
  .article_header {
    padding: 20px;
  }
  .article_header-img {
    min-width: 110px;
  }
  .article_header-text {
    margin-left: 20px;
  }
  .article_header-cate a {
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .article_header {
    padding: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .article_header-img {
    width: 100%;
    margin-bottom: 16px;
  }
  .article_header-text {
    margin-left: 0;
  }
  .article_relate .blog-post-list {
    margin: 0;
  }
}

.row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.row .col-inner {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.row > .col {
  padding-bottom: 24px;
}

.row.row-equal {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.row.row-equal > .col:not(.sidebar-scroll-fix) > .col-inner {
  height: 100%;
}

.row.row-vertical-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.row.row-horizontal-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row.row-small {
  margin: 0 -12px 0;
}

.row.row-small > .col {
  padding: 0 12px 12px;
}

.row.row-collapse > .col {
  padding-left: 0;
  padding-right: 0;
}

section .section-inner {
  z-index: 1;
  width: 100%;
}

.grid_box {
  margin: -24px 0 0;
}

.grid_box .grid {
  padding: 24px 0 0;
  height: 100%;
}

.grid_box .grid-sm-6 {
  height: 50%;
}

.gap {
  padding-top: var(--gap-lg);
}

@media only screen and (min-width: 575px) {
  .row.row-large {
    margin: 0 -24px 0;
  }
  .row.row-large > .col {
    padding: 0 24px 24px;
  }
  .row.row-collapse {
    margin: 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    max-width: var(--theme-width, 1200px);
  }
}

@media only screen and (max-width: 768px) {
  .gap {
    padding-top: var(--gap-md);
  }
}

@media only screen and (max-width: 575px) {
  .gap {
    padding-top: var(--gap-sm);
  }
}

#header ul,
#header ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

#header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#header .header_box {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .header_box.left {
  margin-right: 30px;
}

#header .header_box.left > * {
  margin-left: 0px;
}

#header .header_box.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 30px;
}

#header .header_box.right > * {
  margin-right: 0px;
}

#header .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--header-search-width);
  max-width: 100%;
  margin-bottom: 0;
  background-color: white;
}

#header .search-submit {
  height: 40px;
  background-color: transparent;
  border: 1px solid #cccc;
  padding: 5px 20px;
  cursor: pointer;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

#header .search-submit i {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

#header .search-submit:hover,
#header .search-submit:hover i {
  color: var(--primary-color, #83b735);
}

#header .search-field {
  height: 40px;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #ccc;
  border-right: 0px;
  border-radius: 0px;
}

#header .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#header .header_menu i {
  color: inherit;
}

#header .header_menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .menu-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
}

#header .menu-item.login {
  text-transform: capitalize;
}

#header .menu-item .toggle {
  display: inline-block;
  font-size: 16px;
  margin-right: 0;
  margin-left: auto;
  opacity: 0.5;
  cursor: pointer;
  color: inherit;
}

#header .menu-item .toggle i {
  font-size: inherit;
}

#header .menu-item.active > a .toggle {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#header .menu-item a {
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .menu-item .img {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
}

#header .menu-item img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

#header .menu-item svg {
  width: 100%;
  height: 100%;
}

#header .menu-item span {
  color: inherit;
}

#header .menu-item-has-children > a > span {
  margin-right: 5px;
}

#header .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

#header .sub-menu {
  position: absolute;
  z-index: 50;
  left: 0px;
  top: calc(100% + 2px);
  display: block;
  width: 220px;
  background-color: white;
  -webkit-box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.02),
    3px 3px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.02), 3px 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}

#header .sub-menu::before {
  content: "";
  position: absolute;
  display: block;
  background-color: white;
  height: 15px;
  width: 22px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0% 100%);
  clip-path: polygon(50% 0, 100% 100%, 0% 100%);
  top: -10px;
  left: 20px;
}

#header .sub-menu .toggle {
  display: none;
}

#header .sub-menu .menu-item {
  display: block;
  border-top: 1px dashed #ececec;
  margin: 0;
  padding: 0 12px;
}

#header .sub-menu .menu-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

#header .sub-menu .menu-item:first-child {
  border-top: none;
}

#header .sub-menu .sub-menu {
  left: 100%;
  top: -1px;
}

#header .sub-menu .sub-menu::before {
  display: none;
}

#header .socials_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
}

#header .socials_wrap li {
  margin: 0 var(--social-margin, 16px) 0 0;
}

#header .socials_wrap li i {
  color: inherit;
}

#header .header_btn-window {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

#header .header_btn-window i {
  font-size: 17px;
}

#header .window_wrap .search-form {
  margin-bottom: 20px;
  width: 100%;
}

#header .window_wrap .menu-item {
  display: block;
  width: 100%;
  margin-right: 0;
}

#header .window_wrap .menu-item a {
  padding-left: 0;
  padding-right: 0;
  min-height: 32px;
}

#header .window_wrap .menu-item .img {
  display: none;
}

#header .window_wrap .menu-item:not(:first-child):before {
  content: "";
  display: block;
  position: absolute;
  width: 300vw;
  border-top: 1px solid #ececec;
  top: 0;
  left: -100px;
}

#header .window_wrap .menu-item.active > a {
  font-weight: 700;
}

#header .window_wrap .menu-item.active > .sub-menu {
  display: block;
  padding-left: 14px;
  border-left: 1px solid #ececec;
  border-radius: 0;
  margin-bottom: 15px;
}

#header .window_wrap .menu-item.active > .sub-menu > .menu-item > a {
  font-weight: 600;
}

#header .window_wrap .sub-menu {
  width: 100%;
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  top: unset;
  left: unset;
  display: none;
}

#header .window_wrap .sub-menu::before {
  display: none;
}

#header .window_wrap .sub-menu .menu-item {
  border-top: 0;
}

#header .window_wrap .sub-menu .menu-item::before {
  display: none;
}

#header .window_wrap .sub-menu .menu-item:hover {
  background-color: unset;
}

#header .window_wrap .sub-menu .sub-menu {
  display: block;
}

#header .window_wrap .sub-menu .sub-menu a::before {
  content: "-";
  margin-right: 5px;
}

#header.sticky {
  position: fixed;
  z-index: 50;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
  -webkit-animation: sticky-up 500ms ease-in-out;
  animation: sticky-up 500ms ease-in-out;
}

#header.sticky .sticky-none {
  display: none;
}

#header.sticky #logo {
  width: calc(var(--header-logo-width) - 1.5rem);
}

.menu-anima-fade img {
  -webkit-animation: anima-fade 1000ms ease-in-out infinite;
  animation: anima-fade 1000ms ease-in-out infinite;
}

@-webkit-keyframes anima-fade {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes anima-fade {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@-webkit-keyframes sticky-up {
  0% {
    margin-top: -200px;
  }
  100% {
    margin-top: 0;
  }
}

@keyframes sticky-up {
  0% {
    margin-top: -200px;
  }
  100% {
    margin-top: 0;
  }
}

.window_wrap .window_content {
  margin: 0;
  visibility: hidden;
  position: fixed;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.window_wrap.active .window_content {
  visibility: visible;
}

.window_wrap.active .window_content-left .window_content-inner {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.window_wrap.active .window_content-center .window_content-inner {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.window_wrap.active .window_out {
  background: rgba(0, 0, 0, 0.7);
}

.window_wrap .window_content-inner {
  max-width: 80%;
  overflow-y: scroll;
  padding: 2.8rem 1.8rem;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  background: white;
}

.window_wrap .window_content-left .window_content-inner {
  display: block;
  width: 400px;
  height: 100vh;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.window_wrap .window_content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.window_wrap .window_content-center .window_content-inner {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.window_wrap .window_out {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

.window_wrap .window_btn-close {
  position: absolute;
  top: 30px;
  right: 50px;
}

.window_wrap .window_btn-close i {
  color: white;
  font-size: 1.5rem;
  opacity: 0.5;
}

#header-top,
#header-mobile-top {
  background-color: var(--header-top-bg, #83b735);
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header-top a,
#header-top p,
#header-top h1,
#header-top h2,
#header-top h3,
#header-top h4,
#header-top h5,
#header-top h6,
#header-top span,
#header-top svg,
#header-top i,
#header-mobile-top a,
#header-mobile-top p,
#header-mobile-top h1,
#header-mobile-top h2,
#header-mobile-top h3,
#header-mobile-top h4,
#header-mobile-top h5,
#header-mobile-top h6,
#header-mobile-top span,
#header-mobile-top svg,
#header-mobile-top i {
  font-size: calc(1rem * var(--header-top-font-size));
  color: var(--header-top-text-color, #fff);
}

#header-top a:hover,
#header-top a:hover svg,
#header-top a:hover path,
#header-mobile-top a:hover,
#header-mobile-top a:hover svg,
#header-mobile-top a:hover path {
  color: var(--header-top-text-hover, #fff);
  fill: var(--header-top-text-hover, #fff);
}

#header-top .menu-item,
#header-mobile-top .menu-item {
  margin-right: var(--menu-top-margin, 35px);
}

#header-top .menu-item a,
#header-mobile-top .menu-item a {
  min-height: var(--menu-top-height, 40px);
}

#header-middle,
#header-mobile-middle {
  padding: 25px 0;
  background-color: var(--header-middle-bg, #fff);
}

#header-middle a,
#header-middle p,
#header-middle h1,
#header-middle h2,
#header-middle h3,
#header-middle h4,
#header-middle h5,
#header-middle h6,
#header-middle span,
#header-middle svg,
#header-middle i,
#header-mobile-middle a,
#header-mobile-middle p,
#header-mobile-middle h1,
#header-mobile-middle h2,
#header-mobile-middle h3,
#header-mobile-middle h4,
#header-mobile-middle h5,
#header-mobile-middle h6,
#header-mobile-middle span,
#header-mobile-middle svg,
#header-mobile-middle i {
  font-size: calc(1rem * var(--header-middle-font-size));
  color: var(--header-middle-text-color, #2d2a2a);
}

#header-middle a:hover,
#header-middle a:hover svg,
#header-middle a:hover path,
#header-mobile-middle a:hover,
#header-mobile-middle a:hover svg,
#header-mobile-middle a:hover path {
  color: var(--header-middle-text-hover, #83b735);
  fill: var(--header-middle-text-hover, #83b735);
}

#header-middle .menu-item,
#header-mobile-middle .menu-item {
  margin-right: var(--menu-middle-margin, 35px);
}

#header-middle .menu-item a,
#header-mobile-middle .menu-item a {
  min-height: var(--menu-middle-height, 40px);
}

#header-bottom,
#header-mobile-bottom {
  background-color: var(--header-bottom-bg, #fff);
}

#header-bottom a,
#header-bottom p,
#header-bottom h1,
#header-bottom h2,
#header-bottom h3,
#header-bottom h4,
#header-bottom h5,
#header-bottom h6,
#header-bottom span,
#header-bottom svg,
#header-bottom i,
#header-mobile-bottom a,
#header-mobile-bottom p,
#header-mobile-bottom h1,
#header-mobile-bottom h2,
#header-mobile-bottom h3,
#header-mobile-bottom h4,
#header-mobile-bottom h5,
#header-mobile-bottom h6,
#header-mobile-bottom span,
#header-mobile-bottom svg,
#header-mobile-bottom i {
  font-size: calc(1rem * var(--header-bottom-font-size));
  color: var(--header-bottom-text-color, #2d2a2a);
}

#header-bottom a:hover,
#header-bottom a:hover svg,
#header-bottom a:hover path,
#header-mobile-bottom a:hover,
#header-mobile-bottom a:hover svg,
#header-mobile-bottom a:hover path {
  color: var(--header-bottom-text-hover, #83b735);
  fill: var(--header-bottom-text-hover, #83b735);
}

#header-bottom .menu-item,
#header-mobile-bottom .menu-item {
  margin-right: var(--menu-bottom-margin, 35px);
}

#header-bottom .menu-item a,
#header-mobile-bottom .menu-item a {
  min-height: var(--menu-bottom-height, 40px);
}

#header-menu-feature > .menu-item > a {
  width: 240px;
  background-color: var(--header-top-bg, #83b735);
  color: var(--header-top-text-color, white);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#header-menu-feature > .menu-item > .sub-menu {
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 100%;
  left: 0px;
  width: 100%;
}

#header-menu-feature > .menu-item > .sub-menu::before {
  display: none;
}

#header-menu-feature .sub-menu {
  border: 1px solid #ececec;
}

#header-menu-feature .sub-menu .menu-item {
  border-top-style: solid;
}

body.home #header:not(.sticky) #header-menu-feature > .menu-item > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px);
  transform: translate(0px);
}

#logo {
  width: var(--header-logo-width);
  max-height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

@media only screen and (min-width: 768px) {
  body.admin-bar #header.sticky,
  body.admin-bar .window_content {
    top: 32px;
  }
}

@media only screen and (max-width: 992px) {
  #cart-icon .cart_price {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #header .header_box.right {
    margin-left: 20px;
    width: 25%;
  }
  #header .header_box.left {
    margin-right: 20px;
    width: 25%;
  }
  body.admin-bar #header.sticky,
  body.admin-bar .window_content {
    top: 46px;
  }
}

@media only screen and (max-width: 575px) {
  #header #logo {
    max-width: 140px;
  }
  body.admin-bar #header.sticky,
  body.admin-bar #header.sticky .window_content {
    top: 0px;
  }
}

#footer {
  background-color: var(--footer-bg, #fff);
  padding: 2rem 0 1rem;
}

#footer * {
  font-size: calc(1rem * var(--footer-font-size));
  color: var(--footer-text-color, #2d2a2a);
}

#footer a:hover,
#footer a:hover svg,
#footer a:hover path {
  color: var(--footer-text-hover, #83b735);
  fill: var(--footer-text-hover, #83b735);
}

#footer .widget-title {
  font-size: 1.2em;
  line-height: 1.4;
}

#coppyright {
  background-color: var(--coppyright-bg, #f3f3f3);
  font-size: calc(1rem - 3px);
  padding: 14px;
  color: var(--coppyright-color, #2a2a2a);
}

/*
* Reusable 
*/
.star-rating,
.comment-form-rating .stars a {
  float: unset;
  color: var(--color-yellow, #eabe12);
}

/*
* Categories Content Box
*/
.cate_box {
  position: relative;
}

.cate_box.overlay {
  -webkit-box-shadow: var(--box-shadown);
  box-shadow: var(--box-shadown);
  height: 150px;
}

.cate_box.overlay .cate_box-img {
  height: 100%;
}

.cate_box.overlay .cate_box-img .img {
  height: 100%;
}

.cate_box.overlay .cate_box-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.cate_box.overlay .cate_box-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 20px;
}

.cate_box.overlay .cate_title {
  color: var(--text-title);
  font-size: calc(1rem + 2px);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}

.cate_box.overlay .cate_count {
  -webkit-transition: 400ms all ease;
  transition: 400ms all ease;
  font-size: calc(1rem - 2px);
  opacity: 0;
  margin-bottom: -20px;
  visibility: hidden;
}

.cate_box.overlay:hover .cate_count {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0px;
}

/*
* Product Loop Content Box
*/
.woocommerce ul.products .product-box .product-box_img .onsale {
  margin: 10px;
}

.woocommerce ul.products li.product a img {
  margin-bottom: 0;
}

li.product {
  list-style: none;
  margin: 0;
}

.product .onsale.label {
  padding: 0px;
  margin: 10px;
  background-color: var(--bg-sale, #83b735);
  font-weight: 400;
  font-size: calc(1rem - 4px);
  letter-spacing: 0.5px;
  top: 0;
  right: 0;
  left: unset;
}

.product-box {
  position: relative;
}

.product-box .product-box_img {
  background-color: var(--bg-product);
}

.product-box .product-box_img img {
  width: 100%;
  height: 280px;
  max-height: 280px;
  min-height: 280px;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0ms all ease;
  transition: 0ms all ease;
  -webkit-transition: 600ms opacity ease;
  transition: 600ms opacity ease;
}

.product-box .product-box_text {
  padding-top: 1.2rem;
}

.product-box .product-box-gallery img:last-child {
  opacity: 0;
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 0;
}

.product-box .product-box-gallery:hover img:first-child {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.product-box .product-box-gallery:hover img:last-child {
  opacity: 1;
  position: relative;
  visibility: visible;
}

.product-box.text-align_center .product-box_text {
  text-align: center;
}

.product-box.text-align_center .star-rating {
  margin-left: auto;
  margin-right: auto;
}

.product-box.text-align_right .product-box_text {
  text-align: right;
}

.product-box.text-align_right .star-rating {
  margin-left: auto;
  margin-right: 0;
}

.product-box .product-box_title {
  font-weight: 500;
  color: var(--text-title);
  font-size: calc(1rem - 1px);
  margin-bottom: 7px;
  text-transform: capitalize;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-box .product-box_cate {
  margin-bottom: 5px;
  font-size: calc(1rem - 3px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.product-box .star-rating {
  float: unset;
  font-size: 10px;
  letter-spacing: 3px;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  width: 66px;
}

.product-box .product-box_price {
  line-height: 1.2;
}

.product-box .product-box_price .amount {
  font-size: calc(1rem - 1px);
  opacity: 1;
  font-weight: 500;
}

.product-box .product-box_price .amount,
.product-box .product-box_price .amount .woocommerce-Price-currencySymbol {
  color: var(--price-sale, #83b735);
}

.product-box .product-box_price del {
  opacity: 0.5;
}

.product-box .product-box_price del .amount {
  font-size: calc(1rem - 3px);
  font-weight: 400;
}

.product-box .product-box_price del,
.product-box .product-box_price del .amount,
.product-box .product-box_price del .amount .woocommerce-Price-currencySymbol {
  color: var(--price-regular, #666);
}

.product-box.vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-box.vertical .product-box_img {
  margin: 0 1rem 0 0;
  background-color: unset;
}

.product-box.vertical .product-box_img img {
  float: unset;
  width: 70px;
  height: 76px;
  border-radius: 3px;
  min-width: 70px;
  min-height: unset;
  margin: 0;
}

.product-box.vertical .product-box_text {
  text-align: left;
  width: 100%;
  padding-top: 0;
}

.product-box.vertical .product-box_title {
  -webkit-line-clamp: 3;
  font-size: calc(1rem - 2px);
}

.woocommerce .woocommerce-result-count {
  display: none;
}

.woocommerce .woocommerce-ordering {
  font-size: calc(1rem - 2px);
  margin-bottom: 30px;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
}

.woocommerce .woocommerce-ordering select {
  background-color: transparent;
  border: 0px;
  color: var(--text-basic);
}

.woocommerce .page-numbers li {
  border-width: 0px;
}

.woocommerce .page-numbers li span,
.woocommerce .page-numbers li .page-numbers {
  padding: 8px 13px;
}

.woocommerce .page-numbers li span.current,
.woocommerce .page-numbers li .page-numbers.current {
  background-color: var(--primary-color);
  color: white;
}

.woocommerce .product-ads {
  height: 100%;
  min-height: 200px;
}

.woocommerce .product-ads .img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.woocommerce .product-ads img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider {
  border-radius: 0;
  height: 3px;
  margin: 0 0 0.9rem;
  background-color: #e8e8e8;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-range {
  border-radius: 0;
  background-color: var(--primary-color, #83b735);
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-handle {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color, #83b735);
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.woocommerce
  .widget_price_filter
  .price_slider_wrapper
  .ui-slider-handle
  ~ .ui-slider-handle {
  margin-left: -11px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .price_label {
  font-size: calc(1rem - 2px);
  line-height: 1.6;
  color: var(--text-basic, #777);
}

.woocommerce .widget_price_filter .price_slider_wrapper .button {
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  background-color: #f5f5f5;
  border-radius: 0;
  margin-right: 5px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce .widget_price_filter .price_slider_wrapper .clear {
  display: none;
}

.woocommerce .woocommerce.widget .product_list_widget li {
  padding: 0;
  margin-bottom: 1.3rem;
}

/*
* Product Single
*/
body.single-product .row .col_breadcrumb {
  padding-bottom: 0;
}

body.single-product .product-section {
  margin-bottom: 2rem;
}

body.single-product .product-section_title,
body.single-product .woocommerce-Reviews-title {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1.3rem;
}

body.single-product .product-single_info .entry-summary.summary {
  float: unset;
  width: 100%;
  margin-bottom: 0;
}

body.single-product .entry-summary .product_title {
  font-weight: 500;
  font-size: 1.6rem;
  text-transform: capitalize;
  margin-bottom: 5px;
}

body.single-product .entry-summary .woocommerce-product-rating {
  font-size: calc(1rem - 3px);
  margin-bottom: 0.5rem;
}

body.single-product .entry-summary .amount {
  color: var(--price-sale, #83b735);
  font-size: 1.5rem;
  font-weight: 600;
}

body.single-product .entry-summary del {
  color: var(--price-regular, #666);
}

body.single-product .entry-summary del .amount {
  color: var(--price-regular, #666);
  font-size: 1rem;
  margin-right: 5px;
  font-weight: 400;
}

body.single-product .entry-summary .price ins {
  margin-bottom: 0;
}

body.single-product .entry-summary .woocommerce-variation-price {
  margin-bottom: 1rem;
}

body.single-product .woocommerce-product-details__short-description {
  border-top: 1px dashed var(--border-basic, #ececec);
  padding-top: 1rem;
  font-size: calc(1rem - 2px);
}

body.single-product .product_meta {
  font-weight: bold;
  font-size: calc(1rem - 2px);
}

body.single-product .product_meta a {
  font-weight: 400;
}

body.single-product .product_meta > * {
  display: block;
  margin-bottom: 5px;
}

body.single-product .col_images > .col-inner {
  position: relative;
}

body.single-product .label.onsale {
  left: 0;
  right: unset;
}

body.single-product.woocommerce div.product .woocommerce-tabs {
  margin-bottom: 2.5rem;
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 0;
  padding-left: 5px;
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: 1px solid var(--border-basic, #ececec);
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: #f7f7f7;
  border-color: var(--border-basic, #ececec);
}

body.single-product.woocommerce
  div.product
  .woocommerce-tabs
  ul.tabs
  li.active {
  border-bottom-color: white;
  background-color: white;
}

body.single-product.woocommerce
  div.product
  .woocommerce-tabs
  ul.tabs
  li::before,
body.single-product.woocommerce
  div.product
  .woocommerce-tabs
  ul.tabs
  li::after {
  display: none;
}

body.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--text-title, #222);
}

body.single-product.woocommerce
  div.product
  .woocommerce-tabs
  .woocommerce-Tabs-panel {
  font-size: calc(1rem - 1px);
  padding: 2rem;
  border: 1px solid var(--border-basic, #ececec);
  border-top: 0px;
  border-radius: 0 0px 5px 5px;
}

.product-single_reviews {
  font-size: calc(1rem - 2px);
}

.product-single_reviews .woocommerce-Reviews {
  border: 1px solid var(--border-basic, #ececec);
  padding: 2rem;
  border-radius: 5px;
}

.product-single_reviews label {
  margin: 0 15px 10px 0;
  min-width: 3rem;
}

.product-single_reviews .comment-form-author,
.product-single_reviews .comment-form-email {
  width: calc(50% - 10px);
  display: inline-block;
}

.product-single_reviews .comment-form-author label,
.product-single_reviews .comment-form-email label {
  margin: 0 0px 10px;
  min-width: 3rem;
  display: block;
}

.product-single_reviews .comment-form-author input,
.product-single_reviews .comment-form-email input {
  width: 100%;
  height: 35px;
  padding: 0px 10px;
}

.product-single_reviews #review_form #respond .comment-form-author {
  margin-right: 15px;
}

.product-single_reviews #review_form #respond .comment-form-cookies-consent {
  margin-top: 1rem;
}

.woocommerce-notices-wrapper > * {
  border: 0px;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  font-size: calc(1rem - 2px);
  color: var(--text-title, #222);
  background: #f8f8f8;
  border-radius: 5px;
  overflow: hidden;
}

.woocommerce-notices-wrapper > *::before {
  top: 0.7rem;
  left: 1rem;
}

.woocommerce-notices-wrapper .button.wc-forward {
  height: 100%;
  text-align: center;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  text-transform: capitalize;
  background: unset;
  text-decoration: underline;
  color: var(--text-title, #2222);
  padding: 0;
}

.woocommerce-notices-wrapper .button.wc-forward:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  background: unset;
}

.woocommerce-notices-wrapper li {
  margin: 0;
}

/*
* Style: Cart, single_add_to_cart_button
*/
.woocommerce div.product form.cart .button {
  float: none;
  vertical-align: unset;
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0 1rem 1rem 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.woocommerce .button.single_add_to_cart_button.alt {
  background-color: var(--bg-add-cart, #83b735);
}

.woocommerce form.woocommerce-cart-form,
.woocommerce form.cart {
  float: none;
}

.woocommerce form.woocommerce-cart-form .button.change-cart,
.woocommerce form.cart .button.change-cart {
  float: none;
  height: 36px;
  width: 32px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--text-title, #222);
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 5px 0 0 5px;
}

.woocommerce form.woocommerce-cart-form .button.change-cart:hover,
.woocommerce form.cart .button.change-cart:hover {
  -webkit-transform: none;
  transform: none;
  border-color: #222;
}

.woocommerce form.woocommerce-cart-form .button.plus,
.woocommerce form.cart .button.plus {
  border-radius: 0 5px 5px 0;
}

.woocommerce form.woocommerce-cart-form .single_add_to_cart_button,
.woocommerce form.cart .single_add_to_cart_button {
  font-weight: 500;
  text-transform: capitalize;
}

.woocommerce form.woocommerce-cart-form .quantity,
.woocommerce form.cart .quantity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 1rem 0rem 0;
  font-size: calc(1rem - 1px);
}

.woocommerce form.woocommerce-cart-form .qty.text,
.woocommerce form.cart .qty.text {
  background-color: white;
  color: var(--text-title, #222);
  border-radius: 0;
  border: 1px solid #e0e0e0;
  border-left: 0;
  border-right: 0;
  width: 70px;
  height: 36px;
}

.woocommerce form.woocommerce-cart-form .qty.text::-webkit-outer-spin-button,
.woocommerce form.woocommerce-cart-form .qty.text::-webkit-inner-spin-button,
.woocommerce form.cart .qty.text::-webkit-outer-spin-button,
.woocommerce form.cart .qty.text::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/*
* Woocommerce Cart Page
*/
.woocommerce button.button {
  font-weight: 500;
  font-size: calc(1rem - 2px);
  min-height: 35px;
}

.woocommerce table.shop_table {
  font-size: calc(1rem - 1px);
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table thead th {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-title, #222);
}

.woocommerce .order-total .amount {
  color: var(--text-title, #222);
}

body.woocommerce-cart .button[name="update_cart"],
body.woocommerce-cart .button[name="update_cart"]:hover {
  background-color: #222;
  color: white;
}

body.woocommerce-cart #coupon_code {
  width: 200px;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  background-color: var(--bg-add-cart, #83b735);
  font-weight: 600;
  padding: 1rem;
  font-size: 1rem;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background-color: var(--bg-add-cart, #83b735);
}

table.shop_table form input:not([type="checkbox"]):not([type="radio"]),
table.shop_table form textarea,
form.woocommerce-checkout input:not([type="checkbox"]):not([type="radio"]),
form.woocommerce-checkout textarea {
  height: 38px;
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
}

table.shop_table form label,
form.woocommerce-checkout label {
  margin-bottom: 5px;
}

.select2-container--open .select2-dropdown {
  border: 1px solid #aaa;
}

.select2-container .select2-selection--single {
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*
* Cart icon wrap
*/
#cart-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: relative;
}

#cart-icon .cart-icon_img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cart-icon img {
  height: 18px;
  width: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

#cart-icon .cart-icon_count {
  background-color: var(--primary-color);
  color: white;
  padding: 0px 6px;
  line-height: 1;
  border-radius: 2px;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
  height: 14px;
  margin-left: -3px;
}

#cart-icon .cart_price {
  margin-left: 12px;
  font-size: calc(1rem - 2px);
}

/*
* Checkout Woocommerce
*/
.woo-checkout_row .col2-set .col-1,
.woo-checkout_row .col2-set .col-2 {
  width: 100%;
  float: none;
}

.woo-checkout_row .woocommerce-billing-fields {
  margin-bottom: 1rem;
}

.woo-checkout_row .woocommerce-additional-fields h3,
.woo-checkout_row .woocommerce-shipping-fields h3,
.woo-checkout_row .woocommerce-billing-fields h3 {
  margin-bottom: 5px;
}

.woo-checkout_row #payment .button {
  background-color: var(--bg-add-cart, #83b735);
}

/*
* Thanks Woocommerce
*/
.woocommerce .woocommerce-customer-details address {
  padding: 1rem;
  line-height: 1.8;
}

.woocommerce .woocommerce-customer-details address,
.woocommerce .woocommerce-customer-details address p {
  color: var(--text-title, #222);
}

.woocommerce ul.wc-bacs-bank-details,
.woocommerce ul.woocommerce-order-overview {
  background-color: #f7f7f7;
  padding: 1rem 1rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.woocommerce ul.wc-bacs-bank-details strong,
.woocommerce ul.woocommerce-order-overview strong {
  line-height: 1.8;
  color: var(--text-title, #222);
}

/*
* Shop Woocommerce
*/
body.woocommerce .woo-shop_title {
  margin: -30px 0 30px;
  min-height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.woocommerce .woo-shop_title h1 {
  color: white;
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding: 0 1rem;
}

body.woocommerce .woo-shop_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: calc(1rem - 2px);
}

body.woocommerce .woo-shop_meta .woocommerce-breadcrumb {
  font-size: 1em;
  margin: 0;
}

body.woocommerce .woo-shop_meta .woocommerce-breadcrumb a {
  color: var(--text-title, #333);
}

body.woocommerce .woo-shop_meta .woocommerce-breadcrumb a:hover {
  color: var(--primary-color, #83b735);
}

body.woocommerce .woo-shop_meta .woocommerce-ordering {
  float: none;
  margin: 0;
}

body.woocommerce .woo-shop_loop > .col {
  padding-bottom: 2.5rem;
}

/*
* Responsive
*/
@media only screen and (min-width: 575px) {
  .cate_box.overlay {
    height: 100%;
  }
  .cate_box .cate_title {
    font-size: calc(1rem + 6px);
  }
  .woocommerce table.cart thead {
    display: table-header-group;
  }
  .woocommerce table.cart tr {
    display: table-row;
  }
  .woocommerce table.cart tr td {
    display: table-cell;
    float: none;
    text-align: left !important;
  }
  .woocommerce table.cart tr td::before {
    display: none;
  }
  .woocommerce table.cart tr td.actions .coupon {
    display: inline-block;
  }
  .woocommerce table.cart tr td.actions .coupon .button[name="apply_coupon"] {
    float: none;
    width: unset;
  }
  .woocommerce table.cart tr td.actions .button {
    display: inline-block;
    width: unset;
    float: right;
  }
  .woocommerce table.cart tr td.actions .button::before {
    content: "";
    clear: both;
  }
  .woocommerce table.cart .product-thumbnail {
    display: table-cell;
  }
  .woocommerce table.cart tbody tr:first-child td:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (max-width: 768px) {
  .woocommerce form.woocommerce-cart-form .qty.text,
  .woocommerce form.cart .qty.text {
    width: 50px;
    height: 32px;
  }
  .woocommerce form.woocommerce-cart-form .button.change-cart,
  .woocommerce form.cart .button.change-cart {
    height: 32px;
    width: 32px;
  }
  .cate_box.overlay .cate_title {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 575px) {
  .product-box .product-box_img img {
    height: 150px;
    min-height: 120px;
  }
  .cate_box.overlay .cate_title {
    margin-bottom: 0px;
  }
  .cate_box.overlay .cate_box.overlay .cate_box-text {
    padding: 0 20px 10px;
  }
  .woocommerce ul.wc-bacs-bank-details li,
  .woocommerce ul.woocommerce-order-overview li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px dashed #dadada;
    margin-bottom: 1rem;
    padding-bottom: 5px;
  }
  .woocommerce button.button {
    min-height: 30px;
  }
  .woocommerce table.cart tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .woocommerce table.cart tr td {
    text-align: left !important;
    border-top: 0px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  }
  .woocommerce table.cart tr td.actions {
    border-bottom: 0;
    width: 100%;
    padding: 1rem 1rem 1.2rem;
  }
  .woocommerce table.cart tr td.actions .coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 6px;
  }
  .woocommerce table.cart tr td.actions .coupon .button[name="apply_coupon"] {
    float: none;
    min-width: 30%;
  }
  .woocommerce table.cart tr.cart_item td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .woocommerce table.cart tr.cart_item .product-subtotal {
    display: none;
  }
  .woocommerce table.cart tr .product-remove {
    width: 15%;
  }
  .woocommerce table.cart tr .product-thumbnail {
    width: 25%;
    display: table-cell;
  }
  .woocommerce table.cart tr .product-thumbnail::before {
    display: none;
  }
  .woocommerce table.cart tr .product-name {
    width: 60%;
    font-weight: 500;
    color: var(--text-title, #222);
  }
  .woocommerce table.cart tr .product-name::before {
    display: none;
  }
  .woocommerce table.cart tr .product-price {
    width: 40%;
  }
  .woocommerce table.cart tr .product-price::before {
    float: unset;
  }
  .woocommerce table.cart tr .product-quantity {
    width: 60%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .woocommerce table.cart tr .product-quantity::before {
    display: none;
  }
  .woocommerce table.cart tr .quantity {
    margin: 0;
  }
  .woocommerce table.cart td {
    padding: 8px 10px;
  }
  .woocommerce .woocommerce-ordering {
    padding: 8px 10px;
    border-radius: 3px;
  }
  .woocommerce #reviews .comment-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .woocommerce #reviews .comment-text .star-rating {
    float: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .woocommerce #reviews .comment-text .meta {
    width: 100%;
    float: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 5px;
  }
  .woocommerce #reviews .comment-text .description {
    width: 100%;
    margin-top: 10px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  #cart-icon .cart-icon_count {
    padding: 0px 4px;
    font-size: 8px;
  }
  body.woocommerce .woo-shop_title {
    min-height: 140px;
  }
  body.woocommerce .woo-shop_title h1 {
    font-size: 2rem;
  }
  body.woocommerce .woo-shop_meta {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  body.woocommerce .woo-shop_meta .woocommerce-breadcrumb {
    margin: 0 0 10px;
    width: 100%;
    text-align: center;
  }
  body.woocommerce .woo-shop_meta .woocommerce-ordering {
    margin: 0 0 16px;
  }
}

.section-title_wrap .sup {
  font-size: calc(1rem - 2px);
  color: #989898;
  margin-bottom: 5px;
}

.section-title_wrap h2 {
  font-size: calc(var(--size-title, 30px) - 4px);
  margin-bottom: 18px;
}

.section-title_wrap .sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}

@media only screen and (max-width: 575px) {
  .section-title_wrap h2 {
    margin-bottom: 5px;
  }
}

.tab {
  position: relative;
}

.tab.tab_box-center .tab_title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.tab .tab_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.tab .tab_title-box {
  color: var(--text-title);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  opacity: 0.7;
  cursor: pointer;
}

.tab .tab_title-box::after {
  content: "";
  display: block;
  background-color: var(--primary-color);
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.tab .tab_title-item {
  margin: 0px 12px 20px;
}

.tab .tab_title-item:first-child {
  margin-left: 0;
}

.tab .tab_title-item:last-child {
  margin-right: 0;
}

.tab .tab_title-item.active .tab_title-box,
.tab .tab_title-item:hover .tab_title-box {
  opacity: 1;
}

.tab .tab_title-item.active .tab_title-box::after,
.tab .tab_title-item:hover .tab_title-box::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.tab .tab_body {
  position: relative;
  margin-top: 15px;
  list-style: none;
}

.tab .tab_body-item {
  -webkit-transform: translateY(100%) scale(0);
  transform: translateY(100%) scale(0);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  -webkit-transform-origin: top;
  transform-origin: top;
  margin: 0px;
}

.tab .tab_body-item.active {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  visibility: visible;
  position: relative;
}

.button {
  padding: 10px 30px;
  margin-right: 1rem;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 300;
  color: white;
  background-color: var(--primary-color);
  font-size: 1rem;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  cursor: pointer;
}

.button:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  color: white;
}

.button:active {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.button.primary {
  background: var(--primary-color);
  color: white;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 4px;
}

.button.outline {
  border: 1px solid;
  color: #111;
  background-color: transparent;
}

.button.outline:hover {
  background-color: #111;
  color: white;
  border-color: #111;
}

.button.outline.white:hover {
  background-color: white;
  color: var(--text-title);
  border-color: white;
}

.button.white {
  color: white;
}

.button.text {
  background-color: transparent;
  color: #111;
  font-weight: 600;
  padding: 0;
  letter-spacing: 0px;
  margin: 0;
}

.button.text:hover {
  color: var(--primary-color);
  -webkit-transform: unset;
  transform: unset;
}

.btn_loop_load_more {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .button {
    padding: 5px 20px;
  }
}

form.wpcf7-form {
  margin-bottom: 1rem;
}

form.wpcf7-form .wpcf7-form-control {
  height: 40px;
  padding: 0px 12px;
  margin: 0 0 1rem;
  border: 1px solid var(--border-basic, #777);
}

form.wpcf7-form .wpcf7-submit {
  padding: 0 28px;
  border: 0px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 1rem 10px;
  cursor: pointer;
}

form.wpcf7-form .ajax-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

form.wpcf7-form.submitting {
  opacity: 0.4;
}

form.wpcf7-form .wpcf7-not-valid-tip {
  text-decoration: underline;
  font-size: calc(1rem - 2px);
}

form.wpcf7-form .wpcf7-response-output {
  padding: 8px 10px;
  color: #111;
  margin: 18px 0 0;
  font-size: calc(1rem - 2px);
}

.search-icon {
  margin: 0;
}

.search-icon .search-icon-btn {
  cursor: pointer;
}

.search-icon .search-icon-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 50%;
}

.blog-loop_slider .slider-item_wrap {
  padding: 5px 10px;
}

.widget_blog_post_slider_widget .slider-item_wrap {
  padding: 0;
}

.blog-post-box {
  -webkit-box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.03),
    2px 3px 5px rgba(0, 0, 0, 0.05);
  box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.03), 2px 3px 5px rgba(0, 0, 0, 0.05);
}

.blog-post-box .box_img-inner {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}

.blog-post-box .box_img-inner img {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.blog-post-box:hover .box_img img {
  -webkit-transform: scale(1.1) rotate(5deg);
  transform: scale(1.1) rotate(5deg);
}

.blog-post-box .blog_date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: white;
  padding: 6px 10px;
  font-size: calc(1rem - 2px);
  text-align: center;
  z-index: 10;
}

.blog-post-box .blog_date-day {
  font-size: calc(1rem + 8px);
  color: var(--text-title);
  margin-bottom: 2px;
  font-weight: 400;
  line-height: 1;
}

.blog-post-box .blog_date-month {
  color: var(--text-title);
  letter-spacing: 1px;
  font-size: calc(1rem - 3px);
  font-weight: 500;
}

.blog-post-box .blog_load {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

.blog-post-box .blog_load span {
  display: inline-block;
  background-color: white;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 3px;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}

.blog-post-box .blog_load span.two {
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
}

.blog-post-box .blog_load span.three {
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

.blog-post-box:hover .blog_load {
  opacity: 1;
}

.blog-post-box:hover .blog_load span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.blog-post-box .box_text {
  position: relative;
  background-color: white;
  padding: 30px 24px 20px;
}

.blog-post-box .box-text_center {
  text-align: center;
}

.blog-post-box .box-text_center .blog_info {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog-post-box .box-text_center .blog_cate {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-post-box .box-text_left {
  text-align: left;
}

.blog-post-box .box-text_left .blog_info {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog-post-box .box-text_left .blog_cate {
  left: 0%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.blog-post-box .box-text_right {
  text-align: right;
}

.blog-post-box .box-text_right .blog_info {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-post-box .box-text_right .blog_cate {
  right: 0%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.blog-post-box .blog_cate {
  background-color: var(--primary-color);
  max-width: 60%;
  font-size: calc(1rem - 3px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 18px;
  line-height: 26px;
  position: absolute;
  top: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: white;
}

.blog-post-box .blog_cate a {
  color: white;
}

.blog-post-box .blog_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: calc(1rem - 3px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 7px 0 10px;
}

.blog-post-box .blog_time {
  margin-right: 10px;
}

.blog-post-box .blog_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.blog-post-box .blog_author img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
  margin-left: 5px;
}

.blog-post-box .blog_author-name {
  margin-left: 5px;
  text-transform: capitalize;
}

.blog-post-box .blog_count-view {
  display: inline-block;
  text-transform: capitalize;
}

.blog-post-box .blog_title {
  font-size: calc(1rem + 4px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  height: 2.6em;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-post-box .blog_title,
.blog-post-box .blog_title a {
  color: var(--text-title);
}

.blog-post-box .blog_title:hover,
.blog-post-box .blog_title a:hover {
  color: var(--primary-color);
}

.blog-post-box .blog_except {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.6;
  font-size: calc(1rem - 2px);
}

.blog-post-box .blog_detail {
  color: var(--primary-color);
  margin: 12px 0;
  display: block;
}

.blog-post-box .blog_detail span {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

.blog-post-box .blog_detail:hover {
  letter-spacing: 1px;
}

.blog-post-box .blog_detail:active {
  letter-spacing: 0px;
}

.blog-post-box.blog-post_overlay {
  position: relative;
  height: 100%;
}

.blog-post-box.blog-post_overlay .box_img {
  height: 100%;
}

.blog-post-box.blog-post_overlay .box_img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.blog-post-box.blog-post_overlay .box_text {
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0.904))
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.904) 100%
  );
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  color: white;
  padding: 20px 24px 16px;
}

.blog-post-box.blog-post_overlay .box-text_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog-post-box.blog-post_overlay .box-text_left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog-post-box.blog-post_overlay .box-text_right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-post-box.blog-post_overlay .blog_title,
.blog-post-box.blog-post_overlay .blog_title a {
  width: 100%;
  color: white;
  -webkit-line-clamp: 3;
  height: unset;
  line-height: 1.5;
}

.blog-post-box.blog-post_overlay .blog_title:hover,
.blog-post-box.blog-post_overlay .blog_title a:hover {
  color: var(--primary-color);
}

.blog-post-box.blog-post_overlay .blog_cate {
  font-size: calc(1rem - 4px);
  color: white;
  position: relative;
  top: unset;
  left: unset;
  -webkit-transform: unset;
  transform: unset;
  border-radius: 3px;
  line-height: 1.8;
  margin-bottom: calc(1rem - 3px);
  text-transform: uppercase;
}

.blog-post-box.blog-post_vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog-post-box.blog-post_vertical .box_img {
  min-width: 80px;
}

.blog-post-box.blog-post_vertical .box_text {
  padding: 0 0 0 10px;
}

.blog-post-box.blog-post_vertical .blog_title {
  font-size: calc(1rem - 1.5px);
  height: unset;
  -webkit-line-clamp: 2;
  margin-bottom: 5px;
}

.blog-post-box.blog-post_vertical .blog_info {
  font-size: calc(1rem - 3.5px);
  margin: 5px 0 0;
}

.blog-post-box.blog-post_vertical .blog_time i {
  color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
  .blog-post-box.blog-post_vertical .blog_title {
    -webkit-line-clamp: 3;
  }
}

@media only screen and (max-width: 575px) {
  .blog-post-box.blog-post_overlay .box_text {
    padding: 15px 16px 10px;
  }
  .blog-post-box.blog-post_overlay .blog_cate {
    padding: 2px 10px;
    max-width: 80%;
  }
  .blog-post-box .blog_count-view span {
    display: none;
  }
}

/* Block Slide - Slide One item */
.slider {
  position: relative;
  width: 100%;
}

.slider .slider_content {
  overflow: hidden;
  position: relative;
}

.slider .slider_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.slider .slider-item_wrap {
  position: relative;
  cursor: -webkit-grab;
  cursor: grab;
}

.slider .slider_button {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 15px;
  font-size: calc(1rem + 4px);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 30;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.slider .slider_button i {
  font-size: calc(1rem - 2px);
}

.slider .slider_button.left {
  left: 20px;
}

.slider .slider_button.right {
  right: 20px;
}

.slider .slider_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: absolute;
  z-index: 10;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider .slider_dot {
  display: inline-block;
  background: white;
  height: 4px;
  width: 30px;
  margin: 0 5px;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.07);
}

.slider .slider_dot:hover,
.slider .slider_dot.active {
  background-color: var(--primary-color);
}

.slider.slider-images .img {
  height: 100%;
}

.slider.slider-images img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.slider .slider_thumbnail {
  overflow-x: scroll;
  margin-top: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider .slider_thumbnail-item {
  width: 70px;
  min-width: 70px;
  height: 70px;
  margin-right: 7px;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

.slider .slider_thumbnail-item.active,
.slider .slider_thumbnail-item:hover {
  opacity: 1;
}

.slider .slider_thumbnail-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Slider Thrumnail Vertical ====== */
.slider.slider-thrum-vertical .slider_box {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.slider.slider-thrum-vertical .slider_item-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  opacity: 0;
  pointer-events: none;
}

.slider.slider-thrum-vertical .slider_item-wrap.active {
  opacity: 1;
  pointer-events: visible;
}

.slider.slider-thrum-vertical .slider_direct {
  position: absolute;
  width: 300px;
  top: 0;
  overflow: hidden;
  display: block;
  right: 0;
  z-index: 30;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.slider.slider-thrum-vertical .slider_button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 20px 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  top: 0;
  right: 0;
  color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  z-index: 32;
  font-size: calc(1rem + 8px);
  line-height: 1;
}

.slider.slider-thrum-vertical .slider_button:hover {
  background-color: #e5091682;
}

.slider.slider-thrum-vertical .slider_button.bottom {
  bottom: 0;
  top: unset;
  padding: 0px 20px 10px;
}

.slider.slider-thrum-vertical .slider_dot {
  height: 100%;
}

.slider.slider-thrum-vertical .slider_dot-inner {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

.slider-three {
  position: relative;
}

.slider-three .slider_box {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.slider-three .slider-item_wrap {
  position: absolute;
  width: 60%;
  top: 50%;
  z-index: 10;
  -webkit-filter: brightness(0.4);
  filter: brightness(0.4);
  -webkit-transition: z-index 100ms, margin-left 700ms, width 500ms;
  transition: z-index 100ms, margin-left 700ms, width 500ms;
}

.slider-three .slider-item_wrap.active {
  -webkit-filter: brightness(1);
  filter: brightness(1);
  width: 76%;
  z-index: 50;
}

.slider-three .slider-item_center {
  margin-left: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-three .slider-item_left {
  margin-left: 0%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-three .slider-item_right {
  margin-left: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-three .slider_button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
  font-size: calc(1rem + 9px);
  padding: 1rem 7px;
  cursor: pointer;
}

.slider-three .slider_button.left {
  left: 0;
}

.slider-three .slider_button.right {
  right: 0;
}

@media only screen and (max-width: 575px) {
  .slider .slider_button.left {
    left: 5px;
  }
  .slider .slider_button.right {
    right: 5px;
  }
}

.icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.icon-box.left {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.icon-box.left .icon-box-text {
  margin-left: 12px;
}

.icon-box .icon-box-text *:last-child {
  margin-bottom: 0px;
}

main .wp-caption {
  max-width: 100%;
  background: #000515;
  padding: 3px;
  color: var(--primary-color);
}

main .wp-caption .wp-caption-text {
  margin-bottom: 0px;
  padding: 7px 10px;
  color: var(--primary-color);
}

.according_wrap {
  margin-bottom: 30px;
}

.according_wrap .according_item {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  margin-bottom: 20px;
}

.according_wrap .according_item.active {
  background-color: #f7f7f7;
  border: 1px solid #ececec;
}

.according_wrap .according_item.active .according_item-header {
  background-color: var(--primary-color);
  color: white;
}

.according_wrap .according_item.active .according_item-body {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  padding: 25px 20px;
  height: auto;
}

.according_wrap .according_item-header {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  position: relative;
  border: 1px solid #ccc;
  border-left: 0px;
  border-right: 0px;
  padding: 10px 15px;
}

.according_wrap .according_item-header .toggle {
  position: absolute;
  z-index: 50;
  top: 10px;
  right: 0;
  padding: 0px 10px;
  cursor: pointer;
}

.according_wrap .according_item-body {
  opacity: 0;
  height: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  overflow: hidden;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}

.socials_wrap {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.socials_wrap li {
  margin: -1px var(--social-margin, 16px) 5px 0;
}

.widget {
  margin-bottom: 2.4rem;
}

.widget .widget-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
}

.widget a {
  color: var(--text-title, #333);
}

.widget a:hover {
  color: var(--primary-color, #83b735);
}

.widget .menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.widget .menu > .menu-item > .sub-menu {
  padding-left: 1rem;
  border-left: 1px dashed var(--border-basic, #ececec);
  margin-left: 10px;
  margin-bottom: 1rem;
}

.widget .menu-item {
  font-size: calc(1rem - 2px);
  margin-bottom: 0px;
  list-style: none;
  position: relative;
}

.widget .menu-item ~ .menu-item {
  border-top: 1px dashed var(--border-basic, #ececec);
  padding-top: 0.5rem;
}

.widget .menu-item a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 1rem);
  text-overflow: ellipsis;
  margin-bottom: 0.45rem;
}

.widget .menu-item.current-menu-item > a {
  font-weight: 500;
}

.widget .menu-item .toggle {
  position: absolute;
  top: 0;
  right: 0;
  font-size: calc(1rem - 3px);
  cursor: pointer;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}

.widget .menu-item .toggle:hover {
  color: var(--primary-color, #83b735);
}

.widget .menu-item.active > .sub-menu {
  visibility: visible;
  opacity: 1;
  position: relative;
}

.widget .menu-item.active > a {
  font-weight: 600;
}

.widget .menu-item.active > .toggle {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.widget .sub-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 300ms visibility position ease;
  transition: 300ms visibility position ease;
  position: absolute;
}

.widget .sub-menu .sub-menu a::before {
  content: "-";
  margin-right: 5px;
}

.widget .sub-menu .sub-menu .sub-menu a::before {
  content: "+";
}

.widget .sub-menu .menu-item {
  border-top: 0px;
  padding-top: 0;
}

.widget .cat-item {
  margin-bottom: 0;
  font-size: calc(1rem - 4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}

.widget .cat-item ~ .cat-item {
  border-top: 1px dashed var(--border-basic, #ececec);
  padding-top: 0.5rem;
}

.widget .cat-item.current-cat > a {
  font-weight: 500;
}

.widget .cat-item a {
  font-size: calc(1rem - 2px);
  margin-bottom: 0.5rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 1.3rem);
  text-overflow: ellipsis;
}

.widget .cat-item .children {
  width: 100%;
}

.widget .cat-item .children .cat-item {
  border-top: 0px;
  padding-top: 0px;
}

.widget .cat-item .children a::before {
  content: "-";
  margin-right: 5px;
}

.widget select {
  width: 100%;
  height: 40px;
  padding: 10px;
  outline: none;
  color: var(--text-basic, #666);
  border-radius: 3px;
  font-size: calc(1rem - 2px);
  background: #f8f8f8;
  border: 0px;
  cursor: pointer;
}

.widget .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget .search-form label {
  margin: 0;
  width: 100%;
}

.widget .search-form .screen-reader-text {
  display: none;
}

.widget .search-form .search-field {
  height: 40px;
  border: 1px solid #eee;
  border-right: 0px;
  padding: 3px 15px;
  border-radius: 3px 0 0 3px;
  color: #111;
  width: 100%;
}

.widget .search-form .search-submit {
  height: 40px;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: var(--primary-color);
  color: var(--text-title, #111);
  font-size: calc(1rem - 2px);
  padding: 3px 15px;
  font-weight: 500;
  cursor: pointer;
}

.widget .tagcloud {
  line-height: 1.2;
}

.widget .tagcloud a {
  font-size: calc(1rem - 2px) !important;
  margin: 0 6px 12px 0;
  background: #f8f8f8;
  padding: 4px 10px;
  display: inline-block;
  border-radius: 2px;
}

.widget .tagcloud .tag-link-count {
  font-size: calc(1rem - 4px);
}

.widget.widget_media_image img {
  border-radius: 3px;
}

.widget.widget_blog_thumbnail_widget ul {
  padding: 0;
}

.widget .blog-post_vertical .blog_title {
  -webkit-line-clamp: 3;
}

.yb-iframe_wrap {
  position: relative;
  width: var(--width, 100%);
  padding-top: var(--height, 56.5%);
}

.yb-iframe_wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */
