@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1c1d21;
  background-repeat: repeat-x;
  background-position: top center;
}

:root {
  --border-radius-s: 2px;
  --border-radius-m: 4px;
  --border-radius-l: 8px;
  --border-radius-xl: 16px;
  --border-radius-xxl: 32px;
  --color-warning: #ffea8b;
  --primary-text-color: #1c1d21;
  --primary: #125ccb;
  --primary-bg-color: #1c1d21;
  --primary-color: #1c1d21;
  --highlight: #1c1d21;
  --secondary-color: #1c1d21;
  --lightgrey-color: #f3f4f7;
  --primary-hover-color: #166aea;
  --light-bg: #f1f5f9;
  --dark-color: #1c1d21;
  
}

b,
strong {
  font-weight: 600;
}

.p1 {
  padding: 10px;
}
.p2 {
  padding: 20px;
}
.p3 {
  padding: 30px;
}
.p4 {
  padding: 40px;
}
.p5 {
  padding: 50px;
}

a {
  color: var(--primary);
}
a:hover {
  text-decoration: none !important;
  color: var(--primary-color);
}
p {
  margin: 0 0 20px 0;
}
p img {
  border-radius: var(--border-radius-m);
  overflow: hidden;
}

h2 {
  font-size: 36px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}

.h6,
h6 {
  font-size: 0.8rem;
  font-weight: 400 !important;
}

img.chimp_loader {
  width: 96px;
}

header {
  background: #252525;
  color: #fff;
}

.topheader {
  padding: 28px 0;
}

.topheader_inner {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.text_left {
  text-align: left !important;
}

.dropdown,
.dropup {
  position: relative;
}

.mb-4-5,
.my-4-5 {
  margin-bottom: 2rem !important;
}

.bold {
  font-weight: bold !important;
}
.container {
}

.main_blog_content a {
  color: var(--primary-color);
}

.main_blog_content img {
  border: solid 1px #eceef7;
  background: var(--lightgrey-color);
  border-radius: var(--border-radius-s);
  overflow: hidden;
}

p {
  margin: 0 0 20px 0px !important;
}

.main_blog_content p {
  line-height: 1.8;
}

.next_pre_post p {
  line-height: 1.2;
}

.btn_explore_map {
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px 40px 5px 20px;
  position: relative;
  margin-left: -60px;
}

.btn_explore_map::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/white_arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 11px;
  right: 10px;
}

.btn_explore_map:hover {
  background: #26e288;
  -webkit-animation: btn-animate 0.2s;
  /* Safari 4.0 - 8.0 */
  animation: btn-animate 0.2s;
}

@-webkit-keyframes btn-animate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.search_header {
  min-height: 580px;
  color: #fff;
  background-image: url(../images/header_search.jpg);
  background-size: cover;
  background-position: center center;
}

.hero_text {
  padding-top: 62px;
  text-align: center;
  position: relative;
}

.hero_text h1 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.hero_text h2 {
  color: #cecece;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-style: italic;
  margin: 0;
}

.hero_text h2 span {
  font-weight: 600;
  color: #fff;
}

.omnibox {
  margin: auto;
  margin-top: 24px;
  transition: all 0.3s;
  width: 585px;
}

.searchbox {
  position: relative;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  width: 585px;
  height: 52px;
  border-bottom: 1px solid transparent;
  padding: 12px 50px 10px 20px;
  transition-property: background, box-shadow;
  transition-duration: 0.3s;
}

.searchbox_input {
  position: relative;
}

.searchbox_shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.searchbox_border_radius_2 {
  border-radius: 0;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.searchbox_input input {
  width: 100%;
  border: none;
  padding: 0px;
  font-size: 16px;
  line-height: 30px;
  color: #1c1d21;
  margin: 0px;
  outline: none;
  height: auto;
  position: absolute;
  z-index: 1;
  background-color: transparent;
  transition: all 0.218s;
  opacity: 1;
  text-align: left;
  left: 0px;
}

.searchbox_input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--secondary-color);
}

.searchbox_input input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--secondary-color);
}

.searchbox_input input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--secondary-color);
}

.searchbox_input input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--secondary-color);
}

.searchbox_searchbutton_container {
  position: absolute;
  right: 0px;
  top: 0;
}

.searchbox_searchbutton {
  display: block;
  padding: 16px 20px;
  cursor: pointer;
}

.searchbox_searchbutton::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/search_graphite.svg);
  background-size: 20px 20px;
}

.searchbox_searchbutton:hover::before {
  background: url(../images/search_graphite_dark.svg);
  background-size: 20px 20px;
}

.searchbox_searchbutton_active::before {
  background: url(../images/search_graphite_dark.svg);
  background-size: 20px 20px;
}

.searchbox_clearbutton_container {
  display: none;
}

.searchbox_clearbutton_added .searchbox_clearbutton_container {
  display: block !important;
}

.searchbox_clearbutton_added .searchbox_searchbutton_container {
  right: 54px;
}

.searchbox_clearbutton_added
  .searchbox_searchbutton_container
  .searchbox_searchbutton::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  border-left: 2px solid #d8d8d8;
  height: 30px;
}

.searchbox_clearbutton_container {
  position: absolute;
  right: 0px;
  top: 0;
}

.searchbox_clearbutton {
  display: block;
  padding: 22px 18px;
  cursor: pointer;
}

.searchbox_clearbutton::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/search_entry/clearbutton.svg);
  background-size: 18px 18px;
}

.suggestions {
  z-index: 1;
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  font-size: 15px;
  overflow: hidden;
  width: 100%;
  top: 3px;
}

/* sbs - search box suggetions */

.sb_suggestions {
  border-top: solid 0px #eaeaea;
}

.sb_suggestions ul {
  margin: 0;
  padding: 0;
}

.sb_suggestions ul li {
  list-style-type: none;
  padding: 0 12px;
}

.sbs_wrapper {
  margin: 0;
  border-bottom: solid 1px #eaeaea;
  display: table;
  font-size: 14px;
  height: 60px;
  -webkit-transition: 0.35s ease-out;
  -moz-transition: 0.35s ease-out;
  -o-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
  cursor: pointer;
  width: 100%;
}

.sbs_icon_container {
  float: left;
  margin: 14px 0 0 5px;
}

.sbs_icon_container img {
  width: 30px;
  height: 30px;
}

.sbs_wrapper::after {
  content: "";
  clear: both;
  display: table;
}

.sbs_query {
}

.sbs_query_options {
  display: block;
  color: var(--secondary-color);
}

.sbs_query_container {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 100%;
  padding: 0 0 0 18px;
}

.sbs_icon {
  width: 30px;
  height: 30px;
  background: #1c1d21;
  color: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  padding: 7px 0;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.sbs_icon img {
  max-width: 16px;
  max-height: 16px;
  margin: -4px 0 0 0;
}

.sbs_icon_search_custom {
  background: var(--secondary-color);
  background-image: url(../images/icon/search_material_icon.svg);

  background-position: 7px 7px;
  background-repeat: no-repeat;
}

.sbs_icon_search_custom_active {
  background: #f95c63;
  background-image: url(../images/icon/search_material_icon.svg);

  background-position: 7px 7px;
  background-repeat: no-repeat;
}

.sbs_icon_hunting {
  background: #5e9d7f;
}

.sbs_icon_custom_pin {
  background: none;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../images/icon/sbs_icon_custom_pin.svg);
  width: 32px;
  height: 32px;
}

.sbs_icon_fishing {
  background: #0c96a7;
}

.sbs_icon_poi {
  background: #4c4c4c;
  background-image: url(../images/icon/location_on.svg);
  background-position: 10px 7px;
  background-repeat: no-repeat;
}

.sbs_icon_poi_text {
  background: #4c4c4c;
}

.sb_suggestions ul li:hover {
  background: #f7f7f7;
}

.sb_suggestions ul li:last-child .sbs_wrapper {
  border-bottom: 0px;
}

.topSectionContainer {
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  overflow: visible;
}

.single_col_menu {
  width: auto !important;
  position: absolute;
  left: auto !important;
}

.search_icon {
  width: 20px;
  height: 20px;
  background-image: url(../images/ic_search.svg);
  background-repeat: no-repeat;
  display: block;
}

.search_icon_link::after {
  display: none;
}

.fw_blog_search .input-group-text {
  background-color: #26c77a;
  border: 0;
}

.fw_blog_search input {
  border: solid 0px;
  font-size: 14px;
}

.fw_blog_search .input-group {
  border-radius: 4px;
  overflow: hidden;
}

.fw_blog_search .single_col_menu {
  margin-left: 0px;
}

.fw_blog_search .dropdown-menu {
  padding: 20px;
}

.search_suggetion {
  margin: auto;
  margin-top: 24px;
  transition: all 0.3s;
  width: 700px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.search_suggetion ul {
  margin: 0;
  padding: 0;
  display: inline;
}

.search_suggetion ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;
}

.search_suggetion ul li a {
  border: solid 1px #bababa;
  border-radius: 6px;
  padding: 5px 15px;
  margin: 0 0 0 4px;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.hidden {
  display: none;
}

.page_tm {
  margin-top: 30px;
}
.swiper-container {
  overflow: hidden;
}

.page_tm::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 244px;
  background: #fff;
}

.trending_warpper {
  display: flex;
  margin: 0px 15px 30px 15px;
}

