/*!
Theme Name: shows
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shows
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Peak Online is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css /

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
	 line-height: 1.15;
	 -webkit-text-size-adjust: 100%;
 }
 
 /* Sections
	  ========================================================================== */
 
 /**
  * Remove the margin in all browsers.
  */
:root {
  --mainColor: #95BC66;
  --bgColor: #ffffff;
  --hoverColor: #67cfe5;
}
@font-face{
font-family: 'Roboto-Regular';
src: url(assets/fonts/Roboto-Regular.ttf);
}
@font-face{
font-family: 'Roboto-Medium';
src: url(assets/fonts/Roboto-Medium.ttf);
} 
@font-face{
font-family: 'Roboto-Bold';
src: url(assets/fonts/Roboto-Bold.ttf);
}

 body {
	 margin: 0;
 }
 
 /**
  * Render the `main` element consistently in IE.
  */
 main {
	 display: block;
 }
 
 /**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Firefox, and Safari.
  */
 h1 {
/* 	 font-size: 2em;
	 margin: 0.67em 0; */
 }

 /* Grouping content
	  ========================================================================== */
 
 /**
  * 1. Add the correct box sizing in Firefox.
  * 2. Show the overflow in Edge and IE.
  */
 hr {
	 box-sizing: content-box;
	 height: 0;
	 overflow: visible;
 }
 
 /**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
 pre {
	 font-family: monospace, monospace;
	 font-size: 1em;
 }
 
 /* Text-level semantics
	  ========================================================================== */
 
 /**
  * Remove the gray background on active links in IE 10.
  */
 a {
	 background-color: transparent;
 }
 
 /**
  * 1. Remove the bottom border in Chrome 57-
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  */
 abbr[title] {
	 border-bottom: none;
	 text-decoration: underline;
	 text-decoration: underline dotted;
 }
 
 /**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
 b,
 strong {
	 font-weight: bolder;
 }
 
 /**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
 code,
 kbd,
 samp {
	 font-family: monospace, monospace;
	 font-size: 1em;
 }

 /**
  * Add the correct font size in all browsers.
  */
 small {
	 font-size: 80%;
 }
 
 /**
  * Prevent `sub` and `sup` elements from affecting the line height in
  * all browsers.
  */
 sub,
 sup {
	 font-size: 75%;
	 line-height: 0;
	 position: relative;
	 vertical-align: baseline;
 }
 
 sub {
	 bottom: -0.25em;
 }
 
 sup {
	 top: -0.5em;
 }
 
 /* Embedded content
	  ========================================================================== */
 
 /**
  * Remove the border on images inside links in IE 10.
  */
 img {
	 border-style: none;
 }
 
 /* Forms
	  ========================================================================== */
 
 /**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */
 button,
 input,
 optgroup,
 select,
 textarea {
	 font-family: inherit;
	 font-size: 100%;
	 line-height: 1.15;
	 margin: 0;
 }
 
 /**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
 button,
 input {
	 overflow: visible;
 }
 
 /**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
 button,
 select {
	 text-transform: none;
 }
 
 /**
  * Correct the inability to style clickable types in iOS and Safari.
  */
 button,
 [type="button"],
 [type="reset"],
 [type="submit"] {
	 -webkit-appearance: button;
 }
 .wpcf7-spinner {
    display: none !important;
}


