/*------===============-main-style-sheet-==============------*/
/*===========================================================================
                                Variables 
===========================================================================*/
:root {
  --font-family-main: "Quicksand", sans-serif;
  --font-family-text: "Nunito Sans", sans-serif;
  --font-family-extra: "Kalam", cursive;
  --color-set-one-1:#f74f22;
  --color-set-one-1-rgba: 247, 79, 34;
  --color-set-one-2:#ffac00;
  --color-set-one-2-rgba:255, 172, 0;
  --color-set-one-3:#1a1a1a;
  --color-set-one-3-rgba: 26,26,26;
  --color-white: #ffffff;
  --color-white-rgb: 255,255,255;
  --background-white: #ffffff;
  --background-white-rgb: 255,255,255;
  --color-dark-rgb: 26,26,26;
  --color-light: #f9f5f2;
  --color-light-rgba: 249 , 245 , 242;
  --color-set-one-bg-1: #0c0c0c;
  --color-set-one-bg-l-1: #f9f5f2;
  --color-set-one-bg-l-2: #eeeeee;
  --color-set-one-bg-l-3: #f9f5f1;
  --color-set-one-bor-1:#eeeeee;
  --color-set-one-bor-2:#313131;
  --color-set-one-bor-white-rgb: 255, 255, 255;
  --heading-color-one:#232323;
  --heading-color-one-rgba:26,26,26;
  --content-color-one:#616161;
  --content-color-two:#a1a1a1;
  --content-color-three:#939393;
  --content-color-light-one:#f9f5f2;
  --menu-color: #232323;
  --menu-color-two: #bababa;
  --dropdown-color: #232323;
  --menu-active-color: #f74f22;
  --box-shadow: 0px 10px 50px 0px rgb(var(--color-dark-rgb), 0.1);
  --box-shadow-two: 5px 5px 20px 0px rgb(var(--color-dark-rgb), 0.1);
  --box-shadow-three: 0px 6px 30px 0px rgb(var(--color-dark-rgb), 0.07);
  --box-shadow-four: 0px 5px 22px 0px rgb(var(--color-dark-rgb), 0.04);
  --box-shadow-five: 3px 3px 25px 3px rgb(var(--color-dark-rgb), 0.06);
  --box-shadow-hover: 0px 10px 50px 0px rgb(var(--primary-color-rgb),.3);
  --preloader-spinner-color: #ffac00;
  --preloader-spinner-color-1: #f74f22;
  --preloader-spinner-color-2: #fff;
  --preloader-background-color: #1a1a1a;
  --preloader-text-color: #fff;
  --background-rgb-1:0,0,0;
  --background-rgb-2:227, 227, 227;
  --color-rgb-1:100, 114, 143;
  --transition: all 0.3s linear;
  --progress: 0;
}

/* Line */
.h-240 {
  height: 240px;
}

.shadow-xl {
  box-shadow: 4px 4px 36px 0px rgba(192, 192, 192, 0.1607843137), -4px -4px 36px 0px rgba(192, 192, 192, 0.1215686275);
}

/*===========================================================================
                                Global Css
===========================================================================*/
html {
  height: 100%;
}

body {
  font-family: var(--font-family-text);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--content-color-one);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  -o-font-smoothing: antialiased !important;
  -ms-font-smoothing: antialiased !important;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  margin: 0;
  padding: 0;
}

.page_wapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top_page_wapper {
  flex: 1 0 auto;
}

.before_plugin_installation_footer, .footer_area {
  flex-shrink: 0;
}

.sketch-loading {
  position: absolute;
  content: "";
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%; /* Set the desired width */
  height: 100%; /* Set the desired height */
  background-color: var(--color-set-one-bg-l-2); /* Set the background color of the skeleton loading */
  border-radius: 5px; /* Set the border radius */
  overflow: hidden;
}
.sketch-loading:before {
  position: absolute;
  background-image: linear-gradient(90deg, rgba(var(--color-white-rgb), 0) 0, rgba(var(--color-white-rgb), 0.2) 20%, rgba(var(--color-white-rgb), 0.5) 60%, rgba(var(--color-white-rgb), 0));
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 3;
  animation: roller 3s infinite;
}

@keyframes roller {
  100% {
    transform: translateX(100%);
  }
}
figure {
  padding: 0px !important;
  margin: 0px !important;
}

svg, svg path {
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.scrollbarcolor,
.select2-results__options {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--color-set-one-1) var(--color-set-one-bg-l-2); /* Firefox */
}

.scrollbarcolor::-webkit-scrollbar {
  width: 8px; /* Safari and Chrome */
}

.scrollbarcolor::-webkit-scrollbar-thumb {
  background: var(--color-set-one-1);
  border-radius: 80px;
}

.scrollbarcolor::-webkit-scrollbar-track {
  background: var(--color-set-one-bg-l-2);
  box-shadow: inset 0 0 6px var(--color-set-one-bg-l-2);
}

.select2-results__options::-webkit-scrollbar {
  width: 8px; /* Safari and Chrome */
}

.select2-results__options::-webkit-scrollbar-thumb {
  background: var(--color-set-one-1);
  border-radius: 80px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: var(--color-set-one-bg-l-2);
  box-shadow: inset 0 0 6px var(--color-set-one-bg-l-2);
}

/* Inactive scrollbar style for both */
.scrollbarcolor:window-inactive,
.select2-results__options:window-inactive {
  scrollbar-color: var(--color-set-one-1) var(--color-set-one-bg-l-2);
  scrollbar-width: thin;
}

/* Adjustments for body scrollbar (if needed) */
body.scrollbarcolor::-webkit-scrollbar {
  width: 8px;
}

h1 a,
h1,
h2 a,
h2,
h3 a,
h3,
h4 a,
h4,
h5 a,
h5,
h6 a,
h6 {
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color-one);
  font-family: var(--font-family-main);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  word-break: break-word;
}

.h1, h1 {
  font-size: 55px;
  line-height: 63px;
}

.h2, h2 {
  font-size: 45px;
  line-height: 53px;
}

.h3, h3 {
  font-size: 24px;
  line-height: 32px;
}

.h4, h4 {
  font-size: 22px;
  line-height: 30px;
}

.h5, h5 {
  font-size: 20px;
  line-height: 28px;
}

.h6, h6 {
  font-size: 18px;
  line-height: 26px;
}

p {
  margin-block-end: unset;
  margin-block-start: unset;
  margin-bottom: 15px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.trim-2 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: initial !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.trim-3 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: initial !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
}