.qr_lable {
  background: #1c1d21;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  text-transform: uppercase;
  border-radius: var(--border-radius-m);
  display: inline-block;
}

.trending_slider_wrapper {
  width: calc(100% - 200px);
  margin-left: 20px;
}
.trending_slider_wrapper a {
  color: var(--primary-text-color);
}

.swiper-button-prev {
  left: unset !important;
  right: 58px !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 24px !important;
  height: 24px !important;
  border: solid 1px #eaeaea;
  border-radius: 20px;
  outline: none;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 10px !important;
  color: #1c1d21;
}

.trending_slider_wrapper .swiper-slide {
  font-size: 16px;
  padding-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid_post_wrapper {
  padding: 0px;
  border-radius: var(--border-radius-m);
  overflow: hidden;
}

.top_grid_post {
  display: flex;
}

.first_post {
  width: calc(100% - 5px);
  height: 452px;
  margin-right: 5px;
}

.grid_post {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.grid_post_content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  z-index: 5;
}

.grid_post a.bg_image_link {
  /*background: transparent linear-gradient(180deg, #FFFFFF00 0%, #8389A27F 32%, #1C1D21 100%) 0% 0% no-repeat padding-box;*/
  background: transparent
    linear-gradient(180deg, #ffffff00 0%, #88888800 37%, #000000f0 100%) 0% 0%
    no-repeat padding-box;
}

.grid_post_content a {
  color: #fff;
}

.grid_post_lable {
  background: var(--color-warning);
  color: var(--primary-text-color);
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  border-radius: var(--border-radius-m);
}

.grid_post_content h1 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}

.grid_post_date {
  font-size: 12px;
}

.grid_post_right {
  width: 50%;
}

.second_post {
  width: 100%;
  height: 252px;
  margin-bottom: 5px;
}

.second_post h1 {
  font-size: 22px;
  line-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.second_post .grid_post_date {
  display: none;
}

.col_wrapper {
  display: flex;
  margin-top: 5px;
}

.third_post {
  width: calc(100% - 5px);
  height: 195px;
  margin-right: 5px;
}

.third_post .grid_post_date,
.fourth_post .grid_post_date {
  display: none;
}

.third_post h1,
.fourth_post h1 {
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fourth_post {
  width: calc(100% - 0px);
  height: 195px;
}

.title_block {
  border-bottom: solid 4px #1c1d21;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.title_block h4 {
  background: #1c1d21;
  color: #fff;
  font-size: 14px;
  padding: 15px 24px;
  display: inline-block;
  margin: 0 !important;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.title_block ul {
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.title_block ul li {
  display: inline-block;
  list-style: none;
}

.title_block ul li a {
  color: var(--secondary-color);
  text-transform: capitalize;
  display: block;
  padding: 4px 8px;
  font-weight: 600;
}

.title_block ul li a.active {
  color: #26c77a;
}

.title_block.title_block_hunting ul li a.active {
  color: #5e9d7f;
}

.title_block.title_block_fishing ul li a.active {
  color: #0c96a7;
}

.page_post {
  overflow: hidden;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.page_post:hover .fw_post_img {
  transform: scale(1.1);
}

.fw_post_img {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 2;
  background-position: center;
  border-radius: var(--border-radius-m);
}

.page_post a {
  color: #1c1d21 !important;
}

.page_post_sub a {
  color: #1c1d21 !important;
}

.page_post a:hover,
.page_post_sub a:hover {
  color: var(--primary);
}

.page_post_img {
  height: 250px;
  width: 100%;
  background-color: #eaeaea;
  background-size: cover;
  background-position: center;
  position: relative;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  border-radius: var(--border-radius-m);
}

.page_post_img a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
}

.grid_post a.bg_image_link {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 4;
}

.post_section {
  margin-bottom: 50px;
}
.page_post_lable {
  position: absolute;
  left: 1px;
  bottom: 1px;
  z-index: 9;
}

.post_lable {
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
}

.page_post h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page_post h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 20px !important;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.posts_slider_footer {
  display: flex;
  justify-content: flex-end;
}
.posts_slider_footer .view_all {
  position: relative;
  right: 10px;
  top: 8px;
}
.page_post_date {
  font-size: 12px;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.page_post_des {
  margin-top: 8px;
  font-size: 16px;
  font-weight: normal;
}

.page_post_sub {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.page_post_sub > * {
  flex: 0 0 auto;
}

.page_post_sub .page_post_img {
  width: 126px;
  height: 84px;
  margin-right: 15px;
  flex: 0 0 auto;
  position: relative;
}

.page_post_sub .page_post_lable {
  display: none;
}

.page_post_content {
  flex: 0 1 auto;
  position: relative;
}

.page_post_content h1 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.main_blog_content .page_post_content h3 {
  margin: 0 !important;
}

.page_post_content h3 {
  font-size: 16px;
  margin: 0 !important;
  font-weight: 500;
}

.page_post_content h3 p {
  font-weight: normal;
  margin: 10px 0 0 0 !important;
  font-size: 0.9rem;
}

.page_post_content .page_post_date {
  display: none;
}

.page_post_sub:last-child .page_post_content::after {
  border-bottom: solid 0px;
}

.grid_post {
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.page_post_sub {
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-height: 87px;
}

.page_post_sub:hover .fw_post_img {
  transform: scale(1.1);
}

.page_post_sub .fw_post_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.grid_post:hover .fw_post_img {
  transform: scale(1.1);
}

.page_post_sub:last-child:after {
  border-bottom: 0px;
}

.page_post_content::after {
  content: "";
  display: block;
  border-bottom: solid 1px #ecedf7;
  position: absolute;
  bottom: -25px;
  width: 100%;
}

.posts_slider_wrapper {
  position: relative;
}

.posts_slider_wrapper .swiper-button-next {
  right: 0px !important;
  top: calc(100% + 0px) !important;
  border: solid 1px #cfd5e0;
  width: 36px !important;
  height: 36px !important;
}

.posts_slider_wrapper .swiper-button-prev {
  right: 46px !important;
  top: calc(100% + 0px) !important;
  border: solid 1px #cfd5e0;
  width: 36px !important;
  height: 36px !important;
}

.title_block.title_block_fishing h4 {
  background: #0c96a7;
}

.title_block.title_block_fishing {
  border-color: #0c96a7;
  margin-top: 100px;
}

.fishing_post .page_post_img {
  height: 175px;
}

.fishing_post .page_post_sub .page_post_img {
  height: 106px;
}

.title_block_trending {
  margin-top: 80px;
}
.trending_post {
  margin-top: 80px;
}

.trending_post .page_post_img {
  height: 158px;
}

.trending_post .page_post h3 {
  font-size: 16px;
  line-height: 20px;
}

/* right side */
.right_banner_1 {
}
.right_banner_1 img {
  width: 100%;
}

.right_banner_2 {
}
.right_banner_2 img {
  width: 100%;
}
.sub_form_wrapper {
  background: #1c1d21;
  color: #fff;
  padding: 40px;
}

.sub_form_wrapper h3 {
  font-weight: 700;
  font-size: 24px;
}

.text_green {
  color: #26c77a;
}

.sub_form_wrapper input {
  border: solid 2px var(--secondary-color);
  background: #1c1d21;
  border-radius: 0;
  padding: 8px 16px;
  color: #fff;
}

.sub_form_wrapper .form-control:focus {
  background: #1c1d21;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25);
}

.sub_form_wrapper button {
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px;
}

.form_down_arrow {
  margin-top: 10px;
  margin-left: 15px;
}

.title_block_small {
  border-bottom: solid 3px #1c1d21;
}

.title_block_small h4 {
  font-size: 14px;
  font-weight: normal;
  background: #1c1d21;
  color: #fff;
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  margin-bottom: 0 !important;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.social_count_list {
  margin: 20px 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
}

.social_count_list li {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.social_text {
  margin-left: auto;
}

.social_text a {
  color: var(--primary);
  font-weight: 700;
  border: solid 1px var(--primary);
  padding: 3px 8px;
  border-radius: var(--border-radius-m);
}

.social_count {
  margin-left: 15px;
}

.best_shot_content .posts_slider_wrapper .page_post_img {
  height: 115px;
}

.best_shot_content .posts_slider_wrapper h1 {
  font-size: 14px;
  line-height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Reminder  */
.reminder_wrapper {
  background-image: url(../images/bg_reminder.jpg);
  background-size: cover;
  background-position: center center;
  padding: 60px 0;
  margin-top: 100px !important;
}

.reminder_wrapper img {
  display: block;
  margin: auto;
}

.reminder_wrapper h3 {
  font-size: 36px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0;
}

/* footer */
.footer {
  background: #141a22;
  padding: 40px;
}
footer {
  padding: 0 0;
}
.footer {
  border-top: 1px solid #999;
  background: #141a22;
  color: #74829d;
  font-size: 13px;
  padding: 60px 0;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}
.inner_page_footer {
  border-top: 1px solid #eceef7;
  background: #fff;
  color: #74829d;
  font-size: 13px;
}

.footer h5 {
  color: #fff;
  font-size: 18px;
}
.footer .list-unstyled li {
  padding: 8px 0;
}
.footer .list-unstyled li a {
  color: #fff !important;
}
.ns_border_right {
  border-right: solid 1px #6f737b;
}
.ns_border_bottom {
  border-bottom: solid 1px #6f737b;
  width: 100%;
  margin: 60px 0;
}
.footer address strong {
  color: #fff;
  display: block;
}
.ind_address {
  margin: 15px 0 60px 0;
}
.social_links {
  margin: 0;
  padding: 0;
}
.social_links li {
  display: inline-block;
  list-style: none;
  margin: 0 20px 0 0;
  padding: 0;
}
.social_links li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  border-radius: 25px;
}
.fb_icon {
  background-image: url(../images/qrcodechimp/social_icon.png);
}
.in {
  background-image: url(../images/qrcodechimp/social_icon.png);
  background-position: -70px 0;
}
.pn {
  background-image: url(../images/qrcodechimp/social_icon.png);
  background-position: -140px 0;
}
.connect_with_us_mob {
  display: none;
}

.ftr_divider {
  border-top: solid 1px #1c1d21 !important;
}

.fw_btn_dark {
  padding: 9px 26px;
}

.fw_viewall {
  margin-top: 15px;
  font-size: 14px;
  padding: 5px 15px;
}

.fw_viewall img {
  margin-top: -2px;
}

.btn-primary {
  background: var(--highlight);
  border: solid 1px var(--primary);
  color: #fff !important;
}
a.btn-primary {
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--highlight);
  border: solid 1px var(--highlight);
}

.btn-primary:focus {
  background: var(--highlight);
  border: solid 1px var(--highlight);
  outline: none;
  box-shadow: 0 0 0 0rem rgb(215, 116, 120) !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: var(--highlight);
  border: solid 1px var(--highlight);
  outline: none;
}

.mobile_content {
  display: none;
}

.hide_mob_content {
  display: block;
}

/* TOP LOGIN */
.login-link {
  margin-bottom: 0;
  padding-left: 0px !important;
  margin-left: 0;
}

.login-link li {
  display: inline-block;
  margin: 0 15px;
}

.login-link li:last-child {
  margin-right: 0;
}

.login-link li a {
  color: #fff;
  position: relative;
  font-size: 14px;
  font-weight: 600 !important;
}

.login-link li a:hover,
.login-link li a:focus {
  text-decoration: none;
  color: #fff;
}

.login-link li:first-child :after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #fff;
  opacity: 0.2;
  height: 12px;
  bottom: 2px;
  width: 2px;
  margin: 0px 0 0 14px;
}

.login-link li:nth-child(2) :after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #fff;
  opacity: 0.2;
  height: 12px;
  bottom: 2px;
  width: 2px;
  margin: 0px 0 0 14px;
}

.sign-up {
  background: white;
  border-radius: 4px;
  height: 54px;
  width: 50px;
  color: #2d2d2d !important;
  padding: 8.5px 20px;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.44px;
  line-height: 19px;
  text-align: center;
}

.sign-up .modal-dialog {
  width: 600px;
}

.btn_fb {
  margin-bottom: 15px;
  padding: 12px 30px;
}

.btn_g {
  padding: 11px 30px;
  color: #fff !important;
}

.btn_g {
  background: #4285f4;
  position: relative;
  width: 100%;
}

.btn_g:before {
  content: "";
  display: inline-block;
  background-image: url(../images/google-icon.svg);
  background-size: 19px;
  background-position: 11px;
  width: 42px;
  height: 42px;
  box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 2px;
  left: 2px;
  background-repeat: no-repeat;
  background-color: #fff;
}

.btn_fb {
  background: #3c5a99;
  position: relative;
  width: 100%;
  color: #fff !important;
}

.btn_fb:before {
  content: "";
  display: inline-block;
  background: url(../images/facebook-app-symbol.svg) no-repeat;
  background-size: 19px;
  background-position: 15px;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}

.black_link {
  text-decoration: underline;
  color: #1c1d21 !important;
}

.black_link:hover {
  color: #1c1d21;
}

.black_link_underline {
  position: relative;
  text-decoration: none !important;
}

.black_link_underline:hover {
  text-decoration: none;
}

.black_link_underline:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #1c1d21;
  bottom: 0;
  left: 0;
  height: 1px;
  bottom: -1px;
  width: 100%;
}

.signin_signup_title {
  margin: -5px 0 20px 0;
  font-weight: bold;
}

.hl-form-control {
  padding: 12px 20px;
}

.signin_signup .form-group {
  margin-bottom: 16px;
}

.signinsignup_call2action {
  width: 124px;
  padding: 12px 30px;
}

.signup_btn {
  width: 174px;
}

.signin_signup .modal-footer {
  background: #26c77a;
  color: #fff;
  padding: 27px 30px 26px 30px;
}

.signin_signup .modal-footer span {
  font-weight: 600;
  margin: auto;
}

.signin_signup .modal-footer a {
  font-weight: 600;
}

.signin_signup .modal-content {
  border: 0px;
  width: 600px;
}

.login_w_account {
  position: relative;
  font-size: 14px;
  font-weight: bold !important;
  background: #1eaa67;
  border-radius: 4px;
  color: #fff !important;
  text-decoration: none;
  padding: 9px 23px 8px 12px;
  letter-spacing: -0.44px;
  margin-left: 8px;
  text-transform: uppercase;
}

.login_w_account:focus {
  text-decoration: none !important;
}

.login_w_account::after {
  content: "";
  display: inline-block;
  background-image: url(../images/login/sign_up_arrow.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 9px;
  top: 14px;
}

.signin_signup .modal-header .close {
  background-image: url(../images/ic_close.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  opacity: 1;
  background-position: 6px;
  position: relative;
  top: 0px;
  right: -10px;
}

.signin_signup .modal-header .close:focus {
  outline: none;
}

.login_w_account:hover {
  text-decoration: none;
}

.signin_signup label.error {
  font-size: 12px;
}

.signin_signup .modal-content {
  border-radius: 0;
  font-size: 13px;
  background: url(../images/bg_popup.jpg) no-repeat #fff;
}

.signin_signup .modal-body {
  padding: 60px 60px 30px 60px;
  padding-top: 0;
}

.signin_signup .modal-header {
  border: 0;
  padding: 0;
}

.signin_signup .modal-footer {
  text-align: center;
}

.signin_signup_title {
  margin: 5px 0 32px 0;
  color: #2d2d2d;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 40px;
  text-align: center;
}

.font-13 {
  font-size: 13px;
}

.signin_signup_content .divider {
  margin: 38px -60px;
  text-align: center;
  position: relative;
  background: #fff;
  display: block;
  padding: 10px;
}

.signin_signup_content .divider::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0;
  border-bottom: solid 1px #ddd;
}

.signin_signup_content .divider::before {
  content: "or";
  position: absolute;
  height: 12px;
  top: 0;
  left: calc(50% - 20px);
  z-index: 9;
  padding: 0 10px;
  background: #fff;
}

.signin_signup .modal-footer {
  padding: 30px;
}

.signin_signup {
  color: #9f9f9f;
  text-align: center;
}

.signin_signup .close {
  font-size: 40px;
  font-weight: 600;
  margin: 10px 20px 0 0;
  opacity: 0.5;
}

.hl-form-control {
  border-radius: 0;
  padding: 10px 20px;
  font-size: 15px;
  border: 1px solid #cccccc;
  outline: none;
  height: unset;
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}

.hl-form-control:focus {
  border-color: #ccc;
  outline: 0;
  -webkit-box-shadow:
    inset 0 0px 0px rgba(0, 0, 0, 0.075),
    0 0 0px rgba(102, 175, 233, 0.6);
  box-shadow:
    inset 0 0px 0px rgba(0, 0, 0, 0.075),
    0 0 0px rgba(102, 175, 233, 0.6);
}

.signinsignup_call2action {
  margin: 8px 0 0 0;
}

.s_form_content {
  margin: 0 0 15px 0;
}

.s_form_content .custom_checkbox {
  margin: 0 0 6px 0;
}

.s_form_content .custom_checkbox:last-child {
  margin: 0 0 0px 0;
}

.signin_signup .error {
  color: #cc0404;
  font-weight: normal;
}

.signin_signup label.error {
  /* position: absolute; */
  float: left;
}

.signin_signup .error.form-control {
  color: #555;
  border: solid 1px #cc0404;
}

.signin_signup .form-group {
  position: relative;
  margin-bottom: 26px;
}

.profile_img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
}

.profile_pic {
  background: #fff;
}

.prof_arrow {
  float: right;
  margin: 14px 0 0px 10px;
}

.profile_pic {
  text-transform: uppercase;
}

.profile_pic {
  display: inline-block;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: #1c1d21;
  font-size: 13px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
}

.profile_name {
  float: right;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 3px 8px 0 10px;
}

.profile_name .caret {
  opacity: 0.7;
}

.user_profile_link {
  cursor: pointer;
}

.user_profile_link button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  overflow: visible;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.user_profile_link .dropdown-toggle::after {
  display: none;
}

.user_profile_link .dropdown-menu > li > a:hover {
}

.user_profile_link .dropdown-menu > li > a {
  padding: 5px 18px;
  font-size: 14px;
  color: #1c1d21;
  text-decoration: none;
  display: block;
}

.user_profile_link .dropdown-menu > li {
  border-bottom: solid 1px #e8e8e8;
}

.user_profile_link .dropdown-menu > li:last-child {
  border-bottom: 0;
}

.tpheader_download {
  display: inline-block;
}

/* common css */
.disabled {
  pointer-events: none;
}

.grid_post.fw_b_video_post::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 20px);
  width: 60px;
  height: 60px;
  background-size: 60px;
  background-image: url(../images/ic_play_circle_outline.svg);
  z-index: 2;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  border-radius: 30px;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  background-image: url(../images/ic_chevron_prev.svg);
  background-repeat: no-repeat;
  font-size: 0 !important;
  width: 20px;
  height: 20px;
  background-position: 7px;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  background-image: url(../images/ic_chevron_next.svg);
  background-repeat: no-repeat;
  font-size: 0 !important;
  width: 20px;
  height: 20px;
  background-position: 7px;
}

.fw_link {
  color: #1c1d21;
}

.fw_link:hover {
  color: #1c1d21;
}

/* Filter_regulation  */
.filter_regulation_wrapper {
  background: #1c1d21;
  padding: 30px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
  margin-top: 20px;
}

.filter_regulation_wrapper select {
  font-size: 14px;
}

.flt_list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: wrap;
}

.flt_list li {
  list-style: none;
  width: calc(50% - 8px);
  font-size: 16px;
  background: #eaeaea;
  display: flex;
  padding: 15px;
  border: solid 1px #eaeaea;
  color: #1c1d21;
  border-radius: 2px;
  margin: 0 15px 15px 0;
  position: relative;
}

.flt_list li a {
  color: #2b2b22;
  text-decoration: underline;
  text-decoration: underline;
  background: #c1c1c1;
  padding: 5px 7px 7px 7px;
  border-radius: 4px;
}

.flt_list li a:hover {
}

.flt_list li:nth-child(2n + 0) {
  margin-right: 0;
}

.flt_content {
  margin-bottom: 70px;
}
.flt_list_text {
  margin: 0px 10px 0 0;
  max-width: calc(100% - 190px);
}
.flt_list_icons {
  margin-left: auto;
  margin-top: 2px;
  font-size: 12px;
}
.flt_list_icons a {
  margin-right: 8px;
}
.flt_list_icons a:last-child {
  margin-right: 0px;
}
.flt_list_icons img {
  width: 20px;
  margin-right: 6px;
}

.regulation_tab_link a {
  border: solid 1px #fff;
  margin-right: 16px;
  color: #fff;
}
.regulation_tab_link a.active {
  background-color: #26c77a !important;
  border: solid 1px #26c77a !important;
}
.ftr_list_state li {
  padding: 0;
}
.ftr_list_state li a {
  background: none;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 15px 20px;
}
.ftr_list_state li a:hover {
  background: #cacaca;
}
.searchpage_input {
  margin: 20px 0;
}
.searchpage_input input.form-control:focus {
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25);
  border-color: var(--secondary-color);
}
.searchpage_input p.infotext {
  color: var(--secondary-color);
  font-size: 12px;
}
.qc_b_search_post .page_post_img {
  width: 240px;
  float: left;
  margin-right: 20px;
}
.qc_b_search_post h1 {
  margin-top: 0px;
  font-size: 16px;
}
.qc_b_search_post .post_description {
  color: var(--secondary-color);
}
.search_result_title h1 {
  font-size: 28px;
}
.qc_b_search_post_righttext {
  float: right;
  width: calc(100% - 260px);
}

/* qrcoechimp homepage */
.post_section_2 {
  margin: 80px 0 0 0;
}
.title_block.title_block_section h4 {
  background: var(--primary-text-color);
}
.blog_right {
  padding-left: 20px;
  padding-right: 15px;
  margin-right: -15px;
  height: 100%;
}

.title_block.title_block_section {
  border-color: var(--primary-text-color);
}

.quick_guide {
  padding: 0px;
  background: #fff;
  border-radius: var(--border-radius-m);
}
.badge-outlined {
  border: solid 1px #c2c6d9;
  border-radius: var(--border-radius-xl);
  padding: 3px 10px 3px 10px;
  font-weight: normal;
}

.quick_guide_post {
  padding: 40px;
}
.quick_guide_post a {
  color: var(--primary-text-color);
}
.quick_guide_post a:hover {
  color: var(--primary);
}
.quick_guide_post_img {
  width: 100%;
  height: 220px;
  background-size: cover;
  margin-top: 30px;
  background-position: center center;
  border-radius: var(--border-radius-m);
}
.quick_guide_link_list {
  margin: 0;
  padding: 0;
  margin: 0px 0 0 0;
  padding: 30px 0 30px 0;
  text-align: center;
  border-top: solid 1px #ecedf7;
}
.quick_guide_link_list li {
  margin: 0 10px 10px 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.quick_guide_link_list li a {
  margin: 0;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 30px;
  border: solid 1px var(--primary);
  text-decoration: none;
  color: var(--primary);
}
.quick_guide_link_list li a:hover {
  color: var(--primary-text-color);
  border-color: var(--primary-text-color);
}
.qg_post_title {
  font-size: 18px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.qp_post_time {
  display: flex;
  color: #c2c6d9;
  font-size: 12px;
  align-items: center;
}
.qp_post_time i {
  font-size: 14px;
  margin-left: 15px;
}
.qp_post_info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.qg_post_1 {
  border-right: solid 1px #ecedf7;
}
.qg_post_2 {
  border-right: solid 1px #ecedf7;
}
.pg_title {
  font-size: 28px;
  font-weight: 500;
}
.page {
  padding-top: 80px;
}
.qr_top_nav {
  background: var(--primary-bg-color);
  box-shadow: #1c1d2110 0px 4px 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 73px;
  border-bottom: solid 1px #ffffff20;
}
.qr_nav .dropdown-menu {
  width: 700px;
  right: -168px;
  left: auto;
  padding: 30px 10px;
  top: 96%;
}
.qr_nav_label {
  font-size: 12px;
  color: #76839b;
  margin-bottom: 8px;
}
.qr_nav .dropdown-item {
  padding: 10px 20px;
  border-radius: var(--border-radius-m);
}
.qr_nav_bar {
  margin-left: auto;
  align-items: center;
}
.qr_nav_bar .nav-link {
  color: #fff;
  padding: 0.5rem 0.9rem !important;
}
.qr_nav_bar .nav-link:hover {
  color: var(--primary);
  padding: 0.5rem 0.9rem !important;
}
.qr_nav_bar .btn-outline-primary {
  border-color: var(--highlight);
  color: var(--highlight);
  box-shadow: unset;
}
.qr_nav_bar .btn-outline-primary:active {
  background-color: unset !important;
  border-color: unset !important;
  box-shadow: unset !important;
}
.qr_nav_bar .btn-outline-primary:hover {
  background-color: unset !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color);
  box-shadow: unset !important;
}
.qr_divider {
  border-right: solid 1px #fff;
  height: 18px;
}
.contact_sales {
  margin-left: 10px;
  display: none;
}
.contact_sales_mobile {
  width: 75dvh;
  display: inline-block;
}
.mobile-menu-btn {
  display: inline-block;
}
.divider {
  display: inline-block;
}
@media (min-width: 768px) {
  .divider {
    display: none !important;
  }
  .mobile-menu-btn {
    display: none !important;
  }
  .contact_sales {
    display: inline-block;
  }
  .contact_sales_mobile {
    display: none;
  }
}

a.contact_sales_mobile.btn,
a.contact_sales_mobile {
  background: #166aea;
  border-color: #166aea;
  color: white;
  width: 85dvw !important;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 900;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 10px 15px rgba(22, 106, 234, 0.25);

  background-color: #166aea;
  color: #ffffff;
  padding: 1.25rem; /* p-5 = 20px */
  border-radius: 1rem; /* rounded-2xl */
  text-align: center;
  box-shadow:
    0 20px 25px -5px rgba(22, 106, 234, 0.2),
    0 10px 10px -5px rgba(22, 106, 234, 0.2); /* shadow-xl with blue tint */
  font-weight: 900; /* font-black */
  text-transform: uppercase;
  letter-spacing: 0.1em; /* tracking-widest */
  font-size: 0.875rem;
}
.contact_sales {
  background: #166aea;
  border-color: #166aea;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 900;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 10px 15px rgba(22, 106, 234, 0.25);
}
.contact_sales:hover {
  background: rgba(22, 106, 234, 0.9);
  transform: scale(1.05);
}
.contact_sales:active {
  transform: scale(0.95);
}
.nav-link.active {
  color: var(--primary-hover-color);
}
.nav-right-link-wrapper {
  display: flex;
  margin-left: auto;
  align-items: center;
}
.nav-right-link {
  display: flex;
  align-items: center;
}
.dashboard_btn {
  background: var(--primary-color) !important;
  border-color: var(--primary-color);
  margin-left: 10px;
  margin-right: 15px;
}
.dashboard_btn:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color);
}
.navbar_profile_pic {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50px;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  margin-top: 10px;
}

.navbar_profile_pic:hover,
.navbar_notification:hover {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.navbar_profile_pic::after {
  display: none;
}
/* .dropdown.qr_nav:hover .dropdown-menu{display: block;} */
.nav_link_btn {
  margin-left: 20px;
}
.top_blog_search {
  padding-right: 15px;
  gap: 8px;
}
.btn-outline-primary {
  color: var(--primary);
  background-color: transparent;
  background-image: none;
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary);
}
.btn-outline-primary:active {
  background-color: var(--primary) !important;
  border: solid 1px var(--primary);
  box-shadow: unset !important;
}

/* post page */
.qr_post_detail_header {
  background: var(--primary-text-color);
  margin-top: -7px !important;
  overflow: hidden;
}
.post_content_wraper {
  margin-top: 30px;
}
.blog_post_left {
  padding-left: 0px;
  font-size: 16px;
  line-height: 26px;
  padding-right: 20px;
}

.qr_post_header {
  background: var(--primary-text-color);
  padding: 80px 0 80px 0px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: calc(100% + 130px);
  padding-right: 90px;
  min-height: 475px;
  color: #fff;
  margin-left: -20%;
}
.qr_post_header .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.qr_post_header .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.qr_post_header .btn-outline-primary:hover {
  background-color: unset;
}
.qr_post_header h1 {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
}
.qr_post_heading {
  margin-top: 30px;
}
.qr_post_author {
  display: flex;
  margin: 40px 0px 0px 0px;
}
.qr_post_author span {
  font-size: 0.8em;
}
.post_author_details {
  margin-left: 8px;
}
.post_author_details a {
  color: #fff !important;
}
.qr_post_line {
  width: 120px;
  border-bottom: solid 1px #76839b;
  margin: 28px 0;
  display: none;
}

.post_author_pic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
}
.qr_post_image {
  width: 128%;
  height: 100%;
  min-height: 475px;
  background-size: cover;
  background-position: top left;
}
/*.next_pre_post{}*/
.next_pre_post a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.pd_nav_title {
  width: 100%;
  white-space: nowrap;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}