.custom-cf7-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top: 3px solid #95BC66;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px; /* Add space between the button and loader */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

 /**
  * Remove the inner border and padding in Firefox.
  */
 button::-moz-focus-inner,
 [type="button"]::-moz-focus-inner,
 [type="reset"]::-moz-focus-inner,
 [type="submit"]::-moz-focus-inner {
	 border-style: none;
	 padding: 0;
 }
 
 /**
  * Restore the focus styles unset by the previous rule.
  */
 button:-moz-focusring,
 [type="button"]:-moz-focusring,
 [type="reset"]:-moz-focusring,
 [type="submit"]:-moz-focusring {
	 outline: 1px dotted ButtonText;
 }

 /**
  * Correct the padding in Firefox.
  */
 fieldset {
	 padding: 0.35em 0.75em 0.625em;
 }
 
 /**
  * 1. Correct the text wrapping in Edge and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  * 3. Remove the padding so developers are not caught out when they zero out
  *		`fieldset` elements in all browsers.
  */
 legend {
	 box-sizing: border-box;
	 color: inherit;
	 display: table;
	 max-width: 100%;
	 padding: 0;
	 white-space: normal;
 }
 
 /**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
 progress {
	 vertical-align: baseline;
 }
 
 /**
  * Remove the default vertical scrollbar in IE 10+.
  */
 textarea {
	 overflow: auto;
 }
 
 /**
  * 1. Add the correct box sizing in IE 10.
  * 2. Remove the padding in IE 10.
  */
 [type="checkbox"],
 [type="radio"] {
	 box-sizing: border-box;
	 padding: 0;
 }
 
 /**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
 [type="number"]::-webkit-inner-spin-button,
 [type="number"]::-webkit-outer-spin-button {
	 height: auto;
 }
 
 /**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
 [type="search"] {
	 -webkit-appearance: textfield;
	 outline-offset: -2px;
 }
 
 /**
  * Remove the inner padding in Chrome and Safari on macOS.
  */
 [type="search"]::-webkit-search-decoration {
	 -webkit-appearance: none;
 }
 
 /**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
 ::-webkit-file-upload-button {
	 -webkit-appearance: button;
	 font: inherit;
 }
 
 /* Interactive
	  ========================================================================== */
 
 /*
  * Add the correct display in Edge, IE 10+, and Firefox.
  */
 details {
	 display: block;
 }
 
 /*
  * Add the correct display in all browsers.
  */
 summary {
	 display: list-item;
 }
 
 /* Misc
	  ========================================================================== */
 
 /**
  * Add the correct display in IE 10+.
  */
 template {
	 display: none;
 }
 
 /**
  * Add the correct display in IE 10.
  */
 [hidden] {
	 display: none;
 }
 
 /* Box sizing
 --------------------------------------------- */
 
 /* Inherit box-sizing to more easily change it's value on a component level.
 @link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
 *,
 *::before,
 *::after {
	 box-sizing: inherit;
 }
 
 html {
	 box-sizing: border-box;
 }
 
 /*--------------------------------------------------------------
 # Base
 --------------------------------------------------------------*/
 
 /* Typography
 --------------------------------------------- */
 body,
 button,
 input,
 select,
 optgroup,
 textarea {
	 color: #848484;
	 font-family: 'Roboto', sans-serif;;
	 font-size: 14px;
	 line-height: 1.5;
 }
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
	 clear: both;
 }
 
 p {
	 margin-bottom: 1.5em !important;
 }
 
 dfn,
 cite,
 em,
 i {
	 font-style: italic;
 }
 
 blockquote {
	 margin: 0 1.5em;
 }
 
 address {
	 margin: 0 0 1.5em;
 }
 
 pre {
	 background: #eee;
	 font-family: "Courier 10 Pitch", courier, monospace;
	 line-height: 1.6;
	 margin-bottom: 1.6em;
	 max-width: 100%;
	 overflow: auto;
	 padding: 1.6em;
 }
 
 code,
 kbd,
 tt,
 var {
	 font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
 }
 
 abbr,
 acronym {
	 border-bottom: 1px dotted #666;
	 cursor: help;
 }
 
 mark,
 ins {
	 background: #fff9c0;
	 text-decoration: none;
 }
 
 big {
	 font-size: 125%;
 }
 
 /* Elements
 --------------------------------------------- */
 body {
	 background: #fff;
 }
 
 hr {
	 background-color: #ccc;
	 border: 0;
	 height: 1px;
	 margin-bottom: 1.5em;
 }
 
 ul,
 ol {
/* 	 margin: 0 0 1.5em 3em; */
 }
 
 ul {
	 list-style: disc;
 }
 
 ol {
	 list-style: decimal;
 }
 
 li > ul,
 li > ol {
	 margin-bottom: 0;
	 margin-left: 1.5em;
 }
 
 dt {
	 font-weight: 700;
 }
 
 dd {
	 margin: 0 1.5em 1.5em;
 }
 
 / Make sure embeds and iframes fit their containers. /
 embed,
 iframe,
 object {
	 max-width: 100%;
 }
 
 img {
	 height: auto;
	 max-width: 100%;
 }
 
 figure {
	 margin: 1em 0;
 }
 
 table {
	 margin: 0 0 1.5em;
	 width: 100%;
 }
 
 /* Links
 --------------------------------------------- */
 a {
	 color: var(--mainColor);
 }
 
 a:visited {
/* 	 color: #800080; */
 }
 
 a:hover,
 a:focus,
 a:active {
/* 	 color: #191970; */
 }
 
 a:focus {
/* 	 outline: thin dotted; */
 }
 
 a:hover,
 a:active {
	 outline: 0;
 }
 
 /* Forms
 --------------------------------------------- */
 button,
 input[type="button"],
 input[type="reset"],
 input[type="submit"] {
	 border: 1px solid;
	 border-color: #ccc #ccc #bbb;
	 border-radius: 3px;
	 background: #e6e6e6;
	 color: rgba(0, 0, 0, 0.8);
	 line-height: 1;
	 padding: 0.6em 1em 0.4em;
 }
 
 button:hover,
 input[type="button"]:hover,
 input[type="reset"]:hover,
 input[type="submit"]:hover {
	 border-color: #ccc #bbb #aaa;
 }
 
 button:active,
 button:focus,
 input[type="button"]:active,
 input[type="button"]:focus,
 input[type="reset"]:active,
 input[type="reset"]:focus,
 input[type="submit"]:active,
 input[type="submit"]:focus {
	 border-color: #aaa #bbb #bbb;
 }
 
 input[type="text"],
 input[type="email"],
 input[type="url"],
 input[type="password"],
 input[type="search"],
 input[type="number"],
 input[type="tel"],
 input[type="range"],
 input[type="date"],
 input[type="month"],
 input[type="week"],
 input[type="time"],
 input[type="datetime"],
 input[type="datetime-local"],
 input[type="color"],
 textarea {
	 color: #666;
	 border: 1px solid #ccc;
	 border-radius: 3px;
	 padding: 3px;
 }
 
 input[type="text"]:focus,
 input[type="email"]:focus,
 input[type="url"]:focus,
 input[type="password"]:focus,
 input[type="search"]:focus,
 input[type="number"]:focus,
 input[type="tel"]:focus,
 input[type="range"]:focus,
 input[type="date"]:focus,
 input[type="month"]:focus,
 input[type="week"]:focus,
 input[type="time"]:focus,
 input[type="datetime"]:focus,
 input[type="datetime-local"]:focus,
 input[type="color"]:focus,
 textarea:focus {
	 color: #111;
 }
 
 select {
	 border: 1px solid #ccc;
 }
 
 textarea {
	 width: 100%;
 }
 
 /*--------------------------------------------------------------
 # Layouts
 --------------------------------------------------------------*/
 
 /*--------------------------------------------------------------
 # Components
 --------------------------------------------------------------*/
 
 /* Navigation
 --------------------------------------------- */
 .main-navigation {
	 display: block;
	 width: 100%;
 }
 
 .main-navigation ul {
	 display: none;
	 list-style: none;
	 margin: 0;
	 padding-left: 0;
 }
 
 .main-navigation ul ul {
	 box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	 float: left;
	 position: absolute;
	 top: 100%;
	 left: -999em;
	 z-index: 99999;
 }
 
 .main-navigation ul ul ul {
	 left: -999em;
	 top: 0;
 }
 
 .main-navigation ul ul li:hover > ul,
 .main-navigation ul ul li.focus > ul {
	 display: block;
	 left: auto;
 }
 
 .main-navigation ul ul a {
	 width: 200px;
 }
 
 .main-navigation ul li:hover > ul,
 .main-navigation ul li.focus > ul {
	 left: auto;
 }
 
 .main-navigation li {
	 position: relative;
 }
 
 .main-navigation a {
	 display: block;
	 text-decoration: none;
 }