ul, ol {
  margin: 0px;
  padding: 0 0 0 0px;
}
ul li, ol li {
  position: relative;
  color: var(--content-color-one);
  margin-bottom: 15px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
ul li a, ol li a {
  color: var(--content-color-one);
}
ul li ul, ul li ol, ol li ul, ol li ol {
  margin: 0px;
  padding: 0px 0 0 10px;
}
ul li ul li, ul li ol li, ol li ul li, ol li ol li {
  margin-bottom: 0px;
  margin-top: 15px;
}

ol {
  list-style: decimal;
}

.site-content ul, .site-content ol {
  padding: 0px 0px 0px 20px;
}

a {
  color: unset;
}

a {
  font-family: var(--font-family-main);
  color: var(--color-set-one-1);
  text-decoration: none;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

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

strong {
  color: var(--heading-color-one);
}

table, table.give-table {
  position: relative;
  margin-bottom: 15px;
}
table tbody tr th, table tbody tr td, table thead tr th, table thead tr td, table.give-table tbody tr th, table.give-table tbody tr td, table.give-table thead tr th, table.give-table thead tr td {
  padding: 10px 10px;
  line-height: 40px;
  font-size: 15px;
  border: 1px solid var(--color-set-one-bor-1);
}
table tbody tr th a, table tbody tr td a, table thead tr th a, table thead tr td a, table.give-table tbody tr th a, table.give-table tbody tr td a, table.give-table thead tr th a, table.give-table thead tr td a {
  color: var(--color-set-one-1);
  line-height: 40px;
  text-align: center;
}
table tbody tr th a:hover, table tbody tr td a:hover, table thead tr th a:hover, table thead tr td a:hover, table.give-table tbody tr th a:hover, table.give-table tbody tr td a:hover, table.give-table thead tr th a:hover, table.give-table thead tr td a:hover {
  color: var(--color-set-one-2);
}
table tbody tr th, table thead tr th, table.give-table tbody tr th, table.give-table thead tr th {
  font-size: 16px;
  color: var(--heading-color-one);
  font-weight: 700;
  background: var(--color-set-one-bg-l-2);
}

.zin_2 {
  z-index: 2;
}

/*--================================--
============ Containers =============
--================================--*/
.container-fluid {
  padding: 0px;
}

.full-container {
  position: static;
  max-width: 1800px;
  padding: 0px 15px;
  width: 100%;
  margin: 0 auto;
}

.large-container {
  position: static;
  max-width: 1650px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.medium-container {
  position: static;
  max-width: 1450px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container, .auto_container {
  position: static;
  max-width: 1350px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  position: static;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.vc_row {
  margin-left: unset !important;
  margin-right: unset !important;
}
.vc_row .common_container, .vc_row.vc_inner {
  display: flex;
  flex-wrap: wrap;
}

.vc_row.vc_row-o-full-height {
  min-height: unset !important;
}

.wpb-content-wrapper > .vc_element > .vc_row.vc_row-flex,
.wpb-content-wrapper > .vc_row.vc_row-flex {
  display: block !important;
  flex-wrap: unset !important;
}

.vc_row.vc_row-flex .common_container {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

.vc_row.vc_row-flex > .common_container > .vc_column_container,
.vc_row.vc_row-flex > .common_container > .vc_element,
.vc_row.vc_row-flex > .common_container > .vc_element > .vc_column_container {
  display: flex;
}

.vc_row.vc_row-o-equal-height > .common_container > .vc_element > .vc_column_container,
.vc_row.vc_row-o-equal-height > .common_container > .vc_column_container {
  align-items: stretch;
}

.vc_row.vc_row-o-content-top > .common_container > .vc_element > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-top > .common_container > .vc_column_container > .vc_column-inner {
  justify-content: flex-start;
}

.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height) > .common_container > .vc_element > .vc_column_container,
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height) > .common_container > .vc_column_container {
  align-items: flex-start;
}

.vc_row.vc_row-o-content-bottom > .common_container > .vc_column_container > .vc_element > .vc_column-inner,
.vc_row.vc_row-o-content-bottom > .common_container > .vc_column_container > .vc_column-inner {
  justify-content: flex-end;
}

.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height) > .common_container > .vc_element > .vc_column_container,
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height) > .common_container > .vc_column_container {
  align-items: flex-end;
}

.vc_row.vc_row-o-content-middle > .common_container > .vc_column_container > .vc_element > .vc_column-inner,
.vc_row.vc_row-o-content-middle > .common_container > .vc_column_container > .vc_column-inner {
  justify-content: center;
}

.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .common_container > .vc_element > .vc_column_container,
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .common_container > .vc_column_container {
  align-items: center;
}

.vc_row.vc_row-o-full-height .common_container {
  min-height: 100vh;
}

.vc_row[data-vc-full-width].common_container,
.vc_row[data-vc-full-width-] .common_container, .vc_row[data-vc-stretch-content] .common_container {
  max-width: unset !important;
}

.vc_row.vc_row-o-columns-stretch .common_container {
  align-content: stretch;
}

.vc_row.vc_row-o-columns-top .common_container {
  align-content: flex-start;
}

.vc_row.vc_row-o-columns-bottom .common_container {
  align-content: flex-end;
}

.vc_row.vc_row-o-columns-middle .common_container {
  align-content: center;
}

.vc_row.vc_column-gap-1 {
  margin-left: -15.5px;
  margin-right: -15.5px;
}

.vc_row.vc_column-gap-1 > .common_container > .vc_column_container {
  padding: 0.5px;
}

.vc_row.vc_column-gap-2 {
  margin-left: -16px;
  margin-right: -16px;
}

.vc_row.vc_column-gap-2 > .common_container > .vc_column_container {
  padding: 1px;
}

.vc_row.vc_column-gap-3 {
  margin-left: -16.5px;
  margin-right: -16.5px;
}

.vc_row.vc_column-gap-3 > .common_container > .vc_column_container {
  padding: 1.5px;
}

.vc_row.vc_column-gap-4 {
  margin-left: -17px;
  margin-right: -17px;
}

.vc_row.vc_column-gap-4 > .common_container > .vc_column_container {
  padding: 2px;
}

.vc_row.vc_column-gap-5 {
  margin-left: -17.5px;
  margin-right: -17.5px;
}

.vc_row.vc_column-gap-5 > .common_container > .vc_column_container {
  padding: 2.5px;
}

.vc_row.vc_column-gap-10 {
  margin-left: -20px;
  margin-right: -20px;
}

.vc_row.vc_column-gap-10 > .common_container > .vc_column_container {
  padding: 5px;
}

.vc_row.vc_column-gap-15 {
  margin-left: -22.5px;
  margin-right: -22.5px;
}

.vc_row.vc_column-gap-15 > .common_container > .vc_column_container {
  padding: 7.5px;
}

.vc_row.vc_column-gap-20 {
  margin-left: -25px;
  margin-right: -25px;
}

.vc_row.vc_column-gap-20 > .common_container > .vc_column_container {
  padding: 10px;
}

.vc_row.vc_column-gap-25 {
  margin-left: -27.5px;
  margin-right: -27.5px;
}

.vc_row.vc_column-gap-25 > .common_container > .vc_column_container {
  padding: 12.5px;
}

.vc_row.vc_column-gap-30 {
  margin-left: -30px;
  margin-right: -30px;
}

.vc_row.vc_column-gap-30 > .common_container > .vc_column_container {
  padding: 15px;
}

.vc_row.vc_column-gap-35 {
  margin-left: -32.5px;
  margin-right: -32.5px;
}

.vc_row.vc_column-gap-35 > .common_container > .vc_column_container {
  padding: 17.5px;
}

body .wpb-content-wrapper > .vc_row.vc_row-o-content-middle.vc_row-flex.vc_height_enabled {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body .wpb-content-wrapper > .vc_row.vc_row-o-content-bottom.vc_row-flex.vc_height_enabled {
  display: flex !important;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.vc_overlay .vcoverlay_box {
  position: absolute !important;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.position-static {
  position: static !important;
}

.header_absolute {
  position: absolute;
  left: 0;
  right: 0;
}

body .give-modal {
  z-index: 9999 !important;
}

.wpcf7-spinner {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.trans {
  transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.trans2 {
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*--================================--
============ titles =============
--================================--*/
.imagereveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: top; /* Set the transform origin to the top edge */
}

.imagereveal {
  position: relative;
  overflow: hidden;
}

html body .color_white {
  color: var(--color-white);
}

html body .color_light {
  color: var(--content-color-light-one);
}

.color_dark {
  color: var(--heading-color-one);
}

.tit_ho a:hover {
  color: var(--color-set-one-1);
}

.font_special {
  font-family: var(--font-family-extra);
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
  color: var(--color-set-one-2);
  text-decoration: underline;
}

.title_no_a_46, .title_all_box .risehand-split-active * {
  font-size: 46px;
  line-height: 56px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
}

.title_no_a_36 {
  font-size: 36px;
  line-height: 44px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_36 {
  font-size: unset;
  line-height: unset;
  margin: 0px;
}
.title_36 a {
  font-size: 36px;
  line-height: 44px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  display: block;
  margin-bottom: 10px;
}
.title_36 a:hover {
  color: var(--color-set-one-1);
}
.title_36 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_32 {
  font-size: 32px;
  line-height: 40px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_32 {
  font-size: unset;
  line-height: unset;
  margin: 0px;
}
.title_32 a {
  font-size: 32px;
  line-height: 40px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  display: block;
  margin-bottom: 10px;
}
.title_32 a:hover {
  color: var(--color-set-one-1);
}
.title_32 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_30 {
  font-size: 30px;
  line-height: 38px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_30 {
  font-size: unset;
  line-height: normal;
  margin: 0px;
}
.title_30 a {
  font-size: 30px;
  line-height: 38px;
  display: block;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  margin-bottom: 10px;
}
.title_30 a:hover {
  color: var(--color-set-one-1);
}
.title_30 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_28 {
  font-size: 28px;
  line-height: 36px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_28 {
  font-size: unset;
  line-height: normal;
  margin: 0px;
}
.title_28 a {
  font-size: 28px;
  line-height: 36px;
  display: block;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  margin-bottom: 10px;
}
.title_28 a:hover {
  color: var(--color-set-one-1);
}
.title_28 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_26 {
  font-size: 26px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  line-height: 34px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_26 {
  font-size: unset;
  line-height: normal;
  margin: 0px;
}
.title_26 a {
  font-size: 26px;
  line-height: 34px;
  display: block;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  margin-bottom: 10px;
}
.title_26 a:hover {
  color: var(--color-set-one-1);
}
.title_26 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_24 {
  font-size: unset;
  line-height: normal;
  margin: 0px;
}
.title_24 a {
  font-size: 24px;
  line-height: 32px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  display: block;
  margin-bottom: 10px;
}
.title_24 a:hover {
  color: var(--color-set-one-1);
}
.title_24 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_24 {
  font-size: 24px;
  line-height: 32px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_no_a_22 {
  font-size: 22px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  line-height: 30px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_22 {
  font-size: unset;
  line-height: unset;
  margin-bottom: 0px;
}
.title_22 a {
  font-size: 22px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: var(--heading-color-one);
  margin-bottom: 10px;
}
.title_22 a:hover {
  color: var(--color-set-one-1);
}
.title_22 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_20 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_20 {
  font-size: unset;
  line-height: unset;
  margin-bottom: 0px;
}
.title_20 a {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
  display: block;
  margin-bottom: 10px;
}
.title_20 a:hover {
  color: var(--color-set-one-1);
}
.title_20 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_18 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_18 {
  font-size: unset;
  line-height: unset;
  margin-bottom: 0px;
}
.title_18 a {
  font-size: 18px;
  line-height: 26px;
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
}
.title_18 a:hover {
  color: var(--color-set-one-1);
}
.title_18 a:hover .char:after {
  color: var(--color-set-one-1);
}

.title_no_a_16 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color-one);
  line-height: 24px;
  font-family: var(--font-family-main);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.title_16 {
  font-size: unset;
  line-height: unset;
  margin-bottom: 0px;
}
.title_16 a {
  font-size: 16px;
  line-height: 24px;
  color: var(--heading-color-one);
  font-family: var(--font-family-main);
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.title_16 a:hover {
  color: var(--color-set-one-1);
}
.title_16 a:hover .char:after {
  color: var(--color-set-one-1);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/*--================================--
============site content =============
--================================--*/
.site-content {
  padding: 80px 0px 50px;
}

.page-template-template-homepage .site-content, .page-template-template-boxed .site-content, .single-header .site-content, .single-sliders .site-content, .single-footer .site-content, .single-sticky_header .site-content, .single-mega_menu .site-content, .page-template-template-empty .site-content, .service-template-template-fullwidth .site-content, .portfolio-template-template-fullwidth .site-content, .page-template-template-fullwidth .site-content, .service-template-template-fullwidth .site-content {
  padding: 0px 0px 0px;
}

.mega_menu-template .site-content {
  padding: 0px;
}

.single-product .site-content {
  padding: 60px 0px 30px;
}

.post-type-archive-product .site-content {
  padding: 60px 0px 60px;
}

@media (max-width: 992px) {
  .site-content {
    padding: 50px 0px 30px;
  }
}
.line_box_outer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
}
.line_box_outer .lined {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--color-set-one-bor-1);
}
.line_box_outer .lined:first-child {
  left: 100px;
}
.line_box_outer .lined:last-child {
  right: 100px;
}
.line_box_outer .lined.two {
  left: 25%;
}
.line_box_outer .lined.three {
  left: 0;
  right: 0;
  margin: auto;
}
.line_box_outer .lined.four {
  right: 25%;
}

@media (max-width: 1024px) {
  .line_box_outer {
    display: none;
  }
}
.vertical_text_1 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.vertical_text_2 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pswp__caption__center {
  text-align: center !important;
}

/*---========================================
================ nav_true================
========================================---*/
.swiper_arrows {
  position: relative;
  width: 100%;
  text-align: center;
  pointer-events: none;
  padding-top: 45px;
}
.swiper_arrows .arrow-prev, .swiper_arrows .arrow-next {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--color-set-one-bor-1);
  background: var(--color-white);
  margin: 0px 5px;
  pointer-events: fill;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.swiper_arrows .arrow-prev::before, .swiper_arrows .arrow-next::before {
  position: absolute;
  content: "\e980";
  font-family: Risehand;
  font-size: 20px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.swiper_arrows .arrow-prev:hover, .swiper_arrows .arrow-next:hover {
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
}
.swiper_arrows .arrow-prev:hover:before, .swiper_arrows .arrow-next:hover:before {
  color: var(--color-white);
}
.swiper_arrows .arrow-next::before {
  content: "\e981";
}

.position_two .owl-carousel .owl-nav {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: unset;
}

.position_three .owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  padding: 0px;
  left: 0;
  z-index: 2;
  width: unset;
}

.position_four .owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 50px;
  margin: auto;
}
.position_four .owl-carousel .owl-nav .owl-prev, .position_four .owl-carousel .owl-nav .owl-next {
  position: absolute;
}
.position_four .owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.position_four .owl-carousel .owl-nav .owl-next {
  right: 0;
}

.nav_false .owl-carousel .owl-nav {
  display: none !important;
}

.nav_true {
  position: relative;
}

body .related_post .owl-carousel .owl-nav {
  top: -71px;
  right: -7px;
}

.slider-pagination {
  position: relative;
  width: 100%;
  text-align: center;
  pointer-events: none;
  padding-top: 45px;
  z-index: 99;
}
.slider-pagination .swiper-pagination-bullet {
  position: relative;
  width: 25px;
  display: inline-block;
  height: 25px;
  border-radius: 25px;
  border: 2px solid transparent;
  opacity: 1 !important;
  pointer-events: fill;
  background: unset;
  margin: 0 2px !important;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.slider-pagination .swiper-pagination-bullet:before {
  width: 7px;
  height: 7px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  border-radius: 7px;
  background: var(--color-set-one-bor-1);
  display: block;
  margin: auto;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .slider-pagination .swiper-pagination-bullet:hover {
  border-color: var(--color-set-one-1);
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before, .slider-pagination .swiper-pagination-bullet:hover:before {
  background: var(--color-set-one-1) !important;
}

.menu_boxed .m_bx {
  display: flex;
  position: relative;
}
.menu_boxed .navbar_togglers {
  top: unset;
  right: unset;
}

.mb_0 {
  margin-bottom: 0px !important;
}

.mb_5 {
  margin-bottom: 5px;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_25 {
  margin-bottom: 25px !important;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_35 {
  margin-bottom: 35px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mt_0 {
  margin-top: 0px !important;
}

.mt_5 {
  margin-top: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_35 {
  margin-top: 35px;
}

.mt_40 {
  margin-top: 40px;
}

.pb_0 {
  padding-bottom: 0px !important;
}

.pb_5 {
  padding-bottom: 5px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pb_15 {
  padding-bottom: 15px;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.pb_25 {
  padding-bottom: 25px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pb_35 {
  padding-bottom: 35px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pt_0 {
  padding-top: 0px !important;
}

.pt_5 {
  padding-top: 5px;
}

.pt_10 {
  padding-top: 10px;
}

.pt_15 {
  padding-top: 15px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_25 {
  padding-top: 25px;
}

.pt_30 {
  padding-top: 30px;
}

.pt_35 {
  padding-top: 35px;
}

.pt_40 {
  padding-top: 40px;
}

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

.text-end, .text-right {
  text-align: right !important;
}

.text-start, .text-left {
  text-align: left !important;
}

.page-404 img {
  width: 50%;
  margin: 0 auto 2rem;
}

/*---========================================
================media queries================
========================================---*/
@media (max-width: 600px) {
  .h1, h1 {
    font-size: 45px;
    line-height: 53px;
  }
  .h2, h2, .title_no_a_46 {
    font-size: 35px;
    line-height: 43px;
  }
  .title_no_a_36 {
    font-size: 28px;
    line-height: 38px;
  }
  .h3, h3 {
    font-size: 20px;
    line-height: 29px;
  }
  .h4, h4 {
    font-size: 19px;
    line-height: 28px;
  }
  .h5, h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .h6, h6 {
    font-size: 15px;
    line-height: 23px;
  }
  body, ul li, ol li, p, a {
    font-size: 15px;
    line-height: 24px;
  }
  table tbody tr th, table thead tr th {
    font-size: 15px;
    line-height: 30px;
  }
  .title_no_a_30, .title_30 a {
    font-size: 28px;
    line-height: 38px;
  }
  .title_no_a_28, .title_28 a {
    font-size: 26px;
    line-height: 36px;
  }
  .title_no_a_26, .title_26 a {
    font-size: 24px;
    line-height: 34px;
  }
  .title_no_a_24, .title_24 a {
    font-size: 22px;
    line-height: 32px;
  }
  .title_no_a_22, .title_22 a {
    font-size: 20px;
    line-height: 30px;
  }
  .title_20 a {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1310px) {
  .fancybox-slide--iframe .fancybox-content {
    height: 45% !important;
  }
}
@media (max-width: 768px) {
  .fancybox-slide--iframe .fancybox-content {
    height: 35% !important;
  }
}
body .elementor-social-icon {
  --e-social-icon-icon-color: #fff;
  display: inline-flex;
  background-color: #69727d;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

/* Apply these styles to the container of your inline SVG */
.svg_inline_nio {
  /* Improve rendering quality */
  image-rendering: auto; /* or crisp-edges for pixel-perfect rendering */
  /* Prevent rendering artifacts */
  backface-visibility: hidden;
  /* Trigger hardware acceleration */
  transform: translate3d(0, 0, 0);
  /* Optimize rendering */
  will-change: transform; /* or any relevant property */
}

.error404 {
  overflow: hidden;
}
.error404 .site-content {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh; /* Adjust this if necessary */
}
.error404 p.m-auto {
  margin-bottom: 2rem !important;
}
.error404 .search-form {
  max-width: 600px;
  margin: 2rem auto 2rem;
  position: relative;
}
.error404 .search-form .sch_btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.search-form.search_file {
  margin-bottom: 30px;
}
.search-form.search_file form {
  position: relative;
}
.search-form.search_file form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 50px;
  border-radius: 0px;
}

.search-results .page_header_content {
  text-align: center;
}

.text-decoration-underline {
  text-decoration: underline;
}

.font-medium {
  font-weight: 500;
}

.line_30 {
  line-height: 30px;
}

.single_feature_image {
  position: relative;
}
.single_feature_image img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

#elementor-add-new-section {
  padding-top: 150px;
}

.client_logo .swiper-wrapper {
  align-items: center;
}

.overflow-hidden {
  overflow: hidden !important;
}

@media (max-width: 769px) {
  body .arrow_slider_builder {
    position: absolute !important;
    z-index: 99;
    top: unset !important;
    bottom: 15px !important;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 10px;
    height: 40px;
  }
  body .arrow_slider_builder .next, body .arrow_slider_builder .prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    min-height: 40px;
  }
}
/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  text-align: center;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: var(--color-white);
  border: 1px solid var(--color-set-one-bor-1);
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-block-search__inside-wrapper {
  border: unset !important;
  margin: 0;
  padding: 0px;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 15px 15px 0;
}

.wp-caption.alignright {
  margin: 5px 0 15px 15px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 17px;
  margin: 0;
  padding: 8px 5px 0px 0px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: var(--color-white);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: var(--heading-color-one);
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.gallery-caption {
  position: relative;
}

.bypostauthor {
  position: relative;
}

.wp-block-search__input {
  border-color: var(--color-set-one-bor-1);
}

.tag-sticky-2 .single_content_upper {
  position: relative;
}

.post.sticky .blog.style_one:before, .tag-sticky-2 .single_content_upper:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 30px;
  right: 5px;
  top: 5px;
  background: var(--color-set-one-1);
}

body .has-background-dim,
body .has-background-dim p, body .has-background-dim p strong {
  color: var(--color-white) !important;
}
body .is-light .has-background-dim,
body .is-light .has-background-dim p, body .is-light .has-background-dim p strong {
  color: var(--color-white) !important;
}
body .is-light .has-large-font-size {
  color: var(--color-white) !important;
}

body .site-main .has-large-font-size {
  font-size: 30px !important;
  line-height: 36px;
}

table {
  width: 100%;
}

.post-password-form label {
  width: 100%;
}

input[type=password] {
  width: 100%;
}

.wp-block-button {
  margin-bottom: 15px;
}

.blocks-gallery-grid {
  padding: 0px !important;
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  margin: 0 1em 1.4em 0;
}

dl, ol, ul {
  padding: 0px;
}
dl dt, ol dt, ul dt {
  font-size: 17px;
  font-weight: 500;
  color: var(--heading-color-one);
}

.blocks-gallery-caption {
  padding-bottom: 21px;
}

/*-----=======wp-block-image=======--------*/
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 10px;
}

.wp-block-image {
  margin-bottom: 15px !important;
}
.wp-block-image figcaption {
  margin-top: 15px;
  margin-bottom: 0px !important;
}

body .wp-block-cover {
  margin-bottom: 15px;
}

.wp-block-gallery.wp-block-gallery-3 {
  padding-right: 15px;
}

blockquote p {
  font-size: 24px !important;
  line-height: 30px;
  font-family: var(--font-family-text);
  font-weight: 600;
}

.wp-block-pullquote blockquote {
  padding: 20px 10px !important;
  margin: 0;
}

.wp-block-group.has-background .wp-block-group__inner-container {
  padding: 20px 20px 10px;
  margin-bottom: 15px;
}

.wp-block-media-text {
  margin-bottom: 15px;
}

.wp-block-latest-comments, .wp-block-rss {
  padding-left: 0px !important;
}
.wp-block-latest-comments li, .wp-block-rss li {
  list-style: none !important;
  display: flex;
  gap: 1rem;
}
.wp-block-latest-comments li img, .wp-block-rss li img {
  width: auto;
  height: 60px;
  min-width: 60px;
}
.wp-block-latest-comments li .wp-block-latest-comments__comment-author, .wp-block-rss li .wp-block-latest-comments__comment-author {
  font-weight: 600;
  color: var(--heading-color-one);
}
.wp-block-latest-comments li time, .wp-block-rss li time {
  margin: 0px 0px 15px;
  color: var(--color-set-one-1);
  align-items: center;
  display: flex;
}
.wp-block-latest-comments li time::before, .wp-block-rss li time::before {
  position: relative;
  content: "\e978";
  margin-right: 5px;
  font-family: "risehand";
}

.wp-block-latest-comments .wp-block-latest-comments__comment-date {
  margin-top: 8px;
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  margin-bottom: 15px !important;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0px;
}

.is-style-outline .wp-block-button__link:hover {
  color: var(--color-set-one-1) !important;
  border-color: var(--color-set-one-1);
}

.wp-block-button__link {
  background-color: var(--color-set-one-1);
  color: var(--color-white);
}
.wp-block-button__link:hover {
  background-color: var(--color-set-one-2);
  color: var(--color-white);
}

.admin-bar .quicklinks ul {
  margin-bottom: unset !important;
}

body blockquote, .wp-block-pullquote {
  padding: 20px !important;
  border-radius: 10px;
  background: var(--color-set-one-bg-1);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 15px 0px;
  color: var(--color-white);
}
body blockquote cite, .wp-block-pullquote cite {
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 600;
}
body blockquote strong, .wp-block-pullquote strong {
  color: var(--color-white);
}
body blockquote p, .wp-block-pullquote p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--color-white);
}

.wp-block-archives, .wp-block-categories-dropdown {
  margin-bottom: 15px;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  margin-bottom: 15px;
}
.wp-block-pullquote.is-style-solid-color blockquote cite {
  color: var(--color-white);
}

blockquote cite {
  color: var(--color-white);
}

.wp-block-quote.is-large:not(.is-style-plain) p p, .wp-block-quote.is-style-large:not(.is-style-plain) p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--color-white);
}
.wp-block-quote.is-large:not(.is-style-plain) p cite, .wp-block-quote.is-style-large:not(.is-style-plain) cite {
  color: var(--color-white);
}

.gallery img {
  margin: 0 auto 10px;
}

.wp-block-calendar table th {
  background: var(--color-set-one-bg-1);
  color: var(--color-white);
}

.wp-block-search {
  margin-bottom: 15px;
}

pre {
  background: var(--color-set-one-bg-l-1);
  padding: 20px;
  overflow: auto;
}

.wp-block-post-time-to-read, .wp-block-post-title, .wp-block-latest-posts__post-title {
  font-size: 24px;
  line-height: 34px;
  color: var(--heading-color-one);
  font-weight: 600;
  margin-bottom: 5px;
}

.wp-block-table td, .wp-block-table th {
  border-color: var(--color-set-one-bor-1);
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--color-set-one-bg-1);
  color: var(--color-white);
}

.wp-block-buttons {
  margin-bottom: 15px;
}

.post-password-form input {
  margin-bottom: 10px;
}

body .wp-block-page-list {
  margin-bottom: 15px;
}
body .wp-block-page-list li {
  margin: 0px;
}
body .wp-block-page-list li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color-one);
}
body .wp-block-page-list li ul a {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color-one);
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: var(--heading-color-one);
}

body .wp-block-post-template {
  padding: 0px;
}
body .wp-block-post-template .wp-block-post-featured-image {
  margin-bottom: 15px !important;
}

.wp-block-avatar {
  margin-bottom: 10px;
}

.wp-block-query-pagination-next, .wp-block-query-pagination-prev {
  padding: 5px 10px;
  border-radius: 30px;
  border: 1px solid var(--color-set-one-bor-1);
  color: var(--heading-color-one);
}

.wp-block-latest-comments .avatar, .wp-block-latest-comments__comment-avatar {
  position: relative;
  top: 6px;
  min-width: 2.5rem;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt, .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 0px;
}

/*===========================================================================
                                Header Css
===========================================================================*/
/*  0) --> Preloader
    1) --> table_nav_togglets
    2) --> table_Logo_box
    3) --> table_Navbar_menu
    4) --> table_default_header
*/
five_column .menu-fallback-menu.navbar_nav li {
  list-style: none;
  text-align: right;
}

.menu-fallback-menu {
  text-align: right;
}

.default_header .navbar_nav {
  justify-content: flex-end;
}

.loader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.loader-wrap .preloader-close {
  position: fixed;
  z-index: 999999;
  cursor: pointer;
  right: 20px;
  width: 60px;
  height: 60px;
  font-size: 22px;
  text-align: center;
  line-height: 60px;
  top: 20px;
  border-radius: 50px;
  background: var(--preloader-text-color);
}
.loader-wrap .preloader-close i {
  color: var(--preloader-text-color-1);
}
.loader-wrap .preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-position: center center;
  background-repeat: no-repeat;
}
.loader-wrap .layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--preloader-background-color);
}
.loader-wrap .animation-preloader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0);
  border-top-color: var(--preloader-spinner-color);
  animation: spin 2s linear infinite;
}
.loader-wrap .animation-preloader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0);
  border-top-color: var(--preloader-spinner-color-1);
  animation: spin 3s linear infinite;
}
.loader-wrap .animation-preloader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0);
  border-top-color: var(--preloader-spinner-color-2);
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*==========================================================================
                               header                                    
==========================================================================*/
.navbar_togglers {
  position: relative;
  display: none;
}
.navbar_togglers .navbar-burger {
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.navbar_togglers .navbar-burger i {
  font-size: 16px;
}

.nav_tog_column {
  text-align: right;
}

.navbar-brand {
  margin: 0px;
}

.logo_box {
  position: relative;
  min-width: 160px;
}
.logo_box .logo img {
  width: 160px;
}
.logo_box .logo.text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px;
  display: block;
}
.logo_box .site-description {
  position: absolute !important;
  text-indent: -9999px !important;
  height: 0 !important;
  line-height: 0 !important;
  visibility: hidden !important;
}

@media (min-width: 1200px) {
  .navbar_nav {
    display: flex;
    align-items: center;
    padding-left: 0px;
  }
  .navbar_nav > li > a.nav_link .img-link {
    margin-right: 8px;
    display: inline-block;
  }
  .navbar_nav > li > a.nav_link .img-link img {
    display: block;
    width: 50px;
    height: auto;
  }
  .navbar_nav > li > a.nav_link .text-link .mbadge {
    position: absolute;
    top: -27px;
    right: 0;
    display: inline-block;
    background: var(--color-set-one-1);
    color: var(--color-white);
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    border-radius: 5px;
    padding: 0px 8px;
  }
  .navbar_nav > li > a.nav_link .text-link .mbadge:before {
    position: absolute;
    content: "";
    border-left: 10px solid var(--color-set-one-1);
    bottom: -9px;
    left: 0;
    height: 10px;
    width: 10px;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  .navbar_nav > li.nioland_menu_image > a {
    display: inline-flex !important;
    align-items: center !important;
  }
  .navbar_nav li {
    margin-bottom: 0px;
    text-align: left;
  }
  .navbar_nav li .dropdown-btn .fa-angle-down {
    font-size: 15px;
  }
  .navbar_nav li li .dropdown-btn span::before {
    display: block;
  }
  .navbar_nav .menu-item {
    position: relative;
    margin-right: 30px;
    padding: 29px 0px;
    margin-bottom: 0px !important;
    display: inline-block;
    transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
  }
  .navbar_nav .menu-item:last-child {
    margin-right: 0px;
  }
  .navbar_nav .menu-item > a.nav_link {
    font-weight: 600;
    font-size: 17px;
    position: relative;
    line-height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--menu-color);
    font-family: var(--font-family-main);
    transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
  }
  .navbar_nav .menu-item.dropdown a.nav_link {
    display: flex;
  }
  .navbar_nav .menu-item.dropdown .dropdown-btn {
    position: relative;
    display: inline-block;
    height: 18px;
    line-height: 18px;
    padding-left: 7px;
    top: 2px;
  }
  .navbar_nav .menu-item .sub-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    margin-left: 0px;
    background: var(--background-white);
    min-width: 250px;
    padding: 15px 25px;
    transform: scale(1, 0);
    transform-origin: 0 0;
    opacity: 0;
    z-index: 99;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; /* Adjusted duration to 0.2s for smoother transition */
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    -moz-transition: opacity 0.2s ease, visibility 0.2s ease, -moz-transform 0.2s ease;
    -o-transition: opacity 0.2s ease, visibility 0.2s ease, -o-transform 0.2s ease;
    box-shadow: var(--box-shadow);
    justify-content: center;
  }
  .navbar_nav .menu-item .sub-menu li {
    display: block;
    list-style: none;
    padding: 0px 0px !important;
    margin: 0px;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link {
    color: var(--menu-color);
    font-size: 16px;
    font-weight: 600;
    padding: unset;
    line-height: normal;
    display: flex;
    padding: 0.7rem 0;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link .text-link .mbadge {
    position: absolute;
    top: 0px;
    right: 10px;
    bottom: 0;
    margin: auto;
    display: inline-block;
    background: var(--color-set-one-1);
    color: var(--color-white);
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    border-radius: 5px;
    padding: 0px 8px;
    height: 20px;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link:hover {
    color: var(--color-set-one-1);
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link .img-link {
    margin-right: 8px;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link .img-link img {
    display: block;
    width: 30px;
    height: auto;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_two {
    display: block !important;
    border-radius: 6px !important;
    border: 1px solid var(--color-set-one-bor-1);
    text-align: center;
    padding: 10px 10px 7px;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_two .img-link {
    margin-right: unset;
    margin-bottom: 16px;
    display: block;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_two .img-link img {
    display: block;
    width: 100%;
    height: auto;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three {
    display: block !important;
    padding: 0px;
    background: unset !important;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three:hover {
    background: unset;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three .img-link {
    margin-right: unset;
    margin-bottom: 8px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three .img-link img {
    display: block;
    width: 100%;
    height: auto;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three .text-link {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0px 20px 10px;
    right: 0;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three .text-link .box_menu {
    display: block;
    padding: 0.3rem 1rem;
    font-family: var(--font-family-main);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2rem;
    color: var(--color-white);
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-radius: 0.5rem;
    background: var(--color-set-one-4);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .navbar_nav .menu-item .sub-menu li a.nav_link.menu_img_style_three .text-link .box_menu:hover {
    background: var(--color-set-one-2);
    color: var(--color-white);
  }
  .navbar_nav .menu-item .sub-menu li .count-hot-beg {
    position: relative;
    display: inline-block;
    top: unset;
    right: unset;
    margin-left: 5px;
  }
  .navbar_nav .menu-item .sub-menu li .count-hot-beg small {
    display: none;
  }
  .navbar_nav .menu-item .sub-menu li.dropdown {
    position: relative;
  }
  .navbar_nav .menu-item .sub-menu li.dropdown .dropdown-btn {
    position: absolute;
    right: 17px;
    height: 15px;
    line-height: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .navbar_nav .menu-item .sub-menu li.dropdown .text-link .mbadge {
    right: 36px;
  }
  .navbar_nav .menu-item .sub-menu .sub-menu {
    left: 100%;
    top: 0;
  }
  .navbar_nav .menu-item.dropdwon_right .sub-menu {
    left: unset;
    right: 0;
  }
  .navbar_nav .menu-item.mega_menu {
    margin-right: 36px;
  }
  .navbar_nav .menu-item.mega_menu .sub-menu {
    min-width: 100%;
    width: 100%;
    top: 100%;
    padding: unset !important;
    background: unset !important;
  }
  .navbar_nav .menu-item.mega_menu .nav_link {
    display: inline-flex;
    align-items: center;
  }
  .navbar_nav .menu-item.mega_menu .dropdown-btn {
    position: relative;
    padding-left: 7px;
    display: inline-block;
  }
  .navbar_nav .menu-item:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease; /* Increased duration to 0.4s for a slightly slower transition */
    -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
    -moz-transition: opacity 0.4s ease, visibility 0.4s ease, -moz-transform 0.4s ease;
    -o-transition: opacity 0.4s ease, visibility 0.4s ease, -o-transform 0.4s ease;
  }
  .navbar_nav .menu-item:nth-last-child(-n+1) .sub-menu .sub-menu {
    left: unset;
    right: 100%;
  }
}
@media (max-width: 1200px) {
  .menu_area {
    display: none;
  }
}
.megamenu_submenu::-webkit-scrollbar {
  width: 4px;
  border-radius: 80px;
}
.megamenu_submenu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--color-set-one-bg-1);
  background: var(--color-set-one-bg-1);
}
.megamenu_submenu::-webkit-scrollbar-thumb {
  background: var(--color-set-one-1);
  box-shadow: inset 0 0 6px var(--color-set-one-1);
}
.megamenu_submenu:window-inactive {
  background: var(--color-set-one-1);
}

.default_header {
  position: relative;
}
.default_header .navbar_content {
  text-align: right;
}
.default_header .logo_box {
  padding: 10px 0px;
}

@media (max-width: 992px) {
  .logo_col {
    width: 70%;
  }
  .men_col {
    width: 30%;
    text-align: right;
  }
  .default_header .navbar_content {
    display: none;
  }
  .default_header .col-xl-8.col-lg-8.col-md-4.col-sm-4.col-xs-4 {
    text-align: right;
  }
}
.header-template .site-content {
  padding: 0px;
}

.language {
  position: relative;
}
.language .language-dropdown-active {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 0px;
  color: var(--color-white);
  cursor: pointer;
}
.language .language-dropdown-active i {
  position: relative;
  top: 3px;
}
.language .language-dropdown {
  position: absolute;
  right: 0;
  z-index: 2;
  min-width: 140px;
  background: var(--color-white);
  border-radius: 0 0 4px 4px;
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
  padding: 10px 15px;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 1px solid var(--color-set-one-bor-1);
}
.language .language-dropdown li {
  display: block;
  color: var(--heading-color-one);
}
.language .language-dropdown li a {
  display: block;
  font-size: 15px;
}
.language .language-dropdown li a img {
  min-width: 15px;
  float: left;
  width: 15px;
  position: relative;
  top: 9px;
  margin-right: 5px;
}
.language .language-dropdown li:last-child {
  margin-bottom: 0px;
}
.language:hover .language-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.contact-toggler, .search-toggler {
  cursor: pointer;
}

.header_extra_items {
  gap: 1rem;
}
.header_extra_items .contact-toggler, .header_extra_items .search-toggler {
  border: 1px solid var(--color-set-one-bor-1);
  display: flex;
  min-height: 40px;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 20px;
  color: var(--heading-color-one);
  transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}
.header_extra_items .contact-toggler:hover, .header_extra_items .search-toggler:hover {
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
  color: var(--color-white);
}

.contact_header_one {
  position: relative;
}
.contact_header_one .icon_s {
  position: relative;
  width: 50px;
  height: 50px;
  min-width: 50px;
  line-height: 50px;
  background: var(--color-set-one-1);
  border-radius: 50px;
  color: var(--color-white);
  margin-right: 10px;
  text-align: center;
  line-height: 50px;
}
.contact_header_one .icon_s i {
  font-size: 40px;
}
.contact_header_one .content .tite {
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  color: var(--heading-color-one);
  margin-bottom: 5px;
}
.contact_header_one .content .title_20 a {
  margin: 0px;
}

/*=============================================
====================header=====================
=============================================*/
.header-area {
  position: relative;
}

/*---========================================
================ menu_open_sidely ================
========================================---*/
.header_area {
  position: relative;
  z-index: 999;
}
.header_area > p {
  display: none;
}

.side_menu_v1 {
  position: fixed;
  width: 100px;
  padding: 50px 0px 50px;
  top: 0;
  left: 0;
  transform: translateY(0);
  height: 100%;
  z-index: 99999999;
  background: var(--color-white);
  text-align: center;
  transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
}
.side_menu_v1 .menu_box {
  position: relative;
  cursor: pointer;
}
.side_menu_v1 .menu_box .side_navbar_togglers {
  position: relative;
  z-index: 1;
  transition: 0.8s ease-out;
  -ms-transition: 0.8s ease-out;
  -moz-transition: 0.8s ease-out;
  -o-transition: 0.8s ease-out;
}
.side_menu_v1 .menu_box:hover .side_navbar_togglers svg path {
  fill: var(--color-set-one-1);
}
.side_menu_v1 .top {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
}
.side_menu_v1 .top .menu_box, .side_menu_v1 .top .search_box, .side_menu_v1 .top .contacttoggler {
  padding-bottom: 20px;
}
.side_menu_v1 .top .search-toggler, .side_menu_v1 .top .contact-toggler {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 1px solid var(--color-set-one-bor-1);
  border-radius: 40px;
  cursor: pointer;
}
.side_menu_v1 .top .contact-toggler {
  line-height: 37px;
}
.side_menu_v1 .top .menu_box span {
  font-size: 15px;
  display: block;
  padding-top: 3px;
  font-weight: 500;
  color: var(--heading-color-one);
}
.side_menu_v1 .social-icons {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
.side_menu_v1 .social-icons ul li {
  display: block;
  margin-bottom: 10px;
}
.side_menu_v1 .button_box {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.side_menu_v1 .button_box a {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--color-set-one-bor-1);
  border-radius: 5px;
  padding: 30px 10px 30px;
  color: var(--heading-color-one);
  font-weight: 700;
  font-size: 16px;
}
.side_menu_v1 .button_box a span {
  padding-top: 5px;
  display: block;
}

.sdmenu_overlay {
  background: var(--color-set-one-3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  opacity: 0.5;
  transform: translateY(-100%);
  transform-origin: bottom center;
  transition: transform 200ms ease 200ms, visibility 200ms ease 200ms;
  visibility: hidden;
}

.menu_open_sidely {
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  width: 100%;
  padding: 40px 0px;
  height: 100%;
  right: 0%;
  transform: translateY(-100%);
  background: var(--color-set-one-2);
  z-index: 9999999;
  transition: 0.8s ease-in-out;
  -ms-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
}
.menu_open_sidely .border_line {
  position: absolute;
  top: 0px;
  right: 0;
  left: -30%;
  width: 1px;
  margin: auto;
  height: 100%;
  background: var(--color-white);
  opacity: 0.1;
}
.menu_open_sidely .navbar-brand {
  position: relative;
  margin-bottom: 40px;
  display: block;
}
.menu_open_sidely .side_navbar_togglers_close {
  position: absolute;
  right: 0;
  top: -40px;
  width: 50px;
  height: 50px;
  background: var(--color-set-one-1);
  color: var(--color-white);
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: 0.8s ease-in-out;
  -ms-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
}
.menu_open_sidely .side_navbar_togglers_close:hover {
  top: -35px;
  right: 5px;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.menu_open_sidely .navbar_content .navbar_nav > .menu-item {
  display: block;
  padding: 15px 0px;
  margin: 0px;
}
.menu_open_sidely .navbar_content .navbar_nav > .menu-item > a.nav_link {
  color: var(--color-white);
  font-size: 20px;
}
.menu_open_sidely .form_box {
  position: relative;
}
.menu_open_sidely .form_box h2, .menu_open_sidely .form_box label, .menu_open_sidely .form_box p {
  color: var(--color-white);
}
.menu_open_sidely .form_box p {
  margin-bottom: 20px;
}
.menu_open_sidely .form_box .social-icons li {
  padding: 0px 10px 0px 0px;
}
.menu_open_sidely .form_box .contact_form_shortcode {
  position: relative;
  margin-bottom: 50px;
}
.menu_open_sidely .form_box input[type=submit]:hover, .menu_open_sidely .form_box button[type=submit]:hover {
  border-color: var(--color-set-one-1);
  background: transparent;
  color: var(--color-set-one-1);
}

.opne_side_menu_v1 .side_menu_v1 {
  transform: translateY(-110%);
}
.opne_side_menu_v1 .menu_open_sidely {
  transform: translateY(0);
}
.opne_side_menu_v1 .sdmenu_overlay {
  transform: translateY(0%);
  visibility: visible;
  transition: transform 200ms ease 0ms, visibility 200ms ease 0ms;
}

@media (min-width: 1200px) {
  .menu_open_sidely .navbar_nav {
    position: relative;
  }
  .menu_open_sidely .navbar_nav > .menu-item {
    min-width: 250px;
  }
  .menu_open_sidely .navbar_nav > .menu-item > .dropdown-btn {
    float: right;
    right: 5px;
    top: 2px;
    transform: rotate(-90deg);
  }
  .menu_open_sidely .navbar_nav > .menu-item > .dropdown-btn .fa-angle-down {
    color: #fff;
  }
  .menu_open_sidely .navbar_nav .menu-item .sub-menu {
    left: 100%;
    top: 0;
    border-radius: 5px;
    right: unset !important;
    left: 100% !important;
  }
  .menu_open_sidely .navbar_nav .menu-item.mega_menu .sub-menu {
    width: 550%;
  }
}
/*---========================================
================media queries================
========================================---*/
@media (max-width: 1490px) {
  .header-area.header-style-1 .top_bar .top_md {
    padding: 0px;
  }
}
@media (max-width: 1200px) {
  .header-area .navbar_nav > .menu-item {
    padding: 5px 0px;
    margin-right: 15px;
  }
  .header-area .navbar_nav > .menu-item a.nav_link {
    font-size: 16px;
  }
  .header-area.header-style-1 .main_header_content {
    padding-bottom: 15px;
  }
  .header-area.header-style-1 .main_header_content .navbar_content {
    justify-content: left;
    text-align: start;
  }
  .header-area.header-style-1 .main_header_content .logo_box {
    margin: 40px 0px 42px;
  }
  .header-area.header-style-1 .main_header_content .logo_box svg {
    height: 183%;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .navbar_togglers {
    display: inline-block;
  }
  .navbar_content {
    display: none !important;
  }
  .side_menu_v1 {
    display: none;
  }
}
.menu-item a.nav_link {
  position: relative;
}
.menu-item a.nav_link .count-hot-beg {
  position: absolute;
  top: -20px;
  right: 0;
  background: var(--color-set-one-1);
  color: var(--color-white);
  font-family: var(--font-family-main);
  font-weight: 600;
  font-size: 0.7rem;
  line-height: normal;
  border-radius: 30px;
  display: block;
  padding: 2px 8px;
}
.menu-item a.nav_link .count-hot-beg small {
  content: "";
  border: 6px solid var(--color-set-one-1);
  position: absolute;
  right: 6px;
  bottom: -15px;
  border-bottom: 10px solid transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
.menu-item a.nav_link .text-link .box_menu {
  display: inline-block;
  position: relative;
}
.menu-item a.nav_link .text-link em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: var(--content-color-three);
  padding-top: 4px;
}
.menu-item.nioland_menu_image a.nav_link .count-hot-beg {
  right: 0px;
}
.menu-item.nioland_menu_icon .icon-link {
  margin-right: 8px;
  display: inline-block;
  min-width: 30px;
}
.menu-item.nioland_menu_icon .icon-link i {
  font-size: 1.5rem;
  display: block;
  line-height: 2rem;
}

.sticky_header_area {
  position: fixed;
  left: 0;
  z-index: 998;
  width: 100%;
  top: -200px;
  opacity: 0;
  transition: 0.6s top, 0.6s opacity;
  background: var(--background-white);
}
.sticky_header_area.fixed-header {
  top: 0;
  opacity: 1;
  z-index: 99901;
  visibility: visible !important;
}

.navbar_nav {
  padding: unset !important;
}

@media (min-width: 1200px) {
  .navbar_nav .flex_menu_activate:not(.menu_default) > .sub-menu > li > a {
    border-radius: 0px !important;
    padding: 0px 0px 5px;
    background: unset;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) > .sub-menu > li > a:hover {
    background: unset !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) a:hover {
    color: var(--color-set-one-1) !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) > ul > li {
    padding: 0px !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) > ul > li .dropdown-btn {
    display: none !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) > ul > li > a {
    display: flex !important;
    justify-content: flex-start;
    display: block !important;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    padding: 0px 0px 15px !important;
    border-bottom: 1px solid var(--color-set-one-bor-1);
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) > ul > li > a::after {
    display: none;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) > ul > li .dropdown-btn {
    display: none;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu > li {
    padding: 15px !important;
    display: block !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu > li a {
    margin: 0px;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu .sub-menu {
    display: block !important;
    position: relative !important;
    left: unset !important;
    top: unset !important;
    margin-left: unset !important;
    border: unset !important;
    background: unset !important;
    min-width: unset !important;
    padding: unset !important;
    transform: unset !important;
    -ms-transform: unset !important;
    -moz-transform: unset !important;
    -o-transform: unset !important;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; /* Adjusted duration to 0.2s for smoother transition */
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    -moz-transition: opacity 0.2s ease, visibility 0.2s ease, -moz-transform 0.2s ease;
    -o-transition: opacity 0.2s ease, visibility 0.2s ease, -o-transform 0.2s ease;
    opacity: unset !important;
    visibility: unset !important;
    border-radius: unset !important;
    z-index: unset !important;
    box-shadow: unset !important;
    right: unset;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu .sub-menu li {
    padding: 0px !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu .sub-menu li a {
    text-transform: unset;
    border-bottom: 0px;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).dropdwon_right > .sub-menu {
    left: unset;
    right: 0px;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_five_column.menu_alignleft, .navbar_nav .flex_menu_activate:not(.menu_default).menu_five_column.menu_alignright, .navbar_nav .flex_menu_activate:not(.menu_default).menu_four_column.menu_alignleft, .navbar_nav .flex_menu_activate:not(.menu_default).menu_four_column.menu_alignright {
    position: static !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_five_column.menu_alignleft > .sub-menu, .navbar_nav .flex_menu_activate:not(.menu_default).menu_five_column.menu_alignright > .sub-menu, .navbar_nav .flex_menu_activate:not(.menu_default).menu_four_column.menu_alignleft > .sub-menu, .navbar_nav .flex_menu_activate:not(.menu_default).menu_four_column.menu_alignright > .sub-menu {
    left: 0% !important;
    right: 0 !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_two_column {
    position: relative !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_two_column > .sub-menu > li {
    width: 43% !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_two_column.menu_alignleft:not(menu_fullwidth) > .sub-menu {
    min-width: 600px;
    left: calc(0% - 150px);
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_two_column.menu_alignright:not(menu_fullwidth) > .sub-menu {
    min-width: 600px;
    left: unset !important;
    right: calc(0% - 150px);
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_three_column {
    position: relative !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_three_column > .sub-menu > li {
    width: 30.33% !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_three_column.menu_alignleft:not(menu_fullwidth) > .sub-menu {
    min-width: 800px;
    left: calc(0% - 150px);
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_three_column.menu_alignright:not(menu_fullwidth) > .sub-menu {
    min-width: 800px;
    left: unset !important;
    right: calc(0% - 150px);
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_four_column:not(.menu_fullwidth) {
    position: static !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_four_column > .sub-menu > li {
    width: 22% !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_five_column:not(.menu_fullwidth) {
    position: static !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_five_column > .sub-menu > li {
    width: 17% !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_six_column:not(.menu_fullwidth) {
    position: static !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_six_column > .sub-menu > li {
    width: 14% !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_seven_column:not(.menu_fullwidth) {
    position: static !important;
  }
  .navbar_nav .flex_menu_activate:not(.menu_default).menu_seven_column > .sub-menu > li {
    width: 12% !important;
  }
}
.navbar_nav > .menu-item.nioland_menu_icon > .nav_link > .icon-link {
  min-width: 18px;
}
.navbar_nav > .menu-item.nioland_menu_icon > .nav_link > .icon-link i {
  font-size: 18px;
}

.single-header.elementor-editor-active {
  background: var(--heading-color-one);
}

@media (min-width: 1200px) {
  html body .navbar_nav .menu-item.desk_none > a {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  html body .navbar_nav .menu-item.mob_none > a {
    display: none !important;
  }
}
.header {
  position: relative;
}
.header.style_one .header_top .top_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  background: var(--color-set-one-bg-1);
  padding: 10px 30px;
  border-radius: 0 0px 20px 20px;
}
.header.style_one .header_top .common_css {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header.style_one .header_top .common_css .content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header.style_one .header_top .common_css .content .text {
  color: var(--color-white);
  font-family: var(--font-family-main);
}
.header.style_one .header_top .common_css .content .text small {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
}
.header.style_one .header_top .common_css .content .text span, .header.style_one .header_top .common_css .content .text a {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
}
.header.style_one .header_top .common_css .content i {
  color: var(--color-set-one-2);
}
.header.style_one .header_top .common_css .content:after {
  position: absolute;
  content: "";
  right: -1.7rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-radius: 8px;
  background: var(--content-color-three);
}
.header.style_one .header_top .common_css .content:last-child::after {
  display: none;
}
.header.style_one .header_top .common_css .content.media {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header.style_one .header_top .common_css .content.media a i {
  font-size: 16px;
  color: var(--content-color-three);
}
.header.style_one .header_top .common_css .content .text_btn small {
  color: var(--content-color-light-one);
}
.header.style_one .header_main .inner_box, .header.style_one .header_main .lft_content, .header.style_one .header_main .rgt_content, .header.style_one .header_main .right_content {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header.style_one .header_main .theme_btn {
  padding: 10px 25px;
}
.header.style_one .header_main .lft_content {
  gap: 5px;
}
.header.style_one .header_main .right_content {
  gap: 1.3rem;
  padding: 10px 0px;
}
.header.style_one .header_main .search-toggler, .header.style_one .header_main .site-header__sidemenu-nav {
  display: flex;
  align-items: center;
}
.header.style_one .header_main .search-toggler i, .header.style_one .header_main .site-header__sidemenu-nav i {
  font-size: 30px;
  color: var(--heading-color-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.header.style_one .header_main .search-toggler i:hover, .header.style_one .header_main .site-header__sidemenu-nav i:hover {
  color: var(--color-set-one-1);
}
.header.style_one .header_main .search-toggler i {
  font-size: 20px;
}
.header.style_one .header_main .menu_area .navbar_nav > .menu-item > a.nav_link {
  color: var(--heading-color-one);
}
.header.style_one .header_main .language_content {
  position: relative;
}
.header.style_one .header_main .language_content .title {
  display: flex;
  gap: 0.5rem;
  color: var(--heading-color-one);
  font-weight: 600;
  font-family: var(--font-family-main);
  align-items: center;
  padding: 29px 0px;
}
.header.style_one .header_main .language_content .dropdown_menu {
  position: absolute;
  left: 0px;
  top: 100%;
  margin-left: 0px;
  background: var(--background-white);
  min-width: 160px;
  padding: 0;
  transform: scale(1, 0);
  transform-origin: 0 0;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease, transform 400ms ease;
  -webkit-transition: opacity 200ms ease, visibility 200ms ease, -webkit-transform 400ms ease;
  -moz-transition: opacity 200ms ease, visibility 200ms ease, -moz-transform 400ms ease;
  -o-transition: opacity 200ms ease, visibility 200ms ease, -o-transform 400ms ease;
  box-shadow: var(--box-shadow);
}
.header.style_one .header_main .language_content .dropdown_menu li {
  list-style-type: none;
  margin: 0px;
}
.header.style_one .header_main .language_content .dropdown_menu li a {
  font-size: 16px;
  display: block;
  padding: 5px 15px;
  font-weight: 600;
  color: var(--heading-color-one);
  border-bottom: 1px solid var(--color-set-one-bor-1);
}
.header.style_one .header_main .language_content .dropdown_menu li:last-child a {
  border-bottom-color: transparent !important;
}
.header.style_one .header_main .language_content:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease; /* Increased duration to 0.4s for a slightly slower transition */
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -moz-transition: opacity 0.4s ease, visibility 0.4s ease, -moz-transform 0.4s ease;
  -o-transition: opacity 0.4s ease, visibility 0.4s ease, -o-transform 0.4s ease;
}
.header.style_one .header_main.white .search-toggler i, .header.style_one .header_main.white .site-header__sidemenu-nav i {
  color: var(--color-white);
}
.header.style_one .header_main.white .menu_area .navbar_nav > .menu-item > a.nav_link {
  color: var(--color-white);
}
.header.style_one .header_main.white .menu_area .navbar_nav > .menu-item > a.nav_link:hover {
  color: var(--color-set-one-2);
}
.header.style_one .header_main.white .language_content .title {
  color: var(--color-white);
}
.header.style_one .header_main.white .language_content .title i {
  color: var(--color-set-one-2);
}

@media (min-width: 1200px) {
  .header.style_one .container-fluid {
    padding: 0px 65px;
  }
}
@media (max-width: 992px) {
  .header.style_one .container-fluid {
    padding: 0px 15px;
  }
  .header.style_one .header_top .top_inner {
    flex-direction: column;
    justify-content: center;
  }
  .header.style_one .header_main .right_content .contact_btn {
    display: none;
  }
}
@media (max-width: 992px) {
  .header.style_one .header_top .left_side.common_css {
    display: none;
  }
  .header.style_one .header_main .lft_content, .header.style_one .header_main .right_content {
    gap: 1.2rem;
  }
}
@media (min-width: 1100px) {
  .header.style_one .header_main .lft_content {
    gap: 3rem;
  }
}
.language_shortcode {
  position: relative;
}
.language_shortcode .gt_float_switcher .gt-selected {
  background: transparent !important;
}
.language_shortcode .gt-current-lang {
  display: flex;
  align-items: center;
}
.language_shortcode .gt_float_switcher-arrow {
  background-image: unset !important;
  transform: unset !important;
  background-size: unset !important;
  height: unset !important;
}
.language_shortcode .gt_float_switcher-arrow::before {
  position: relative;
  content: "\e97f";
  font-family: "risehand";
  top: 2px;
  right: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  bottom: 0;
}
.language_shortcode .gt_float_switcher {
  font-family: var(--font-family-main) !important;
  background: unset !important;
  box-shadow: unset !important;
  display: flex !important;
  font-size: 17px !important;
  line-height: normal !important;
  text-transform: capitalize !important;
  color: var(--menu-color) !important;
}
.language_shortcode .gt_float_switcher img {
  width: 18px !important;
  position: relative;
  top: 2px;
}
.language_shortcode .gt_float_switcher .gt_options {
  min-width: 240px;
  position: absolute !important;
  top: 100%;
  box-shadow: var(--box-shadow-three);
}
.language_shortcode .gt_float_switcher .gt_options a {
  font-size: 16px;
  font-family: var(--font-family-main) !important;
  font-weight: 600;
  color: var(--menu-color);
  border-bottom: 1px solid var(--color-set-one-bor-1);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.language_shortcode .gt_float_switcher .gt_options a:hover {
  color: var(--menu-color);
  background: var(--background-white) !important;
  box-shadow: var(--box-shadow-three);
}

.gt_options {
  background: var(--background-white);
}

.gt_float_switcher .gt_options::-webkit-scrollbar-thumb {
  background-color: var(--color-set-one-1) !important;
}

.header_main .lft_content .language_shortcode, .header_main .lft_content .language_content {
  display: none;
}

@media (max-width: 992px) {
  .header_main {
    padding: 10px 0px;
  }
}
@media (max-width: 769px) {
  .header_main {
    padding: 18px 0px 10px;
  }
  .header_main .lft_content {
    min-width: 100%;
    justify-content: center !important;
  }
  .header.style_one .header_main .language_content .title {
    padding: unset;
  }
  .header.style_one .header_main .inner_box, .header.style_one .header_main .lft_content, .header.style_one .header_main .rgt_content, .header.style_one .header_main .right_content {
    gap: 0.8rem;
  }
}
@media (min-width: 769px) {
  .d_block_in_small {
    display: none;
  }
  .header_main .lft_content .language_shortcode, .header_main .lft_content .language_content {
    display: block;
  }
}
.risehand_menu_icon .icon-link {
  padding-right: 5px;
}

body .position-absolute {
  position: absolute;
}

.w-100 {
  width: 100%;
}

.header_area .vc_row.vc_row-flex > .vc_column_container {
  position: unset;
}

@media (max-width: 769px) {
  .languare_disabled .container-fluid, .languare_disabled .large-container, .languare_disabled .auto-container, .languare_disabled .medium-container, .languare_disabled .container {
    padding: 0px 0px !important;
  }
  .languare_disabled .header_main .inner_box {
    flex-wrap: unset !important;
  }
  .languare_disabled .header_main .inner_box .lft_content {
    min-width: inherit;
    justify-content: center !important;
  }
}
@media (min-width: 1200px) {
  .navbar_nav > li.mega_menu > .sub-menu, .navbar_nav > li.flex_menu_activate.menu_fullwidth > .sub-menu {
    display: none !important;
  }
  .navbar_nav > li.mega_menu > .submenu-visible {
    display: unset !important;
  }
  .navbar_nav > li.flex_menu_activate.menu_fullwidth > .submenu-visible {
    display: flex !important;
  }
}
/*===========================================================================
                                mobile_menu_box Css
===========================================================================*/
/*
    1) --> mobile_menu_box
*/
.mobile_menu_box {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 999999;
  visibility: hidden;
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
}
.mobile_menu_box .close-btn {
  position: relative;
  margin-bottom: 45px;
}
.mobile_menu_box .close-btn i.close {
  display: inline-block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 22px;
  color: var(--color-white);
  background: var(--color-set-one-2);
  border-radius: 40px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.mobile_menu_box .close-btn i.close::before {
  line-height: 40px;
}
.mobile_menu_box .close-btn i.close:hover {
  background: var(--color-set-one-1);
}
.mobile_menu_box .menu-backdrop {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  background: var(--color-set-one-3);
  opacity: 0.3;
  cursor: pointer;
}
.mobile_menu_box .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 91%;
  min-height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--color-white);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
  border-radius: 0px;
  padding: 20px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav {
  margin: 0px;
  padding: 0px;
  display: block;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  line-height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--menu-color);
  font-family: var(--font-family-main);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  padding: 10px;
  border-radius: 0.5rem;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a:hover {
  color: var(--color-set-one-1);
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a .count-hot-beg {
  top: unset;
  right: unset;
  position: relative;
  display: inline-block !important;
  margin-left: 5px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a .count-hot-beg small {
  display: none;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a .text-link {
  position: relative;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a .text-link .mbadge {
  position: absolute;
  top: -15px;
  right: 2px;
  display: inline-block;
  background: var(--color-set-one-1);
  color: var(--color-white);
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  border-radius: 5px;
  padding: 0px 8px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li a .text-link .mbadge:before {
  position: absolute;
  content: "";
  border-left: 5px solid var(--color-set-one-1);
  bottom: -5px;
  left: 0;
  height: 5px;
  width: 5px;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.current-menu-item > a {
  color: var(--color-set-one-1);
}
.mobile_menu_box .navigation_menu ul.navbar_nav li > .sub-menu {
  padding-left: 10px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li {
  position: relative !important;
  display: block;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--color-set-one-bor-1);
  margin: 0px;
  text-align: left;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li > a {
  display: flex;
  font-weight: 600;
  color: var(--heading-color-one);
  align-items: center;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .dropdown-btn {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  right: 10px;
  top: 17px;
  line-height: 30px;
  border: 1px solid var(--color-set-one-bor-1);
  z-index: 999999;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .dropdown-btn .fi-rr-angle-down {
  font-size: 14px;
  position: relative;
  top: 2px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .dropdown-btn small {
  display: none;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .dropdown-btn:hover {
  border-color: var(--color-set-one-1);
  background: var(--color-set-one-1);
  color: var(--color-white);
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li div.dropdown-btn {
  display: none;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li ul {
  padding-left: 5px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li ul li {
  list-style: none;
  margin-top: 0px;
  margin-bottom: 0px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li ul li a {
  display: flex;
  align-items: center;
  color: var(--heading-color-one);
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li {
  padding: 5px 0px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_two {
  display: block;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_two .img-link {
  min-width: unset;
  margin-right: unset;
  margin-bottom: 7px;
  display: block;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_two .img-link img {
  width: 100%;
  height: auto;
  display: block;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three {
  display: block !important;
  padding: 0px;
  background: unset !important;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three:hover {
  background: unset;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three .img-link {
  margin-right: unset;
  margin-bottom: 8px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three .img-link img {
  display: block;
  width: 100%;
  height: auto;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three .text-link {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  right: 0;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three .text-link .box_menu {
  display: block;
  padding: 0.3rem 1rem;
  font-family: var(--font-family-main);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2rem;
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 0.5rem;
  background-color: var(--color-set-one-4);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li .sub-menu li a.menu_img_style_three .text-link .box_menu:hover {
  background-color: var(--color-set-one-2);
  color: var(--color-white);
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li.active > a, .mobile_menu_box .navigation_menu ul.navbar_nav > li:hover > a {
  color: var(--color-set-one-1);
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li.active > .dropdown-btn {
  border-color: var(--color-set-one-1);
  background: var(--color-set-one-1);
  color: var(--color-white);
}
.mobile_menu_box .navigation_menu ul.navbar_nav > li:last-child {
  border-bottom: 0px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li .sub-menu li .dropdown-btn {
  top: 13px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.nioland_menu_image .nav_link {
  position: relative;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.nioland_menu_image .nav_link .img-link {
  min-width: 35px;
  margin-right: 8px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.nioland_menu_image .nav_link .img-link img {
  width: 30px;
  height: auto;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.nioland_menu_image > .dropdown-btn {
  top: 21px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.nioland_menu_icon .nav_link .icon-link {
  min-width: 35px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.nioland_menu_icon > .dropdown-btn {
  top: 21px;
}
.mobile_menu_box .navigation_menu ul.navbar_nav li.yes_desc.nioland_menu_image > .dropdown-btn, .mobile_menu_box .navigation_menu ul.navbar_nav li.yes_desc.nioland_menu_icon > .dropdown-btn, .mobile_menu_box .navigation_menu ul.navbar_nav li.yes_desc > .dropdown-btn {
  top: 32px;
}
.mobile_menu_box form {
  position: relative;
  margin-bottom: 20px;
}
.mobile_menu_box form .sch_btn {
  position: absolute;
  margin: 0px;
  top: 0;
  right: 0;
  height: 100%;
}
.mobile_menu_box .mobile-header-info-wrap {
  position: relative;
  padding-top: 25px;
  margin-top: 10px;
  border-top: 1px solid var(--color-set-one-bor-1);
}
.mobile_menu_box .mobile-header-info-wrap .single-mobile-header-info {
  position: relative;
  margin-bottom: 10px;
}
.mobile_menu_box .mobile-header-info-wrap .single-mobile-header-info a.cnt {
  display: block;
  font-size: 17px;
  line-height: 18px;
  color: var(--heading-color-one);
  font-weight: 500;
}
.mobile_menu_box .mobile-header-info-wrap .single-mobile-header-info a.cnt i {
  margin-right: 6px;
}
.mobile_menu_box .mobile-header-info-wrap .single-mobile-header-info a.theme_btn {
  width: 100%;
}
.mobile_menu_box .mobile-header-info-wrap .cont_over {
  margin-bottom: 25px;
}
.mobile_menu_box .social-icons {
  position: relative;
  padding-top: 15px;
}
.mobile_menu_box .social-icons li {
  padding: 0px;
}

body:not(.rtl) .mobile_menu_box {
  transform: translateX(-100%);
}

body.mobile_menu_box-visible .mobile_menu_box, body.mobile_menu_box-visible .menu-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
}

@media (max-width: 650px) {
  .option_panel-popup .option_boxed {
    width: 100%;
    padding: 50px 25px;
  }
}
.theme_btn, button, input[type=submit], .give-btn, .category_showcase a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  font-family: var(--font-family-main);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  transition: var(--transition);
  color: var(--color-white);
  text-align: center;
  border: 1px solid var(--color-set-one-1);
  background: var(--color-set-one-1);
  justify-content: center;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  cursor: pointer;
}
.theme_btn i, button i, input[type=submit] i, .give-btn i, .category_showcase a i {
  display: inline-block;
  position: relative;
  top: 0px;
  font-size: 24px;
}
.theme_btn svg, button svg, input[type=submit] svg, .give-btn svg, .category_showcase a svg {
  position: relative;
  height: 20px;
  width: auto;
  display: inline-block;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.theme_btn svg path, button svg path, input[type=submit] svg path, .give-btn svg path, .category_showcase a svg path {
  fill: var(--color-white);
}
.theme_btn:hover, button:hover, input[type=submit]:hover, .give-btn:hover, .category_showcase a:hover {
  background: var(--color-set-one-2);
  border-color: var(--color-set-one-2);
  color: var(--color-white);
}
.theme_btn:hover svg path, button:hover svg path, input[type=submit]:hover svg path, .give-btn:hover svg path, .category_showcase a:hover svg path {
  fill: var(--color-white);
}
.theme_btn.two, button.two, input[type=submit].two, .give-btn.two, .category_showcase a.two {
  color: var(--color-white);
  border: 1px solid var(--color-set-one-2);
  background: var(--color-set-one-2);
}
.theme_btn.two:hover, button.two:hover, input[type=submit].two:hover, .give-btn.two:hover, .category_showcase a.two:hover {
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
}
.theme_btn.three, button.three, input[type=submit].three, .give-btn.three, .category_showcase a.three {
  color: var(--color-white);
  border: 1px solid var(--color-set-one-3);
  background: var(--color-set-one-3);
}
.theme_btn.three:hover, button.three:hover, input[type=submit].three:hover, .give-btn.three:hover, .category_showcase a.three:hover {
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
}

.give-btn::after {
  position: relative;
  content: "\e985";
  font-family: "risehand";
  font-size: 20px;
  height: 20px;
  line-height: normal;
  margin-left: 5px;
}

.give-donation-levels-wrap button.give-donation-level-btn:after {
  display: none;
}

.text_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-set-one-1);
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.text_btn i {
  display: inline-block;
  position: relative;
  top: 0px;
  font-size: 18px;
  height: 18px;
  color: var(--color-set-one-1);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.text_btn > span i, .text_btn .icon i {
  display: inline-block;
  position: relative;
  font-size: 16px;
  transition: var(--transition);
  -webkit-transition: var(--transition);
}
.text_btn > span svg, .text_btn .icon svg {
  position: relative;
  height: 18px;
  display: inline-block;
}
.text_btn > span svg path, .text_btn .icon svg path {
  fill: var(--color-set-one-2);
}
.text_btn small {
  position: relative;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.text_btn small:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  right: 0px;
  bottom: -1px;
  border-radius: 5px;
  transition: all 500ms ease;
  background: var(--color-set-one-1);
}
.text_btn:hover {
  color: var(--color-set-one-1);
}
.text_btn:hover small:before {
  width: 100%;
  left: 0px;
}

@media (min-width: 1200px) {
  .theme_btn, button {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .text_btn small {
    font-size: 17px;
  }
}
.give-form-grid-content > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  border-radius: 5px;
  font-family: var(--font-family-main);
  font-weight: 700;
  font-size: 18px !important;
  line-height: normal;
  transition: var(--transition);
  color: var(--color-white);
  text-align: center;
  border: 1px solid var(--color-set-one-1) !important;
  background: var(--color-set-one-1) !important;
  justify-content: center;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  text-decoration: unset !important;
}
.give-form-grid-content > button span {
  color: var(--color-white) !important;
}
.give-form-grid-content > button:hover {
  background: var(--color-set-one-2) !important;
  border-color: var(--color-set-one-2) !important;
  color: var(--color-white);
}
.give-form-grid-content > button:hover svg path {
  fill: var(--color-white);
}
.give-form-grid-content > button:hover span {
  color: var(--color-white) !important;
}

.give-form-grid-progress {
  background: var(--color-set-one-bg-l-3);
}
.give-form-grid-progress .form-grid-raised {
  background: unset !important;
}

.give-form-grid-progress-bar .give-progress-bar {
  background: rgba(var(--color-set-one-3-rgba), 0.02) !important;
  box-shadow: unset !important;
}

.give-form-grid-progress-bar .give-progress-bar > span {
  background: var(--color-set-one-1);
}

.give-wrap .give-card:active, .give-wrap .give-card:focus, .give-wrap .give-card:hover, .give-wrap .give-card:visited {
  box-shadow: var(--box-shadow);
}

@keyframes zoomInOut {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1); /* Adjust the scale factor as needed for the desired zoom-in effect. */
  }
  100% {
    transform: scale(0.9);
  }
}
.zoomInOut {
  animation: zoomInOut 2s infinite; /* Adjust the duration and animation properties as needed. */
}

.img_obj_fit_center img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.mask_image {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  mask-position: center center;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  margin: auto;
}

.mask_image_size_contain {
  mask-size: contain;
  -webkit-mask-size: contain;
}

.video_box {
  position: relative;
  z-index: 99;
  display: inline-block;
}
.video_box svg {
  position: relative;
}
.video_box svg path {
  fill: var(--color-white);
}
.video_box i {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 34px;
  bottom: 0;
  left: 0;
  z-index: 9;
  color: var(--color-set-one-1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video_box_two {
  position: relative;
}
.video_box_two a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.video_box_two .icon {
  width: 55px;
  height: 55px;
  border-radius: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--background-white);
  box-shadow: var(--box-shadow);
}
.video_box_two .icon i {
  font-size: 30px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: var(--color-set-one-1);
}
.video_box_two .text {
  text-decoration: underline;
}

.client_logo {
  position: relative;
}
.client_logo .brand_iamge {
  margin: auto;
  height: auto;
}

.mc4wp-form-fields {
  align-items: center;
  position: relative;
}
.mc4wp-form-fields input[type=email] {
  background: var(--background-white);
  border-color: var(--color-set-one-bor-1);
  padding: 5px 20px 5px 50px;
  height: 60px;
}
.mc4wp-form-fields::before {
  position: absolute;
  content: "\f120";
  font-size: 20px;
  font-family: "risehand";
  left: 20px;
  color: var(--color-set-one-1);
}
.mc4wp-form-fields input[type=submit] {
  border-radius: 0px;
  height: 60px;
  min-width: 100px;
  font-size: 16px;
}

@keyframes rotate-animation {
  0% {
    transform: rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(360deg);
    opacity: 1;
  }
}
.social-icons {
  position: relative;
  text-align: left;
}
.social-icons ul {
  margin: 0px;
  padding: 0px;
}
.social-icons ul li {
  position: relative;
  display: inline-block;
  margin: 0px;
  padding: 0px 5px;
}
.social-icons ul li .m_icon {
  background: var(--color-set-one-2);
  border: 1px solid var(--color-set-one-2);
  width: 45px;
  height: 45px;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.social-icons ul li .m_icon:hover {
  background: var(--color-set-one-1);
  border: 1px solid var(--color-set-one-1);
  color: var(--color-white);
}
.social-icons ul li .m_icon svg {
  height: 18px;
}
.social-icons ul li .m_icon svg path {
  fill: var(--color-white);
}
.social-icons ul li small {
  position: absolute;
  background: var(--color-set-one-2);
  color: var(--color-white);
  display: block;
  right: 0;
  border-radius: 6px;
  top: -36px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 26px;
  margin-bottom: 15px;
  pointer-events: none;
  width: 120px;
  left: -32px;
  opacity: 0;
}
.social-icons ul li small::before {
  position: absolute;
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 10px;
  content: "";
  border-top: 10px solid var(--color-set-one-2);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.social-icons ul li:hover small {
  opacity: 1;
  pointer-events: auto;
}
.social-icons ul li:hover .m_icon {
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
  color: var(--color-white);
}
.social-icons ul li:hover .m_icon svg {
  height: 18px;
}
.social-icons ul li:hover .m_icon svg path {
  fill: var(--color-white);
}
.social-icons.single-share {
  margin-bottom: 30px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.social-icons.single-share h6 {
  margin: 0px 20px 0px 0px;
}

.blog_post_section.excerpt_enable .des_cription, .service_post_section.excerpt_enable .des_cription {
  display: none !important;
}
.blog_post_section.comment_enable .comments, .service_post_section.comment_enable .comments {
  display: none !important;
}
.blog_post_section.dte_enable .date_tm, .service_post_section.dte_enable .date_tm {
  display: none !important;
}

.swiper-slide .donation_box_one, .swiper-slide .donation_box_two {
  margin: 15px;
}

.give_forms_section .desc_p {
  display: none !important;
}
.give_forms_section .catdo {
  display: none !important;
}
.give_forms_section.excerpt_enable .desc_p {
  display: block !important;
}
.give_forms_section.cat_enable .catdo {
  display: block !important;
}

.list_items_box {
  position: relative;
}
.list_items_box:not(.ul_dots), .list_items_box.inline_type {
  padding: 0 !important;
  margin: 0 !important;
}
.list_items_box.inline_type {
  display: flex;
}
.list_items_box li:last-child {
  margin: 0px;
}
.list_items_box li .l_box {
  gap: 1rem;
}
.list_items_box li.numbers {
  list-style: decimal;
}
.list_items_box li .title_no_a_20, .list_items_box li .title_no_a_20 a {
  font-family: var(--font-family-text);
  font-weight: 600;
}
.list_items_box li .title_20, .list_items_box li .title_20 a {
  font-weight: 600;
}
.list_items_box li.icons {
  list-style: none;
}
.list_items_box li.icons .icon_box {
  height: 24px;
}
.list_items_box li.icons img {
  width: auto;
  height: 20px;
}
.list_items_box li.icons i, .list_items_box li.icons span {
  color: var(--color-set-one-1);
  font-size: 24px;
}
.list_items_box.white_color li .title_no_a_20, .list_items_box.white_color li .title_20 a {
  color: var(--color-white);
}
.list_items_box.light_color li .title_no_a_20, .list_items_box.light_color li .title_20 a {
  color: rgba(var(--color-light-rgba), 0.6);
}
.list_items_box.inline_type li {
  display: inline-block;
  margin: 0px;
}

.project_filter {
  padding: 0px 15px !important;
}

.previouse_next_post {
  position: relative; /* Safari */
  display: -moz-flex; /* Firefox */ /* IE 10 */ /* Older WebKit browsers */
  display: flex; /* Standard syntax */
  padding: 40px 40px 30px;
  align-items: center;
}
.previouse_next_post .nav_post {
  position: relative;
  min-width: 50%;
  width: 50%;
}
.previouse_next_post .nav_post .title_no_a_22 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 8px;
}
.previouse_next_post .nav_post .linked_prev_next { /* Safari */
  display: -moz-flex; /* Firefox */ /* IE 10 */ /* Older WebKit browsers */
  display: flex; /* Standard syntax */
  align-items: center;
  padding-right: 15px;
}
.previouse_next_post .nav_post .image {
  width: 90px;
  height: 90px;
  overflow: hidden;
  margin-right: 15px;
  min-width: 90px;
}
.previouse_next_post .nav_post .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.previouse_next_post .nav_post .text {
  position: relative;
}
.previouse_next_post .nav_post .text .down_content {
  position: relative;
  height: 35px;
  min-width: 225px;
  overflow: hidden;
}
.previouse_next_post .nav_post .text .down_content span,
.previouse_next_post .nav_post .text .down_content small {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 18px;
  line-height: 34px;
  color: var(--color-set-one-2);
  left: 0;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.previouse_next_post .nav_post .text .down_content span i,
.previouse_next_post .nav_post .text .down_content small i {
  font-size: 20px;
  position: relative;
  top: 2px;
}
.previouse_next_post .nav_post .text .down_content small {
  transform: translateY(40px);
}
.previouse_next_post .nav_post .text .down_content small i {
  margin-right: 5px;
  font-size: 20px;
  display: inline-block;
}
.previouse_next_post .nav_post.next_post .linked_prev_next {
  justify-content: end;
  text-align: right;
  padding-left: 15px;
  padding-right: 0px;
}
.previouse_next_post .nav_post.next_post .image {
  margin-left: 15px;
  margin-right: unset;
}
.previouse_next_post .nav_post.next_post .text .down_content span,
.previouse_next_post .nav_post.next_post .text .down_content small {
  left: unset;
  right: 0;
}
.previouse_next_post .nav_post.next_post .text .down_content small i {
  margin-right: 0px;
  margin-left: 5px;
}
.previouse_next_post .nav_post:hover .text .down_content span {
  transform: translateY(-40px);
}
.previouse_next_post .nav_post:hover .text .down_content small {
  transform: translateY(0px);
}
.previouse_next_post.only_prev {
  justify-content: flex-start;
}
.previouse_next_post.only_next {
  justify-content: flex-end;
}
.previouse_next_post.only_prev.only_next {
  justify-content: space-between;
}

.single-portfolio .previouse_next_post, .single-volunteer .previouse_next_post, .single-service .previouse_next_post {
  margin: 40px 0px;
  padding: 40px 40px 35px;
  border: 1px solid var(--color-set-one-bor-1);
}
.single-portfolio .single-share, .single-volunteer .single-share, .single-service .single-share {
  margin: 40px 0px;
  border-top: 1px solid var(--color-set-one-bor-1);
  padding: 40px 0px 0;
  justify-content: center;
}
.single-portfolio .single-share li .m_icon, .single-volunteer .single-share li .m_icon, .single-service .single-share li .m_icon {
  padding: 0px !important;
}

.related_post {
  margin: 20px 0px 0;
  padding-bottom: 50px;
}
.related_post .title_no_a_36 {
  margin: 0 0 25px;
}
.related_post .common_arrow .next, .related_post .common_arrow .prev {
  width: 45px;
  line-height: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
}

.has_comment .related_post {
  padding-bottom: 0px;
}

.single-service .related_post {
  margin: 20px -15px 0px;
}
.single-service .related_post .title_no_a_36 {
  margin: 0 15px 15px;
}
.single-service .related_post .service-style_1 {
  margin: 15px;
  box-shadow: 0px 5px 22px 0px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  html body .blog_single_details_outer .social-icons.single-share, html body.single-portfolio .social-icons.single-share, html body.single-service .social-icons.single-share, html body.single-volunteer .social-icons.single-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  html body .blog_single_details_outer .social-icons.single-share ul, html body.single-portfolio .social-icons.single-share ul, html body.single-service .social-icons.single-share ul, html body.single-volunteer .social-icons.single-share ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  html body .blog_single_details_outer .social-icons.single-share li, html body.single-portfolio .social-icons.single-share li, html body.single-service .social-icons.single-share li, html body.single-volunteer .social-icons.single-share li {
    padding: 0px;
    padding-bottom: 5px;
  }
  html body .blog_single_details_outer .same_authour, html body.single-portfolio .same_authour, html body.single-service .same_authour, html body.single-volunteer .same_authour {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    padding: 0px 0 40px;
  }
  html body .blog_single_details_outer .same_authour .content, html body.single-portfolio .same_authour .content, html body.single-service .same_authour .content, html body.single-volunteer .same_authour .content {
    padding-left: unset;
  }
  html body .blog_single_details_outer .same_authour .content .authour-share, html body.single-portfolio .same_authour .content .authour-share, html body.single-service .same_authour .content .authour-share, html body.single-volunteer .same_authour .content .authour-share {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start !important;
  }
  html body .blog_single_details_outer .same_authour .content .authour-share ul, html body.single-portfolio .same_authour .content .authour-share ul, html body.single-service .same_authour .content .authour-share ul, html body.single-volunteer .same_authour .content .authour-share ul {
    padding-left: 0px;
  }
  html body .previouse_next_post {
    flex-direction: column;
    padding: 40px 10px !important;
    gap: 2rem;
  }
  html body .previouse_next_post .nav_post {
    min-width: unset;
    width: unset;
  }
  html body .previouse_next_post .nav_post a {
    padding: 0 !important;
  }
  html body.single-portfolio .previouse_next_post, html body.single-service .previouse_next_post, html body.single-volunteer .previouse_next_post {
    border-left: unset;
    border-right: unset;
  }
}
.donation_progress {
  position: relative;
  margin-top: 1.2rem;
}
.donation_progress .perin {
  position: absolute;
  top: -32px;
}
.donation_progress .perin .percent {
  text-align: right;
  font-size: 18px;
  display: block;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--heading-color-one);
}
.donation_progress .perin .percent::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: var(--background-white);
  border: 3px solid var(--color-set-one-1);
  bottom: -13px;
  right: -11px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.donation_progress .progress {
  height: 5px;
  background: var(--color-set-one-bor-1);
}
.donation_progress .progress .progress-bar {
  background: var(--color-set-one-1);
}

.progress-greater-than-3 .percent {
  margin-right: -22px;
}

.goalsdetails > div {
  position: relative;
  min-width: 30%;
  width: 30%;
}
.goalsdetails > div::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  background: var(--color-set-one-bor-1);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.goalsdetails > div:last-child::before {
  display: none;
}
.goalsdetails .income_received {
  min-width: 40%;
  width: 40%;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
}
.goalsdetails .income_received .incr {
  display: inline-flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
}
.goalsdetails .still_go {
  display: flex;
  flex-direction: column;
  align-items: end;
}

/*===========================================================================
                                Form Css
===========================================================================*/
body {
  position: relative;
  /* Style the browse button icon */
}
body label {
  display: block;
  width: 100%;
  font-weight: 600;
  color: var(--heading-color-one);
}
body input[type=search], body input[type=text], body input[type=email], body input[type=url], body input[type=password], body input[type=tel], body .wp-block-search__input, body select, body textarea {
  background-color: var(--color-white);
  margin: 5px 0px;
  border: 1px solid var(--color-set-one-bor-1);
  display: block;
  width: 100%;
  padding: 0.688rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  height: 60px;
  font-family: var(--font-family-main);
  color: rgba(var(--heading-color-one-rgba), 0.5);
  background-clip: padding-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
body input[type=search]::-moz-placeholder, body input[type=text]::-moz-placeholder, body input[type=email]::-moz-placeholder, body input[type=url]::-moz-placeholder, body input[type=password]::-moz-placeholder, body input[type=tel]::-moz-placeholder, body .wp-block-search__input::-moz-placeholder, body select::-moz-placeholder, body textarea::-moz-placeholder {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(var(--heading-color-one-rgba), 0.5);
  font-family: var(--font-family-main);
}
body input[type=search]::placeholder, body input[type=text]::placeholder, body input[type=email]::placeholder, body input[type=url]::placeholder, body input[type=password]::placeholder, body input[type=tel]::placeholder, body .wp-block-search__input::placeholder, body select::placeholder, body textarea::placeholder {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(var(--heading-color-one-rgba), 0.5);
  font-family: var(--font-family-main);
}
body input[type=search]:hover, body input[type=text]:hover, body input[type=email]:hover, body input[type=url]:hover, body input[type=password]:hover, body input[type=tel]:hover, body .wp-block-search__input:hover, body select:hover, body textarea:hover {
  border-color: var(--color-set-one-1);
}
body input[type=search]:focus, body input[type=text]:focus, body input[type=email]:focus, body input[type=url]:focus, body input[type=password]:focus, body input[type=tel]:focus, body .wp-block-search__input:focus, body select:focus, body textarea:focus {
  box-shadow: unset;
}
body input[type=search]:focus-visible, body input[type=text]:focus-visible, body input[type=email]:focus-visible, body input[type=url]:focus-visible, body input[type=password]:focus-visible, body input[type=tel]:focus-visible, body .wp-block-search__input:focus-visible, body select:focus-visible, body textarea:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
body textarea {
  height: 210px;
  resize: none;
}
body input[type=checkbox], body input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--background-white);
  border: 2px solid var(--color-set-one-bor-1);
  border-radius: 2px;
  box-sizing: border-box;
  font-size: 18px;
  margin: 0 0.4em 0 0 !important;
  min-height: 1em;
  min-width: 1em;
  width: 1em;
  height: 1em;
  overflow: hidden;
  position: static;
  vertical-align: middle;
  display: inline-block !important;
  padding: 0;
}
body input[type=checkbox]:before {
  position: absolute;
  content: "\e92b";
  font-family: "Nioicon";
  font-size: 12px;
  width: 16px;
  text-align: center;
  height: 16px;
  color: var(--color-white);
  line-height: 16px;
  opacity: 0;
  top: 5px;
  left: 1px;
}
body input[type=checkbox]:checked:before {
  opacity: 1;
}
body .select2-container .select2-selection--multiple {
  min-height: unset !important;
  background-color: var(--color-white);
  border: 1px solid var(--color-set-one-bor-1);
  display: block;
  width: 100%;
  padding: 1.1rem 1rem 0.688rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  height: 60px;
  color: var(--heading-color-one);
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
body .select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 0px !important;
  margin: 0px !important;
}
body .select2-container .select2-selection--multiple .select2-selection__rendered input {
  padding: 0px !important;
  margin: 0px !important;
}
body .select2-container .select2-selection--multiple .select2-selection__rendered li {
  padding: 0px !important;
  margin: 0px 6px 0 0px !important;
}
body .select2-container .select2-selection--multiple .select2-selection__choice {
  background: var(--color-set-one-1);
  color: var(--color-white);
  font-size: 14px;
  line-height: normal;
  padding: 3px 5px 6px;
  border-color: var(--color-set-one-1);
}
body .select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: var(--color-white);
  padding: 0;
  top: -1px;
  margin: 0px;
  height: 15px;
  font-size: 18px;
  line-height: 18px;
  margin: auto;
  border: 0;
  position: relative;
}
body input[type=checkbox]:after {
  border: 12px solid var(--color-white) !important;
  top: 0 !important;
  content: "";
}
body input[type=checkbox]:checked {
  border-color: var(--color-set-one-1);
}
body input[type=checkbox]:checked:after {
  border: 12px solid var(--color-set-one-1) !important;
  top: 0 !important;
}
body input[type=file]::-webkit-file-upload-button {
  background-color: var(--color-set-one-1); /* Replace with your desired background color */
  color: var(--color-white);
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
}
body select {
  padding-right: 2rem;
  -webkit-appearance: none;
  color: var(--heading-color-one);
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3Edown_key%3C/title%3E%3Cpath d='M12.72,15.78a.75.75,0,0,1-.53.22h-.38a.77.77,0,0,1-.53-.22L6.15,10.64a.5.5,0,0,1,0-.71l.71-.71a.49.49,0,0,1,.7,0L12,13.67l4.44-4.45a.5.5,0,0,1,.71,0l.7.71a.5.5,0,0,1,0,.71Z'/%3E%3C/svg%3E") no-repeat right 0.5rem center/18px 20px !important;
}

.newsteller_simple {
  position: relative;
}
.newsteller_simple.d_in_block .mc4wp-form-fields {
  display: flex;
  gap: 5px;
}
.newsteller_simple.d_in_block .mc4wp-form-fields input[type=submit] {
  flex: 1;
}

/* Select2 dropdown border */
.select2-container .select2-selection--single {
  border: 1px solid var(--color-set-one-bor-1); /* Replace #f00 with your desired border color */
  height: 60px !important;
  font-size: 16px;
  height: unset;
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  color: var(--heading-color-one);
}

.select2.select2-container.select2-container--default {
  margin: 5px 0px;
}

/* Select2 dropdown arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  background-color: unset; /* Replace #f00 with your desired arrow color */
  position: absolute;
  top: 1px;
  right: 8px;
  width: 20px;
  bottom: 0;
  margin: auto;
  line-height: 15px;
  height: 15px;
}
.select2-container .select2-selection--single .select2-selection__arrow::before {
  position: relative;
  content: "\e97f";
  font-family: "risehand";
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: unset;
}

div.mce-toolbar-grp {
  background: var(--color-set-one-1) !important;
  border: unset !important;
}
div.mce-toolbar-grp button {
  color: var(--color-white);
  border-color: rgba(var(--color-white-rgba), 0.5);
}
div.mce-toolbar-grp button i {
  color: var(--color-white) !important;
}
div.mce-toolbar-grp button:hover {
  background: var(--color-set-one-4) !important;
}

.mce-toolbar .mce-btn button, .qt-dfw {
  padding: unset !important;
}

.mce-toolbar .mce-btn-group .mce-btn:focus, .mce-toolbar .mce-btn-group .mce-btn:hover, .qt-dfw:focus, .qt-dfw:hover {
  background: unset !important;
  border: unset !important;
  box-shadow: unset !important;
}

.contact_form_shortcode br {
  display: none;
}

.wpcf7-form br {
  display: none;
}
.wpcf7-form input[type=submit] {
  width: 100% !important;
}

.wpcf7-response-output {
  position: relative;
  padding: 10px 20px !important;
  border: unset !important;
  border-radius: 0.5rem;
  background: var(--color-set-one-1);
  color: var(--color-white);
  margin: 10px 0px 10px 0px !important;
}

.wpcf7-checkbox {
  display: flex !important;
  gap: 1rem;
}

html body form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0px !important;
}

.give-donation-submit .form-wrap span {
  background: transparent !important;
  border-color: transparent !important;
  padding: 0px !important;
  margin: 0px !important;
}

.page_header_default {
  position: relative;
  background: transparent;
  text-align: center;
}
.page_header_default .bakground_cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page_header_default .bakground_cover:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color-set-one-bg-1);
  opacity: 0.5;
}
.page_header_default .page_header_inner {
  position: relative;
  background: var(--color-set-one-bg-1);
  padding: 3rem 2rem;
  z-index: 1;
  overflow: hidden;
}
.page_header_default .page_header_inner .shape_img {
  position: absolute;
  height: 424px;
  width: auto;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  right: 0;
}
.page_header_default .page_header_inner .banner_title_inner {
  position: relative;
}
.page_header_default .page_header_inner .banner_title_inner .title {
  font-size: 40px;
  line-height: 50px;
  font-family: var(--font-family-main);
  color: var(--color-white);
  margin-bottom: 0px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  word-break: break-word;
}
.page_header_default .page_header_inner .banner_title_inner .title span, .page_header_default .page_header_inner .banner_title_inner .title small {
  display: block;
}
.page_header_default .page_header_inner .banner_title_inner .title small.extra_tit {
  font-size: 20px;
  line-height: normal;
  padding-top: 0.5rem;
}
.page_header_default .page_header_inner .breadcrumb {
  position: relative;
  z-index: 5;
  margin-bottom: 0px !important;
  justify-content: center;
}
.page_header_default .page_header_inner .parallax_cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
}
.page_header_default .page_header_inner .parallax_cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.breadcrumb {
  position: relative;
  flex-wrap: wrap;
}
.breadcrumb li {
  position: relative;
  padding-right: 20px;
  margin-right: 15px;
  list-style: none;
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family-main);
  line-height: 32px;
}
.breadcrumb li a {
  color: var(--color-white);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family-main);
  line-height: 32px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.breadcrumb li a:hover {
  color: var(--color-set-one-2);
}
.breadcrumb li:after {
  position: absolute;
  content: "\e981";
  font-family: "risehand";
  right: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 18px;
  color: var(--color-white);
}
.breadcrumb li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb li:last-child::after {
  display: none;
}

.page_header_center {
  text-align: center;
}
.page_header_center .breadcrumb {
  margin: 0 0 0 auto !important;
  justify-content: center !important;
}

.page_header_left {
  text-align: left;
}
.page_header_left .breadcrumb {
  margin: 0 0 0 auto !important;
  justify-content: inherit !important;
}
.page_header_left .authour_content_box {
  margin: 0 0 0 auto !important;
  justify-content: inherit !important;
}
.page_header_left .page_header_inner .shape_img {
  margin-left: unset;
}

.page_header_right {
  text-align: right;
}
.page_header_right .breadcrumb {
  justify-content: end !important;
}
.page_header_right .authour_content_box {
  justify-content: end !important;
}
.page_header_right .page_header_inner .shape_img {
  margin-right: unset;
}

.banner_title_inner .pattern_mask_1::before {
  position: absolute;
  content: "";
  mask-image: url(../../../assets/images/shape-1.png);
  -webkit-mask-image: url(../../../assets/images/shape-1.png);
  background: var(--color-set-one-1);
  width: 100%;
  height: auto;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center center;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  z-index: 1;
}

@media (min-width: 768px) {
  .banner_title_inner .pattern_mask_1::before {
    width: 480px;
  }
  .page_header_default .page_header_inner .breadcrumb {
    padding-top: 1.4rem;
  }
  .page_header_default {
    background: transparent;
    padding: 0px 70px;
  }
  .page_header_default:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 70px);
    left: 0;
    top: 0;
    background: var(--color-set-one-bg-1);
  }
  .page_header_default .page_header_inner .banner_title_inner {
    padding: 8rem 2rem;
  }
  .page_header_default .page_header_inner .banner_title_inner .title {
    font-size: 75px;
    line-height: 90px;
  }
  .breadcrumb li {
    font-size: 20px;
  }
  .breadcrumb li a {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .right-sidebar .all_side_bar {
    padding-left: 35px;
  }
  .left-sidebar .all_side_bar {
    padding-left: 35px;
  }
  .all_side_bar .widget {
    padding: 26px 40px 35px;
    border: 1px solid var(--color-set-one-bor-1);
  }
}
@media (min-width: 1200px) {
  .left-sidebar .all_side_bar {
    order: -1;
    padding-right: 35px;
  }
}
.all_side_bar .widget {
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .all_side_bar {
    padding-top: 40px;
    border-top: 4px double var(--color-set-one-bor-1);
  }
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border-color: var(--color-set-one-bor-1);
}

.wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 0.5rem;
}

.wp-block-search__button {
  margin: unset !important;
}

.widgets_grid_box {
  position: relative;
}
.widgets_grid_box .wp-block-categories li {
  color: var(--text-color-dark-two);
}
.widgets_grid_box .wp-block-categories li a {
  display: inline-block;
}
.widgets_grid_box input[type=search] {
  border: 1px solid var(--color-set-one-bor-1);
  margin: unset !important;
}
.widgets_grid_box:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}
.widgets_grid_box form button {
  font-size: 15px;
  padding: 0px 20px;
  border-radius: 0px;
  border: 1px solid var(--color-set-one-1);
}
.widgets_grid_box ul, .widgets_grid_box ol {
  margin-bottom: 0px !important;
}
.widgets_grid_box ul > li, .widgets_grid_box ol > li {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 8px;
  line-height: normal;
  font-weight: 400;
  font-family: var(--risehand-family-two);
}
.widgets_grid_box ul > li > ul > li, .widgets_grid_box ol > li > ul > li {
  padding-top: 8px;
  margin-top: 8px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.widgets_grid_box ul > li a, .widgets_grid_box ol > li a {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  color: var(--text-color-dark);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  font-weight: 400;
  font-family: var(--risehand-family-two);
}
.widgets_grid_box ul > li a:hover, .widgets_grid_box ol > li a:hover {
  color: var(--secondary-color);
}
.widgets_grid_box ul > li:last-child, .widgets_grid_box ol > li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.widgets_grid_box .widget_search .wp-block-search__label {
  font-size: 24px;
  line-height: 42px;
  font-weight: 700;
  font-family: var(--font-family-main);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.widgets_grid_box .widget_search .wp-block-search__label:before {
  position: absolute;
  content: "";
  background: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAHCAYAAABp0096AAABWUlEQVQokYXTPUjVYRQG8N/tShANkVJQlqCD3NwjgsLBJXBwEy4NCi4qGoiEDhFEQ/RFQzrU0sfS5hAEkZuIgtEUKAhBggaR4geUGETxwhle/t1bz/T+n/O+zznnOedf2u9p8w+UcQfDOIw3GMPnOk9O4xF68BtPcR0/66X4XwHP0VfgNtCJTwX+DObQWuBf4WoU9BcOoQkna8RGsuR3MYBvaMZrHM3uJndmIvk2hnArYlVcq6Gfcp5owMcQu4LFCF7Ewzg/wWScP2ABHZhGf/APcD6s7s50GjGKe8EtBX8B7/A9jWAZ5+LxfXzFbRzDe1zGQVZ5Svoszi/xA4PxnZJNFZyZj+K2MI5TuIkjWEkFpNnNolKwaA2XsF7DvscxohwvMkdynI3u0+hyrKKrfKNyfC86KqEFv2LGvfhSQzDhLXZDNHWWNn+izqIl/bQf7bEjO/F3VLH5Bx51S2JBCNCjAAAAAElFTkSuQmCC");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 7px;
}
.widgets_grid_box .widget_search form {
  margin-bottom: 0px;
}
.widgets_grid_box .widget_calendar table {
  margin-bottom: 10px;
}
.widgets_grid_box .wp-block-latest-comments li {
  color: var(--text-color-dark-two);
}
.widgets_grid_box .wp-block-latest-comments li a {
  display: inline-block;
}
.widgets_grid_box .widget_recent_comments li {
  color: var(--text-color-dark-two);
}
.widgets_grid_box .widget_recent_comments li span {
  display: inline-block;
}
.widgets_grid_box .widget_rss .widget-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.widgets_grid_box .widget_rss ul {
  padding: 0;
}
.widgets_grid_box .widget_rss ul li {
  margin-bottom: 20px;
  list-style: none;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-set-one-bor-1);
}
.widgets_grid_box .widget_rss ul li:last-child {
  margin-bottom: unset;
  padding-bottom: unset;
  border-bottom: unset;
}
.widgets_grid_box .widget_rss a {
  margin-bottom: 8px;
}
.widgets_grid_box .widget_rss .rsswidget {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-family-main);
  color: var(--heading-color-one);
  font-weight: 700;
}
.widgets_grid_box .widget_rss .rss-date {
  display: block;
  margin-bottom: 10px;
}
.widgets_grid_box .widget_rss .rssSummary {
  margin-bottom: 10px;
}
.widgets_grid_box .widget_rss cite {
  font-weight: 600;
  color: var(--color-set-one-1);
  margin: 0px !important;
}
.widgets_grid_box .wp-caption.alignnone {
  margin: 0px 0px 15px;
}

.wp-block-group__inner-container h2, .widget-title {
  font-size: 24px;
  line-height: 42px;
  font-weight: 700;
  font-family: var(--font-family-main);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.wp-block-group__inner-container h2 .rsswidget, .widget-title .rsswidget {
  font-size: 24px !important;
  line-height: 42px !important;
}
.wp-block-group__inner-container h2:before, .widget-title:before {
  position: absolute;
  content: "";
  background: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAHCAYAAABp0096AAABWUlEQVQokYXTPUjVYRQG8N/tShANkVJQlqCD3NwjgsLBJXBwEy4NCi4qGoiEDhFEQ/RFQzrU0sfS5hAEkZuIgtEUKAhBggaR4geUGETxwhle/t1bz/T+n/O+zznnOedf2u9p8w+UcQfDOIw3GMPnOk9O4xF68BtPcR0/66X4XwHP0VfgNtCJTwX+DObQWuBf4WoU9BcOoQkna8RGsuR3MYBvaMZrHM3uJndmIvk2hnArYlVcq6Gfcp5owMcQu4LFCF7Ewzg/wWScP2ABHZhGf/APcD6s7s50GjGKe8EtBX8B7/A9jWAZ5+LxfXzFbRzDe1zGQVZ5Svoszi/xA4PxnZJNFZyZj+K2MI5TuIkjWEkFpNnNolKwaA2XsF7DvscxohwvMkdynI3u0+hyrKKrfKNyfC86KqEFv2LGvfhSQzDhLXZDNHWWNn+izqIl/bQf7bEjO/F3VLH5Bx51S2JBCNCjAAAAAElFTkSuQmCC");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 7px;
}

.wp-block-tag-cloud,
.tagcloud {
  position: relative;
  margin: 0px;
  padding: 0px;
}
.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-size: 16px !important;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--color-white);
  padding-top: 11px;
  padding-bottom: 11px;
  min-height: 40px;
  border: 1px solid var(--color-set-one-1);
  background: var(--color-set-one-1);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  font-family: var(--font-family-main);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin-right: 5px;
  margin-bottom: 5px;
}
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  color: #fff;
  background-color: var(--color-set-one-2);
  border-color: var(--color-set-one-2);
}

.simple_search {
  position: relative;
}
.simple_search input {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color-dark);
  background: var(--color-white);
  border-color: var(--color-white) !important;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}
.simple_search button[type=submit] {
  position: absolute;
  width: 44px;
  height: 44px;
  padding: 0px;
  text-align: center;
  line-height: 44px;
  border-radius: 5px;
  right: 3px;
  bottom: 0;
  top: 0;
  margin: auto;
  min-height: 44px;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
  left: unset !important;
  right: 0;
}

.single-tribe_events .all_side_bar .side_bar_default_class {
  background: var(--color-set-one-bg-l-1);
  border-radius: 2rem;
}

.single-tribe_events .all_side_bar .widgets_grid_box {
  border-bottom: 1px solid var(--background-white);
}
.single-tribe_events .all_side_bar .widgets_grid_box .widget {
  border: unset;
  margin-bottom: 0px;
}
.single-tribe_events .all_side_bar .widgets_grid_box:last-child {
  border-bottom: unset;
}

.pagination-area, .pagination_blog {
  position: relative;
  padding-top: 15px;
}

body .pagination, .page-numbers, .woocommerce-pagination .page-numbers {
  position: relative;
  padding: 0px 0px 30px 0px;
  justify-content: center;
}
body .pagination li, .page-numbers li, .woocommerce-pagination .page-numbers li {
  display: inline-block;
  margin: 0px 6px !important;
}
body .pagination li a.page-link, body .pagination li .page-numbers, body .pagination li.next_link a, body .pagination li.prev_link a, body .pagination li a.next, body .pagination li a.prev, body .pagination li a, body .pagination li span, .page-numbers li a.page-link, .page-numbers li .page-numbers, .page-numbers li.next_link a, .page-numbers li.prev_link a, .page-numbers li a.next, .page-numbers li a.prev, .page-numbers li a, .page-numbers li span, .woocommerce-pagination .page-numbers li a.page-link, .woocommerce-pagination .page-numbers li .page-numbers, .woocommerce-pagination .page-numbers li.next_link a, .woocommerce-pagination .page-numbers li.prev_link a, .woocommerce-pagination .page-numbers li a.next, .woocommerce-pagination .page-numbers li a.prev, .woocommerce-pagination .page-numbers li a, .woocommerce-pagination .page-numbers li span {
  width: 40px;
  display: block;
  height: 40px;
  font-size: 1rem;
  line-height: 40px;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: var(--color-white);
  color: var(--heading-color-one);
  border: 1px solid var(--color-set-one-bor-1);
  text-align: center;
  padding: 0px;
  transform: translateY(0px);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
body .pagination li a.page-link:hover, body .pagination li a.page-link:focus, body .pagination li .page-numbers:hover, body .pagination li .page-numbers:focus, body .pagination li.next_link a:hover, body .pagination li.next_link a:focus, body .pagination li.prev_link a:hover, body .pagination li.prev_link a:focus, body .pagination li a.next:hover, body .pagination li a.next:focus, body .pagination li a.prev:hover, body .pagination li a.prev:focus, body .pagination li a:hover, body .pagination li a:focus, body .pagination li span:hover, body .pagination li span:focus, .page-numbers li a.page-link:hover, .page-numbers li a.page-link:focus, .page-numbers li .page-numbers:hover, .page-numbers li .page-numbers:focus, .page-numbers li.next_link a:hover, .page-numbers li.next_link a:focus, .page-numbers li.prev_link a:hover, .page-numbers li.prev_link a:focus, .page-numbers li a.next:hover, .page-numbers li a.next:focus, .page-numbers li a.prev:hover, .page-numbers li a.prev:focus, .page-numbers li a:hover, .page-numbers li a:focus, .page-numbers li span:hover, .page-numbers li span:focus, .woocommerce-pagination .page-numbers li a.page-link:hover, .woocommerce-pagination .page-numbers li a.page-link:focus, .woocommerce-pagination .page-numbers li .page-numbers:hover, .woocommerce-pagination .page-numbers li .page-numbers:focus, .woocommerce-pagination .page-numbers li.next_link a:hover, .woocommerce-pagination .page-numbers li.next_link a:focus, .woocommerce-pagination .page-numbers li.prev_link a:hover, .woocommerce-pagination .page-numbers li.prev_link a:focus, .woocommerce-pagination .page-numbers li a.next:hover, .woocommerce-pagination .page-numbers li a.next:focus, .woocommerce-pagination .page-numbers li a.prev:hover, .woocommerce-pagination .page-numbers li a.prev:focus, .woocommerce-pagination .page-numbers li a:hover, .woocommerce-pagination .page-numbers li a:focus, .woocommerce-pagination .page-numbers li span:hover, .woocommerce-pagination .page-numbers li span:focus {
  box-shadow: unset;
  transform: translateY(-5px);
  color: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
  background-color: var(--color-set-one-1);
  color: var(--color-white);
}
body .pagination li a.page-link.current, body .pagination li .page-numbers.current, body .pagination li.next_link a.current, body .pagination li.prev_link a.current, body .pagination li a.next.current, body .pagination li a.prev.current, body .pagination li a.current, body .pagination li span.current, .page-numbers li a.page-link.current, .page-numbers li .page-numbers.current, .page-numbers li.next_link a.current, .page-numbers li.prev_link a.current, .page-numbers li a.next.current, .page-numbers li a.prev.current, .page-numbers li a.current, .page-numbers li span.current, .woocommerce-pagination .page-numbers li a.page-link.current, .woocommerce-pagination .page-numbers li .page-numbers.current, .woocommerce-pagination .page-numbers li.next_link a.current, .woocommerce-pagination .page-numbers li.prev_link a.current, .woocommerce-pagination .page-numbers li a.next.current, .woocommerce-pagination .page-numbers li a.prev.current, .woocommerce-pagination .page-numbers li a.current, .woocommerce-pagination .page-numbers li span.current {
  transform: translateY(0px);
  border-color: var(--color-set-one-1);
  background-color: var(--color-set-one-1);
  color: var(--color-white);
}
body .pagination li:first-child, .page-numbers li:first-child, .woocommerce-pagination .page-numbers li:first-child {
  margin-left: 0px;
}
body .pagination li:last-child, .page-numbers li:last-child, .woocommerce-pagination .page-numbers li:last-child {
  margin-right: 0px;
}
body .pagination li.active a, .page-numbers li.active a, .woocommerce-pagination .page-numbers li.active a {
  transform: translateY(0px);
  border-color: var(--color-set-one-1);
  background-color: var(--color-set-one-1);
  color: var(--color-white);
}

.post-nav-links, .page-links, .wp-block-query-pagination-numbers {
  font-weight: 500;
  color: var(--heading-color-one);
}
.post-nav-links a, .post-nav-links span, .page-links a, .page-links span, .wp-block-query-pagination-numbers a, .wp-block-query-pagination-numbers span {
  width: 40px;
  display: inline-block;
  height: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-set-one-bor-3);
  border-radius: 45px;
  padding: 0px;
  text-align: center;
  color: var(--content-color-one);
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
}
.post-nav-links a:hover, .post-nav-links a.current, .post-nav-links span:hover, .post-nav-links span.current, .page-links a:hover, .page-links a.current, .page-links span:hover, .page-links span.current, .wp-block-query-pagination-numbers a:hover, .wp-block-query-pagination-numbers a.current, .wp-block-query-pagination-numbers span:hover, .wp-block-query-pagination-numbers span.current {
  border-color: var(--color-set-one-1);
  background-color: var(--color-set-one-1);
  color: var(--color-white);
}

.wp-block-query-pagination {
  padding: 10px 0px 15px;
}

.wp-block-query-pagination-numbers {
  margin: 0px !important;
}

.wp-block-query-pagination-next {
  color: var(--heading-color-one);
  margin: 0px !important;
}

.ajax_posts_enabled .plain .page-numbers {
  display: none;
}
.ajax_posts_enabled .plain .page-numbers.next {
  display: block;
}

.wp-block-post-navigation-link a, .wp-block-post-navigation-link a {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 1.4rem;
  border: 1px solid var(--color-set-one-bor-1);
  margin: 10px 0px;
}

.wp-block-comments h2 {
  font-size: 28px;
  line-height: 36px;
}
.wp-block-comments .wp-block-comment-author-name {
  position: relative;
  margin-bottom: 5px;
}
.wp-block-comments .wp-block-comment-date {
  position: relative;
  margin-bottom: 8px;
}
.wp-block-comments .wp-block-comment-author-name, .wp-block-comments .wp-block-comment-author-name a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--heading-color-one);
  text-transform: capitalize;
}

.products {
  position: relative;
  padding: 0 !important;
}
.products .product {
  position: relative;
}

.clear-both {
  clear: both;
}

.woocommerce-products-header__title.page-title {
  font-size: 44px;
  line-height: 54px;
  letter-spacing: -0.02em;
  text-align: left;
}

.woocommerce-mini-cart__empty-message {
  padding: 100px 0 0;
}
.woocommerce-mini-cart__empty-message svg {
  width: 150px;
  height: auto;
  margin: auto;
  opacity: 0.3;
  margin-bottom: 10px;
}

.woocommerce-page .breadcrumb {
  padding: 0px !important;
}

.woocommerce-products-header select, .woocommerce-products-header .theme_btn, .woocommerce-products-header .btn, .woocommerce-products-header button, .woocommerce-products-header input[type=submit], .woocommerce-products-header input[type=button], .woocommerce-products-header button[type=submit] {
  line-height: 1.1rem;
  font-size: 14px;
  font-weight: normal;
}

.cart_box {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.cart_box .top_content {
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 10px 30px;
  background: var(--color-white);
  z-index: 9;
  border-bottom: 1px solid var(--color-set-one-bor-1);
}
.cart_box .top_content .box-cart-close {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--color-white);
  background: var(--color-set-one-1);
  box-shadow: var(--box-shadow-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_box .overlay_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(var(--background-rgb-1), 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.cart_box .widget_shopping_carts {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 400px;
  height: 100vh;
  overflow: hidden;
  background-color: var(--background-white);
  transition: transform 0.3s ease-in-out;
  box-shadow: var(--box-shadow-1);
  animation: slideOut 0.3s forwards; /* Apply the slide-in animation */
}

.open_cart .cart_box {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.open_cart .cart_box .overlay_box {
  opacity: 1;
  visibility: visible;
}
.open_cart .cart_box .widget_shopping_carts {
  animation: slideIn 0.3s forwards; /* Apply the slide-in animation */
  right: 0;
}

.cart_content_header .woocommerce-mini-cart li {
  position: relative;
  padding-right: 25px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding-bottom: 25px;
  margin-bottom: 15px !important;
  border-bottom: 1px solid var(--color-set-one-bor-1);
}
.cart_content_header .woocommerce-mini-cart li::before {
  display: none !important;
}
.cart_content_header .woocommerce-mini-cart li:last-child {
  border-bottom: unset;
}
.cart_content_header .woocommerce-mini-cart li .remove_from_cart_button {
  position: absolute;
  width: 25px;
  height: 25px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 25px;
  background: var(--color-set-one-2);
  color: var(--color-white) !important;
  text-align: center;
  top: 0;
  right: 0;
}
.cart_content_header .woocommerce-mini-cart li .image_box {
  flex-shrink: 0;
  min-width: 80px;
  width: 75px;
}
.cart_content_header .woocommerce-mini-cart li .image_box img {
  width: auto;
  height: auto;
  margin: 0px !important;
  float: unset !important;
  width: unset !important;
}
.cart_content_header .woocommerce-mini-cart li .title_18 a {
  margin-bottom: 5px;
}
.cart_content_header .woocommerce-mini-cart li .item_content h6 {
  margin-bottom: 8px;
}
.cart_content_header .woocommerce-mini-cart li .item_content h6 a {
  color: var(--heading-color-one);
}

@media (max-width: 768px) {
  .cart_box .widget_shopping_carts {
    width: 100%;
  }
  body .mini-cart-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    left: 0;
    border-radius: 0px 6px 6px 0;
  }
  body .mini-cart-icon .pro-count {
    top: -7px;
    right: 3px;
  }
}
.cart_box .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart_box .widget_shopping_cart_content .cart_content_header {
  height: 80vh;
  direction: rtl;
  padding: 30px;
  overflow: auto;
  pointer-events: fill;
}
.cart_box .widget_shopping_cart_content .cart_content_header .cart_list {
  direction: ltr;
  padding-top: 50px;
}
.cart_box .bottom_box {
  padding: 20px 30px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-set-one-bor-1);
}

.woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0px !important;
}
.woocommerce-mini-cart__buttons a {
  margin: 0px !important;
  padding: 10px 10px !important;
  gap: 1rem;
  min-width: 100%;
}

.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
  padding-top: 20px !important;
  margin: 30px 0 0 0px !important;
}

.admin-bar .cart_box, .admin-bar .widget_shopping_carts {
  top: 32px;
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes rtlslideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rtlslideOut {
  100% {
    transform: translateX(-100%);
  }
  0% {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .side_bar_cart {
    width: 100%;
  }
}
.mini-cart-icon {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-set-one-2);
  color: var(--color-white);
  line-height: 60px;
  bottom: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 999;
  text-align: center;
  border-radius: 60px;
  font-size: 26px;
}
.mini-cart-icon .pro-count {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 0;
  line-height: 16px;
  right: 0;
  z-index: 9;
  background: var(--background-white);
  color: var(--color-set-one-1);
  font-size: 11px;
  border-radius: 20px;
}

@keyframes slide-in {
  0% {
    transform: translateX(100%); /* Start position off the screen */
  }
  100% {
    transform: translateX(0); /* End position fully visible */
  }
}
.top_woo_header {
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.top_woo_header p {
  margin-bottom: 0px;
  float: unset;
}
.top_woo_header .in_right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.woo_products_header .d-flex {
  align-items: center;
  gap: 1rem;
}
.woo_products_header .d-flex .d-flex {
  gap: 0.6rem;
}
.woo_products_header .products-per-page-box {
  gap: 0.5rem;
}

.post-type-archive-product .select2-container--open .select2-dropdown {
  top: 32px;
}

.nioland_filter_box {
  margin-top: 10px;
  margin-bottom: 25px;
}
.nioland_filter_box form {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nioland_filter_box form .left_s, .nioland_filter_box form .right_s {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.view-type-grid, .view-type-list {
  padding: 6px 8px;
  color: var(--heading-color-one);
  font-size: 24px;
  border-radius: 0.5rem;
  border: 1px solid var(--color-set-one-bor-1);
  line-height: 38px;
  display: flex;
  align-items: center;
}
.view-type-grid.active, .view-type-grid:hover, .view-type-list.active, .view-type-list:hover {
  border-color: var(--color-set-one-1);
  background: var(--color-set-one-1);
  color: var(--color-white);
}

.woocommerce ul.products li.product .price del, .woocommerce ul.products .product-price .price del {
  font-size: 11px;
  line-height: 24px;
  font-weight: 700;
  color: var(--content-color-one);
  float: right;
}

.woocommerce ul.products li.product .price ins, .woocommerce ul.products li.product .price > span, .product-price .price ins, .product-price .price > span {
  color: var(--heading-color-one);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-right: 5px;
  text-decoration: unset;
}

.product-type-grouped .price > span:nth-child(1), .product-type-grouped .product-price .price > span:nth-child(1) {
  padding-right: 2px;
}
.product-type-grouped .price > span:nth-child(2), .product-type-grouped .product-price .price > span:nth-child(2) {
  padding-left: 8px;
}

.probread .breadcrumb {
  justify-content: flex-end;
}
.probread .breadcrumb li {
  color: var(--content-color-one);
}
.probread .breadcrumb li a {
  color: var(--heading-color-one);
}
.probread .breadcrumb li:after {
  color: var(--content-color-one);
}

.product_card-one {
  position: relative;
  border: 1px solid var(--color-set-one-bor-1);
  border-radius: 0.5rem;
  background: var(--background-white);
  padding: 10px 10px 5px;
}
.product_card-one .product-img-action-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}
.product_card-one .product-img-action-wrap img {
  margin-bottom: 0px !important;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.product_card-one .product-img-action-wrap img.hover_image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}
.product_card-one .product-img-action-wrap .product-action-1 {
  position: absolute;
  width: 30px;
  right: 5px;
  bottom: 5px;
  text-align: center;
  margin: unset !important;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.product_card-one .product-img-action-wrap .product-action-1 li {
  position: relative;
  cursor: pointer;
  display: block;
  padding: unset !important;
  background: var(--color-set-one-2);
  border-radius: 0.5rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 5px;
}
.product_card-one .product-img-action-wrap .product-action-1 li a {
  color: var(--color-white);
}
.product_card-one .product-img-action-wrap .product-action-1 li a i {
  font-size: 15px;
}
.product_card-one .product-img-action-wrap .product-action-1 li small {
  position: absolute;
  right: 22px;
  top: 5px;
  min-width: 100px;
  background: var(--color-white);
  color: var(--heading-color-one);
  font-size: 12px;
  line-height: 20px;
  padding: 0px 8px;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosw-btn-icon {
  display: none;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosw-btn, .product_card-one .product-img-action-wrap .product-action-1 li .woosc-btn {
  position: relative;
  text-indent: -9999px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  background: unset;
  border: unset;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosw-btn::before, .product_card-one .product-img-action-wrap .product-action-1 li .woosc-btn::before {
  position: absolute;
  font-family: "risehand";
  text-indent: 0 !important;
  font-size: 16px;
  line-height: 30px;
  width: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 15px;
  font-weight: normal;
  color: var(--color-white);
  height: 30px;
  top: 0;
  display: block !important;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosc-btn::before {
  content: "\e9c5" !important;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosw-btn::before {
  content: "\e97d" !important;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosw-btn-added::before {
  content: "\f0b1" !important;
}
.product_card-one .product-img-action-wrap .product-action-1 li .woosc-btn-added::before {
  content: "\e92b" !important;
}
.product_card-one .product-img-action-wrap .product-action-1 li:hover small {
  opacity: 1;
  visibility: visible;
  right: 32px;
}
.product_card-one .content-wrap {
  position: relative;
  padding: 1rem;
}
.product_card-one .content-wrap .d-flex {
  justify-content: space-between;
}
.product_card-one .content-wrap .product-category {
  margin-bottom: 5px;
}
.product_card-one .content-wrap .product-category a {
  display: block;
}
.product_card-one .content-wrap .product-price .price {
  margin-bottom: 0px !important;
}
.product_card-one .content-wrap .title_20 {
  margin-bottom: 12px;
}
.product_card-one .content-wrap .title_20 a {
  margin-bottom: 0px;
}
.product_card-one .content-wrap .add-cart {
  position: relative;
  min-width: 30px;
  text-align: right;
}
.product_card-one .content-wrap .add-cart .quantity-input {
  position: absolute;
  top: -40px;
  right: 0;
  height: 35px;
}
.product_card-one .content-wrap .add-cart .quantity-input i {
  font-size: 16px;
}
.product_card-one .content-wrap .add-cart a, .product_card-one .content-wrap .add-cart button {
  background: transparent !important;
  color: var(--heading-color-one);
  display: block !important;
  border: unset !important;
  margin: 0px !important;
  padding: 0;
}
.product_card-one .content-wrap .add-cart a:after, .product_card-one .content-wrap .add-cart button:after {
  position: absolute;
  content: "\e01c" !important;
  top: -2px;
  right: 0;
  background: var(--color-set-one-1);
  color: var(--color-white);
  width: 32px !important;
  border-radius: 32px !important;
  height: 32px !important;
  line-height: 32px;
  text-align: center;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  display: block !important;
}
.product_card-one .content-wrap .add-cart a.added_to_cart::after, .product_card-one .content-wrap .add-cart button.added_to_cart::after {
  display: none;
}
.product_card-one .content-wrap .add-cart a i, .product_card-one .content-wrap .add-cart button i {
  font-size: 20px;
  line-height: 20px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.product_card-one .content-wrap .add-cart a.added:after, .product_card-one .content-wrap .add-cart button.added:after {
  content: "\e017" !important;
}
.product_card-one .content-wrap .add-cart a.added:after, .product_card-one .content-wrap .add-cart a.loading:after, .product_card-one .content-wrap .add-cart button.added:after, .product_card-one .content-wrap .add-cart button.loading:after {
  opacity: 1;
  visibility: visible;
}
.product_card-one .content-wrap .add-cart a.added:before, .product_card-one .content-wrap .add-cart a.loading:before, .product_card-one .content-wrap .add-cart button.added:before, .product_card-one .content-wrap .add-cart button.loading:before {
  display: none;
}
.product_card-one .content-wrap .add-cart a:hover, .product_card-one .content-wrap .add-cart button:hover {
  background: unset;
  color: var(--color-set-one-1);
}
.product_card-one .content-wrap .add-cart span, .product_card-one .content-wrap .add-cart .added_to_cart {
  position: absolute;
  text-align: center;
  bottom: -10px;
  min-width: 80px;
  padding: 4px 8px;
  border-radius: 20rem;
  right: -10px;
  display: block;
  background: var(--color-set-one-1);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 400;
  font-family: var(--font-family-main);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  line-height: normal;
  font-family: var(--font-family-main);
}
.product_card-one .content-wrap .add-cart .added_to_cart {
  bottom: -29px;
  opacity: 1;
  visibility: visible;
  background: var(--color-set-one-2) !important;
  color: var(--color-white);
  width: 96px;
  left: -60px;
}
.product_card-one .content-wrap .add-cart .added_to_cart:hover {
  background: var(--color-set-one-2);
  color: var(--color-white);
}
.product_card-one:hover .product-img-action-wrap img.hover_image {
  opacity: 1;
  visibility: visible;
}
.product_card-one .progressboxs {
  margin-top: 14px;
}

.display-list {
  position: relative;
  width: 50% !important;
  float: left !important;
  margin: 0px 0 30px !important;
  padding: 0 15px;
}

.product_display-list ul.products {
  margin: 0 -15px;
}
.product_display-list ul.products::after {
  content: "";
  clear: both;
  display: table;
}

.product_wrapper_list {
  position: relative;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--color-set-one-bor-1);
}
.product_wrapper_list .d-flex {
  gap: 2rem;
}
.product_wrapper_list .product-category {
  margin-bottom: 15px;
}
.product_wrapper_list .title_28 a {
  margin-bottom: 5px;
}
.product_wrapper_list .button {
  display: inline-flex !important;
  align-items: center;
}
.product_wrapper_list .price {
  display: inline-block !important;
}
.product_wrapper_list .space_div {
  margin: 25px 0px 20px;
  height: 1px;
  width: 100%;
  background: var(--color-set-one-bor-1);
}
.product_wrapper_list .product-price {
  margin-bottom: 15px;
}
.product_wrapper_list .product-price ins span {
  font-size: 22px;
}
.product_wrapper_list .left-img {
  min-width: 40%;
  width: 40%;
}
.product_wrapper_list .left-img img {
  margin: 0px !important;
}
.product_wrapper_list .badge_box {
  justify-content: flex-end;
  flex-direction: column;
  display: inline-flex;
  gap: 0.5rem;
  top: 5px;
  right: 5px;
  left: unset;
}
.product_wrapper_list .product-action-1 {
  margin-bottom: 0px !important;
  padding-top: 15px !important;
  border-top: 1px solid var(--color-set-one-bor-1);
  margin-top: 20px !important;
}
.product_wrapper_list .product-action-1 li {
  margin: 0px;
  padding-right: 5px;
  padding-bottom: 5px !important;
  display: inline-block;
}
.product_wrapper_list .product-action-1 li small {
  display: none;
}
.product_wrapper_list .product-action-1 li a {
  padding: 10px 12px;
  font-weight: 600;
  color: var(--heading-color-one);
  border: 1px solid var(--color-set-one-bor-1);
  display: flex;
  align-items: center;
  border-radius: 5px;
  gap: 0.5rem;
}
.product_wrapper_list .product-action-1 li a .woosc-btn-icon, .product_wrapper_list .product-action-1 li a .woosw-btn-icon, .product_wrapper_list .product-action-1 li a i {
  font-size: 20px;
  line-height: 20px;
  color: var(--color-set-one-1);
}
.product_wrapper_list .product-action-1 li a small, .product_wrapper_list .product-action-1 li a span {
  font-size: 15px;
  line-height: 20px;
  display: inline-block !important;
  margin: 0px;
}
.product_wrapper_list .product-action-1 li a.woosw-added, .product_wrapper_list .product-action-1 li a.woosc-added {
  background: var(--color-set-one-2);
  color: var(--color-white);
}
.product_wrapper_list .product-action-1 li a.woosw-added .woosc-btn-icon, .product_wrapper_list .product-action-1 li a.woosw-added .woosw-btn-icon, .product_wrapper_list .product-action-1 li a.woosc-added .woosc-btn-icon, .product_wrapper_list .product-action-1 li a.woosc-added .woosw-btn-icon {
  color: var(--color-white);
}
.product_wrapper_list .product-content-wrap {
  min-width: 55%;
  width: 55%;
}

.progressboxs {
  margin-bottom: 1rem;
}
.progressboxs .progress {
  height: 0.3rem;
}
.progressboxs .d-flex {
  margin-top: 4px;
  font-size: 14px;
  justify-content: space-between;
}

.product-type-variable .product-price .price, .product-type-grouped .product-price .price {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  line-height: normal;
  align-items: center;
}
.product-type-variable .product-price .price span, .product-type-grouped .product-price .price span {
  margin: 0px !important;
  padding: 0px !important;
}
.product-type-variable .add-cart span, .product-type-variable .add-cart .added_to_cart, .product-type-grouped .add-cart span, .product-type-grouped .add-cart .added_to_cart {
  min-width: 90px !important;
}

.top_woo_header .select2-container .select2-selection--single {
  padding: 10px;
  height: unset !important;
  border-radius: 6px;
}

.product_card-one:hover .product-action-1 {
  opacity: 1;
  visibility: visible;
}
.product_card-one:hover .content-wrap .add-cart span {
  opacity: 1;
  bottom: -17px;
  visibility: visible;
}
.product_card-one:hover .content-wrap .add-cart .added span {
  opacity: 0;
  visibility: hidden;
}

.badge_box {
  position: absolute;
  top: 0;
  padding: 5px;
  z-index: 9;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.badge_box .badge_type_one, .badge_box .badge_text {
  display: block;
  text-align: center;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 0.5rem;
  width: unset;
  height: unset;
  background: var(--color-set-one-1);
  color: var(--color-white);
}
.badge_box .badge_text {
  background: var(--color-set-one-2);
}

ul.products {
  display: flex;
  margin: 0 -15px !important;
  flex-wrap: wrap;
}
ul.products li.product {
  float: unset !important;
  margin: unset !important;
  padding: 0px 15px !important;
  margin-bottom: 20px !important;
}
ul.products.columns-2 li.product {
  width: 50% !important;
}
ul.products.columns-3 li.product {
  width: 33.33% !important;
}
ul.products.columns-4 li.product {
  width: 25% !important;
}
ul.products.columns-5 li.product {
  width: 20% !important;
}

@media (max-width: 1024px) {
  ul.products.columns-2 li.product {
    width: 50% !important;
  }
  ul.products.columns-3 li.product {
    width: 33.33% !important;
  }
  ul.products.columns-4 li.product {
    width: 33.33% !important;
  }
  ul.products.columns-5 li.product {
    width: 33.33% !important;
  }
}
@media (max-width: 768px) {
  ul.products.columns-2 li.product {
    width: 50% !important;
  }
  ul.products.columns-3 li.product {
    width: 50% !important;
  }
  ul.products.columns-4 li.product {
    width: 50% !important;
  }
  ul.products.columns-5 li.product {
    width: 50% !important;
  }
}
@media (max-width: 400px) {
  ul.products.columns-2 li.product {
    width: 100% !important;
  }
  ul.products.columns-3 li.product {
    width: 100% !important;
  }
  ul.products.columns-4 li.product {
    width: 100% !important;
  }
  ul.products.columns-5 li.product {
    width: 100% !important;
  }
}
.star-rating {
  color: var(--color-set-one-1);
}

.quantity-input {
  position: relative;
  border: 1px solid var(--color-set-one-bor-1);
  border-radius: 0.5rem;
  padding: 4px;
  background: var(--color-white);
  display: inline-flex;
  align-items: center;
  width: 100px;
  height: 46px;
  justify-content: space-between;
}
.quantity-input input[type=number] {
  border: unset;
  box-shadow: unset;
  width: 100%;
  background: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: unset;
  text-align: center;
}
.quantity-input input[type=number]:active, .quantity-input input[type=number]:focus {
  border: unset;
  background: unset;
  box-shadow: unset;
}
.quantity-input input[type=number]::-webkit-inner-spin-button,
.quantity-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-input input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.quantity-input button {
  background: unset;
  width: unset;
  padding: unset;
  border: unset;
  color: var(--heading-color-one);
}
.quantity-input button:hover {
  background: unset;
  border: unset;
}

.active-filters {
  position: relative;
  margin-bottom: 25px;
}
.active-filters .active-filters-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color-one);
  padding-right: 5px;
}
.active-filters .active-filter {
  padding: 3px 6px;
  border: 1px solid var(--color-set-one-bor-1);
  color: var(--content-color-one);
  border-radius: 10px;
  margin-right: 5px;
  display: inline-block;
  line-height: 20px;
  font-size: 12px;
}
.active-filters .active-filter a {
  display: inline-block;
  margin-left: 5px;
  color: var(--color-set-one-1);
  font-size: 15px;
  line-height: 15px;
}

.woo_pagination.loadmoreproduct .woocommerce-pagination {
  position: relative;
}
.woo_pagination.loadmoreproduct .woocommerce-pagination a {
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}
.woo_pagination.loadmoreproduct .woocommerce-pagination.donefinish {
  display: none;
}

.shop_infinite .sketch-loading {
  display: none !important;
  visibility: hidden !important;
}

.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after {
  display: none !important;
}

@media (max-width: 768px) {
  .woocommerce table.shop_table_responsive tr {
    padding: 20px;
    background: var(--color-set-one-bg-1);
    margin-bottom: 10px;
  }
  .woocommerce table.shop_table {
    border: unset;
  }
  .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
    text-align: left !important;
  }
  body .woocommerce a.remove {
    border: 1px solid var(--color-set-one-1);
    line-height: 22px !important;
    color: var(--color-set-one-1) !important;
  }
  .woocommerce table.shop_table td {
    border-right: unset;
    border-left: unset;
    border-top: unset;
    border-bottom: 1px solid var(--color-set-one-bor-1);
    display: block;
    width: 100%;
  }
  .woocommerce table.shop_table td::before {
    display: block;
    float: unset !important;
    font-size: 15px;
    font-weight: 400 !important;
    color: var(--heading-color-one);
    margin-bottom: 5px;
  }
  .woocommerce table.shop_table td:last-child {
    border-bottom: unset !important;
  }
  .woocommerce #coupon_code {
    width: 100% !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    display: block;
    margin: 0 0 5px 0 !important;
  }
  .woocommerce .cart_totals .order-total td {
    background: transparent !important;
    border: unset !important;
  }
  .woocommerce .cart-subtotal td {
    background: transparent !important;
    border: unset !important;
  }
}
@media (max-width: 650px) {
  .product_card-one .content-wrap .title_20 a {
    font-size: 16px;
    line-height: 26px;
  }
  .woocommerce ul.products li.product .price ins, .woocommerce ul.products li.product .price > span, .product-price .price ins, .product-price .price > span {
    line-height: 16px;
  }
  .product_card-one .content-wrap .product-price .price {
    display: flex !important;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .product_card-one .content-wrap .add-cart span, .product_card-one .content-wrap .add-cart .added_to_cart {
    right: 0;
    left: unset;
  }
}
.mfp-wrap {
  z-index: 999999;
}

.woocommerce-error .product-image, .woocommerce-info .product-image, .woocommerce-message .product-image {
  display: none;
}

.cart_notice .woocommerce-error .product-image, .cart_notice .woocommerce-info .product-image, .cart_notice .woocommerce-message .product-image {
  display: block;
}

.product-action-1 {
  padding-right: 0px !important;
}

@media (max-width: 992px) {
  .product_wrapper_list .d-flex {
    flex-direction: column;
  }
  .product_wrapper_list .product-content-wrap, .product_wrapper_list .left-img {
    min-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .woocommerce ul.products {
    justify-content: center;
  }
  body ul.products li.product {
    padding: 0px 8px !important;
  }
  .product_card-one .content-wrap .add-cart {
    padding: 0.7rem 0 0 0;
  }
  .product_card-one .content-wrap .add-cart .quantity-input {
    position: relative;
    top: unset;
    right: unset;
  }
  .product_card-one:not(.product-type-variable) .content-wrap .add-cart form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .product_card-one .content-wrap .d-flex {
    display: block !important;
  }
  .product_card-one .content-wrap {
    padding: 0.6rem 0rem 0.4rem;
  }
  .product_card-one .content-wrap .add-cart a, .product_card-one .content-wrap .add-cart button {
    text-align: left;
  }
  .woocommerce-products-header__title.page-title {
    font-size: 38px;
    line-height: normal;
    text-align: center;
    display: none;
  }
  .top_woo_header {
    flex-direction: column;
  }
  .top_woo_header .in_right {
    justify-content: center;
  }
  .woocommerce-page .breadcrumb {
    justify-content: center;
    margin-bottom: 15px !important;
  }
  .product_wrapper_list .d-flex {
    flex-direction: column;
  }
  .product_wrapper_list .product-content-wrap, .product_wrapper_list .left-img {
    min-width: 100%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .display-list {
    float: unset !important;
    width: 100% !important;
  }
}
.right-sidebar .display-list, .left-sidebar .display-list {
  width: 100% !important;
  float: unset !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 5px;
  font-family: var(--font-family-main);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  transition: var(--transition);
  color: var(--color-white);
  text-align: center;
  border: 1px solid var(--color-set-one-1);
  background: var(--color-set-one-1);
  justify-content: center;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover:hover {
  background: var(--color-set-one-2);
  border-color: var(--color-set-one-2);
  color: var(--color-white);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled] i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled] i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled] i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled] i, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled] i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled] i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled] i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled] i, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover i {
  display: inline-block;
  position: relative;
  top: 0px;
  font-size: 24px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled] svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled] svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled] svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled] svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled] svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled] svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled] svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled] svg, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover svg {
  position: relative;
  width: 20px;
  display: inline-block;
}

.is-large.wc-block-cart .wc-block-cart-items:after {
  border-color: var(--color-set-one-bor-1);
  opacity: 1 !important;
}

.wc-block-product-categories-list li a {
  display: inline-block !important;
}

.product_list_widget li a .product-title {
  font-family: var(--font-family-main);
  color: var(--heading-color-one);
  display: block;
  font-weight: 700;
  padding: 0 0 10px;
}
.product_list_widget li img {
  width: 70px !important;
}
.product_list_widget .star-rating {
  margin: 0 0 10px;
}
.product_list_widget .woocommerce-Price-amount {
  font-size: 16px;
  color: var(--content-color-one);
  font-family: var(--font-family-main);
  font-weight: 600;
}

.products {
  position: relative;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  border-radius: 0.5rem;
}
.woocommerce-error .cartnotice_close, .woocommerce-info .cartnotice_close, .woocommerce-message .cartnotice_close {
  display: none;
}

.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li,
.woocommerce nav.woocommerce-pagination ul {
  border: unset !important;
}

.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li {
  overflow: unset !important;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  font-family: var(--font-family-main);
  font-weight: 700;
}

.woocommerce table.shop_table, #add_payment_method .cart-collaterals .cart_totals table, .woocommerce-cart .cart-collaterals .cart_totals table, .woocommerce-checkout .cart-collaterals .cart_totals table, .woosw-items, .woosc-items {
  border-collapse: collapse;
}

.woocommerce table.shop_table {
  text-align: left;
}

.woocommerce .quantity .qty {
  margin: auto;
}

#coupon_code {
  width: 150px !important;
}

.widget_products li {
  list-style: none;
}

.editor-styles-wrapper .wc-block-components-checkbox, .wc-block-components-checkbox {
  margin-top: 0px;
}

.wc-block-components-price-slider--is-input-inline .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  width: 100px !important;
  text-align: center;
  height: 40px !important;
  font-weight: 600 !important;
  color: var(--heading-color-one) !important;
}

.wc-block-components-price-slider__range-input-wrapper:before {
  background: var(--color-set-one-bor-2);
  opacity: 1;
}

.wc-block-components-price-slider__range-input-progress {
  --track-background: linear-gradient(90deg,transparent var(--low),var(--range-color) 0,var(--range-color) var(--high),transparent 0) no-repeat 0 100%/100% 100%;
  --range-color: var(--color-set-one-1);
}

input[type=range i]::-webkit-slider-thumb {
  -webkit-appearance: none;
  cursor: ew-resize;
  border-color: var(--color-set-one-1) !important;
}

input[type=range i]:hover::-webkit-slider-thumb, input[type=range i]:focus::-webkit-slider-thumb {
  border-color: var(--color-set-one-2) !important;
  background: var(--color-set-one-2) !important;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .wc-block-components-totals-coupon-link, .wc-block-components-button {
  background-color: var(--color-set-one-1);
  color: var(--color-white);
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.woocommerce #respond input#submit i, .woocommerce a.button i, .woocommerce button.button i, .woocommerce input.button i, .wc-block-components-totals-coupon-link i, .wc-block-components-button i {
  font-size: 19px;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .wc-block-components-totals-coupon-link:hover, .wc-block-components-button:hover {
  background-color: var(--color-set-one-2);
  color: var(--color-white);
}

.cart_totals h2 {
  font-size: 28px;
  line-height: 36px;
}

.woocommerce-grouped-product-list {
  position: relative;
  border-collapse: collapse !important;
}
.woocommerce-grouped-product-list .woocommerce-grouped-product-list-item__label a {
  font-size: 18px;
  color: var(--heading-color-one);
  line-height: 26px;
  font-weight: 700;
  font-family: var(--font-family-main);
}
.woocommerce-grouped-product-list tbody, .woocommerce-grouped-product-list td, .woocommerce-grouped-product-list tfoot, .woocommerce-grouped-product-list th, .woocommerce-grouped-product-list thead, .woocommerce-grouped-product-list tr {
  border: 1px solid var(--color-set-one-bor-3) !important;
  padding: 10px !important;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background: var(--color-set-one-1);
  border-top-color: var(--color-set-one-1);
  color: var(--color-white);
  padding: 1em 1em 1em 3.5em !important;
}
.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
  position: relative;
  color: var(--color-white);
}
.woocommerce-error strong, .woocommerce-info strong, .woocommerce-message strong {
  color: var(--color-white);
}
.woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button {
  background-color: var(--color-white) !important;
  color: var(--heading-color-one) !important;
}
.woocommerce-error .button:hover, .woocommerce-info .button:hover, .woocommerce-message .button:hover {
  background-color: var(--color-set-one-2) !important;
  color: var(--color-white) !important;
}
.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-family-main);
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  color: var(--color-white);
}

.woocommerce-info {
  background: var(--color-set-one-2);
}

.woocommerce-error {
  background: var(--color-set-one-2);
}

.wc-block-components-filter-reset-button, .category-filter-buttons button, .category-filter-buttons .reset-button, .brand-filter-buttons button, .brand-filter-buttons .reset-button {
  position: absolute;
  font-size: 14px;
  padding: 2px 12px !important;
  border-radius: 6px;
  background: var(--color-set-one-2);
  color: var(--color-white);
  border-color: var(--color-set-one-2);
  bottom: -26px;
  z-index: 1;
  margin: 0px;
  left: 0;
}
.wc-block-components-filter-reset-button:hover, .category-filter-buttons button:hover, .category-filter-buttons .reset-button:hover, .brand-filter-buttons button:hover, .brand-filter-buttons .reset-button:hover {
  color: var(--color-white);
  background: vaR(--color-set-one-2);
}

.category-filter-buttons, .brand-filter-buttons {
  padding-top: 15px;
  text-align: right;
}
.category-filter-buttons button, .brand-filter-buttons button {
  margin-left: 5px;
  position: relative;
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  height: 16px !important;
  font-size: 12px;
  outline: unset !important;
  width: 16px !important;
  border: 2px solid var(--color-set-one-bor-1);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  margin-right: 5px;
  margin-top: -1px;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:after {
  border: 10px solid var(--color-white) !important;
  top: 0 !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  font-size: 12px;
}

.category-filter-widget li, .brand-filter-widget li {
  position: relative;
}
.category-filter-widget li label, .brand-filter-widget li label {
  align-items: center;
  display: flex;
  font-size: 0.875em;
  position: relative;
}
.category-filter-widget li small, .brand-filter-widget li small {
  padding-left: 5px;
  display: inline-block;
  color: var(--heading-color-one);
  font-size: 14px;
}
.category-filter-widget li svg, .brand-filter-widget li svg {
  fill: var(--color-white) !important;
  margin-top: 2px !important;
  height: 1.125em;
  margin-left: 0.1875em;
  margin-top: 0.0625em;
  pointer-events: none;
  position: absolute;
  width: 1.125em;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked:after {
  border: 12px solid var(--color-set-one-1) !important;
  top: 0 !important;
}

.wc-block-components-checkbox__input:focus, .wc-block-components-checkbox__input:active,
.wc-block-components-checkbox__input:checked {
  outline: 2px solid var(--color-set-one-1) !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
  border: unset !important;
  background: unset !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: var(--color-white) !important;
  margin-top: 2px !important;
}

.product-name a {
  text-align: left;
  font-size: 18px;
  line-height: 26px;
  display: block;
  display: block;
  color: var(--heading-color-one);
}

.woocommerce a.remove {
  border: 1px solid var(--color-set-one-bor-1);
  background-color: var(--background-white);
  color: var(--heading-color-one) !important;
}
.woocommerce a.remove:hover {
  border-color: var(--color-set-one-1);
  background-color: var(--color-set-one-1);
  color: var(--color-white);
}

#add_payment_method .cart-collaterals .cart_totals tr td, #add_payment_method .cart-collaterals .cart_totals tr th, .woocommerce-cart .cart-collaterals .cart_totals tr td, .woocommerce-cart .cart-collaterals .cart_totals tr th, .woocommerce-checkout .cart-collaterals .cart_totals tr td, .woocommerce-checkout .cart-collaterals .cart_totals tr th {
  background: var(--background-white);
}

#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
  height: 50px !important;
}

.sidebar-widget .wc-block-grid__products {
  display: block !important;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product {
  text-align: left;
  max-width: 100% !important;
  padding: 0px !important;
  flex: unset !important;
  list-style: none;
  border: 0px !important;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid var(--color-set-one-bor-2);
  text-align: left;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-link:after {
  content: "";
  clear: both;
  display: table;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-image {
  float: left;
  width: 82px;
  padding-right: 16px;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product:last-child {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  border-bottom: 0 !important;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--font-family-main);
  color: var(--heading-color-one);
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-onsale {
  border-radius: 6px !important;
  margin: 0 !important;
  margin-bottom: 10px !important;
  position: relative !important;
  font-size: 12px !important;
  background: var(--color-set-one-6) !important;
  color: var(--color-white) !important;
  width: 78px;
  border: 1px solid var(--color-set-one-6);
  height: unset !important;
  display: block;
  padding: 1px 10px 0px !important;
  line-height: unset !important;
  min-height: unset !important;
  font-weight: 500 !important;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wp-block-button {
  position: relative;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wp-block-button .added_to_cart {
  position: absolute;
  text-align: center !important;
  font-family: var(--font-family-main);
  margin: auto;
  border-radius: 6px;
  width: 100px;
  background: var(--color-white);
  border: 1px solid var(--color-set-one-bor-3);
  color: var(--heading-color-one);
  bottom: 0;
  right: 0;
  font-weight: 600;
  line-height: 31px !important;
  padding: 5px 20px !important;
  font-size: 14px;
  height: 40px !important;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wp-block-button .added_to_cart:hover {
  background: var(--color-set-one-1) !important;
  border-color: var(--color-set-one-1) !important;
  color: var(--color-white) !important;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wp-block-button__link {
  font-size: 15px;
  background: var(--color-white);
  border: 1px solid var(--color-set-one-bor-3);
  color: var(--heading-color-one);
  border-radius: 6px;
  font-weight: 600;
  text-align: center !important;
  padding: 5px 20px !important;
  display: inline-block;
}
.sidebar-widget .wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover {
  background: var(--color-set-one-1) !important;
  border-color: var(--color-set-one-1) !important;
  color: var(--color-white) !important;
}
.sidebar-widget .wc-block-grid__products a {
  padding-left: 0 !important;
}
.sidebar-widget .wc-block-grid__products a::before {
  display: none;
}

.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
  padding: 0px 0px 15px !important;
}
.woocommerce ul.cart_list li:last-child, .woocommerce ul.product_list_widget li:last-child {
  padding-bottom: 0px !important;
}

.woocommerce .sidebar-widget .product_list_widget li a, .woocommerce .sidebar-widget .cart_list li a {
  padding-left: 0px;
}
.woocommerce .sidebar-widget .product_list_widget li a::before, .woocommerce .sidebar-widget .cart_list li a::before {
  display: none;
}
.woocommerce .sidebar-widget .product_list_widget li img, .woocommerce .sidebar-widget .cart_list li img {
  width: 70px;
  height: 70px;
  margin-top: 0px;
  float: left;
  margin-left: 0px;
  margin-right: 10px;
}
.woocommerce .sidebar-widget .product_list_widget ins, .woocommerce .sidebar-widget .product_list_widget .woocommerce-Price-amount, .woocommerce .sidebar-widget .cart_list ins, .woocommerce .sidebar-widget .cart_list .woocommerce-Price-amount {
  color: var(--color-set-one-1);
  font-weight: 600;
  font-size: 16px;
}
.woocommerce .sidebar-widget .product_list_widget del span, .woocommerce .sidebar-widget .product_list_widget del bdi, .woocommerce .sidebar-widget .cart_list del span, .woocommerce .sidebar-widget .cart_list del bdi {
  font-size: 14px;
  font-weight: 400;
  color: var(--content-color-one);
  text-decoration-color: var(--content-color-one);
}
.woocommerce .sidebar-widget .product_list_widget .product-title, .woocommerce .sidebar-widget .cart_list .product-title {
  color: var(--heading-color-one);
  font-size: 18px;
  font-family: var(--font-family-main);
  font-weight: 700;
  margin-bottom: 3px;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce .van_product_card .button, .coupon .button,
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled],
.added_to_cart {
  position: relative;
  border-radius: 6px;
  display: inline-block;
  line-height: 24px;
  font-size: 15px !important;
  padding: 8px 15px;
  background-color: var(--color-set-one-1);
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--color-set-one-1);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce .van_product_card .button:hover, .coupon .button:hover,
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit:disabled[disabled]:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button:disabled[disabled]:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover,
.added_to_cart:hover {
  background-color: var(--color-set-one-2);
  color: var(--color-white);
  border-color: var(--color-set-one-2);
}

.added_to_cart {
  left: 10px;
  background: var(--color-set-one-2);
  border-color: var(--color-set-one-2);
}

.woocommerce #respond input#submit.loading, .woocommerce a.button.loading, .woocommerce button.button.loading, .woocommerce input.button.loading {
  padding: 8px 15px !important;
}

.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  margin-left: 0px;
  height: 100%;
  color: var(--color-white);
  z-index: 4;
}

.protitleoverflow .van_product_card .woocommerce-loop-product__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.woocommerce-ordering {
  min-width: 200px;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  margin-bottom: 30px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0px !important;
  margin: 0px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: var(--color-set-one-bor-1);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0px;
  background: unset;
  color: var(--content-color-one);
  border-radius: unset !important;
  background: unset !important;
  margin: 0px !important;
  padding: 0px 20px 0 0px !important;
  margin-left: 0px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  position: relative;
  color: var(--content-color-one);
  background: unset !important;
  padding: 0px 0 15px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: unset;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--color-set-one-1);
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a, .woocommerce div.product .woocommerce-tabs ul.tabs li:hover a {
  color: var(--color-set-one-1);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::before, .woocommerce div.product .woocommerce-tabs ul.tabs li:hover a::before {
  opacity: 1;
  visibility: visible;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs .comment-form-comment {
  padding-top: 15px;
}

.related.products {
  border-top: 1px solid var(--color-set-one-bor-1);
  padding-top: 35px !important;
  margin-top: 45px;
  margin-bottom: 30px;
}
.related.products > h2 {
  font-size: 40px;
  line-height: 50px;
  padding-bottom: 15px;
}
.related.products .products {
  margin-bottom: 0px;
}

.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
  padding: 5px 15px;
}

.woocommerce-Tabs-panel > h2, .woocommerce-Tabs-panel .woocommerce-Reviews-title {
  font-size: 30px;
  line-height: 40px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0px 0 0 0 !important;
  padding-top: 25px;
}

.star-rating::before {
  color: rgba(var(--color-rgb-1), 0.3) !important;
}

.star-rating span::before {
  color: var(--color-set-one-5);
}

p.stars a::before {
  color: rgba(var(--color-rgb-1), 0.3) !important;
}

p.stars a:hover::before, p.stars.selected a:not(.active)::before, p.stars:hover a::before, p.stars.selected a.active::before {
  color: var(--color-set-one-5) !important;
}

.product-rate-cover.woocommerce {
  display: block;
  position: relative;
  line-height: normal;
  margin-bottom: 10px;
}
.product-rate-cover.woocommerce .star-rating {
  float: unset !important;
}
.product-rate-cover.woocommerce .star-rating {
  display: inline-block !important;
  margin: 0px !important;
}
.product-rate-cover.woocommerce .star-rating::before {
  color: rgba(var(--color-rgb-1), 0.3) !important;
  float: unset !important;
}
.product-rate-cover.woocommerce .star-rating span::before {
  color: var(--color-set-one-5);
}
.product-rate-cover.woocommerce .star-rating span span::before {
  color: rgba(var(--color-rgb-1), 0.3) !important;
}
.product-rate-cover.woocommerce .text-muted {
  color: rgba(var(--color-rgb-1), 0.3) !important;
  position: relative;
  top: -2px;
  font-size: 13px;
}

.comment-reply-title {
  font-family: var(--font-family-main);
  color: var(--heading-color-one);
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.015em;
  text-align: left;
  display: block;
  margin-bottom: 10px !important;
}

.comment-form label {
  font-family: var(--font-family-main);
  color: var(--content-color-one);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 5px;
  display: block;
  letter-spacing: 0em;
  text-align: left;
}

.commentlist li .comment_container img.avatar, .commentlist li .comment_container img, .commentlist li .comment_container img.avatar, .commentlist li .comment_container img {
  width: 60px !important;
  border: 0px !important;
  height: 60px !important;
  border-radius: 50%;
  padding: 0px !important;
  background: transparent !important;
}
.commentlist li .comment_container .comment-text, .commentlist li .comment_container .comment-text {
  margin-left: 70px !important;
  border-color: var(--color-set-one-bor-1) !important;
}

.risehand_product_single .product .price del, .quick_view .product .price del {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--content-color-one);
  float: unset;
}
.risehand_product_single .product .price ins, .risehand_product_single .product .price > span, .quick_view .product .price ins, .quick_view .product .price > span {
  color: var(--heading-color-one);
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  margin-right: 5px;
  text-decoration: unset;
}
.risehand_product_single .product .price ins, .quick_view .product .price ins {
  float: left;
  margin-right: 8px;
}
.risehand_product_single .product-type-grouped .price > span:nth-child(1), .quick_view .product-type-grouped .price > span:nth-child(1) {
  padding-right: 2px;
}
.risehand_product_single .product-type-grouped .price > span:nth-child(2), .quick_view .product-type-grouped .price > span:nth-child(2) {
  padding-left: 8px;
}

.woocommerce div.product div.images {
  margin-bottom: 3rem;
}

.woocommerce-product-gallery .flex-viewport {
  background: var(--color-set-one-bg-1);
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 20px !important;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  float: unset !important;
  border: 1px solid var(--color-set-one-bor-3);
  padding: 0px;
  width: 100%;
}

.single-product .page_header_default {
  padding: 40px 0px 35px;
}

.woocommerce .woocommerce-breadcrumb {
  position: relative;
  text-transform: capitalize;
  color: var(--heading-color-one);
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  background: none;
  margin: 0 0 20px !important;
  font-family: var(--font-family-main);
  border-radius: 0;
}
.woocommerce .woocommerce-breadcrumb a {
  position: relative;
  text-align: center;
  display: inline-block;
  color: var(--heading-color-one);
  padding-right: 25px;
  margin-right: 15px;
}
.woocommerce .woocommerce-breadcrumb a::before {
  content: "\e981";
  font-family: "risehand" !important;
  display: inline-block;
  font-size: 20px;
  height: 12px;
  line-height: 12px;
  right: -6px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.shop_single .summary.entry-summary, .quick_view .summary.entry-summary {
  position: relative;
}
.shop_single .summary.entry-summary .top_content_single .product-category a, .quick_view .summary.entry-summary .top_content_single .product-category a {
  font-family: var(--font-family-main);
  color: var(--heading-color-one);
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.shop_single .summary.entry-summary .top_content_single .title h1, .quick_view .summary.entry-summary .top_content_single .title h1 {
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -0.02em;
  text-align: left;
}
.shop_single .summary.entry-summary .top_content_single .divborder, .quick_view .summary.entry-summary .top_content_single .divborder {
  position: relative;
  margin: 15px 0;
  height: 1px;
  width: 100%;
  background: var(--color-set-one-bor-1);
}
.shop_single .summary.entry-summary .top_content_single .woocommerce-review-link, .quick_view .summary.entry-summary .top_content_single .woocommerce-review-link {
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 400;
  color: var(--content-color-one);
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
}
.shop_single .summary.entry-summary .top_min_single, .quick_view .summary.entry-summary .top_min_single {
  padding: 24px 24px 4px;
  background: var(--color-set-one-bg-l-1);
  border-radius: 5px;
  margin-bottom: 20px;
}
.shop_single .summary.entry-summary .top_min_single .price, .quick_view .summary.entry-summary .top_min_single .price {
  margin-bottom: 20px;
}
.shop_single .summary.entry-summary .top_min_single .woosc-btn, .shop_single .summary.entry-summary .top_min_single .woosw-btn, .quick_view .summary.entry-summary .top_min_single .woosc-btn, .quick_view .summary.entry-summary .top_min_single .woosw-btn {
  margin-right: 15px;
  margin-bottom: 20px;
}
.shop_single .summary.entry-summary .top_min_single .woosc-btn, .quick_view .summary.entry-summary .top_min_single .woosc-btn {
  background: var(--color-set-one-2);
  border-color: var(--color-set-one-2);
}
.shop_single .summary.entry-summary .top_min_single .woosw-btn, .quick_view .summary.entry-summary .top_min_single .woosw-btn {
  background: var(--color-set-one-2);
  border-color: var(--color-set-one-2);
}
.shop_single .summary.entry-summary .top_min_single .woosc-btn-has-icon.woosc-btn-icon-text, .shop_single .summary.entry-summary .top_min_single .woosw-btn-has-icon.woosw-btn-icon-text, .quick_view .summary.entry-summary .top_min_single .woosc-btn-has-icon.woosc-btn-icon-text, .quick_view .summary.entry-summary .top_min_single .woosw-btn-has-icon.woosw-btn-icon-text {
  background: unset;
  border: unset;
  color: var(--heading-color-one);
  font-weight: 600;
  font-family: var(--font-family-main);
  font-size: 16px;
  line-height: normal;
}
.shop_single .summary.entry-summary .top_min_single .woosc-btn-has-icon.woosc-btn-icon-text span.woosc-btn-icon, .shop_single .summary.entry-summary .top_min_single .woosw-btn-has-icon.woosw-btn-icon-text span.woosc-btn-icon, .quick_view .summary.entry-summary .top_min_single .woosc-btn-has-icon.woosc-btn-icon-text span.woosc-btn-icon, .quick_view .summary.entry-summary .top_min_single .woosw-btn-has-icon.woosw-btn-icon-text span.woosc-btn-icon {
  color: var(--color-set-one-2);
}
.shop_single .summary.entry-summary .top_min_single .woosw-btn-has-icon.woosw-btn-icon-text span.woosw-btn-icon, .quick_view .summary.entry-summary .top_min_single .woosw-btn-has-icon.woosw-btn-icon-text span.woosw-btn-icon {
  color: var(--color-set-one-2);
}

.risehand_product_single .cart:not(.variations_form), .risehand_product_single .woocommerce-variation-add-to-cart, .quick_view .cart:not(.variations_form), .quick_view .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  vertical-align: middle;
  margin-top: 0px;
  margin-bottom: 20px !important;
}
.risehand_product_single .cart:not(.variations_form) .button, .risehand_product_single .woocommerce-variation-add-to-cart .button, .quick_view .cart:not(.variations_form) .button, .quick_view .woocommerce-variation-add-to-cart .button {
  line-height: 28px !important;
}
.risehand_product_single .cart:not(.variations_form) .quantity-input, .risehand_product_single .woocommerce-variation-add-to-cart .quantity-input, .quick_view .cart:not(.variations_form) .quantity-input, .quick_view .woocommerce-variation-add-to-cart .quantity-input {
  margin-right: 15px !important;
}

.product_meta {
  gap: 2rem;
  margin-bottom: 30px;
}
.product_meta ul {
  margin: 0px;
  padding: 0px;
}
.product_meta ul:first-child {
  min-width: 30%;
  width: 30%;
}
.product_meta ul.enable_width {
  min-width: 50%;
  width: 50%;
}
.product_meta ul.custom_meta li span {
  min-width: 120px;
}
.product_meta ul li {
  display: block;
  margin-bottom: 8px;
}
.product_meta ul li span {
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  color: var(--heading-color-one);
  text-align: left;
  min-width: 85px;
  display: inline-block;
  margin-right: 4px;
}
.product_meta ul li, .product_meta ul a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--content-color-one);
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 1024px) {
  .product_meta {
    flex-flow: column;
  }
}
.flex-control-nav {
  position: relative;
  display: flex;
  gap: 1rem;
}

.woocommerce div.product div.images .flex-control-thumbs {
  overflow: unset !important;
}

.gallery_and_content .woocommerce-product-gallery, .gallery_and_content .summary.entry-summary {
  float: unset !important;
  width: unset !important;
}

.single-pattern-box {
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.single-pattern-box .pattern-1 {
  position: absolute;
  top: -8%;
  left: -5%;
}
.single-pattern-box .pattern-2 {
  position: absolute;
  top: 100px;
  right: -5%;
}

.variations_form.cart {
  margin-bottom: unset !important;
}

.risehand_product_single .variations tbody, .quick_view .variations tbody {
  display: inline-block;
  background: var(--color-white);
  border-radius: 5px;
  margin-bottom: 5px;
}
.risehand_product_single .variations thead, .quick_view .variations thead {
  display: inline-block;
  background: var(--color-white);
  border-radius: 5px;
}
.risehand_product_single .variations tr td, .risehand_product_single .variations tr th, .quick_view .variations tr td, .quick_view .variations tr th {
  text-align: center;
  background: unset;
  vertical-align: middle !important;
  align-items: center;
}
.risehand_product_single .variations tr td label, .risehand_product_single .variations tr th label, .quick_view .variations tr td label, .quick_view .variations tr th label {
  background: unset;
}
.risehand_product_single .variations tr td select, .risehand_product_single .variations tr th select, .quick_view .variations tr td select, .quick_view .variations tr th select {
  margin-right: 0px !important;
  width: unset !important;
  min-width: unset !important;
  max-width: unset !important;
  display: inline-block;
}
.risehand_product_single .variations tr td .reset_variations, .risehand_product_single .variations tr th .reset_variations, .quick_view .variations tr td .reset_variations, .quick_view .variations tr th .reset_variations {
  position: absolute;
  background: var(--color-set-one-2);
  font-size: 13px;
  line-height: normal;
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 5px;
}
.risehand_product_single .woocommerce-variation-price, .quick_view .woocommerce-variation-price {
  margin-bottom: 20px;
}
.risehand_product_single .cart.grouped_form, .quick_view .cart.grouped_form {
  display: block !important;
  background: var(--color-white);
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 10px;
}
.risehand_product_single .cart.grouped_form tr, .quick_view .cart.grouped_form tr {
  padding: 10px 0px !important;
  border-bottom: 1px solid var(--color-set-one-bor-1) !important;
}
.risehand_product_single .cart.grouped_form tr td, .risehand_product_single .cart.grouped_form tr th, .quick_view .cart.grouped_form tr td, .quick_view .cart.grouped_form tr th {
  padding: 10px 0px !important;
}
.risehand_product_single .cart.grouped_form tr:last-child, .quick_view .cart.grouped_form tr:last-child {
  border-bottom-color: transparent !important;
}
.risehand_product_single .woocommerce-grouped-product-list-item__price span, .risehand_product_single .woocommerce-grouped-product-list-item__price del, .quick_view .woocommerce-grouped-product-list-item__price span, .quick_view .woocommerce-grouped-product-list-item__price del {
  color: var(--heading-color-one);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: unset;
}
.risehand_product_single .woocommerce-grouped-product-list-item__price del, .quick_view .woocommerce-grouped-product-list-item__price del {
  margin-right: 5px;
}
.risehand_product_single .woocommerce-grouped-product-list-item__price del span, .quick_view .woocommerce-grouped-product-list-item__price del span {
  color: var(--content-color-one);
  font-size: 15px;
}
.risehand_product_single .woocommerce-grouped-product-list-item__price del bdi, .quick_view .woocommerce-grouped-product-list-item__price del bdi {
  line-height: normal;
  text-decoration: line-through;
}

.single_variation_wrap {
  margin-top: 15px;
  width: 100%;
  display: block;
}

.woocommerce-checkout-review-order-table .cart_item {
  border: 1px solid var(--color-set-one-bor-1);
}
.woocommerce-checkout-review-order-table .cart_item .product-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: unset;
}
.woocommerce-checkout-review-order-table table, .woocommerce-checkout-review-order-table table tbody, .woocommerce-checkout-review-order-table table tbody tr td, .woocommerce-checkout-review-order-table table tbody tr th, .woocommerce-checkout-review-order-table table thead {
  border-collapse: collapse;
}
.woocommerce-checkout-review-order-table table tbody tr th, .woocommerce-checkout-review-order-table table thead tr th {
  border-collapse: collapse;
}

.shop_table thead tr th, .woosw-items thead tr th, .woosc-items thead tr th, .woosc_table thead tr th {
  border-color: var(--color-set-one-2);
  background: var(--color-set-one-2);
  color: var(--color-white);
}
.shop_table thead tr th a, .woosw-items thead tr th a, .woosc-items thead tr th a, .woosc_table thead tr th a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--color-white);
}
.shop_table tbody tr th, .shop_table thead tr th, .woosw-items tbody tr th, .woosw-items thead tr th, .woosc-items tbody tr th, .woosc-items thead tr th, .woosc_table tbody tr th, .woosc_table thead tr th {
  padding: 15px !important;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content {
  max-width: 700px !important;
}

.woosc_table img {
  width: 50%;
  margin: auto;
}
.woosc_table .star-rating {
  float: unset;
}
.woosc_table thead, .woosc_table tbody, .woosc_table tfoot, .woosc_table tr, .woosc_table td, .woosc_table th {
  padding: 15px;
}
.woosc_table .td-label {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color-one);
}

.product-remove {
  vertical-align: middle;
  width: 50px;
}
.product-remove a {
  width: 30px !important;
  padding: 0px !important;
  height: 30px !important;
  line-height: 25px !important;
  text-align: center !important;
}

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

.product-thumbnail {
  vertical-align: middle;
  width: 100px;
}
.product-thumbnail a img {
  width: 80px !important;
  margin: auto !important;
}

.product-name, .product-name a, .woosw-item--name a {
  font-size: 18px;
  font-family: var(--font-family-main);
  font-weight: 700;
  text-align: left;
  line-height: normal;
  color: var(--heading-color-one);
}
.product-name h6, .product-name a h6, .woosw-item--name a h6 {
  margin-bottom: 5px;
}
.product-name p, .product-name a p, .woosw-item--name a p {
  margin-bottom: 0px;
}
.product-name p strong, .product-name a p strong, .woosw-item--name a p strong {
  font-weight: unset;
  color: unset;
}

.woosw-item--name {
  line-height: normal;
  text-align: left;
}

.woosw-item--time {
  line-height: normal;
}

.woosw-item--actions {
  text-align: center;
}

.woocommerce-cart-form .product-price span, .woocommerce-cart-form .product-price del, .woocommerce-cart-form .product-subtotal span, .woocommerce-cart-form .product-subtotal del, .woosw-item--price span, .woosw-item--price del, .tr-price span, .tr-price del {
  color: var(--heading-color-one);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: unset;
}
.woocommerce-cart-form .product-price del, .woocommerce-cart-form .product-subtotal del, .woosw-item--price del, .tr-price del {
  margin-right: 5px;
}
.woocommerce-cart-form .product-price del span, .woocommerce-cart-form .product-subtotal del span, .woosw-item--price del span, .tr-price del span {
  color: var(--content-color-one);
  font-size: 15px;
}
.woocommerce-cart-form .product-price del bdi, .woocommerce-cart-form .product-subtotal del bdi, .woosw-item--price del bdi, .tr-price del bdi {
  line-height: normal;
  text-decoration: line-through;
}

.woosw-list table.woosw-items tr:nth-child(2n) td, .woosw-list table.woosw-items tr:hover td {
  background: var(--color-set-one-bg-1) !important;
}

.woosw-item--remove {
  min-width: 50px;
  text-align: center;
}

.woosw-item--price del {
  text-decoration: line-through;
  text-decoration-color: var(--content-color-one);
}

.woosw-item--add a {
  min-width: 200px;
  justify-content: center;
  text-align: center;
}

.actions .coupon input[name=coupon_code], .cart-collaterals .cart_totals .wc-proceed-to-checkout .coupon input[name=coupon_code] {
  border-color: var(--color-set-one-bor-1) !important;
}
.actions input[name=coupon_code], .actions .button, .actions .btn.btn-sm, .cart-collaterals .cart_totals .wc-proceed-to-checkout input[name=coupon_code], .cart-collaterals .cart_totals .wc-proceed-to-checkout .button, .cart-collaterals .cart_totals .wc-proceed-to-checkout .btn.btn-sm {
  padding: 10px 15px !important;
  line-height: 1.75 !important;
  border-color: var(--color-set-one-1) !important;
  font-size: 1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.wc_payment_methods .wc_payment_method {
  margin: 15px 0px !important;
}

.woocommerce-order-details__title, .woocommerce-column__title {
  font-size: 30px;
  line-height: 40px;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  font-weight: 400;
}

.woocommerce ul.order_details {
  margin: 0px;
  padding: 0px;
}

.woocommerce-checkout-payment {
  margin-top: 30px;
}
.woocommerce-checkout-payment a {
  color: rgba(var(--color-white-rgba), 0.6);
}
.woocommerce-checkout-payment label {
  width: unset !important;
}
.woocommerce-checkout-payment .form-row.place-order {
  background: var(--color-set-one-bg-l-1);
}
.woocommerce-checkout-payment .form-row.place-order p, .woocommerce-checkout-payment .form-row.place-order a {
  color: var(--content-color-one);
}
.woocommerce-checkout-payment .form-row.place-order button[name=woocommerce_checkout_place_order] {
  background: var(--color-set-one-2) !important;
  border-color: var(--color-set-one-2) !important;
}
.woocommerce-checkout-payment input {
  position: relative;
  top: -2px;
}
.woocommerce-checkout-payment input[type=radio]:checked, .woocommerce-checkout-payment input[type=checkbox]:checked {
  background: var(--color-set-one-3);
  border-color: var(--color-set-one-3) !important;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: var(--color-set-one-2);
}

.woocommerce-checkout-payment .woocommerce-privacy-policy-text p {
  color: var(--color-white);
}

#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
  background: var(--color-set-one-1);
  border-bottom: 1px solid var(--color-set-one-1);
}
#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
  list-style: none;
  cursor: pointer;
}
#add_payment_method #payment ul.payment_methods li .payment_box, .woocommerce-cart #payment ul.payment_methods li .payment_box, .woocommerce-checkout #payment ul.payment_methods li .payment_box {
  background: var(--color-set-one-2);
  color: var(--color-white);
}
#add_payment_method #payment ul.payment_methods li .payment_box::before, .woocommerce-cart #payment ul.payment_methods li .payment_box::before, .woocommerce-checkout #payment ul.payment_methods li .payment_box::before {
  border-bottom-color: var(--color-set-one-2);
}
#add_payment_method #payment ul.payment_methods li label, .woocommerce-cart #payment ul.payment_methods li label, .woocommerce-checkout #payment ul.payment_methods li label {
  display: inline-block;
  margin: 0px;
  color: var(--color-white);
}
#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
  display: inline-block;
  margin: -5px 10px 0 0;
  border-color: var(--color-white);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: unset;
  width: 100%;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-set-one-bor-3);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0px;
  padding: 0px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  display: inline-block;
  padding-right: 10px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  padding: 6px 18px;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  font-family: var(--font-family-main);
  border-radius: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-set-one-bor-1);
  color: var(--heading-color-one);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  border-color: var(--color-set-one-1) !important;
  background: var(--color-set-one-1) !important;
  color: var(--color-white) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover a {
  background: var(--color-set-one-2) !important;
  color: var(--color-white) !important;
}

.woocommerce-Address address {
  line-height: 26px;
  font-weight: 500;
  color: var(--heading-color-one);
}

.edit {
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  background: var(--color-set-one-1) !important;
  color: var(--color-white) !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: unset;
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset {
  padding: 15px 0px !important;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color-one);
}

.woocommerce-orders-table__cell-order-actions, .woocommerce-orders-table__cell-order-number, .woocommerce-orders-table__header-order-number, .woocommerce-orders-table__header-order-actions {
  text-align: center;
}

.woocommerce-orders-table__cell-order-number a {
  color: var(--heading-color-one);
  font-weight: 600;
}

.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
  padding: 10px;
}

body .woosw-list .woosw-copy .woosw-copy-url {
  margin-right: 5px;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url],
.wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__container:after,
.is-large .wc-block-checkout__actions:after, .wc-block-components-totals-wrapper:after, .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-order-summary .wc-block-components-order-summary-item:after,
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox],
.wc-block-components-textarea, .is-large.wc-block-cart .wc-block-cart-items td:after,
.wc-block-components-quantity-selector:after {
  border-color: var(--color-set-one-bor-1) !important;
  opacity: 1 !important;
}

body .is-large.wc-block-cart .wc-block-cart-items th, body .is-large.wc-block-cart .wc-block-cart__totals-title,
body .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, body table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-size: 24px;
  line-height: normal;
  text-transform: capitalize;
  font-weight: 700;
  font-family: var(--font-family-main);
  padding: 10px 0px;
}
body .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, body table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-size: 20px;
  color: var(--heading-color-one);
  line-height: normal;
}
body .wc-block-components-product-price {
  line-height: normal;
  font-weight: 600;
}

.wc-block-cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  width: 18px;
  height: 18px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label, .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-cart__totals-title {
  color: var(--heading-color-one) !important;
  font-family: var(--font-family-main);
}

body .is-large .wc-block-components-sidebar .wc-block-components-panel, body .is-large .wc-block-components-sidebar .wc-block-components-totals-coupon, body .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
  padding: 0px;
}
body .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  border-radius: 40px !important;
  background: var(--color-set-one-1);
  border-color: var(--color-set-one-1);
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: var(--color-white);
}

.wp-block-woocommerce-checkout-order-summary-block {
  font-family: var(--font-family-main);
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper svg {
  right: 15px;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper .wc-block-components-panel__button {
  background: var(--color-set-one-bg-l-1);
  color: var(--heading-color-one);
  font-size: 24px;
  justify-content: flex-start;
  text-align: left;
  line-height: normal;
  font-weight: 700;
  padding: 10px 20px;
  margin-bottom: 20px !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper .wc-block-components-product-name {
  color: var(--heading-color-one);
  font-size: 18px;
  font-weight: 700;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper:nth-child(1):after {
  display: none;
}

.wc-block-components-product-price__regular {
  color: var(--content-color-one) !important;
  text-decoration-color: var(--content-color-one) !important;
  opacity: 0.6;
}

.wc-block-components-product-price__value, .wc-block-components-checkout-return-to-cart-button {
  font-size: 16px;
  color: var(--heading-color-one);
  font-weight: 600;
}

body .wc-block-components-product-badge {
  font-family: var(--font-family-main);
  font-weight: 600;
  font-size: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-set-one-1);
  color: var(--color-set-one-1);
  padding: 3px 6px;
  margin: 5px 0px;
  line-height: normal;
}

.sec_comments {
  position: relative;
  padding: 30px 0 40px 0;
}
.sec_comments .comment-reply-title {
  font-size: 34px;
  line-height: 44px;
}
.sec_comments .comment-respond form .custom-checkbox label {
  display: inline-block;
  margin-left: 0px;
  width: unset;
}
.sec_comments .comment-respond form input[type=text], .sec_comments .comment-respond form input[type=text], .sec_comments .comment-respond form textarea {
  border-color: var(--color-set-one-bg-l-3);
  background-color: var(--color-set-one-bg-l-3);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.sec_comments .comment-respond form input[type=text]:hover, .sec_comments .comment-respond form input[type=text]:hover, .sec_comments .comment-respond form textarea:hover {
  border-color: var(--color-set-one-1);
  background-color: var(--background-white);
}

.single-portfolio .sec_comments, .single-service .sec_comments, .single-volunteer .sec_comments {
  padding: 50px 0px 40px 0;
}

.comment_box.comments-area {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid var(--color-set-one-bg-2);
}

.comment-form h3 {
  margin-bottom: 20px;
}
.comment-form .comment-form {
  padding-top: 0px;
  margin-bottom: 0px;
}
.comment-form .comment-form label {
  margin-bottom: 10px;
  display: block;
}

.comment_box li .font-heading {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  display: block;
  color: var(--heading-color-one);
}
.comment_box .comment-list {
  padding-left: 0px;
}
.comment_box .comment-list li {
  list-style: none;
}
.comment_box .comment-list .comment {
  margin-bottom: 25px;
}
.comment_box .comment-list .comment-list {
  padding-bottom: 0px;
}
.comment_box .comment-list .comment-list .comment-list {
  padding-bottom: 0px;
}
.comment_box .comment-list .children li {
  padding-top: 25px;
  margin: 0px;
}
.comment_box .comment-list .children .odd {
  padding-left: 20px;
}
.comment_box .comment-list .comment-respond {
  padding: 30px 0px 0px;
  margin-top: 30px;
}

#cancel-comment-reply-link {
  padding-left: 8px;
  color: var(--color-set-one-1);
}

.single-comment .user {
  min-width: 100%;
}
.single-comment .user .thumb {
  max-width: 80px;
  min-width: 80px;
  width: 80px;
  margin-right: 0px;
  position: absolute;
}
.single-comment .user .thumb img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px;
}
.single-comment .user .comment-text {
  padding-left: 80px;
}
.single-comment .user .comment-text ul li, .single-comment .user .comment-text ol li {
  list-style: decimal;
}
.single-comment .user .comment-text .desc ul {
  padding-left: 0px;
}
.single-comment .user .comment-text .desc ul li {
  list-style: none;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.single-comment .user .comment-text .desc ul li:last-child {
  float: right;
}
.single-comment .user .comment-text .desc ul li.datesss {
  font-size: 16px;
}
.single-comment .user .comment-text .desc ul li.datesss i {
  font-size: 16px;
  top: 2px;
  position: relative;
  margin-right: 5px;
  color: var(--color-set-one-1);
}
.single-comment .user .comment-text .desc ul li:first-child {
  max-width: 65%;
}
.single-comment .user .comment-text .inner_text_ul {
  margin-bottom: 10px;
}
.single-comment .user .comment-text .inner_text_ul li {
  margin: 0px !important;
  padding: 0px !important;
}
.single-comment .user .comment-text a.font-heading {
  font-size: 18px;
  line-height: 26px;
}
.single-comment .user .comment-text .reply {
  opacity: 1;
}
.single-comment .user .comment-text .reply a {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  color: var(--heading-color-one);
}

.trackback, .pingback {
  margin-bottom: 25px;
}
.trackback .single-comment .comment-text, .pingback .single-comment .comment-text {
  padding-left: 0px;
}

.children .comment-respond {
  padding: 20px 0px 0px;
}
.children .comment-respond .comment-reply-title small {
  padding-left: 10px;
}
.children .comment-respond .comment-reply-title small a {
  color: var(--color-set-one-1);
}
.children .comment-respond .comment-reply-title small a:hover {
  color: var(--color-set-one-2);
}

#side_menu_toggle_btn {
  position: fixed;
  top: 166px;
  right: 0;
  font-size: 22px;
  color: #fff;
  width: 40px;
  height: 40px;
  background-color: var(--background-color-extra);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms;
  border-radius: 10px 0 0 10px;
  z-index: 999;
}
#side_menu_toggle_btn i {
  transform: rotate(90deg);
}
#side_menu_toggle_btn .text_rotate {
  position: absolute;
  font-size: 13px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--background-color-extra);
  padding: 3px 10px;
  right: 100%;
  bottom: 0;
  min-width: 90px;
  margin-right: 13px;
  line-height: 19px;
  height: 25px;
  top: 9px;
  transition: 500ms;
  opacity: 0;
  visibility: hidden;
  font-weight: 500;
}
#side_menu_toggle_btn .text_rotate:before {
  position: absolute;
  right: -17px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  border-left: 10px solid var(--background-color-extra);
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  height: 15px;
}
#side_menu_toggle_btn:hover .text_rotate {
  opacity: 1;
  visibility: visible;
}

.sidemenu_area {
  position: fixed;
  top: 0px;
  right: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: translateX(100%);
  transition: transform 500ms ease;
  transition: transform 500ms ease;
  border-radius: 10px 0px 0px 10px;
}
.sidemenu_area .side_menu_content {
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 99999999999;
  box-shadow: var(--box-shadow-two);
  overflow: auto;
  padding: 40px 0px 0px;
  border: 1px solid var(--color-set-one-bor-1);
}
.sidemenu_area .side_menu_content #side_menu_toggle_btn_close {
  position: absolute;
  background: var(--secondary-color-main);
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  top: 0;
  right: 0;
}
.sidemenu_area .side_menu_content::-webkit-scrollbar {
  width: 8px;
}
.sidemenu_area .side_menu_content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #f1f1f1;
  background: #f1f1f1;
}
.sidemenu_area .side_menu_content::-webkit-scrollbar-thumb {
  background: var(--color-set-one-1-three);
  box-shadow: inset 0 0 6px var(--color-set-one-1-three);
}
.sidemenu_area .side_menu_content::-webkit-scrollbar-thumb:window-inactive {
  background: var(--color-set-one-1-three);
}

body.side_menu_toggled .sidemenu_area {
  transform: translateX(0%);
}
body.side_menu_toggled #side_menu_toggle_btn {
  opacity: 0;
  visibility: hidden;
}
body.side_menu_toggled .style-switcher {
  z-index: 9999;
}

/*------back-to-top------------*/
.prgoress_indicator {
  position: fixed;
  right: 50px;
  bottom: 75px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(var(--color-set-one-3-rgba), 0.09);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transform: translateY(15px) !important;
  transition: all 200ms linear !important;
}
.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}
.prgoress_indicator::after {
  position: absolute;
  content: "\e982";
  font-family: "risehand";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--color-set-one-1);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  font-weight: 900;
  z-index: 1;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: var(--color-set-one-1);
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke: var(--color-set-one-1);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}

.footer.footer_default {
  position: relative;
  padding: 20px 0px;
  border-top: 1px solid var(--color-set-one-bor-1);
}

.footer_area > p {
  display: none;
}

html body.rtl {
  /* RTL Support */
}
html body.rtl .risehand_menu_icon .icon-link {
  padding-left: 5px !important;
  padding-right: unset !important;
}
html body.rtl .goalsdetails > div::before {
  right: unset !important;
  left: 0 !important;
}
html body.rtl .risehand_menu_icon .icon-link {
  padding-left: 5px !important;
  padding-right: unset !important;
}
html body.rtl .donation_progress .perin .percent::before {
  right: unset !important;
  left: -12px !important;
}
html body.rtl .date_tm time i, html body.rtl .comments i {
  margin-right: unset !important;
  margin-left: 6px !important;
}
html body.rtl .date_tm time {
  display: flex;
}
html body.rtl .slider_v2 .swiper_arrows {
  flex-direction: row-reverse;
}
html body.rtl .progress_bar_section .progress small {
  margin-left: unset !important;
  margin-right: -4% !important;
}
html body.rtl .side-menu__block {
  left: auto;
  right: 0;
}
html body.rtl .side-menu__block-inner {
  transform: translateX(-100%);
  position: absolute;
  left: 0;
  top: 0;
}
html body.rtl .optactive .side-menu__block .side-menu__block-inner {
  transform: translateX(0);
}
html body.rtl .opt_close_btn {
  right: auto;
  left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 10px;
}
html body.rtl .risehand_tab .showcase_tabs_btns li a {
  display: flex;
  flex-direction: row-reverse;
}
html body.rtl .give-donation-amount .give-currency-symbol {
  border-left: unset !important;
  border-right: 2px solid var(--color-set-one-bor-1) !important;
}
html body.rtl .give-donation-amount span {
  float: right !important;
}
html body.rtl .testimonial_box.style_two .quote_icons, html body.rtl .testimonial_box.style_three .quote_icons {
  right: unset;
  left: 20px;
}
html body.rtl .testimonial_box.style_two .content_box::before {
  right: 25px;
  left: unset;
}
html body.rtl .testimonial_box.style_two .authour_details {
  padding-left: 0;
  padding-right: 20px;
}
html body.rtl .icon_box_all.style_four .spattern_bg {
  right: unset;
  left: 20px;
}
html body.rtl .icon_box_all.style_four::before {
  right: unset;
  left: 20px;
}
html body.rtl .portfolio-style_2 .content_box_outer {
  padding-right: unset;
  padding-left: 40px;
}
html body.rtl .portfolio-style_2 .content_box_outer .content_box_in .p_rd_more {
  right: unset;
  left: 0;
  border-top-right-radius: unset;
  border-top-left-radius: 6px;
}
html body.rtl .portfolio-style_2 .content_box_outer .content_box_in {
  padding: 15px 22px 15px 40px;
  border-radius: 6px;
  border-top-right-radius: 0px;
}
html body.rtl .prgoress_indicator {
  right: unset;
  left: 20px;
}
html body.rtl .icon_box_all.style_five .icon_box .spattern_bg {
  left: unset;
  right: -20px;
}
html body.rtl .mini-cart-icon {
  left: unset;
  right: 20px;
}
html body.rtl .mini-cart-icon .pro-count {
  left: 0;
  right: unset;
}
html body.rtl .mobile_menu_box .navigation_menu ul.navbar_nav > li .dropdown-btn {
  right: unset;
  left: 10px;
}
html body.rtl .mobile_menu_box .menu-box {
  left: unset;
}
html body.rtl .mobile_menu_box .menu-box {
  transform: translateX(0%);
}
html body.rtl .mobile_menu_box {
  padding-right: 0;
  padding-left: 30px;
  left: unset;
  right: 0;
  transform: translateX(100%);
}
html body.rtl.mobile_menu_box-visible .mobile_menu_box, html body.rtl.mobile_menu_box-visible .menu-box {
  transform: translateX(0%);
}
html body.rtl.woocommerce-shop.woocommerce .site-main > .row {
  flex-direction: row-reverse;
}
html body.rtl.woocommerce-shop.woocommerce .breadcrumb {
  flex-direction: row-reverse;
}
html body.rtl .breadcrumb li {
  padding-right: unset;
  margin-right: unset;
  padding-left: 20px;
  margin-left: 15px;
}
html body.rtl .breadcrumb li:last-child {
  margin-left: 0;
  padding-left: 0;
}
html body.rtl .breadcrumb li:after {
  transform: rotate(180deg);
  right: unset;
  left: -6px;
}
html body.rtl .product_card-one .content-wrap .add-cart {
  text-align: left;
}
html body.rtl .product_card-one .content-wrap .add-cart .quantity-input {
  right: unset;
  left: 0;
}
html body.rtl .product_meta ul li span {
  text-align: right;
  margin-left: 4px;
  margin-right: 0;
}
html body.rtl .portfolio-style_3 .content_box_outer .content_box_in .p_rd_more {
  right: unset;
  left: 10px;
}
html body.rtl .risehand_product_single .cart:not(.variations_form) .quantity-input, html body.rtl .risehand_product_single .woocommerce-variation-add-to-cart .quantity-input, html body.rtl .quick_view .cart:not(.variations_form) .quantity-input, html body.rtl .quick_view .woocommerce-variation-add-to-cart .quantity-input {
  margin-right: 0 !important;
  margin-left: 15px !important;
}
html body.rtl .product_meta ul li, html body.rtl .product_meta ul a {
  text-align: right;
}
html body.rtl .product_card-one .content-wrap .add-cart span, html body.rtl .product_card-one .content-wrap .add-cart .added_to_cart {
  right: unset;
  left: -10px;
}
html body.rtl .portfolio-style_5 .content_box_outer .spattern_bg {
  right: -80px;
  left: unset;
  transform: rotate(270deg);
}
html body.rtl .portfolio-style_5 .content_box_outer .p_rd_more {
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  body.rtl .navbar_nav .menu-item .sub-menu li.dropdown .dropdown-btn {
    left: 17px;
    right: unset;
  }
  body.rtl .navbar_nav .menu-item:not(.menu_fullwidth) .sub-menu {
    left: unset;
    right: -20px;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .menu-item .sub-menu .sub-menu {
    left: unset;
    right: 100%;
  }
  body.rtl .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu .sub-menu {
    left: unset;
    right: unset;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .menu-item {
    margin-left: 20px;
    margin-right: unset;
  }
  body.rtl .navbar_nav .menu-item .sub-menu li {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .flex_menu_activate:not(.menu_default).menu_two_column.menu_alignleft:not(menu_fullwidth) > .sub-menu {
    min-width: 600px;
    right: calc(0% - 150px);
    left: unset;
  }
  body.rtl .navbar_nav .flex_menu_activate:not(.menu_default).menu_two_column.menu_alignright:not(menu_fullwidth) > .sub-menu {
    min-width: 600px;
    right: calc(0% - 150px);
    left: unset;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .flex_menu_activate:not(.menu_default).menu_three_column.menu_alignleft:not(menu_fullwidth) > .sub-menu {
    min-width: 800px;
    right: calc(0% - 150px);
    left: unset;
  }
  body.rtl .navbar_nav .flex_menu_activate:not(.menu_default).menu_three_column.menu_alignright:not(menu_fullwidth) > .sub-menu {
    min-width: 800px;
    right: calc(0% - 150px);
    left: unset;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .flex_menu_activate:not(.menu_default) .sub-menu > li {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .menu-item:last-child {
    margin-right: unset;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  body.rtl .slider_v1 .slider-pagination {
    left: 10px;
    right: unset !important;
  }
  body.rtl .slider_v1 .swiper_arrows {
    left: unset !important;
    right: 10px;
  }
}
@media (min-width: 1200px) {
  body.rtl .navbar_nav .menu-item.dropdown .dropdown-btn {
    padding-left: unset;
    padding-right: 7px;
  }
}
@media (min-width: 1200px) {
  body.rtl .slider_box_V2.slideralignment_left .slider_content, body.rtl .slider_box_V3.slideralignment_left .slider_content {
    padding-right: unset !important;
    padding-left: 50px !important;
  }
}
@media (min-width: 1200px) {
  body.rtl .slider_box_V2.slideralignment_right .slider_content, body.rtl .slider_box_V3.slideralignment_right .slider_content {
    padding-right: 50px !important;
    padding-left: unset !important;
  }
}/*# sourceMappingURL=theme.min.css.map */