.next_pre_post {
  margin-top: 35px;
  margin-bottom: 15px;
}
.qr_post_header_action {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.the_champ_horizontal_sharing {
  margin-bottom: 40px;
}

.has-float-label {
  display: block;
  position: relative;
}

.has-float-label label,
.has-float-label > span {
  position: absolute;
  cursor: text;
  font-size: 0.625em;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  top: -0.5em;
  left: 0.75rem;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
}

.has-float-label label::after,
.has-float-label > span::after {
  content: " ";
  display: block;
  position: absolute;
  background: #fff;
  height: 2px;
  top: 50%;
  left: -0.2em;
  right: -0.2em;
  z-index: -1;
}

.has-float-label .form-control::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label .form-control::-moz-placeholder {
  opacity: 1;
  transition: all 0.2s;
}

.has-float-label .form-control:-ms-input-placeholder {
  opacity: 1;
  transition: all 0.2s;
}

.has-float-label .form-control::placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label
  .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
  opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
  opacity: 0;
}

.has-float-label
  .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
  opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + * {
  font-size: 0.9375rem;
  opacity: 0.5;
  top: 50%;
  transform: translate(0, -50%);
}

.input-group .has-float-label {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input-group .has-float-label .form-control {
  width: 100%;
  border-radius: 0.25rem;
}

.input-group .has-float-label:not(:last-child),
.input-group .has-float-label:not(:last-child) .form-control {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: 0;
}

.input-group .has-float-label:not(:first-child),
.input-group .has-float-label:not(:first-child) .form-control {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.modal-header .close {
  margin-left: unset;
}
.popup_brands {
  padding: 0;
  margin: 0;
  overflow: auto;
}
.popup_brands li {
  padding: 0;
  margin: 0;
  float: left;
  list-style: none;
}
.popup_brands li img {
  width: 100px;
}
.brand_title {
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
}
.marquee {
  overflow: hidden;
  margin-right: 20px;
}
.marquee_animation {
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.authentication_popup_left {
  border-right: solid 1px #e9ecef;
}

.authentication_popup_right .form-control {
  padding: 12px 20px;
}
.footer a {
  color: #fff;
}

/* qrcodechimp homepage end here */

/* photos */
.photos_grid_wrapper .col-md-3:nth-child(2) h1 {
  font-size: 20px;
  line-height: 26px;
}

.photos_grid_wrapper .col-md-3:nth-child(3) h1 {
  font-size: 20px;
  line-height: 26px;
}

.title_block ul li .dropdown-menu-right a {
  font-size: 14px;
  outline: none;
  background-color: unset;
  color: var(--secondary-color);
}
.title_block ul li .dropdown-menu-right a:hover {
  text-decoration: none;
}
.title_block ul li .dropdown .dropdown-toggle::after {
  background-image: url(../images/ic_expand_more_black.svg);
}
.title_block ul li .dropdown-item.active {
  background: none;
}
.tpheader_download a {
  display: inline-block;
}
.tpheader_download_android {
  width: 124px;
  margin-left: 6px;
}
.page_post_date {
  display: none;
}

button:focus {
  outline: 0;
}

.call2action_1 {
  font-weight: 300;
  margin: 40px 0;
  background: var(--lightgrey-color);
  display: flex;
  padding: 30px;
  border-radius: var(--border-radius-s);
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.call2action_1 .btn {
  padding: 8px 24px;
}

.call2action_2 {
  font-weight: 300;
  margin: 40px 0;
  background: var(--lightgrey-color);
  display: flex;
  padding: 30px;
  border-radius: var(--border-radius-s);
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.left_justify {
  justify-content: left !important;
}

.dark_background {
  background: var(--primary);
  color: #fff;
}
.dark_background .btn-primary {
  background-color: var(--highlight);
  color: #fff !important;
}
.multiline {
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

/* search page */
.qc_b_search_post .page_post_img {
  height: 160px;
}
.qc_b_search_post {
  margin-bottom: 60px;
}
/* Hide menu on mobile by default */
/* Mobile menu slide */
@media (max-width: 767px) {
  #navbarsExampleDefault {
    position: fixed;
    top: 88px; /* below navbar */
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;

    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1.5rem;
  }

  #navbarsExampleDefault.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Vertical menu items */
  #navbarsExampleDefault .navbar-nav {
    display: flex;
    flex-direction: column;
    column-gap: 2.5rem;
    font-weight: 700; /* font-bold */
    font-style: normal;
    line-height: 1.75rem;
  }

  #navbarsExampleDefault .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #111 !important;
    text-decoration: none;
  }

  #navbarsExampleDefault .nav-link:hover {
    color: #166aea !important;
  }

  /* Mobile Join Now button */
  .mobile-menu-footer {
    margin-top: 2rem;
  }

  .mobile-menu-footer #waitlist-btn {
    width: 100%;
    font-size: 18px;
    text-align: center;
  }

  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Prevent body scroll */
body.menu-open {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .navbar-toggler-icon_old {
    /* background: url(../images/ic_menu.svg) no-repeat;
    background-position: 6px 8px; */
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    color: #000;
  }
  .navbar-toggler_old svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
  }
  .omnibox {
    width: 90%;
  }

  .searchbox {
    width: 100%;
  }

  .search_suggetion {
    width: 100%;
  }

  .hero_text h1 {
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .hero_text h2 {
    font-size: 14px;
    width: 80%;
    margin: auto;
  }

  .tpheader_btn,
  .tpheader_download {
    display: none;
  }

  .navbar-toggler {
    background-color: transparent;
    margin: 10px;
  }

  .navbar-toggler:not(:disabled):not(.disabled) {
    outline: none;
  }

  .mobile_menu {
    margin: 20px 0 0 0;
    padding: 0;
  }

  .mobile_menu li {
    margin: 0px 0 0 0;
    padding: 15px 0;
    list-style: none;
    text-align: center;
    border-bottom: solid 1px #353535;
  }

  .mobile_menu li:last-child {
    margin: 0px 0 300px 0;
  }

  .mobile_menu li a {
    color: #fff;
    font-size: 18px;
  }

  .mobile_menu .input-group {
    width: calc(100% - 20px);
    margin: auto;
    border: 0;
    border-radius: 4px;
    overflow: hidden;
  }

  .mobile_menu .input-group-text {
    background-color: #26c77a;
  }

  .mobile_menu .form-control {
    border: solid 0;
  }

  .mobile_menu .input-group-text {
    border: solid 0;
  }

  .trending_slider_wrapper {
    width: calc(100% - 0px);
    margin-left: 0px;
  }

  .title_block ul li {
    display: none;
  }

  /* .title_block ul li:nth-child(1){display: block;} */
  .searchbox {
    height: 54px;
    padding: 12px 50px 10px 24px;
  }

  .searchbox_searchbutton {
    padding: 17px 20px;
  }

  .first_post,
  .third_post {
    width: 100%;
  }

  .grid_post_wrapper {
    margin-bottom: 5px;
  }

  .page_post {
    margin-bottom: 20px;
  }

  .ftr_col_title {
    margin-top: 20px;
  }

  .trending_warpper {
    display: block;
  }

  .qr_lable {
    display: inline-block;
    font-size: 11px;
    padding: 3px 6px;
  }

  .trending_warpper .swiper-button-prev,
  .trending_warpper .swiper-button-next {
    top: calc(36% + 11px) !important;
  }

  .blog_right {
    margin-top: -40px;
    margin-left: -20px;
    margin-right: -15px;
  }

  .reminder_wrapper {
    margin-top: 80px !important;
  }

  .footer_wrapper {
    padding: 15px;
  }

  .fw_copyright {
    color: var(--secondary-color);
    order: 2;
    text-align: center;
    margin: 20px 0 0 0;
  }

  .fw_ftr_link {
    order: 1;
    text-align: center !important;
  }

  .grid_post_content h1 {
    font-size: 22px;
    line-height: 24px;
  }

  .small_ftr {
    background: #1c1d21;
    margin: 40px -15px -48px -15px;
    padding: 20px 0;
    font-size: 12px;
  }

  .fw_popup_bg .modal-content {
    width: 100%;
  }

  .fw_popup_bg .modal-content .modal-body {
    padding: 40px;
  }

  .pd_breadcrumb li::after {
    left: 6px;
  }

  .flt_list li {
    width: 100%;
  }

  .flt_list li a {
    margin: 0 0px 15px 0;
  }

  .photos_grid_wrapper .col-md-3:nth-child(2) h1 {
    font-size: 22px;
    line-height: 24px;
  }

  .photos_grid_wrapper .col-md-3:nth-child(3) h1 {
    font-size: 22px;
    line-height: 24px;
  }

  .fwcomm_name_date strong {
    display: block;
  }

  .fw_form_style .help-block {
    margin-bottom: 10px;
  }

  .fw_login {
    display: none;
  }

  .mobile_menu_signinup {
    border-top: solid 1px #353535;
    padding: 10px;
    margin-bottom: 8px;
    text-align: center;
  }

  .mobile_menu_signinup a {
    display: inline-block;
    padding: 8px 16px;
    color: #fff;
  }

  .mobile_menu_signinup a:first-child {
    border-right: solid 1px #353535;
  }

  .user_profile_link .dropdown-menu {
    right: 0;
    left: auto;
  }

  .user_profile_link .divider {
    width: calc(100% - 40px);
    margin: 0px auto;
  }

  .user_profile_link .dropdown-menu > li > a:hover {
  }

  .user_profile_link .dropdown-menu > li > a {
  }

  .profile_pic {
    display: inline-block;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #1c1d21;
    font-size: 13px;
    font-weight: 800;
    line-height: 28px;
    text-align: center;
  }

  .user_profile_link {
    text-align: left;
    display: flex;
    padding: 20px 10px;
    border-top: solid 1px #353535;
  }

  .profile_name {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0px 0 0 10px;
    display: inline-flex;
  }

  .profile_name .caret {
    opacity: 0.7;
  }

  .login-link a {
    outline: none;
  }

  .profile_img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
  }

  .profile_pic {
    background: #fff;
  }

  .profile_edit {
    margin-left: auto;
    width: 42px;
    text-align: center;
    padding: 3px;
  }

  .link_logout {
    color: var(--secondary-color);
  }

  .signin_signup.modal {
    bottom: unset;
  }

  .signin_signup .modal-content {
    width: 100%;
    height: 100vh;
    overflow: scroll;
  }

  .login_w_account {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .signin_signup .modal-footer {
    padding: 11px;
  }

  .signin_signup .modal-body {
    padding: 30px 10px 30px 10px;
  }

  /* regulation */
  .flt_list li {
    margin-right: 0;
    flex-wrap: wrap;
  }
  .flt_list_text,
  .flt_list_icons {
    flex: 1 100%;
    margin-bottom: 10px;
  }
  .flt_list_text {
    max-width: 100%;
  }
  .ftr_list_state li a {
    margin-bottom: 0;
  }

  /* search page */
  .qc_b_search_post .page_post_img {
    float: none;
    width: 100%;
  }
  .qc_b_search_post .page_post_img {
    margin-bottom: 16px;
  }
  .qc_b_search_post {
    margin-bottom: 30px;
  }
  .search_result_title h1 {
    font-size: 20px;
  }
  .qc_b_search_post_righttext {
    width: 100%;
  }

  /* qrcodechimp blog */
  .connect_with_us_mob {
    display: block;
  }
  .connect_with_us {
    display: none;
  }
  .qr_nav .dropdown-menu {
    width: 100%;
  }
  .nav_link_btn {
    margin-left: 14px;
  }
  .qr_nav_bar {
    height: 100vh;
    overflow-y: auto;
    align-items: flex-start;
  }
  .nav-right-link-wrapper {
    margin-left: unset;
  }
  .qr_post_header {
    width: 100%;
    padding: 25px 5px 15px 10px !important;
    margin-top: 0px;
    min-height: unset;
  }
  .qr_post_header h1 {
    font-size: 26px;
  }
  .qr_post_image {
    min-height: 280px;
    width: calc(100% + 30px) !important;
    margin: 0 -15px 0 -15px;
    background-position: top left;
  }
  .qr_post_header_action a {
    margin-bottom: 0px;
  }
  .blog_right {
  }
  .blog_post_left {
    padding-right: 10px;
    padding-left: 15px;
  }
  .top_blog_search {
    margin: 0 0px 30px 15px !important;
    padding-right: 30px;
  }
  .qr_post_detail_header {
    margin-top: 0 !important;
  }
  .qr_post_header_action {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .page_post_sub {
    flex-wrap: wrap;
    min-height: 255px;
  }
  .page_post_sub .page_post_img {
    width: 100%;
  }
  .call2action_1 {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px;
  }
}

@media only screen and (max-width: 1323px) {
}

@media (min-width: 1200px) {
  .container {
    max-width: 1260px;
  }

  .topheader_inner {
    max-width: 1170px;
  }

  .topnavbar .container {
    max-width: 1170px;
  }
}

@media (max-width: 1200px) {
  /* to be removed after js solution */
  .title_block ul li:nth-last-child(2) {
    display: none;
  }
  .qp_post_time {
    display: flex;
    color: #c2c6d9;
    font-size: 12px;
    align-items: center;
  }
  .qp_post_time i {
    font-size: 14px;
    margin-left: 0px;
  }
  .qp_post_info {
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
    gap: 10px;
    margin-top: 15px;
    flex-direction: column;
  }
}

@media (max-width: 990px) {
  /* to be removed after js solution */
  .title_block ul li:nth-last-child(3) {
    display: none;
  }
  .tpheader_download {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .qr_post_image {
    width: 100%;
  }
}

@media only screen and (max-width: 1440px) {
  .qr_post_header {
    padding-right: 150px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1510px) {
  .qr_post_header {
    margin-left: 0;
    padding-right: 160px;
  }
}
@media only screen and (min-width: 1511px) {
  .qr_post_image {
    margin-left: -8%;
  }
}

/* social icons */
.social_icon_list {
  margin: 20px 0 30px 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social_icon_list li {
  list-style: none;
}
.social_icon_list li a {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 30px;
  margin-bottom: 10px;
  cursor: pointer;
}
a.fb {
  background: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E)
    no-repeat center center;
  background-color: #3c589a;
}
a.tw {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E")
    no-repeat center center;
  background-color: #55acee;
}
a.insta {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E")
    no-repeat center center;
  background-color: #d62976;
}
a.in {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center;
  background-color: #0077b5;
}
a.yt {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E")
    no-repeat center center;
  background-color: #ff0000;
}

/************* Begin - Demo Popup Specific CSS *************/
.bg_enquiry {
  background-position: top center;
  animation: enqmove 50s infinite;
  background-repeat: none;
}

.enq_right {
  border-left: solid 1px #ffffff20;
  padding-left: 50px;
  margin-left: 50px;
  color: #fff;
}

@keyframes enqmove {
  50% {
    background-position: bottom center;
  }
}

.schedule_demo_popup {
  max-width: 1020px;
}
.schedule_demo_popup .modal-header {
  margin-bottom: 20px;
}

.schedule_demo_popup .modal-body {
  padding: 0 60px 60px 60px;
}

.schedule_demo_popup .modal-content {
  background: #f3f4f7;
}

.enq_popup_left {
  padding-right: 30px;
}
.enq_popup_left h3 {
  font-size: 20px;
}

.section_border {
  border-bottom: solid 3px #fff;
  margin: 34px 0;
}

input,
input[type="tel"],
input[type="date"],
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  width: 100%;
  min-height: 42px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #fff !important;
  border: solid 1px #d3d3d3;
  margin-bottom: 5px;
}

.schedule_demo_popup .btn {
  min-height: 42px;
  font-size: 1rem;
}

.schedule_demo_popup .modal-header .close {
  font-size: 1.6rem;
  position: absolute;
  top: 17px;
  right: 20px;
}

.enq_popup_left h3 {
  font-size: 20px;
}

.schedule_demo_popup label {
  font-size: 13px;
  margin-bottom: 0;
}

.schedule_demo_popup .modal-body {
  padding: 0 30px 30px 30px;
}

.right_fix_banner {
  position: unset !important;
}

.enq_content {
  display: flex;
}
@media (max-width: 767px) {
  .enq_content {
    flex-direction: column;
    text-align: center;
  }
  .enq_right {
    border: 0;
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
    margin-left: 0;
  }
  .enq_popup_left strong,
  .enq_popup_left img,
  .enq_popup_left .section_border {
    display: none;
  }
}

.bg_right_section_1 {
  background: #fff1ed;
  border-radius: var(--border-radius-m);
  padding: 20px;
  text-align: center;
  color: var(--primary-color);
}
.bg_right_section_1 img {
  min-height: 189px;
}
.bg_right_section_1 h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: normal;
}
.bg_right_section_1 h3 strong {
  font-weight: 600;
}
.bg_right_section_1 .btn {
  padding: 8px 0px;
  font-size: 16px;
  margin-top: 15px;
}
.bg_right_section_2 {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 0px;
  border-radius: var(--border-radius-m);
  margin-top: 0px !important;
}
.bg_right_section_2 h2 {
  font-size: 15px !important;
}
.bg_right_section_2 h3 {
  font-size: 16px !important;
  font-weight: 400;
}
.bg_right_section_2 .btn {
  font-size: 16px;
  margin-top: 0px;
}
.bg_right_section_2 img {
  min-height: 160px;
  margin-bottom: 0 !important;
}

.qr_solution .page_post_img {
  width: 164px;
  height: 154px;
  background: #fff;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
.qr_solution .fw_post_img {
  background-size: contain;
  background-repeat: no-repeat;
}
.qr_solution .page_post_content::after {
  bottom: 0;
}
.qr_solution .page_post_content h3 p {
  min-height: 62px;
  color: var(--secondary-color);
  line-height: 1.2rem;
}
.qr_solution .page_post_sub {
  margin-bottom: 24px;
}

.blog_right .btn {
  background: var(--highlight);
  border-color: var(--highlight);
  color: #fff;
}
.blog_right .btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.memes_box {
  margin: 50px 0 20px 0;
}

.memes_box h3 {
  font-size: 14px;
}
.memes_box h3 strong {
  font-weight: 400;
  padding-bottom: 20px;
}
.memes_box h3 a img {
  padding: 20px 30px 30px 0px;
}

.the_champ_sharing_container {
  margin-bottom: 20px;
}

.page-item.active .page-link {
  background-color: #1c1d21;
  border-color: #1c1d21;
}
.page-link {
  color: #1c1d21;
}

.blog_right .title_block_small {
  padding-top: 30px;
}

.cptr {
  cursor: pointer;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.452) !important;
  background-color: #fcfafacc;
  border-radius: 0px;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #faf6f6cc;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: var(--primary);
  background: var(--primary-bg-color);
  /*background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.86, rgba(64, 78, 151, 0.5)), color-stop(0.72, rgba(64, 78, 151, 0.7)), color-stop(0.44, rgba(117, 183, 22, 0.7)));*/
}

.fixed_section {
  position: sticky;
  top: 74px;
  background: #fff;
  z-index: 9;
  padding: 0 0 1px;
}

/* for old existing CTAs */
.highlight-wrapper-blue {
  padding: 20px;
  background-color: #f2f5ff;
  border-radius: 15px;
}
.border-16 {
  border-radius: 16px;
}

.border-5 {
  border-radius: 5px;
}

/* new hero seciton */
.hero_post_img {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--border-radius-m);
}
.hero_post_content {
  margin-top: 24px;
}
.hero_post_heading {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 20px;
}
.hero_post_des {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
  color: var(--secondary-color);
  margin: 0;
}
.bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  overflow: hidden;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
  background-position: top left;
}

.hero_sub_post:hover .bg_img {
  transform: scale(1.1);
}
.hero_section:hover .bg_img {
  transform: scale(1.1);
}

.hero_sub_post {
  display: flex;
  gap: 16px;
  border-bottom: solid 3px var(--primary);
  padding: 0 0 36px;
  margin-bottom: 36px;
  margin-left: 15px;
}
.hero_sub_post:last-child {
  border-bottom: 0px;
}
.hero_sub_post_img {
  width: 198px;
  height: 136px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-m);
}
.hero_sub_post_content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.hero_sub_post_content p {
  margin: 0 0 0 0 !important;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-color);
}
.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blg_author_wrapper {
  margin-bottom: 30px;
  padding-bottom: 60px;
  padding-top: 20px;
  border-bottom: solid 3px #e4e5e7;
  display: flex;
  gap: 30px;
}
.blg_author_profile {
  width: 158px;
  height: 158px;
  position: relative;
  flex-shrink: 0;
}