.page .post-thumbnail{
    display:none;
}
/* Header CSS Start */
.col-1 {width: 8.33%;}
.col-2 {width: 20%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.container-fluid{
    width:100%;
    height:auto;
    position:relative;
}
.container,.peak_lb_single_main .container,main{
    width: 100%;
    max-width: 1340px;
    padding: 0 15px;
    margin: 0 auto;
    position:relative;
	font-family: "Roboto", sans-serif;
}
main{
	 max-width: 1200px;
}
main strong{
	font-family:'Roboto-Bold';
}
main a{
	text-decoration:none;
	color:var(--mainColor);
}
main a:hover{
	color:#000;
}
h1,h2,h3,h4,strong{
	font-weight:400;
}
a{
    transition: .3s ease;;
}
body{
    margin: 0;
}
.shows_header_main{
    border-bottom: 1px solid #e1e1e1;
    margin-top: 0;
}
.shows_header_main .logo{
	max-width: 150px;
}
.shows_header_main .logo a{
    display: flex;
}
.shows_header_main .logo img{
/*     width: 150px; */
}
.shows_header_main .header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px 0;
}
.shows_header_main .header-flex .col-7 ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:center;
}
.shows_header_main .header-flex .col-7 ul li{
	position:relative;
}
.shows_header_main .header-flex .col-7 ul li.current-menu-item a{
    color:var(--mainColor);
	font-family:'Roboto-Medium' !important;
}
.shows_header_main .header-flex .col-7 ul li a{
    padding:20px;
    color:var(--mainColor);
    font-size:16px;
    line-height:22px;
    text-decoration:none;
    font-weight: 400;
	text-transform:uppercase;
	font-family:'Roboto-Medium' !important;
}
.shows_header_main .header-flex .col-7 ul li a:hover{
    color:var(--hoverColor);
}
.shows_header_main .header-flex .row ul>li{
	position:relative;
}
.shows_header_main .header-flex .sub-menu{
	position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
/*     padding: 15px 0; */
    background-color: #fff;
    border-radius: 0px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    transform: translateY(25px);
	margin:0;
	padding:0;
	box-shadow: 0 0px 3px rgba(0, 0, 0, 0.15);
	display:block !important;
}
.shows_header_main .header-flex .sub-menu li a{
    padding: 10px 18px 10px 18px !important;
    display: block;
    line-height: 1.7rem !important;
    border-bottom: 1px solid #edeff1;
    font-size: 14px !important;
    text-transform: capitalize !important;
}

.shows_header_main .header-flex .sub-menu li a:hover{
	background: var(--mainColor);
	color:#fff !important;
}
.shows_header_main .header-flex li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.shows_header_main .header-flex .col-2{
    text-align:right;
}
.shows_header_main .header-flex .login-btn{
    display: flex;
    align-items: center;
    justify-content: end;
    align-items: center;

}
.shows_header_main .header-flex .login-btn .button-style,#responsive_menu .button-style{
    text-decoration: none;
    color: #2e2e2e;
    border: 1px solid #2e2e2e;
    padding: 12px 24px;
}
.shows_header_main .header-flex .login-btn .button-style,#responsive_menu .button-style{
	font-size: 16px;
    background: transparent;
}
#responsive_menu .button-style{
	margin-top:25px;
}
.shows_header_main .header-flex .login-btn img{
	margin-right:20px;
}
.shows_header_main .header-flex .login-btn .button-style:hover,#responsive_menu .button-style:hover{
	border-color: var(--mainColor);
    color: #ffffff;
}
.shows_header_main .header-flex .login-btn .button-style:before,#responsive_menu .button-style:before{
    background: var(--mainColor);
}
.button-style{
    font-size: 16px;
    letter-spacing: 2px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0.57em 2em;
    border: 3px solid var(--mainColor);
    border-radius: 0px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
    overflow: hidden;
    background: #2075B8;
}
.button-style:before{
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #fff;
    z-index: -1;
}
.button-style:hover:before, .button-style:focus:before{
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}
.mobile-header{
    display:none;
}
.mobile-header .site-logo img{
    width:230px;
}
.mobile-header .row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.mobile-header .toggle-menu{
    position:relative;
}
.mobile-header .responsive_menu_button{
    cursor: pointer;
    width: 27px;
    height: 23px;
    position: absolute;
    top: 50% !important;
    right: 0;
    margin: 0;
    -webkit-transform: rotate(0deg) translateY(-50%);
    -moz-transform: rotate(0deg) translateY(-50%);
    -ms-transform: rotate(0deg) translateY(-50%);
    -o-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}
.mobile-header .responsive_menu_button span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #252525;
    border-radius: 2px !important;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.mobile-header .responsive_menu_button span:first-child{
    top:0px;
}
.mobile-header .responsive_menu_button span:nth-child(2){
    top:10px;
}
.mobile-header .responsive_menu_button span:last-child{
    top:20px;
}
.mobile-header .header-right{
    display:flex;
    align-items:center;
}
.mobile-header .header-right .mobile-search,
.mobile-header .header-right .toggle-menu{
    width:40px;
}
.mobile-header .header-right .mobile-search .serach-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-header .header-right .mobile-search .serach-icon a{
    display: flex;
}
.mobile-header .site-logo a,.site-header .header-logo1 a,.site-header .header-logo2 a{
    display:flex;
}
#responsive_menu{
    display:none;
}
#responsive_menu .row{
    width: 100%;
    max-width: 360px;
    border-radius: 0;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: -110%;
    height: 100% !important;
