/*
Theme Name:  Custom Theme
Theme URI: 
Author: Socail Pie
Author URI: https://socialpie.io/
Text Domain: socail-pie-theme
Description:  Custom Theme Theme is a modernized take on an ever-popular WordPress layout â€” the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail.  Custom Theme will make your WordPress look beautiful everywhere.
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&family=Roboto+Mono:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500;700&display=swap');

:root{
    --body_col: #222;
    --light_orange: #FFDEC0;
    --primary_col: #864CE6;
    --secondary_font: 'Roboto Mono', monospace;
    --primary_bg: #314555;
    --secondary_bg: #FDE73C;
    // --text-color1 : #282828;
    // --primary_font: 'Satoshi';
    // --primary_col_var: #D7FFF0;
    // --secondary_col: #00504D;
    // --heading_col: #171717;
    // --secondary_col_var : #F5F9F8;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
	font-family: 'Inter', sans-serif;
	color: var(--body_col);
}
body a{
	color: var(--body_col);
}
img{
	width:100%;
	height:auto;
}
.bg-light-orange{
	background : var(--light_orange);
}
header.site_header {
  position: relative;
}
header.site_header .header-wrap .header_menu {
	border-bottom: 1px solid #8F8F8F;
}
header .header_menu li a {
	font-weight: 700;
	font-size: 1em;
	transition: all 0.3s;
	font-family: var(--secondary_font);
}
header #menu li.highlighted-menu a {
	background: var(--secondary_bg);
	padding-inline: 0.8em !important;
}
header .header_menu li a:hover {
	color: #F71122;
}
.vouchers-menu .header_menu li {
	position: relative;
}
.vouchers-menu .header_menu li:hover > .sub-menu {
	transform: scaleY(1) translateX(-25%);
}
.vouchers-menu .header_menu ul.sub-menu {
	position: absolute;
	list-style: none;
	padding-left: 0;
	background: #fff;
	left: 0;
	width: 15em;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
	border-radius: 5px;
	transform: scaleY(0) translateX(-25%);
	transform-origin: top;
	transition: all .5s;
	max-height: 300px;
	overflow-y: auto;
	z-index: 9;
}
.vouchers-menu .header_menu ul.sub-menu::-webkit-scrollbar {
	width: 8px;
}
.vouchers-menu .header_menu ul.sub-menu::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.vouchers-menu .header_menu ul.sub-menu::-webkit-scrollbar-thumb {
	background: var(--primary_bg);
	border-radius: 8px;
}
.vouchers-menu .header_menu ul.sub-menu::-webkit-scrollbar-thumb:hover {
	background: var(--secondary_bg)
}
body header.site_header .mobile-menu {
  display: none;
}
header.site_header .menu-wrap {
	right: 5%;
	top: 30%;
}
header.site_header .search-toggle {
	font-size: 1.4em;
}
body header.site_header .mobile-menu .mobile-menu-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  outline: 0;
  bottom: 0;
}
body header.site_header .mobile-menu .mobile-menu-toggle > div:first-child {
  margin: 0 0.5em;
}
body header.site_header .mobile-menu .mobile-menu-toggle span {
  height: 2px;
  width: 1.5em;
  background: var(--body_col);
  display: block;
  margin-bottom: 0.35em;
  margin-left: 0em;
  transform: rotate(0deg);
  transition: 0.4s;
}
body header.site_header .mobile-menu .mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}
body header.site_header .mobile-menu .mobile-menu-toggle.close span:not(.label):nth-child(1) {
  transform: rotate(45deg);
  transition: 0.4s;
  position: relative;
  top: 6px;
}
body header.site_header .mobile-menu .mobile-menu-toggle.close span:not(.label):nth-child(2) {
  display: none;
}
body header.site_header .mobile-menu .mobile-menu-toggle.close span:not(.label):nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.4s;
  position: relative;
  top: -2px;
}
body header.site_header .mm-panel {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 99;
  background: #fff;
  box-shadow: 2px 5px 10px #b64e414d;
  width: 88%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
body header.site_header .mm-panel .container {
  padding: 0;
}
body header.site_header .mm-panel ul.menu-wrapper {
  padding: 0;
  display: block;
}
body header.site_header .mm-panel ul.menu-wrapper li {
  list-style: none;
  border-bottom: 1px solid #cfcfcf;
  position: relative;
  display: block;
  margin-right: 0;
}
body header.site_header .mm-panel ul.menu-wrapper li:last-child {
  border-bottom: 0;
}
body header.site_header .mm-panel ul.menu-wrapper li a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0.9em 0.7em;
  display: block;
  line-height: 1;
  letter-spacing: 1px;
  transition: 0.3s;
  color: var(--body_col);
  text-align: left;
}
body header.site_header .mm-panel ul.menu-wrapper li a:hover {
  background: var(--secondary_col);
  color: #fff;
  transition: 0.3s;
}
body header.site_header .mm-panel ul.menu-wrapper li a:after {
  display: none;
}
body header.site_header .mm-panel ul.menu-wrapper li .sub-menu-toggle {
  display: none;
}
body header.site_header .mm-panel ul.menu-wrapper li .chevron-child {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9em;
  border-left: 1px solid #cfcfcf;
  font-size: 1.5em;
  background: #fff;
  transition: 0.3s;
  color: #000;
}
body header.site_header .mm-panel ul.menu-wrapper li .chevron-child:hover {
  background: var(--secondary_col);
  transition: 0.3s;
  color: #fff;
}
body header.site_header .mm-panel ul.menu-wrapper li .chevron-child i {
  transform: rotate(-90deg);
}
body header.site_header .mm-panel ul.menu-wrapper li > .sub-menu {
  display: none;
  padding-left: 8px;
  box-shadow: none;
  position: relative;
  padding: 0;
  padding-left: 0.7em;
}
body header.site_header .mm-panel ul.menu-wrapper li.open-sub > .sub-menu {
  display: block;
}
body header.site_header .mm-panel ul.menu-wrapper li.open-sub .chevron-child i {
  transform: rotate(-180deg);
}
body header.site_header .mm-panel ul.menu-wrapper .sub-menu {
  width: 100%;
}
header.site_header form.search-form {
	position: relative;
}
header.site_header form.search-form .search-icon {
	left: 4%;
}
header.site_header form.search-form input[type=text] {
	border: 1px solid #C2C2C2;
    background: #F3F3F3;
    padding-left: 2.5em;
    outline: 0;
}
/* search form css */
.search_results {
  list-style: none;
  background: #fff;
  position: absolute;
	left: 0;
  z-index:99;
  width: 100%;
  top: 50px;
  border-radius: 10px;
  padding: 11px 16px;
  box-shadow: 0px 0px 14px -7px rgba(0, 0, 0, 0.5);
}
.search_results ul{
   list-style:none;
}
.search_results li.stores_list_item a {
  display: flex;
  text-decoration: none;
  justify-content: space-between;
  padding: 4px 12px;
  border-radius: 5px;
  transition: 0.3s all;
}
.search_results li.stores_list_item a .store_region {
  display: flex;
  align-items: center;
  flex: 20%;
}
.search_results li.stores_list_item a .store_region img {
  width: 31px;
  height: 17px;
  margin-right: 6px;
}
.search_results li.stores_list_item a span.store_name {
  flex: 80%;
  text-align: left;
}
.search_results li.stores_list_item a:hover {
  background: #eee;
}
.spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #dbdcef;
  border-right-color: #6418ff;
  animation: spinner-d3wgkg 1s infinite linear;
  z-index: 999;
  position: absolute;
  right: 53px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.close_search_result {
   position: absolute;
   right: 13px;
   top: 10px;
   background: #eee;
   width: 25px;
   height: 25px;
   display: flex !important;
   align-items: center;
   justify-content: center;
   border-radius: 100px;
   font-size: 14px;
   cursor: pointer;
}
.close_search_result:hover {
   background: #2c2a2a;
   color: #fff;
}

.floating-panel .to-top-btn {
    width: 60px;
    height: 60px;
	background: var(--primary_bg);
	opacity: 0.8;
	transition: all 0.3s;
}
.floating-panel .to-top-btn:hover {
	opacity: 1;
}

footer .footer-socials a {
  border-radius: 50%;
  border: 1px solid #00000033;
  width: 64px;
  height: 64px;
  font-size: 1.25em;
}
footer .footer-menus a {
  text-transform: uppercase;
  font-size: 0.875em;
  font-weight: 500;
}
footer .footer-menus li:first-child a {
    padding-left: 0 !important;
}
footer .footer-menus li:last-child a {
    padding-right: 0 !important;
}
footer .footer-bottom {
  font-size: 0.875em;
  font-weight: 500;
}

@media (max-width: 1399px) {
  body { font-size: 0.938em; }
}
@media (max-width: 1099px) {
  body { font-size: 0.875em; }
}
@media (max-width: 992px) {
    body header.site_header .mobile-menu {
        display: block;
    }
    body header.site_header .header_menu.main_menu {
        display: none;
    }
	header.site_header .header-search {
		display: none;
	}
}
@media(max-width: 767px ) {
  footer .footer-socials a {
    width: 48px;
    height: 48px;
  }
}