.b0lg_author_bio h3 {
  font-size: 28px;
}
.blg_author_bio p {
  font-size: 16px;
  color: var(--secondary-color);
}
.bio_social {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}
.bio_social li {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}
.section_title {
  margin-bottom: 20px;
  font-size: 28px;
}

.breadcrumb {
  position: absolute;
  top: 10px;
  padding: 0;
}
.breadcrumb-item a {
  color: var(--secondary-color);
}
.breadcrumb-item.active {
  color: var(--primary-color);
}
.breadcrumb-item {
  font-size: 12px;
}

@media (max-width: 767px) {
  .blg_author_wrapper {
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  .hero_section {
    margin-bottom: 80px;
  }
  .hero_post_heading {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .blog_post_left .page_post {
    margin-bottom: 50px;
  }
  .breadcrumb {
    position: unset;
  }
  .table-responsive-md {
    overflow: auto !important;
  }
  .hero_sub_post {
    flex-direction: column;
    margin-left: 0;
  }
  .hero_sub_post .hero_sub_post_img {
    width: 100%;
    height: 212px;
    margin-left: 0;
    background-position: top left;
  }
  .page_post_img {
    height: 222px !important;
    background-position: top left;
  }
  .page_post h3,
  .page_post_content h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
  }
  .fw_post_img,
  .quick_guide_post_img {
    background-position: top left;
  }
}

.toc_content {
  color: var(--primary-color);
}

/* start old blog css */
.bullet-list {
  margin: 0;
  padding: 0 0 0 18px;
}

/*.blog_post_left a{color: var(---text-color) !important;}*/
.blog_post_left a:hover {
  color: var(--highlight);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  color: #53468a; /*var(--primary);*/
}

h1,
h2 {
  font-weight: 600;
  margin: 0 0 20px 0 !important;
}

h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0 0 15px 0 !important;
}