/*     box-shadow: 0 10px 30px 0 rgb(227 227 227 / 50%); */
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display : flex;
    flex-direction: column;
    padding:20px 20px 0px 20px;
    -moz-transition: left .3s cubic-bezier(.6, .1, .68, .53), width .3s;
    -webkit-transition: left .3s cubic-bezier(.6,.1,.68,.53), width .3s;
    -o-transition: left .3s cubic-bezier(.6, .1, .68, .53), width .3s;
    -ms-transition: left .3s cubic-bezier(.6, .1, .68, .53), width .3s;
    transition: left .3s cubic-bezier(.6,.1,.68,.53), width .3s;
    z-index:999999;
}
#responsive_menu .row .burger-logo-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0px 25px 0px;
}
#responsive_menu .row .burger-logo-area img{
    width:190px;
}
#responsive_menu .row .burger-logo-area .site-logo a{
    display:flex;
}
#responsive_menu .row .burger-logo-area .cross-btn{
    background-image:linear-gradient(135deg, var(--mainColor), var(--mainColor));
    
    padding: 8px 16px;
    color: #fff;
}
#responsive_menu .row nav ul{
    margin:0;
    padding:0;
    list-style:none;
}
#responsive_menu .row nav ul li a{
    padding: 15px 20px 15px 0px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: #000000;
    border-bottom: 1px solid #efefef;
}
#responsive_menu .row nav ul li.current-menu-item  a{
    color: var(--mainColor);
    font-family:'Roboto-Medium' !important;
}
#responsive_menu.toggle-open .row{
    left:0;
}
#responsive_menu .row nav ul li {
    position: relative;
}
#responsive_menu .row nav ul li.menu-item-has-children .sub-menu {
    display: none;
}
#responsive_menu .row nav li .toggle-icon {
    position: absolute;
    right: 15px;
    top: 16px;
    color: #000;
}
#responsive_menu .row nav li .sub-menu li a {
    font-size: 14px !important;
    position: relative;
    padding-left: 35px !important;
    line-height: 22px;
    padding: 10px 20px !important;
	color:#fff !important;
	background:var(--mainColor) !important;
	border-bottom: 1px solid rgba(50, 50, 50, 0.1);
}
/* Header CSS End */

/* Footer CSS start */
.pre-footer .row{
    width: 85%;
    margin: 0 auto;
}
.pre-footer img{
    display: flex;
    width: 100%;
}
.main-footer{
    background: var(--mainColor);
    text-align: center;
    color: #fff;
    padding: 80px 0;
}
.main-footer h2{
    font-family:'Roboto-Bold';
    margin-bottom: 30px;
    position: relative;
    margin-top: 0;
}
/* .main-footer h2::before{
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    background: #359e35;
    width: 15px;
    height: 7px;
}
.main-footer h2::after{
    content: '';
    position: absolute;
    top: -10px;
    left: 49%;
    background: #359e35;
    width: 15px;
    height: 7px;
} */
.main-footer h1{
    margin: 0;
}
.main-footer ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.main-footer ul li a{
    padding: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    font-weight: 400;
}
.main-footer ul li a:hover{
    opacity:.7;
}
.footer-credit p{
    text-align: center;
    margin: 0 !important;
    padding: 20px 0;
    color: #848484;
}
.footer-credit p a{
    color: var(--mainColor);
    text-decoration: none;
}
.footer-credit p a:hover{
    color: #222;
}
.page{
    margin: 0;
}
.site-footer{
	clear:both;
}
.nav-links{
	display:none !important;
}
/* Footer CSS End */

/* Home CSS start */
.home-sec-1{
    padding: 50px 0;
	margin-bottom:100px;
}
.home-sec-1 .category-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.home-sec-1 h2{
    text-align: center;
    font-size: 55px;
    margin-top: 0;
}
.home-sec-1 .category-grid a{
    text-decoration: none;
}
.home-sec-1 .category-grid h3{
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
    color: #fff;
    text-transform: uppercase;
}
.home-sec-1 h2 span{
    color: #359e35;
}