.main_blog_content h2 {
  margin-top: 45px !important;
}

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

.main_blog_content h3 {
  margin-top: 35px !important;
}

.main_blog_content .wp-block-ub-styled-box h3 {
  margin-top: auto !important;
}

.main_blog_content h3.mt-0,
.main_blog_content h3.my-0 {
  margin-top: 0 !important;
}

.main_blog_content .ub-notification-box {
  padding-top: 35px;
  padding-bottom: 35px;
}

.ub-notification-box p {
  margin: 0 0 0 0 !important;
}

.img-list-align {
  max-width: calc(100% - 50px) !important;
  margin-left: 50px !important;
}
.icon_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.icon_list li {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.icon_list .icon_img {
  margin: 0 25px 0 0;
  width: 300px;
  padding: 0;
  float: left;
  width: 30%;
}
.icon_list .icon_img img {
  max-width: 100%;
}
.icon_list .icon_list_text {
  margin: 0;
  width: 64%;
  padding: 0;
  float: left;
}
.icon_list .icon_list_text h4 {
  font-size: 1.3em;
}

.icon_list li::after {
  display: block;
  content: "";
  clear: both;
}
.menu-item-4436 {
  color: #e5413f;
}
.tw-menu-container {
  background: #fff;
}
.menu-item-93 a {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
}
.menu-item-93 a:hover {
  color: #fff !important;
}

.widget_tag_cloud .tagcloud {
  height: 250px;
  overflow: auto;
}
.ftr_calltoaction {
  background: #fff1ed;
  padding: 30px;
  border-radius: 2px;
  margin: 30px 0px;
}
.ftr_listing {
  margin: 0;
  padding: 0;
}
.ftr_listing li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ftr_listing li a {
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  padding: 10px 0;
}

.memes_box {
  border-bottom: dashed 2px #ddd;
  margin-bottom: 60px;
  padding: 0 0 50px 0;
}

.border-shadow {
  box-shadow:
    rgba(30, 30, 43, 0.25) 0px 80px 30px -80px,
    rgba(0, 0, 0, 0.3) 0px 30px 30px -30px;
  margin: 60px 0;
  border-radius: 16px;
  overflow: hidden;
}

.primary_border {
  border: solid 1px var(--primary-color);
  border-radius: 16px;
  overflow: hidden;
}

.secondary_border {
  border: solid 1px #9fa4b3;
  border-radius: 16px;
  overflow: hidden;
}

.light_border {
  border: solid 1px #eceef7;
  background: var(--lightgrey-color);
  border-radius: var(--border-radius-s);
  overflow: hidden;
}

.right_fix_banner {
  position: unset !important;
}
.accordion_text {
  background: #ebedf3 !important;
  cursor: pointer;
  font-size: 16px !important;
}
.hideshowtext {
  display: inline-block;
  color: var(--primary-color);
}
.accordion_text[aria-expanded="false"] .hideshowtext::before {
  content: "[Show]";
  font-size: 12px;
}
.accordion_text[aria-expanded="true"] .hideshowtext::before {
  content: "[Hide]";
  font-size: 12px;
}
.accordion_text p {
  display: none;
}

.comment-form input[type="submit"] {
  width: auto;
  min-width: 140px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.border-5 {
  border-radius: 5px;
}
.border-8 {
  border-radius: 8px;
}
.border-16 {
  border-radius: 16px;
}

.table-bg {
  background-color: #f4f6fc;
  border-radius: 16px;
  overflow: hidden;
}

.table-heading-bg {
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.table-body-border tr th {
  border-right: 1px solid #e2e2e2;
  font-weight: 400;
}
.table-body-border tr th:last-child {
  border-right: 0px solid #e2e2e2;
}

.table-body-border tr td {
  border-right: 1px solid #e2e2e2;
}

.table-body-border tr td:last-child {
  border-right: 0px solid #e2e2e2;
}
table {
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
  margin-bottom: 1.5em;
}
td,
th {
  border-top: 1px solid #e6e6e6;
  vertical-align: top;
  padding: 12px 20px;
}
.widget table,
.widget td,
.widget th {
  border: none;
}
th {
  font-weight: bold;
}

.main_blog_content li {
  padding-left: 5px;
}
.main_blog_content ol li {
  padding-left: 5px !important;
}

/*.main_blog_content li::marker {color: var(--primary-text-color) !important;}*/

.bullet-list li {
  list-style-type: disc;
  padding: 5px 0;
}
.bullet-list ol li {
  list-style-type: inherit;
}
.highlight-wrapper-blue {
  padding: 20px;
  background-color: #f2f5ff;
  border-radius: 15px;
}
.highlight-wrapper-grey {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 15px;
}
.bullet-list ul li {
  list-style-type: circle;
}

.number_view OL {
  counter-reset: item;
}
.number_view LI {
  display: block;
}
.number_view LI:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}

a.button-qrcc {
  color: #fff !important;
}
.button-qrcc {
  background: var(--primary-color);
  font-size: 18px;
  color: #fff !important;
}

.button-qrcc:hover {
  background: var(--highlight);
  color: #fff;
}
.table-bg tr td {
  font-weight: 400;
}

.cta-wrapper {
  background-image: url(https://cdn0030.qrcodechimp.com/qr/PROD/6482f711cfa85769660c2471/fm/03-bg-light.png?v=1719458577097);
  background-repeat: no-repeat;
  background-size: cover;
  color: #7e8298;
}

.cta-wrapper-small {
  background-image: url(https://cdn0030.qrcodechimp.com/qr/PROD/6482f711cfa85769660c2471/fm/08-bg-light.png?v=1719458578539);
  background-repeat: no-repeat;
  background-size: cover;
  color: #7e8298;
}

.width-max {
  white-space: nowrap;
}

.width-min {
  flex-grow: 1;
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .button-m {
    flex-direction: column;
    gap: 20px;
  }

  .width-min {
    text-align: center;
  }
}
:target {
  scroll-margin-top: 100px;
}

@media (max-width: 767px) {
  .table-responsive-md {
    overflow: auto !important;
  }
}
/* end old blog css */

.col-md-4 > .page_post .page_post_img {
  height: 160px !important;
}
.backtotop {
  background-image: url(https://cdn0030.qrcodechimp.com/qr/PROD/6662aa4b6a144e6f29002666/fm/up-arrow.svg?v=1721898318456);
  background-color: var(--primary);
  width: 42px;
  height: 42px;
  background-size: 80%;
  background-position: center;
  border-radius: 40px;
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: solid 1px #ffffff20;
}

@media (max-width: 767px) {
  .col-md-4 > .page_post .page_post_img {
    height: 222px !important;
  }
  .hero_post_img {
    min-height: 227px !important;
  }
  .fixed_section {
    position: unset;
  }
  .blog_right .page_post_img {
    height: 170px !important;
  }
  .qr_solution .page_post_content::after {
    bottom: -30px !important;
  }
  .blog_right .page_post_sub .page_post_img {
    margin-bottom: 20px;
    height: 222px !important;
  }
  .page_post_sub .page_post_img {
    margin-bottom: 20px;
  }
  .quick_guide_post {
    padding: 20px;
  }
  .quick_guide_post_img {
    height: 170px;
    margin-top: 8px;
  }
  .col-6 .page_post_sub .page_post_img {
    height: 109px !important;
  }
  .pg_title {
    font-size: 20px;
  }
  .quick_guide {
    margin: 0px 10px;
  }
  .row.px-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .page_post_sub.qr_solution .page_post_img {
    height: 170px !important;
  }
}

/**** WP Blocks START ****/

/* table of content */
.ub_table-of-contents {
  border-radius: var(--border-radius-m);
  background: var(--lightgrey-color) !important;
  border-color: #e4e5e7 !important;
  margin-top: 60px !important;
}
.ub_table-of-contents-container a {
  color: var(--primary-color) !important;
}
.ub_table-of-contents-title strong mark {
  color: var(--primary) !important;
  background: unset;
  font-weight: 500;
  font-size: 18px;
}
.ub_table-of-contents-toggle,
.ub_table-of-contents-toggle-link {
  color: var(--secondary-color) !important;
  font-size: 14px;
}
.ub_table-of-contents-container ul li::marker {
  color: var(--primary-color) !important;
}
.ub_table-of-contents-extra-container {
  padding: 15px 20px !important;
}
.ub_table-of-contents mark {
  padding: 0 !important;
}
.ub_table-of-contents-container ul li {
  padding: 6px 0;
}
.ub_table-of-contents-header-container {
  padding: 15px 20px 0px !important;
}
.ub_table-of-contents-header {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 26px !important;
  border-bottom: 1px solid #dddddd;
}

.wp-block-ub-tabbed-content-tabs-content {
  padding: 40px !important;
}

.wp-block-heading {
  padding-top: 20px !important;
}

.wp-block-embed.is-type-video iframe {
  max-width: 100%;
  max-height: 450px;
}

.wp-block-ub-content-toggle-accordion-title-wrap {
  background: var(--lightgrey-color) !important;
  border-color: #e4e5e7 !important;
}

p.wp-block-ub-content-toggle-accordion-title {
  margin: 10px 10px 10px 0px !important;
  font-weight: 500;
}

p.wp-block-ub-content-toggle-accordion-title strong {
  font-weight: 500 !important;
}

.wp-block-ub-styled-box.ub-styled-box.ub-notification-box {
  background: var(--lightgrey-color) !important;
  color: #1c1d21;
  border-left-color: #1c1d21;
}

.wp-block-image {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* .wp-block-ub-table-of-contents-block.ub_table-of-contents */
.ub_table-of-contents ul {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

.ub_table-of-contents li {
  list-style-type: decimal;
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

.ub_table-of-contents li:before {
  content: counters(item, ".") ". " !important;
  display: table-cell;
  padding-right: 0.6em;
  letter-spacing: 0.125em;
}

.ub_table-of-contents li li {
  margin: 0.3em 0 0 0 !important;
}

.ub_table-of-contents li li:before {
  content: counters(item, ".") ". " !important;
}

.ub_table-of-contents ul ul,
.ub_table-of-contents ul ol,
.ub_table-of-contents ol ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding-left: 0.6em;
}

/** old ToC compatibility **/
ul.bullet-list {
  list-style-type: none !important;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

.bullet-list li {
  list-style-type: decimal !important;
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

.bullet-list li:before {
  content: counters(item, ".") ". " !important;
  display: table-cell;
  padding-right: 0.6em;
  letter-spacing: 0.125em;
}

.bullet-list li li {
  margin: 0.3em 0 0 0 !important;
}

.bullet-list li li:before {
  content: counters(item, ".") ". " !important;
  margin-right: 0.6em;
}

ul.bullet-list ul,
ul.bullet-list ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding-left: 0.6em;
}

/*.wp-block-ub-tabbed-content-block .wp-block-ub-tabbed-content-tabs-content {background:#fafbfc !important; }*/

.wp-block-ub-tabbed-content-tab-title-wrap.active {
  background: #fafbfc !important;
  font-weight: 600;
}
.wp-block-ub-tabbed-content-tab-title-wrap.active {
  position: relative;
}
.wp-block-ub-tabbed-content-tab-title-wrap::after {
  content: "";
  position: absolute;
  height: 0px;
  background: #fff;
  bottom: 0px;
  left: 0;
  width: 100%;
}
.wp-block-ub-tabbed-content-tab-title-wrap.active::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #fff;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.wp-block-ub-tabbed-content-tabs-title {
  overflow-x: unset !important;
}

.wp-block-ub-tabbed-content-tabs-content {
  background: #fafbfc !important;
  -webkit-border-radius: 2px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius: 2px;
  -moz-border-radius-topleft: 0;
  border-radius: 2px;
  border-top-left-radius: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 10px;
}

.wp-block-table table {
  background-color: var(--lightgrey-color) !important;
}
.wp-block-table thead {
  background-color: var(--primary-text-color) !important;
  color: #fff !important;
  border: 0.18em solid var(--primary-text-color) !important;
}
.wp-block-table td,
.wp-block-table th {
  vertical-align: middle;
}
/**** WP Blocks END ****/

.pagination {
  flex-wrap: wrap;
}

a.border-5.d-inline-block {
  color: #fff !important;
}
.mobile-menu-btn {
  display: inline-flex; /* make it a flex container */
  align-items: center; /* vertically center SVG/text */
  justify-content: center; /* horizontally center */
  /* padding: 0.5rem 1rem; */
  /* p-2 equivalent */
  border-radius: 12px; /* rounded-xl */
  color: white; /* text color */
  /* light background */
  transition: background-color 0.3s ease; /* smooth hover */
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1); /* hover:bg-white/10 */
}
#mobile-menu-btn svg {
  width: 20px !important;
  height: 20px !important;
}
#mobile-menu-btn svg line {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
#mobile-menu-btn svg line {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-box: fill-box; /* ensures transform is relative to SVG box */
  transform-origin: center; /* rotate around the center of the line */
}

#mobile-menu-btn.open .line1 {
  transform: rotate(-45deg) translate(-2px, 2px);
}

#mobile-menu-btn.open .line3 {
  opacity: 0;
}

#mobile-menu-btn.open .line2 {
  opacity: 0;
}
#mobile-menu-btn svg line {
  shape-rendering: crispEdges;
}