.card-title {
    color: #262626;
    font-size: 1.5em;
    line-height: normal;
    margin-bottom: 0.5em;
  }
  
  .small-desc {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    color: #452c2c;
  }
  
  .small-desc {
    font-size: 1em;
  }
  
  .go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(93.35deg,#67cfe5 -2.29%,#5ca500 104.35%);
    border-radius: 0 4px 0 32px;
  }
  
  .go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
  }
  
  .card {
    display: block;
    position: relative;
    max-width: 100%;
    /* max-height: 320px; */
    background-color: #f2f8f9;
    border-radius: 0px;
    padding: 10em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
    font-family: Arial, Helvetica, sans-serif;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
	box-shadow:inset 0 0 0 2000px rgba(0,0,0,.5)!important;
  }
  
  .card:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background:linear-gradient(135deg, var(--mainColor), var(--mainColor));
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
  }
  
  .card:hover:before {
    transform: scale(45);
  }
  
  .card:hover .small-desc {
    transition: all 0.5s ease-out;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .card:hover .card-title {
    transition: all 0.5s ease-out;
    color: #ffffff;
  }
.lb_custom_tabs .tab-item.active{
	background-color:var(--hoverColor) !important;;
}
  
/* Home CSS End */

/* 404 CSS start */
.error-404{
/*     text-align: center; */
/*     padding: 80px 0; */
}
.error-404 .row{
	text-align:center;
	padding: 80px 0;
}
.error-404 img{
    width: 300px;
}
.error-404 .entry-content p:first-child{
    font-size: 40px;
    margin: 0;
	margin-bottom:0 !important;
}
.error-404 .entry-content p:last-child{
    font-size: 24px;
	margin:0 !important;
}
.error-404 .entry-content a{
    color: #359e35;
}
/* 404 CSS End */

/* Woocommerce CSS start */
.woocommerce-page main{
    width: 100%;
    max-width: 1340px;
    padding: 60px 15px;
    margin: 0 auto;
    position: relative;
}
.woocommerce .products ul, .woocommerce ul.products{
	display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
    margin:0;
    position: relative;
    width: 22.5% !important;
    margin-left: 0;
    border: 1px solid #f2f2f2;
    padding: 1.875em;
}
.woocommerce ul.products li.product:hover, .woocommerce-page ul.products li.product:hover{
	-webkit-box-shadow: 0 0 60px 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 60px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 60px 10px rgba(0, 0, 0, .1);
    transition: .5s;
    border: none;
}
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{
	content:unset;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
	font-size: 20px;
    text-align: center;
    color: #000;
    font-family: 'Roboto-Medium';
    font-weight: 500;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title:hover, .woocommerce ul.products li.product .woocommerce-loop-product__title:hover, .woocommerce ul.products li.product h3:hover{
	color: var(--mainColor);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
	text-align: center;
    color: var(--mainColor);
    font-size: 18px;
}
.woocommerce .woocommerce-ordering{
	margin:0 0 3em;
	position:relative;
}
.woocommerce .woocommerce-ordering select{
	color: #848484;
    -webkit-appearance: none;
    padding: 0 1.7em 0 1em;
    border: 1px solid #f2f2f2;
    height: 3.125em;
}
.woocommerce .woocommerce-ordering:before {
    position: absolute;
    right: 1em;
    top: 1em;
    font-family: FontAwesome;
    content: '\f107';
    font-size: 1em;
    color: #848484;
}
.woocommerce .woocommerce-result-count{
	color: var(--mainColor);
    margin-bottom: 0 !important;
    margin-top: 10px;
}
.related{
	display:none;
}
.acsp_single_product_group p{
	margin-bottom: 15px !important;
    font-size: 17px !important;
    font-family: 'Roboto-Bold' !important;
    font-weight: 500;
    margin: 0;
}
.woocommerce .entry-title{
    color: #000;
    margin: 0;
    margin-bottom: 20px;
}
.woocommerce div.product span.price, .woocommerce div.product p.price{
    color: #848484;
    font-size: 1.375em;
    margin: 0 !important;
    margin-bottom: 20px !important;
}
.acsp_extra_tic_sec label p{
	margin-bottom:0 !important;
}
.woocommerce .posted_in{
	display:none;
}
.acsp_button_style,.woocommerce .single_add_to_cart_button,.lb_single_pro_btn input,.agshow_addtion_button_style,.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,.woocommerce-Button,.submit-btn input{
	letter-spacing: 2px;
    display: inline-block !important;
    text-align: center;
    font-weight: 500 !IMPORTANT;
    border-radius: 0px ! IMPORTANT;
    position: relative ! IMPORTANT;
    transition: 0.3s ease all;
    z-index: 1;
    overflow: hidden !important;
    text-decoration: none ! IMPORTANT;
    color: #fff !important;
    border: 1px solid var(--mainColor) ! IMPORTANT;
    padding: 12px 24px !important;
    font-size: 16px ! IMPORTANT;
    background: var(--mainColor) !important;
	cursor:pointer;
}
.acsp_button_style:hover,.woocommerce .single_add_to_cart_button:hover,.lb_single_pro_btn input:hover,.agshow_addtion_button_style:hover,.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,.woocommerce-Button:hover,.submit-btn input:hover{
    border-color: #2e2e2e !important;
    color: #2e2e2e !important;
	background:transparent !important;
}
.acsp_button_style:before,.woocommerce .single_add_to_cart_button:before,.lb_single_pro_btn input:before,.agshow_addtion_button_style:before,.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:before,.woocommerce-Button:before,.submit-btn input:before{
	transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #fff;
    z-index: -1;
}
.acsp_button_style:hover:before,.woocommerce .single_add_to_cart_button:hover:before,.lb_single_pro_btn input:hover:before,.agshow_addtion_button_style:hover:before,.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover:before,.woocommerce-Button:hover:before,.submit-btn input:hover:before{
	transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}
.wc-block-components-checkout-place-order-button,.wc-block-cart__submit-button{
    background: var(--mainColor);
    border: none;
    border-radius: 0;
    color: #fff;
    border: 1px solid var(--mainColor);
    transition: all 0.3s !important;
}
.wc-block-components-checkout-place-order-button:hover,.wc-block-cart__submit-button:hover{
	border-color:#000;
	 color: #000;
	background:transparent;
}
.woocommerce div.product div.summary{
	margin-bottom:0 !important;
}
.acsp_qt_btn_style{
	background-color:#359e35;
}
.peak_list_booking_title h2,.peak_lb_single_main_inner_right_inner h2{
	color: #2e2e2e;
    font-family: 'Roboto-Bold';
    font-weight: 500;
    font-size: 30px;
    max-width: 350px;
    line-height: 1.2;
}
.po_list_booking_qt_style{
	background-color:var(--mainColor);
}
.peak_list_booking_top_content strong{
	font-family:'Roboto-Bold';
}
.peak_list_booking_top_content strong a{
	text-decoration:none;
	color:#359e35;
}
.peak_list_booking_top_content strong a:hover{
	color:#000;
}
.po_agshow_single_product_input_group h2{
	font-family:'Roboto-Bold';
	font-weight:500;
}
.agshow_qt_btn_style{
	background-color:#359e35;
}
.agshow_extra_tic_sec label p {
    margin-bottom: 0px !important;
    margin-left: 15px;
    margin-top: 0;
}
.acsp_single_product_group .select2-container--default .select2-selection--multiple .select2-selection__choice{
	margin-right: 3px;
    display: flex;
}
.select2-container{
	width:unset;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
	border: 1px solid #f0f0f0;
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 0px;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea{
	box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 0;
}
#customer_login h2{
	color: #000;
    font-family: 'Roboto-Bold';
}
.woocommerce-privacy-policy-text a,.woocommerce-LostPassword a{
	text-decoration:none;
	color:var(--mainColor);
}
.woocommerce-page .entry-title{
	color: #2e2e2e;
    font-family: 'Roboto-Bold';
    font-weight: 500;
    font-size: 30px;
    max-width: 350px;
    line-height: 1.2;
}
.woocommerce form .form-row{
	display: flex;
    flex-direction: column;
}
.woocommerce div.product form.cart .variations select{
	padding: 8px 10px;
    border: 1px solid #f2f2f2;
}
.woocommerce .quantity .qty{
	padding:10px;
	border: 1px solid #f2f2f2;
}
.xoo-wsc-product dl.variation dd{
	line-height:unset;
	margin-bottom:5px !important;
}
.xoo-wsc-product dl.variation dd p{
	margin:0 !important;
}
span.xoo-wsc-pname, span.xoo-wsc-pname a{
	font-family: 'Roboto-Bold';
}
span.xoo-wsc-pname, span.xoo-wsc-pname a:hover{
	color:#000;
}

.xoo-wsc-product dl.variation dt {
	margin-bottom: 5px;
    font-family: 'Roboto-Bold';
    font-weight: 400;
    color: #000;
}
.xoo-wsc-ft-amt,span.xoo-wsch-text{
	font-family:'Roboto-Bold';
}
.woocommerce-checkout label{
	font-family: 'Roboto-Bold';
}
#place_order,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
	letter-spacing: 2px;
    display: inline-block !important;
    text-align: center;
    font-weight: 500 !IMPORTANT;
    border-radius: 0px ! IMPORTANT;
    position: relative ! IMPORTANT;
    transition: 0.3s ease all;
    z-index: 1;
    overflow: hidden !important;
    text-decoration: none ! IMPORTANT;
    color: #fff !important;
    border: 1px solid var(--mainColor) ! IMPORTANT;
    padding: 12px 24px !important;
    font-size: 16px ! IMPORTANT;
    background: var(--mainColor) !important;
    cursor: pointer;
	width:170px;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
	width:250px;
}
#place_order:hover,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover{
	border-color: #2e2e2e !important;
    color: #2e2e2e !important;
    background: transparent !important;
}
#place_order:before,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:before{
	transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #fff;
    z-index: -1;
}
#place_order:hover:before,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover:before{
	transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border-radius: 0px;
    border: 1px solid #f0f0f0;
	height:40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder,.woocommerce-privacy-policy-text p{
	font-family: 'Roboto-Bold' !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #999;
    line-height: 40px;
    font-family: 'Roboto-Bold';
}
.p-PaymentDetails-group .Label{
	font-family:'Roboto-Bold' !important;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table p{
	font-family:'Roboto-Bold' !important;
}
.woocommerce-cart tbody .button,.return-to-shop a{
	font-family: 'Roboto-Bold' !important;
    padding: 10px 20px !important;
    border-radius: 0 !important;
}
.woocommerce-cart .product-name a,.woocommerce-cart .product-thumbnail a{
	pointer-events:none;
}
/* Woocommerce CSS End */

/* Contact CSS start */
.shows-contact-form{
	padding:0 20px;
}
.shows-contact-form .form-group{
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.form-group>.col-6 input,.form-group>.col-6 select,.shows-contact-form .col-12 textarea {
    width: 100%;
    height: 50px;
    font-size: 15px;
    border-radius: 0;
    border: 1px solid #f0f0f0;
    padding: 10px 10px;
    outline: none;
/*     background-color: #eceff4; */
    transition: all 300ms ease;
}
.form-group>.col-6{
	width:48.7%;
}
.shows-contact-form .col-12 textarea{
	height:150px;	
}
.page-id-161 main{
	padding:50px 0;
}
.page-id-161 main .entry-header{
	display:none;
}
.shows-contact-form h1{
    margin: 0;
    font-size: 35px;
    border-bottom: 2px solid #359e35;
    margin-bottom: 30px;
    display: inline-block;
    color: #000;
}

/* Contact CSS start */
/* Contact Form CSS Start */
#wpcf7-f1331-p1344-o1{
	margin:70px 0 100px;
}
.pot-entry-form{
	padding: 35px;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pot-entry-form .sec-title{
	border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}
.pot-entry-form .sec-title h1{
	margin: 0;
    font-size: 30px;
    color: #95BC66;
    font-family: 'Roboto-Medium';
    font-weight: 400;
	padding-bottom: 10px;
}
.pot-entry-form .form-group{
	display:flex;
	justify-content:space-between;
	gap:30px;
}
.pot-entry-form p{
	margin:0;
	position:relative;
}
.pot-entry-form label{
    font-family: 'Roboto-Medium' !important;
	margin-bottom: 3px;
	line-height: 1.75;
}
.pot-entry-form .form-group input,.pot-entry-form textarea,.pot-entry-form select{
	padding: 15px 20px;
    margin: 5px 0 13px 0;
    width: 100%;
    transition: all 100ms ease-out;
	max-width: 100%;
    color: #999999;
    font-weight: normal;
    border: 1px solid #f2f2f2;
    background: #f9f9f9;
	border-radius: 2px;
	outline:none;
}
.pot-entry-form .form-group input[type='file']{
	padding: 12px 20px;
}
.pot-entry-form .form-group input:focus,.pot-entry-form textarea:focus{
	border-color: #cecece;
}
.pot-entry-form textarea{
	height:120px;
}
.pot-entry-form select{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.pot-entry-form .fa-caret-down{
	position: absolute;
    right: 25px;
    top: 50%;
    font-size: 14px;
    pointer-events: none;
}
.pot-entry-form .submit-btn input{
	color: #ffffff;
    background: #00aae8;
    padding: 20px 30px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    font-family: 'Roboto-Medium' !important;
    font-size: 13.5px;
    transition: all 100ms ease-out;
    border-radius: 30px;
    cursor: pointer;
}
.pot-entry-form .submit-btn p{
	display: flex;
    justify-content: flex-start;
    align-items: center;
}
.chrisross-contact-us-form .submit-btn p input[type="submit"]{
	margin-right:20px;
}
.pot-entry-form .submit-btn p input[type="submit"]:hover{
	background: #1e73be;
}
.pot-entry-form .check-boxes .wpcf7-list-item label{
	display:flex;
	align-items:center;
	gap:10px;
}
.pot-entry-form .check-boxes .wpcf7-list-item label input{
    width: 22px;
}
.pot-entry-form .checkbox-group .wpcf7-list-item label{
	display:flex;
	align-items:center;
	gap:10px;
}
.pot-entry-form .checkbox-group .wpcf7-list-item label input{
	width: 22px;
}
.pot-entry-form .checkbox-group>p{
	display:flex;
	gap: 20px;
}
.pot-entry-form .align-field{
	margin-top: 25px;
}
.pot-entry-form .wpcf7-list-item:first-child{
	margin-left:0 !important;
}
.pot-entry-form .porridge-margin>p>label{
	width:75%;
	line-height: 16px;
	display:inline-block;
}
.pot-entry-form .porridge-margin .wpcf7-list-item label{
	margin-top:10px;
}
.pot-entry-form .swimmer-margin .wpcf7-list-item label{
	margin-top:15px;
}
/* Contact Form CSS End */
/* Responsive CSS start */
@media only screen and (max-width: 1440px){
	.container,.woocommerce-page main,.peak_lb_single_main .container{
		max-width:1170px;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
		width:30.4%!important;
	}
	.shows_header_main .header-flex .login-btn .button-style, #responsive_menu .button-style{
		padding:12px 18px;
	}
	

}
@media only screen and (max-width: 768px) {
    .mobile-header{
        display:block;
        padding:20px 20px;
        border-bottom: 1px solid #e1e1e1;
    }
    .mobile-header .site-logo img{
        width:150px;
    }
    .main-header{
        display:none !important;
    }
    #responsive_menu{
        display:block;
    }
	.form-group>.col-6{
		width:100%;
	}
	.shows-contact-form .form-group{
		gap:0;
	}
	.shows-contact-form p{
		margin:0;
	}
	.wd-close-side {
		position: fixed;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), z-index 0s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, top 0s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
		z-index: 400;
		inset: 0;
	}
	.wd-close-side.wd-close-side-opened {
		opacity: 1;
		pointer-events: unset;
		transition-delay: 0s;
		pointer-events: unset;
	}
	.pot-entry-form{
		padding:35px 15px;
	}
	.pot-entry-form p{
		margin:0 !important;
	}
	.pot-entry-form .form-group{
		flex-wrap:wrap;
		gap:0;
	}
	.pot-entry-form .form-group .col-4,.pot-entry-form .form-group .col-6{
		width:100%;
	}
	.pot-entry-form .check-boxes .wpcf7-list-item label input{
		width: 18px;
	}
	.pot-entry-form .submit-btn{
		margin-top:15px
	}
	#wpcf7-f1331-p1344-o1{
		margin:40px 0 50px;
	}
	.pot-entry-form .align-field{
		margin-top:0;
	}
}
    
@media only screen and (max-width: 480px){
    .mobile-header .site-logo img{
        width:130px;
    }
    #responsive_menu .row{
        max-width: 325px;
    }
    .main-footer ul{
        flex-direction: column;
        gap: 20px;
    }
    .home-sec-1 .category-grid .col-5{
        width: 100%;
    }
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
		width:100% !important;
	}
	.woocommerce .products ul, .woocommerce ul.products{
		gap:0;
	}
	.woocommerce .woocommerce-result-count{
		display:none;
	}
	.select2-container{
		width:400px !important;
	}
	
    
}
@media only screen and (max-width: 390px){
	.select2-container{
		width:358px !important;
	}
    
}

@media only screen and (max-width: 360px){
    .mobile-header .site-logo img{
        width:130px;
    }
    #responsive_menu .row{
        max-width: 300px;
    }
	.select2-container{
		width:330px !important;
	}
    
}
/* Responsive CSS End */
 
 / Small menu. /
 .menu-toggle,
 .main-navigation.toggled ul {
	 display: block;
 }
 
 @media screen and (min-width: 37.5em) {
 
	 .menu-toggle {
		 display: none;
	 }
 
	 .main-navigation ul {
		 display: flex;
	 }
 }
 
 .site-main .comment-navigation,
 .site-main
 .posts-navigation,
 .site-main
 .post-navigation {
	 margin: 0 0 1.5em;
 }
 
 .comment-navigation .nav-links,
 .posts-navigation .nav-links,
 .post-navigation .nav-links {
	 display: flex;
 }
 
 .comment-navigation .nav-previous,
 .posts-navigation .nav-previous,
 .post-navigation .nav-previous {
	 flex: 1 0 50%;
 }
 
 .comment-navigation .nav-next,
 .posts-navigation .nav-next,
 .post-navigation .nav-next {
	 text-align: end;
	 flex: 1 0 50%;
 }
 
 /* Posts and pages
 --------------------------------------------- */
 .sticky {
	 display: block;
 }
 
 .post,
 .page {
/* 	 margin: 0 0 1.5em; */
 }
 
 .updated:not(.published) {
	 display: none;
 }
 
 .page-content,
 .entry-content,
 .entry-summary {
/* 	 margin: 1.5em 0 0; */
 }
 
 .page-links {
	 clear: both;
	 margin: 0 0 1.5em;
 }
 
 /* Comments
 --------------------------------------------- */
 .comment-content a {
	 word-wrap: break-word;
 }
 
 .bypostauthor {
	 display: block;
 }
 
 /* Widgets
 --------------------------------------------- */
 .widget {
	 margin: 0 0 1.5em;
 }
 
 .widget select {
	 max-width: 100%;
 }
 
 /* Media
 --------------------------------------------- */
 .page-content .wp-smiley,
 .entry-content .wp-smiley,
 .comment-content .wp-smiley {
	 border: none;
	 margin-bottom: 0;
	 margin-top: 0;
	 padding: 0;
 }
 
 / Make sure logo link wraps around logo image. /
 .custom-logo-link {
	 display: inline-block;
 }
 
 /* Captions
 --------------------------------------------- */
 .wp-caption {
	 margin-bottom: 1.5em;
	 max-width: 100%;
 }
 
 .wp-caption img[class*="wp-image-"] {
	 display: block;
	 margin-left: auto;
	 margin-right: auto;
 }
 
 .wp-caption .wp-caption-text {
	 margin: 0.8075em 0;
 }
 
 .wp-caption-text {
	 text-align: center;
 }
 
 /* Galleries
 --------------------------------------------- */
 .gallery {
	 margin-bottom: 1.5em;
	 display: grid;
	 grid-gap: 1.5em;
 }
 
 .gallery-item {
	 display: inline-block;
	 text-align: center;
	 width: 100%;
 }
 
 .gallery-columns-2 {
	 grid-template-columns: repeat(2, 1fr);
 }
 
 .gallery-columns-3 {
	 grid-template-columns: repeat(3, 1fr);
 }
 
 .gallery-columns-4 {
	 grid-template-columns: repeat(4, 1fr);
 }
 
 .gallery-columns-5 {
	 grid-template-columns: repeat(5, 1fr);
 }
 
 .gallery-columns-6 {
	 grid-template-columns: repeat(6, 1fr);
 }
 
 .gallery-columns-7 {
	 grid-template-columns: repeat(7, 1fr);
 }
 
 .gallery-columns-8 {
	 grid-template-columns: repeat(8, 1fr);
 }
 
 .gallery-columns-9 {
	 grid-template-columns: repeat(9, 1fr);
 }
 
 .gallery-caption {
	 display: block;
 }
 
 /*--------------------------------------------------------------
 # Plugins
 --------------------------------------------------------------*/
 
 /* Jetpack infinite scroll
 --------------------------------------------- */
 
 / Hide the Posts Navigation and the Footer when Infinite Scroll is in use. /
 .infinite-scroll .posts-navigation,
 .infinite-scroll.neverending .site-footer {
	 display: none;
 }
 
 / Re-display the Theme Footer when Infinite Scroll has reached its end. /
 .infinity-end.neverending .site-footer {
	 display: block;
 }
 
 /*--------------------------------------------------------------
 # Utilities
 --------------------------------------------------------------*/
 
 /* Accessibility
 --------------------------------------------- */
 
 / Text meant only for screen readers. /
 .screen-reader-text {
	 border: 0;
	 clip: rect(1px, 1px, 1px, 1px);
	 clip-path: inset(50%);
	 height: 1px;
	 margin: -1px;
	 overflow: hidden;
	 padding: 0;
	 position: absolute !important;
	 width: 1px;
	 word-wrap: normal !important;
 }
 
 .screen-reader-text:focus {
	 background-color: #f1f1f1;
	 border-radius: 3px;
	 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	 clip: auto !important;
	 clip-path: none;
	 color: #21759b;
	 display: block;
	 font-size: 0.875rem;
	 font-weight: 700;
	 height: auto;
	 left: 5px;
	 line-height: normal;
	 padding: 15px 23px 14px;
	 text-decoration: none;
	 top: 5px;
	 width: auto;
	 z-index: 100000;
 }
 
 / Do not show the outline on the skip link target. /
 #primary[tabindex="-1"]:focus {
	 outline: 0;
 }
 
 /* Alignments
 --------------------------------------------- */
 .alignleft {
 
	 /*rtl:ignore*/
	 float: left;
 
	 /*rtl:ignore*/
	 margin-right: 1.5em;
	 margin-bottom: 1.5em;
 }
 
 .alignright {
 
	 /*rtl:ignore*/
	 float: right;
 
	 /*rtl:ignore*/
	 margin-left: 1.5em;
	 margin-bottom: 1.5em;
 }

 .aligncenter {
	 clear: both;
	 display: block;
	 margin-left: auto;
	 margin-right: auto;
	 margin-bottom: 1.5em;
 }
.fc-cart-item .product .variation{
	display:grid !important;
}
.cpops-toggle-drawer{
	display:none !important;
}
.cpops-modal-backdrop{
	display:none !important;
}
.cpops-modal {
		display:none !important;
}
.wc-block-components-quantity-selector{
	display:none !important;
}
.wp-block-product-new{
			display:none !important;
}
.woocommerce-cart .wp-block-heading {
		display:none !important;
}