
/* --------------------------------------
BEGIN CSS
------------------------------------------*/

:root {
    --whitish: #f9f9f9;
    --primary-color: #F0AC00;
    --accent-color: #DB813F;
    --accent-color2: #B3A566;
    --accent-color3: #a3bda2;
}

body {
    font-family : "Open Sans", serif;
    font-size   : 18px; 
    line-height : 24px;
    color       : #505050;
    font-weight : 400;
    background  : #fff;
    }

html, body {
    height: 100%;
    min-height: 100%;
}

section {
    position:relative;
}


/* --------------------------------------
Global Typography
------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    margin      : 0 0 15px;
    color       : var(--primary-color);
    font-weight : 400;
    font-family : "Fjalla One", sans-serif;
    }

h1 {
    font-size   : 36px;
    line-height : 38px;
    }

h2 {
    font-size   : 28px;
    line-height : 30px;
    }

h3 {
    font-size   : 24px;
    line-height : 26px;
    }

h4 {
    font-size   : 20px;
    line-height : 22px;
    }

h5 {
    font-size   : 18px;
    line-height : 20px;
    font-weight : 600;
    }

h6 {
    font-size   : 16px;
    line-height : 18px;
    }

/* --------------------------------------
LINK STYLE
------------------------------------------*/
a {
    color              : var(--primary-color);
    -webkit-transition : all 0.3s ease 0s;
    -moz-transition    : all 0.3s ease 0s;
    -o-transition      : all 0.3s ease 0s;
    transition         : all 0.3s ease 0s;
        }

a,
a:active,
a:focus,
a:active {
    text-decoration : none;
    outline         : none
    }

a:hover,
a:focus {
    color              : var(--primary-color);
        }


ul {
    margin     : 0;
    padding    : 0;
    list-style : none;
    }


/* --------------------
   Section Background
   -------------------*/

.gray-bg {
    background-color : #f9f9f9;
    }

.white-bg {
    background-color : #fff;
    }
.black-bg {
    background-color : #000;
    }
.light-bg {
    background-color : #fff;
    }
.dark-bg {
    background-color : #000;
    }

.primary-bg {
    background-color : var(--primary-color);
    }

.secondary-bg {
    background-color : var(--primary-color);
}
.neutral-bg {
    background-color : #505050;
}
.accent01-bg {
    background-color : var(--accent-color) !important;
}
.accent02-bg {
    background-color : var(--primary-color) !important;
}
.accent03-bg {
    background-color : #303030;
}
.gray-bg-h:hover, .gray-bg-h:focus {
    background-color: var(--whitish);
    }

.white-bg-h:hover, .white-bg-h:focus {
    background-color:#fff;
    }
.black-bg-h:hover, .black-bg-h:focus {
    background-color:#000;
    }
.light-bg-h:hover, .light-bg-h:focus {
    background-color:#fff;
    }
.dark-bg-h:hover, .dark-bg-h:focus {
    background-color:#000;
    }
.primary-bg-h:hover, .primary-bg-h:focus {
    background-color:var(--primary-color);
    }
.secondary-bg-h:hover, .secondary-bg-h:focus {
    background-color:var(--primary-color);
}
.neutral-bg-h:hover, .neutral-bg-h:focus {
    background-color:#505050;
}
.accent01-bg-h:hover, .accent01-bg-h:focus {
    background-color:var(--accent-color);
}
.accent02-bg-h:hover, .accent02-bg-h:focus {
    background-color:var(--accent-color2);
}
.accent03-bg-h:hover, .accent03-bg-h:focus {
    background-color:#303030;
}
.gradient12 {
    color: #ffffff;
    background: var(--primary-color);
    background: -moz-linear-gradient(-45deg,var(--primary-color) 0%,var(--accent-color) 100%);
    background: -webkit-linear-gradient(-45deg,var(--primary-color) 0%,var(--accent-color) 100%);
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--accent-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--primary-color)',endColorstr='var(--accent-color)',GradientType=1);
}

.gradient21 {
    color: #ffffff;
    background: var(--accent-color);
    background: -moz-linear-gradient(-45deg,var(--accent-color) 0%,var(--primary-color) 100%);
    background: -webkit-linear-gradient(-45deg,var(--accent-color) 0%,var(--primary-color) 100%);
    background: linear-gradient(135deg,var(--accent-color) 0%,var(--primary-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--accent-color)',endColorstr='var(--primary-color)',GradientType=1);
}


/* --------------------
   main Wrapper
   -------------------*/
#main-wrapper{
    min-height:100%;height: 100%;width: 100%;    }

/* --------------------
   #BUTTONS 
-------------------*/
.btn {
    padding        : 10px 30px;
    margin  : 0px 0px 0px 0px;
    font-size      : 13px;
    border-radius  : 0;
    text-transform : uppercase;
        }

/*btn-primary*/
.btn-primary {
    background-color : var(--primary-color);
    border-color     : var(--primary-color);
    color            : #fff;
        }

.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open > .dropdown-toggle.btn-primary {
    background-color : var(--accent-color);
    border-color     : var(--accent-color);
    }

/*btn-default*/
.btn-default {
    color            : var(--whitish);
    background-color : transparent;
    border-color     : var(--whitish);
        }

.btn-default.active,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open > .dropdown-toggle.btn-default {
    color            : var(--primary-color);
    background-color : #fff;
    border-color     : #fff;
    }

/*btn-black*/
.btn-black, .btn-black:focus, .btn-black:visited {
    color            : #fff;
    background-color : #313131;
    border-color     : #313131;
        }

.btn-black:hover {
    color            : #313131;
    -webkit-filter: brightness(95%);
	-moz-filter: brightness(95%);
	-o-filter: brightness(95%);
	-ms-filter: brightness(95%);
	filter: brightness(95%);
    }

/*btn-white*/
.btn-white, .btn-white:focus, .btn-white:visited {
    color            : #313131;
    background-color : #fff;
    border-color     : #fff;
        }

.btn-white:hover {
    color            : #fff;
    -webkit-filter: brightness(95%);
	-moz-filter: brightness(95%);
	-o-filter: brightness(95%);
	-ms-filter: brightness(95%);
	filter: brightness(95%);
    }

/*btn-accent-01*/
.btn-accent-01, .btn-accent-01:focus, .btn-accent-01:visited {
    color            : #fff;
    background-color : var(--accent-color);
    border-color     : var(--accent-color);
        }

.btn-accent-01:hover {
    color            : #fff;
    -webkit-filter: brightness(95%);
	-moz-filter: brightness(95%);
	-o-filter: brightness(95%);
	-ms-filter: brightness(95%);
	filter: brightness(95%);
    }

/*btn-accent-02*/
.btn-accent-02, .btn-accent-02:focus, .btn-accent-02:visited {
    color            : #fff;
    background-color : var(--primary-color);
    border-color     : var(--primary-color);
        }

.btn-accent-02:hover {
    color            : var(--primary-color);
    -webkit-filter: brightness(95%);
	-moz-filter: brightness(95%);
	-o-filter: brightness(95%);
	-ms-filter: brightness(95%);
	filter: brightness(95%);
    }

/*btn-accent-03*/
.btn-accent-03, .btn-accent-03:visited, .btn-accent-03:focus {
    color            : #fff;
    background-color : #303030;
    border-color     : #303030;
        }

.btn-accent-03:hover {
    color            : #303030;
    -webkit-filter: brightness(95%);
	-moz-filter: brightness(95%);
	-o-filter: brightness(95%);
	-ms-filter: brightness(95%);
	filter: brightness(95%);
    }
/*btn-invert-01*/
.btn-invert-01, .btn-invert-01:visited, .btn-invert-01:focus {
    color            : #fff;
    background-color : var(--primary-color);
    }

.btn-invert-01:hover {
    color            : var(--primary-color);
    background-color: #fff;
    }
    
/*btn-invert-01x*/
.btn-invert-01x, .btn-invert-01x:visited, .btn-invert-01x:focus {
    color            : var(--primary-color);
    background-color : #fff;
    }

.btn-invert-01x:hover {
    color            : #fff;
    background-color: var(--primary-color);
    }

button:focus,
.btn:focus,
.btn:active:focus {
    outline : none;
    }

.btn-hollow-white {
    border: 2px solid #fff;;
    background-color: transparent;
    color: #fff;
    font-weight: 600;text-transform: uppercase;text-decoration: none; border-radius:6px;}
.btn-hollow-white:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.btn-solid-white {
    border: 2px solid #fff;
    background-color: #fff;
    color: #000;
    font-weight: 600;text-transform: uppercase;text-decoration: none; border-radius:6px;}
.btn-solid-white:hover {
    background-color: transparent;
    color: #fff;
}
.btn-ctanews {
    height: 53px;
    border-radius: 0.3rem !important;
    font-size: 120%;
}

/* -------------------
   Section Padding
   --------------------*/
.pt-100 {
    padding-top : 100px;
    }

.ptb-90 {
    padding-bottom : 90px;
    padding-top    : 90px;
    }

.ptb-100 {
    padding-top    : 100px;
    padding-bottom : 100px;
    }

.ptb-150 {
    padding-top    : 150px;
    padding-bottom : 150px;
    }

.ptb-160 {
    padding-top    : 160px;
    padding-bottom : 160px;
    }

.ptb-170 {
    padding-top    : 170px;
    padding-bottom : 170px;
    }

@media (min-width : 768px) {
    /*custom-padding class*/
    .pl-30 {
        padding-left : 30px;
        }

    .pr-30 {
        padding-right : 30px;
        }
    }


/* ----------------------------------------------
text-highlights
------------------------------------------------- */
.text-highlights {
    color   : #fff;
    padding : 0px 5px;
    }

.text-highlights.black {
    background : #000;
    }

.text-highlights.blue {
    background : #31aae2;
    }

/*Common Page Header*/
.page-header {
    padding-bottom:0;margin:100px 0;border-bottom:0;    }

.page-header h1 {
    font-size: 70px; line-height: 70px; font-weight: 400; text-transform: capitalize; margin-bottom: 30px;    color          : #fff;
    font-family    : "Fjalla One", sans-serif;
    }

.page-header .sub-title {
    display:block; font-size: 40px; line-height: 40px; font-weight: 700; text-transform: uppercase;    color          : rgba(255, 255, 255, 0.6);;
    font-family    : "Fjalla One", sans-serif;
    }



@media (max-width : 767px) {
    .page-header h1 {
        font-size: 44px; line-height: 44px;;
        }

    .page-header .sub-title {
        font-size: 30px; line-height: 30px;;
        }
    #main-wrapper {
        padding-top:64px;
    }
}


@media (max-width : 479px) {
    .page-header h1 {
        font-size: 44px; line-height: 44px;;
        }

    .page-header .sub-title {
        font-size: 30px; line-height: 30px;;
        }
}


/*feature-section*/
.feature-section {
    background-size : cover;
    }
    
    
.feature-item-heading { 
    /* font-weight: 600; */
    line-height: 1.5;
    font-size: 32px;
    margin-right: auto;
    margin-left: auto;
    border-bottom: var(--primary-color) 3px solid;
}

/* ------------------------------------------------------------------
BACK TO TOP
--------------------------------------------------------------------- */
#toTop {
    color       : var(--primary-color);
    border      : 2px solid var(--primary-color);
    position:fixed; bottom:30px; right: 30px; cursor:pointer; display:none; z-index:999; width:30px; height:30px;text-align:center;font-size:18px;line-height:24px;    }

#toTop:hover {
    color              : #fff;
    background-color   : var(--primary-color);
    border             : 1px solid transparent;
    -webkit-transition : all 0.3s ease 0s;-moz-transition : all 0.3s ease 0s;-o-transition : all 0.3s ease 0s; transition : all 0.3s ease 0s;
    }

/* ------------------------------------------------------------------
Shortcode Content
--------------------------------------------------------------------- */
.page-title-section {
    padding-top:80px;background-size:cover;    }

/*-----------------------------
 NAVIGATION & HEADER STYLE
--------------------------------*/

/*Navigation*/
@media screen and (max-width : 899px ) {
    #nav-desktop-secondary {
        display:none;
    }
    #nav-desktop {
        display:none;
    }
    .navbar-collapse.collapse {
        display : none !important;
        }

    .navbar-default {
        background: #333333 !important; padding: 10px 0; border-bottom:none;        }
    }

/* Tablet Navigation Fixes */
@media (min-width : 768px) {

    .navbar-default {
        background-color   : transparent;
        padding:30px 0;border-color: transparent;-webkit-transition : all .3s ease-in-out;-moz-transition : all .3s ease-in-out;transition : all .3s ease-in-out; 
background: linear-gradient(#0000008a,#ffffff00);
background: -webkit-linear-gradient(#0000008a,#ffffff00);
background: -o-linear-gradient(#0000008a,#ffffff00);
background: -moz-linear-gradient(#0000008a,#ffffff00);
background-size: 100% 100%;
background-repeat: no-repeat;        
        }

    .sticky-nav.navbar-default {
        background-color : #fff;
        padding:15px 0;border-bottom: 1px solid #f2f2f2;
-webkit-transition : all .3s ease-in-out;-moz-transition : all .3s ease-in-out;transition : all .3s ease-in-out; 
background: #fff;
background-size: 100% 100%;
background-repeat: no-repeat;        }

    .navbar-right .dropdown-menu {
        right : auto;
        }
    
    .navbar-right {
        margin-right: 0;
        }
    }

/* Desktop-Small Navigation Fixes */
@media (min-width : 768px) and (max-width : 1198px) {
    #nav-desktop .container {
        width:98%;
        }
    
    .navbar-default .navbar-nav > li {
        margin-right: 6px !important;
        }
    .navbar-default .navbar-nav > li > a {
        padding: 8px 12px !important;
        }
    .dtop_onlineorder_text { display:none; }
    .dtop_onlineorder_div {
        margin-top: -5px;
        }
        
    .navbar-header .navbar-brand {
        padding-left:0px;
        padding-right:0px;
        }
    }
    
#nav-desktop-secondary {
    top: 0px;
    position: fixed;
    width: 100%;
    z-index: 2000;
}
#nav-desktop-secondary.static-nav {
    }
#nav-desktop-secondary.sticky-nav {
    }

.navbar-default {
    margin-bottom : 0;
    }

.navbar-brand {
    padding-top:0;padding-bottom:0;height:40px;    }

.navbar-default .navbar-nav > li {
    margin-right: 17px;    }

.navbar-default .navbar-nav > li:last-child {
    margin-right : 0px;
    }

.navbar-default .navbar-nav > li > a {
    color:#fff; font-size:14px;font-weight:600;padding:8px 17px;border:2px solid transparent;border-radius:2px;text-transform:uppercase;    }

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color:#FFF; background-color:var(--accent-color); border:2px solid rgba(0,0,0,0);    }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color:#fff; background-color:transparent;border-radius: 2px;border-bottom: 2px solid #fff;    }

.nav-cta {
     float : right; margin-right : 40px;margin-left  : 20px;line-height  : 40px;-webkit-transition : all .3s ease-in-out;-moz-transition : all .3s ease-in-out;transition: all .3s ease-in-out;    }

.nav-cta > li > a {
    color:#fff; display:inline-block;width:20px;height:34px;line-height:34px;text-align:center;    }

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

.head-search {
    width : 370px;
    }

.head-search {
    padding : 8px;
    }

.head-search .form-control {
    height : 40px;
    }

.head-search .btn {
    padding : 10px 20px;
    }

/* Navigation Bar Options */


.navbar-collapse.collapse, 
    .navbar-brand img,
    .static-nav .navbar-brand img {
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -ms-transition: all .3s;
        transition: all .3s;
        }  

/* Brand Logos */
.static-nav .navbar-brand.logo-one > img {
opacity:1;
}
.static-nav .navbar-brand.logo-two > img {
opacity:0;
}
.sticky-nav .navbar-brand.logo-one > img {
opacity:0;
}
.sticky-nav .navbar-brand.logo-two > img {
opacity:1;
}
a.navbar-brand {
position:absolute;
}



/* Initial Menu */
.static-nav .navbar-nav > li > a {
        }

.static-nav .navbar-nav > li > a:focus,
.static-nav .navbar-nav > li > a:hover {
        }

.static-nav .navbar-nav > .active > a,
.static-nav .navbar-nav > .active > a:focus,
.static-nav .navbar-nav > .active > a:hover {
        }
    
.static-nav .navbar-nav .header-social i.fab {
    font-size:16px; color: #fff;    }
    
.navbar-brand img {
    max-height: 70px;
}

/* Scrolled Menu */
.sticky-nav .navbar-nav > li > a {
    color: #000; border-width:2px;border-style: solid;     }

.sticky-nav .navbar-nav > li > a:focus,
.sticky-nav .navbar-nav > li > a:hover {
    color: #fff;
    border-width: 2px;
    border-style: solid;
}

.sticky-nav .navbar-nav > .active > a,
.sticky-nav .navbar-nav > .active > a:focus,
.sticky-nav .navbar-nav > .active > a:hover {
        }
    
.sticky-nav .navbar-nav .header-social i.fab {
    font-size:16px; color: var(--primary-color);    }

.sticky-nav .navbar-brand img {
    max-height: 60px;
}

    
.dtop-logo img {
   margin-top:-10px;
}

/*Dropdown Menu*/

.dropdown-menu {
    display            : inherit;
    top                : 100% !important;
    padding            : 0;
    font-size          : 13px;
    opacity            : 0;
    visibility         : hidden;
    border             : 1px solid #f5f5f5;
    border-radius      : 0;
    box-shadow         : 0px -2px 0px #000000;
    -webkit-transition : all 0.3s ease 0s;
    -moz-transition    : all 0.3s ease 0s;
    -o-transition      : all 0.3s ease 0s;
    transition         : all 0.3s ease 0s;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    }

.dropdown:hover .dropdown-menu {
    display    : block;
    margin-top : 28px !important;
    opacity    : 1;
    visibility : visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
    }

.dropdown-menu::before {
    top      : -30px;
    content  : "";
    position : absolute;
    width    : 100%;
    height   : 30px;
    display  : block;
    }

.sticky-nav .dropdown:hover .dropdown-menu {
    margin-top : 14px !important;
    }

.dropdown-header {
    font-size      : 11px;
    line-height    : 30px;
    font-weight    : 600;
    color          : #313131;
    text-transform : uppercase;
    }

.dropdown-menu li a {
    display     : block;
    font-size   : 13px;
    line-height : 30px;
    color       : #969595;
    padding     : 3px 20px;
    }

.dropdown-menu li a:hover {
    color            : #31aae2;
    background-color : #f5f5f5;
    padding-left     : 25px;
    }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color            : #31aae2;
    background-color : #f5f5f5;
    padding-left     : 25px;
    }

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color            : #000000;
    background-color : transparent;
    }

/*Mega Menu*/
.m-menu .nav,
.m-menu .collapse,
.m-menu .dropup,
.m-menu .dropdown {
    position : static;
    }

.m-menu .container {
    position : relative;
    }

.m-menu .dropdown-menu {
    left : auto;
    }

.m-menu .m-menu-content {
    }

.m-menu .dropdown.m-menu-fw .dropdown-menu {
    left  : 15px;
    right : 15px;
    }

.m-menu-content ul {
    border-right : 1px solid #f5f5f5;
    padding      : 20px;
    }

.m-menu-content ul:last-of-type {
    border-right : 0;
    }

@media (max-width : 767px) {
    .navbar-toggle {
        display : block;
        }
    }

.navbar-toggle {
    position      : absolute;
    right         : 0;
    padding       : 5px 10px;
    border        : 0;
    border-radius : 0;
    }

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color : transparent;
    }

.navbar-toggle .icon-bar {
    width  : 14px;
    height : 3px;
    }

.navbar-default .navbar-toggle .icon-bar {
    background-color : #ffffff;
    }

.navbar-toggle .icon-bar + .icon-bar {
    margin-top : 2px;
    }

/*uc-mobile-menu*/
.uc-mobile-menu {
    }

.uc-mobile-menu-container > div {
    visibility : hidden;
    }

#menu {
    margin : 50px 40px;

    }

#menu > li {
    text-transform : uppercase;
    }

#menu > li:last-child {
    border-bottom : 0;
    }

#menu > li ul li {
    margin-left : 0;
    color       : #999999;

    }

#menu li a {
    display         : block;
    text-decoration : none;
    color           : #777777;
    padding         : 10px 0;
    font-size: 16px;
    border-bottom: 1px dotted #444;
    }


#menu li a:hover,
#menu li.active a {
    color : #ffffff;
    }

/*Mobile Menu Close*/
.uc-mobile-menu .close {
    position           : absolute;
    right              : 0;
    top                : 0;
    color              : #ffffff;
    text-shadow        : none;
    filter             : alpha(opacity=50);
    opacity            : .5;
    width              : 44px;
    height             : 44px;
    -webkit-transition : all 0.3s ease 0s;
    -moz-transition    : all 0.3s ease 0s;
    -o-transition      : all 0.3s ease 0s;
    transition         : all 0.3s ease 0s;
    }

.uc-mobile-menu .close:hover {
    opacity : 1;
    }

/*-------------------
    HERO SLIDER
--------------------*/

.hero-slide .carousel-caption {
    bottom      : 50%;
    text-shadow : none;
    transform   : translateY(50%);
    }

.hero-slide .carousel-caption h1 {
    font-size      : 60px;
    line-height    : 1;
    font-weight    : bold;
    text-transform : uppercase;
    color          : #ffffff;
    }

.hero-slide .carousel-caption p {
    font-size   : 20px;
    color       : #ffffff;
    font-weight : normal;
    }

.hero-slide .carousel-control.left,
.hero-slide .carousel-control.right {
    width       : 50px;
    height      : 50px;
    line-height : 46px;
    top         : 50%;
    margin-top  : -25px;
    background  : transparent;
    cursor      : pointer;
    border      : 2px solid var(--primary);
    text-shadow : none;
    }

.hero-slide .carousel-control.left {
    left : 1%;
    }

.hero-slide .carousel-control.right {
    right : 1%;
    }

.hero-slide .carousel-indicators {
    bottom : 60px;
    }

.hero-slide .carousel-indicators li {
    border : 2px solid #ffffff;
    }

/*Media Query*/
@media screen and (max-width : 767px) {
    .hero-slide {
        margin-top : 60px;
        }

    .hero-slide .carousel-caption h1 {
        font-size : 24px;
        }

    .hero-slide .carousel-indicators {
        bottom : 20px;
        }

    .hero-slide .carousel-caption p {
        font-size : 12px;
        }
    }

/* -------------------
 Section Title Style
 --------------------- */
.section-title {
    margin-bottom : 50px;
    }

.section-title h2 {
    font-size      : 42px;
    text-transform : capitalize;
    position       : relative;
    line-height    : 44px;
    }

.section-title span.bordered-icon {
    color       : #dadada;
    padding     : 0 10px;
    font-size   : 12px;
    line-height : 18px;
    position    : relative;
    display     : inline-block;
    }

.section-title span.bordered-icon:before,
.section-title span.bordered-icon:after {
    content    : "";
    background : #dadada;
    width      : 50px;
    height     : 1px;
    top        : 8px;
    position   : absolute;
    }

.section-title span.bordered-icon:before {
    left : 100%;
    }

.section-title span.bordered-icon:after {
    right : 100%;
    }

/*---------------------------
 Service section
 ---------------------------*/
.x-services .thumbnail {
    padding       : 0;
    line-height   : 24px;
    border        : 1px solid #f1f1f1;
    border-radius : 0;
    margin-bottom : 30px;
    }

@media (min-width : 768px) {
    .x-services .thumbnail a > img,
    .x-services .thumbnail > img {
        float : left;
        }
    }

@media (max-width : 767px) {
    .x-services .thumbnail a > img,
    .x-services .thumbnail > img {
        width : 100%;
        }
    }

.x-services .thumbnail .caption {
    padding  : 30px;
    color    : #969595;
    overflow : hidden;
    }

.x-services .thumbnail .caption h3 {
    font-size      : 15px;
    text-transform : capitalize;
    margin-bottom  : 5px;
    }

.x-services .thumbnail .caption h3 a {
    color : #313131;
    }

.x-services .thumbnail .caption h3 a:hover {
    color : #31aae2;
    }

.x-services .thumbnail .caption p {
    margin : 0;
    }

/* --------------------------------------------------
features start
-----------------------------------------------------*/
.x-features {
    background : #4d7ecc;
    padding    : 100px 0 85px;
    }

.x-features .section-title h2 {
    color : #ffffff;
    }

.x-features .img-left {
    margin-top : 20px;
    }

@media (max-width : 991px) {
    .x-features .img-left {
        margin-bottom : 40px;
        margin-top    : 0px;
        }
    }

.x-features .promo-icon {
    float        : left;
    margin-right : 25px;
    font-size    : 30px;
    color        : #9dd1f6;
    }

.x-features .promo-content {
    color          : #9dd1f6;
    overflow       : hidden;
    border-bottom  : 1px solid rgba(157, 209, 246, 0.4);
    margin-bottom  : 20px;
    padding-bottom : 10px;
    }

.x-features .promo-content.last-type {
    border-bottom  : 0;
    margin-bottom  : 0px;
    padding-bottom : 0px;
    }

.x-features .promo-content h3 {
    font-size   : 15px;
    line-height : 26px;
    font-weight : 600;
    color       : #ffffff;
    }

/* ----------------------------------------------
Team
------------------------------------------------- */
.team {
    }

.team .thumbnail {
    padding          : 0;
    margin-bottom    : 40px;
    line-height      : 22px;
    background-color : #ffffff;
    border           : 0;
    }

@media (max-width : 767px) {
    .team .thumbnail {
        margin-bottom : 30px;
        }
    }

.team .thumbnail img {
    width : 100%;
    }

.team .thumbnail .caption {
    padding          : 15px 0;
    background-color : var(--whitish);
    color            : #313131;
    }

.team .thumbnail h3 small {
    font-size      : 11px;
    color          : #a3a2a2;
    text-transform : uppercase;
    }

.team .thumbnail h3 {
    font-size      : 16px;
    text-transform : capitalize;
    margin         : 0;
    }

/* --------------------------------------------------
      testimonial start
-----------------------------------------------------*/
.testimonial .section-title h2 {
    color : #ffffff;
    }

.testimonial {
    padding-top: 50px;
    padding-bottom: 10px;
    color: var(--primary-color);
    background: var(--primary-color);
    background: -moz-linear-gradient(-45deg,var(--primary-color) 0%,var(--accent-color) 100%);
    background: -webkit-linear-gradient(-45deg,var(--primary-color) 0%,var(--accent-color) 100%);
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--accent-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--primary-color)',endColorstr='var(--accent-color)',GradientType=1);
}

.testimonial-rating-div .star-rating-text {
    font-size: 12px;
    display: block;
}

#testimonialSlider .carousel-inner .item blockquote a,
#testimonialSlider .carousel-inner .item blockquote a:visited {
color: var(--accent-color);
}

#testimonialSlider .carousel-inner .item blockquote a:hover,
#testimonialSlider .carousel-inner .item blockquote a:focused {
color: var(--whitish);
}

.testimonial-quote {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 240px;
}

.testimonial .carousel-control {
    color: var(--primary);
    text-shadow : none;
    }

#testimonialSlider .carousel-inner .item {
    text-align : center;
    }

#testimonialSlider .carousel-inner .item img {
    display       : inline-block;
    width         : 60px;
    height        : 60px;
    border-radius : 3px;
    }

#testimonialSlider .carousel-inner .item .name {
    text-transform : uppercase;
    font-size      : 12px;
    margin-top     : 5px;
    color          : rgba(255, 255, 255, 0.5);
    }

#testimonialSlider .carousel-inner .item blockquote {
    border-left : 0px;
    }

#testimonialSlider .carousel-inner .item blockquote p {
    font-size   : 20px;
    line-height : 34px;
    /*padding: 0px 80px;*/
    font-weight : 300;
    }

#testimonialSlider .carousel-inner .item blockquote ul {
    /* margin : 30px 0px; */
    }

#testimonialSlider .carousel-control.right,
#testimonialSlider .carousel-control.left {
    background  : transparent;
    border      : 2px solid var(--primary);
    width       : 34px;
    height      : 34px;
    line-height : 28px;
    text-align  : center;
    top         : 50%;
    }

@media (min-width : 768px) {
    /*custom-padding class*/
    #testimonialSlider .carousel-indicators {
        bottom : -60px;
        }
    }

@media (min-width : 992px) and (max-width : 1198px) {

    #testimonialSlider .carousel-inner .item blockquote p {
        font-size : 18px;
        }
    }

@media (min-width : 768px) and (max-width : 991px) {
    #testimonialSlider .carousel-inner .item blockquote p {
        font-size   : 13px;
        line-height : 24px;
        }
    }

@media only screen and (min-width : 480px) and (max-width : 767px) {
    #testimonialSlider .carousel-inner .item blockquote p {
        font-size     : 13px;
        line-height   : 24px;
        margin-bottom : 20px;
        padding       : 0;
        }
    }

@media (max-width : 767px) {
    #testimonialSlider .carousel-control.right,
    #testimonialSlider .carousel-control.left {
        /*display : none;*/
        opacity: .05;
        }

    #testimonialSlider .carousel-inner .item blockquote p {
        margin-bottom : 20px;
        padding       : 0;
        }

    }

/*testimonial end*/

/* client-logo */
.client-logo {
    }

.client-logo a img {
    width              : 100%;
    opacity            : 0.5;
    -webkit-transition : all 0.8s ease 0s;
    -moz-transition    : all 0.8s ease 0s;
    -o-transition      : all 0.8s ease 0s;
    transition         : all 0.8s ease 0s;
    }

.client-logo a:hover img {
    opacity : 1;
    }

@media (max-width : 991px) {
    .client-logo .section-margin {
        margin-bottom : 30px;
        }
    }

/* --------------------------------------------
    Page Title
----------------------------------------------- */

.single-page-title {
    width                 : 100%;
    padding               : 15% 0 5%;
    position: relative;
    }

/*
.single-page-title {
    background            : url(../img/img-page-title.jpg) no-repeat bottom;
    background-size       : cover;
    width                 : 100%;
    background-attachment : fixed;
    padding               : 15% 0 5%;
    position: relative;
} */

.single-page-title::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    }
    

.single-page-title h2 {
    display        : inline-block;
    font-size      : 72px /* !important*/;
    line-height    : 72px /* !important*/;
/*    text-transform : uppercase; */
    font-weight    : 700;
    margin-bottom  : 0;
    color          : #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0px 2px 15px rgba(0, 0, 0, .5);
    }
    
.single-page-title h4 {
    text-shadow: 0px 2px 15px rgba(0, 0, 0, .5);
    }

@media (max-width : 767px) {
    .single-page-title h2 {
        font-size      : 56px;
        line-height    : 52px;
        }
}

@media (max-width : 479px) {
    .single-page-title h2 {
        font-size      : 42px;
        line-height    : 40px;
        }
}

/*-------------------------
    Background Augmentations & 
    Responsive Background
 ---------------------------*/
 [data-responsive-background-image] {
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}

[data-responsive-background-image] img.responsive-bg {
  display: none;
}
.bg-tint-blk-10::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.1);
    }
.bg-tint-blk-20::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.2);
    }
.bg-tint-blk-30::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.3);
    }
.bg-tint-blk-50::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    }
.bg-tint-blk-70::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    }
.bg-tint-blk-80::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    }
.bg-tint-blk-90::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.9);
    }

.bg-fixed {
    background-attachment: fixed;
}
.bg-repeaty {
    background-repeat: repeat-y;
}
.bg-repeatx {
    background-repeat: repeat-x;
}
.bg-norepeat {
    background-repeat: no-repeat;
}
.bg-cover {
    background-size: cover;
}
.bg-contain {
    background-size: contain;
}
.bg-pos-xt {
    background-position-x: top;
}
.bg-pos-xc {
    background-position-x: center;
}
.bg-pos-xb {
    background-position-x: bottom;
}
.bg-pos-yt {
    background-position-y: top;
}
.bg-pos-yc {
    background-position-y: center;
}
.bg-pos-yb {
    background-position-y: bottom;
}
/*-------------------------
    General Augmentations / Modifiers
 ---------------------------*/
/* Buttons */
.btn-block {
    padding-right: 0;
    padding-left: 0;
}
.btn-xs {
    font-size: 11px;
    padding: 10px 15px 9px 15px;
}
.btn-sm {
    font-size: 12px;
    padding: 10px 15px 9px 15px;
}
.btn-md {
    font-size: 13px;
    padding: 12px 19px 11px 19px;
}
.btn-lg {
    font-size: 14px;
    padding: 14px 30px 13px 30px;
}
.btn-xlg {
    font-size: 16px;
    padding: 16px 34px 15px 34px;
}
.btn-fullwidth {
    font-size: 18px;
    padding: 22px 40px 20px 40px;
    width: 100%
}

.btn-square { border-radius: 0; }
.btn-rsquare { border-radius: 10px; }
.btn-round { border-radius: 0; }
.width-100 { width: 100%; }
 /* Borders */
.bdr-w1 { border-width: 1px; }
.bdr-w2 { border-width: 2px; }
.bdr-w3 { border-width: 3px; }
.bdr-w4 { border-width: 4px; }
.bdr-w5 { border-width: 5px; }
.bdr-w6 { border-width: 6px; }
.bdr-cpri { border-color: var(--primary-color);}
.bdr-csec { border-color: var(--primary-color);}
.bdr-cwht { border-color: #fff;}
.bdr-cblk { border-color: #000;}
.bdr-cacc01 { border-color: var(--accent-color);}
.bdr-cacc02 { border-color: var(--primary-color);}
.bdr-cacc03 { border-color: #303030;}
.bdr-clight { border-color: #fff;}
.bdr-cdark { border-color: #000;}
 /* Colors */
.clr-pri { color: var(--primary-color);}
.clr-sec { color: var(--accent-color);}
.clr-wht { color: #fff;}
.clr-blk { color: #000;}
.clr-acc01 { color: var(--accent-color);}
.clr-acc02 { color: var(--primary-color);}
.clr-acc03 { color: #303030;}
.clr-light { color: #fff;}
.clr-dark { color: #000;}
/* Colors : Hover / Links */
.clr-pri-h:hover, .clr-pri-h:focus { color: var(--primary-color);}
.clr-sec-h:hover, .clr-sec-h:focus { color: var(--primary-color);}
.clr-wht-h:hover, .clr-wht-h:focus { color: #fff;}
.clr-blk-h:hover, .clr-blk-h:focus { color: #000;}
.clr-acc01-h:hover, .clr-acc01-h:focus { color: var(--accent-color);}
.clr-acc02-h:hover, .clr-acc02-h:focus { color: var(--primary-color);}
.clr-acc03-h:hover, .clr-acc03-h:focus { color: #303030;}
.clr-light-h:hover, .clr-light-h:focus { color: #fff;}
.clr-dark-h:hover, .clr-dark-h:focus { color: #000;}
 /* Text */
.t-tdl-ul {
    text-decoration-line: underline;
}
.t-tdl-n {
    text-decoration-line: none;
}
.t-tdl-never,.t-tdl-never:hover, .t-tdl-never:focus, .t-tdl-never:visited {
    text-decoration-line: none;
}
.t-tuc {
    text-transform: uppercase;
}
.t-tlc {
    text-transform: lowercase;
}
.t-tcap {
    text-transform: capitalize;
}
.text-xs-center {
    text-align: center!important;
}
.lh-10 { line-height: 1 }
.lh-11 { line-height: 1.1 }
.lh-12 { line-height: 1.2 }
.lh-13 { line-height: 1.3 }
.lh-14 { line-height: 1.4 }
.lh-15 { line-height: 1.5 }
.lh-16 { line-height: 1.6 }
.lh-17 { line-height: 1.7 }
.lh-18 { line-height: 1.8 }
.lh-19 { line-height: 1.9 }
.lh-20 { line-height: 2 }
.lh-10-i { line-height: 1 !important}
.lh-11-i { line-height: 1.1 !important}
.lh-12-i { line-height: 1.2 !important}
.lh-13-i { line-height: 1.3 !important}
.lh-14-i { line-height: 1.4 !important}
.lh-15-i { line-height: 1.5 !important}
.lh-16-i { line-height: 1.6 !important}
.lh-17-i { line-height: 1.7 !important}
.lh-18-i { line-height: 1.8 !important}
.lh-19-i { line-height: 1.9 !important}
.lh-20-i { line-height: 2 !important }
.f-i {
    font-style: italic;
}
.op-1 { opacity: .1; }
.op-2 { opacity: .2; }
.op-3 { opacity: .3; }
.op-4 { opacity: .4; }
.op-5 { opacity: .5; }
.op-6 { opacity: .6; }
.op-7 { opacity: .7; }
.op-8 { opacity: .8; }
.op-9 { opacity: .9; }
.t-shadow75 {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .75);
}
.t-shadow100 {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
/* NEEDS PHP VARIABLE #PHP */
.f-pri {
    font-family: "Open Sans", serif ;
}
.f-sec {
    font-family: "Fjalla One", sans-serif ;
}
.f-spe {
    font-family: "Cookie", cursive/*"colors_of_autumnregular", sans-serif*/;
}
.f-spe-i {
    font-family: "Cookie", cursive/*"colors_of_autumnregular", sans-serif*/ !important;
}
.f-fw9 {
    font-weight: 900;
}
.f-fw8 {
    font-weight: 800;
}
.f-fw7 {
    font-weight: 700;
}
.f-fw6 {
    font-weight: 600;
}
.f-fw5 {
    font-weight: 500;
}
.f-fw4 {
    font-weight: 400;
}
.f-fw3 {
    font-weight: 300;
}
.f-fw2 {
    font-weight: 200;
}
.f-fw1 {
    font-weight: 100;
}
.f-sz8 { font-size: 8px; }
.f-sz10 { font-size: 10px; }
.f-sz12 { font-size: 12px; }
.f-sz14 { font-size: 14px; }
.f-sz16 { font-size: 16px; }
.f-sz18 { font-size: 18px; }
.f-sz20 { font-size: 20px; }
.f-sz22 { font-size: 22px; }
.f-sz24 { font-size: 24px; }
.f-sz28 { font-size: 28px; }
.f-sz32 { font-size: 32px; }
.f-sz42 { font-size: 42px; }
.fem-2x {
    font-size: 2em
}
.fem-175x {
    font-size: 1.75em
}
.fem-15x {
    font-size: 1.5em
}
.fem-125x {
    font-size: 1.25em
}
/* STRUCTURE */
.of-a {overflow:auto;}
.mxw-1 {max-width:100px;}
.mxw-2 {max-width:200px;}
.mxw-3 {max-width:300px;}
.mxw-4 {max-width:400px;}
.mxw-5 {max-width:500px;}
.mxw-6 {max-width:600px;}
.mxw-7 {max-width:700px;}
.mxw-8 {max-width:800px;}
.mxw-9 {max-width:900px;}
.mxw-10 {max-width:1000px;}
.mxh-1 {max-height:100px;}
.mxh-2 {max-height:200px;}
.mxh-3 {max-height:300px;}
.mxh-4 {max-height:400px;}
.mxh-5 {max-height:500px;}
.mxh-6 {max-height:600px;}
.mxh-7 {max-height:700px;}
.mxh-8 {max-height:800px;}
.mxh-9 {max-height:900px;}
.mxh-10 {max-height:1000px;}
.mxw-p10 {max-width:10%;}
.mxw-p20 {max-width:20%;}
.mxw-p30 {max-width:30%;}
.mxw-p40 {max-width:40%;}
.mxw-p50 {max-width:50%;}
.mxw-p60 {max-width:60%;}
.mxw-p70 {max-width:70%;}
.mxw-p80 {max-width:80%;}
.mxw-p90 {max-width:90%;}
.mxw-p100 {max-width:100%;}
.mxh-p10 {max-height:10%;}
.mxh-p20 {max-height:20%;}
.mxh-p30 {max-height:30%;}
.mxh-p40 {max-height:40%;}
.mxh-p50 {max-height:50%;}
.mxh-p60 {max-height:60%;}
.mxh-p70 {max-height:70%;}
.mxh-p80 {max-height:80%;}
.mxh-p90 {max-height:90%;}
.mxh-p100 {max-height:100%;}
.mnw-1 {min-width:100px;}
.mnw-2 {min-width:200px;}
.mnw-3 {min-width:300px;}
.mnw-4 {min-width:400px;}
.mnw-5 {min-width:500px;}
.mnw-6 {min-width:600px;}
.mnw-7 {min-width:700px;}
.mnw-8 {min-width:800px;}
.mnw-9 {min-width:900px;}
.mnw-10 {min-width:1000px;}
.mnh-1 {min-height:100px;}
.mnh-2 {min-height:200px;}
.mnh-3 {min-height:300px;}
.mnh-4 {min-height:400px;}
.mnh-5 {min-height:500px;}
.mnh-6 {min-height:600px;}
.mnh-7 {min-height:700px;}
.mnh-8 {min-height:800px;}
.mnh-9 {min-height:900px;}
.mnh-10 {min-height:1000px;}
.mnh-p100 {min-height: 100%;}
.mnw-p100 {min-width: 100%;}
.m-p10 { margin: 10% }
.mb-p10 {
    margin-bottom:10%;
}
.mb-p20 {
    margin-bottom:20%;
}
.mb-p30 {
    margin-bottom:30%;
}
.mb-p40 {
    margin-bottom:40%;
}
.mb-p50 {
    margin-bottom:50%;
}
.mb-p60 {
    margin-bottom:60%;
}
.mb-p70 {
    margin-bottom:70%;
}
.mb-p80 {
    margin-bottom:80%;
}
.mb-p90 {
    margin-bottom:90%;
}
.mt-p10 {
    margin-top:10%;
}
.mt-p20 {
    margin-top:20%;
}
.mt-p30 {
    margin-top:30%;
}
.mt-p40 {
    margin-top:40%;
}
.mt-p50 {
    margin-top:50%;
}
.mt-p60 {
    margin-top:60%;
}
.mt-p70 {
    margin-top:70%;
}
.mt-p80 {
    margin-top:80%;
}
.mt-p90 {
    margin-top:90%;
}
.ml-p10 {
    margin-left:10%;
}
.ml-p20 {
    margin-left:20%;
}
.ml-p30 {
    margin-left:30%;
}
.ml-p40 {
    margin-left:40%;
}
.ml-p50 {
    margin-left:50%;
}
.ml-p60 {
    margin-left:60%;
}
.ml-p70 {
    margin-left:70%;
}
.ml-p80 {
    margin-left:80%;
}
.ml-p90 {
    margin-left:90%;
}
.mr-p10 {
    margin-right:10%;
}
.mr-p20 {
    margin-right:20%;
}
.mr-p30 {
    margin-right:30%;
}
.mr-p40 {
    margin-right:40%;
}
.mr-p50 {
    margin-right:50%;
}
.mr-p60 {
    margin-right:60%;
}
.mr-p70 {
    margin-right:70%;
}
.mr-p80 {
    margin-right:80%;
}
.mr-p90 {
    margin-right:90%;
}
.pb-p10 {
    padding-bottom:10%;
}
.pb-p20 {
    padding-bottom:20%;
}
.pb-p25 {
    padding-bottom:25%;
}
.pb-p30 {
    padding-bottom:30%;
}
.pb-p40 {
    padding-bottom:40%;
}
.pb-p50 {
    padding-bottom:50%;
}
.pb-p60 {
    padding-bottom:60%;
}
.pb-p70 {
    padding-bottom:70%;
}
.pb-p80 {
    padding-bottom:80%;
}
.pb-p90 {
    padding-bottom:90%;
}
.pt-p10 {
    padding-top:10%;
}
.pt-p20 {
    padding-top:20%;
}
.pt-p25 {
    padding-top:25%;
}
.pt-p30 {
    padding-top:30%;
}
.pt-p40 {
    padding-top:40%;
}
.pt-p50 {
    padding-top:50%;
}
.pt-p60 {
    padding-top:60%;
}
.pt-p70 {
    padding-top:70%;
}
.pt-p80 {
    padding-top:80%;
}
.pt-p90 {
    padding-top:90%;
}
.pl-p10 {
    padding-left:10%;
}
.pl-p20 {
    padding-left:20%;
}
.pl-p25 {
    padding-left:25%;
}
.pl-p30 {
    padding-left:30%;
}
.pl-p40 {
    padding-left:40%;
}
.pl-p50 {
    padding-left:50%;
}
.pl-p60 {
    padding-left:60%;
}
.pl-p70 {
    padding-left:70%;
}
.pl-p80 {
    padding-left:80%;
}
.pl-p90 {
    padding-left:90%;
}
.pr-p10 {
    padding-right:10%;
}
.pr-p20 {
    padding-right:20%;
}
.pr-p25 {
    padding-right:25%;
}
.pr-p30 {
    padding-right:30%;
}
.pr-p40 {
    padding-right:40%;
}
.pr-p50 {
    padding-right:50%;
}
.pr-p60 {
    padding-right:60%;
}
.pr-p70 {
    padding-right:70%;
}
.pr-p80 {
    padding-right:80%;
}
.pr-p90 {
    padding-right:90%;
}
.m-0a { margin:0 auto; }
.ml-a { margin-left: auto;}
.mr-a { margin-right: auto;}
.m-10 { margin: 10px; }
.m-5 { margin: 5px; }
.mb-0 { margin-bottom: 0 }
.mb-10 {
    margin-bottom:10px;
}
.mb-20 {
    margin-bottom:20px;
}
.mb-30 {
    margin-bottom:30px;
}
.mb-40 {
    margin-bottom:40px;
}
.mb-50 {
    margin-bottom:50px;
}
.mb-60 {
    margin-bottom:60px;
}
.mb-70 {
    margin-bottom:70px;
}
.mb-80 {
    margin-bottom:80px;
}
.mb-90 {
    margin-bottom:90px;
}
.mt-0 { margin-top: 0; }
.mt-10 {
    margin-top:10px;
}
.mt-20 {
    margin-top:20px;
}
.mt-30 {
    margin-top:30px;
}
.mt-40 {
    margin-top:40px;
}
.mt-50 {
    margin-top:50px;
}
.mt-60 {
    margin-top:60px;
}
.mt-70 {
    margin-top:70px;
}
.mt-80 {
    margin-top:80px;
}
.mt-90 {
    margin-top:90px;
}
.ml-0 { margin-left: 0; }
.ml-10 {
    margin-left:10px;
}
.ml-20 {
    margin-left:20px;
}
.ml-30 {
    margin-left:30px;
}
.ml-40 {
    margin-left:40px;
}
.ml-50 {
    margin-left:50px;
}
.ml-60 {
    margin-left:60px;
}
.ml-70 {
    margin-left:70px;
}
.ml-80 {
    margin-left:80px;
}
.ml-90 {
    margin-left:90px;
}
.mr-0 { margin-right: 0; }
.mr-10 {
    margin-right:10px;
}
.mr-20 {
    margin-right:20px;
}
.mr-30 {
    margin-right:30px;
}
.mr-40 {
    margin-right:40px;
}
.mr-50 {
    margin-right:50px;
}
.mr-60 {
    margin-right:60px;
}
.mr-70 {
    margin-right:70px;
}
.mr-80 {
    margin-right:80px;
}
.mr-90 {
    margin-right:90px;
}
.pb-10 {
    padding-bottom:10px;
}
.pb-20 {
    padding-bottom:20px;
}
.pb-30 {
    padding-bottom:30px;
}
.pb-40 {
    padding-bottom:40px;
}
.pb-50 {
    padding-bottom:50px;
}
.pb-60 {
    padding-bottom:60px;
}
.pb-70 {
    padding-bottom:70px;
}
.pb-80 {
    padding-bottom:80px;
}
.pb-90 {
    padding-bottom:90px;
}
.pt-10 {
    padding-top:10px;
}
.pt-20 {
    padding-top:20px;
}
.pt-30 {
    padding-top:30px;
}
.pt-40 {
    padding-top:40px;
}
.pt-50 {
    padding-top:50px;
}
.pt-60 {
    padding-top:60px;
}
.pt-70 {
    padding-top:70px;
}
.pt-80 {
    padding-top:80px;
}
.pt-90 {
    padding-top:90px;
}
.pl-10 {
    padding-left:10px;
}
.pl-20 {
    padding-left:20px;
}
.pl-30 {
    padding-left:30px;
}
.pl-40 {
    padding-left:40px;
}
.pl-50 {
    padding-left:50px;
}
.pl-60 {
    padding-left:60px;
}
.pl-70 {
    padding-left:70px;
}
.pl-80 {
    padding-left:80px;
}
.pl-90 {
    padding-left:90px;
}
.pr-10 {
    padding-right:10px;
}
.pr-20 {
    padding-right:20px;
}
.pr-30 {
    padding-right:30px;
}
.pr-40 {
    padding-right:40px;
}
.pr-50 {
    padding-right:50px;
}
.pr-60 {
    padding-right:60px;
}
.pr-70 {
    padding-right:70px;
}
.pr-80 {
    padding-right:80px;
}
.pr-90 {
    padding-right:90px;
}
.d-none {
    display:none;
}
.d-iblk {
    display:inline-block;
}
.d-blk {
    display:block;
}
.d-flx {
    display:flex;
    }
.d-li {
    display:list-item;
    }
.ani-zoom {
    transition: transform .2s;
}

.ani-zoom-105:hover {
    transform: scale(1.05);
}
.ani-zoom-110:hover {
    transform: scale(1.1);
}
.ani-zoom-115:hover {
    transform: scale(1.15);
}
.ani-zoom-120:hover {
    transform: scale(1.2);
}
.ani-zoom-125:hover {
    transform: scale(1.25);
}
.lsp-out { list-style-position: outside; }
.lsp-in { list-style-position: inside; }
.lst-circle { list-style-type: circle; }
.lst-uroman { list-style-type: upper-roman; }
.lst-lalpha { list-style-type: lower-alpha; }
.lst-square { list-style-type: square; }
.lst-disc { list-style-type: disc; }
.lst-decimal { list-style-type: decimal; }
.lst-none { list-style-type: none; }
.f-left {float:left;}
.f-right {float:right;}
.f-none {float:none;}

/*-------------------------
    Progress Bar
 ---------------------------*/

.x-progress {}
.x-progress .progress-wrapper {
    border: 1px solid #f1f1f1;
    margin-bottom: 30px;
    }
.x-progress .progress-item {
    line-height: 43px;
    padding: 0 20px;
    border-bottom: 1px solid #f1f1f1;
    }
.x-progress .progress-item:last-of-type {
    border-bottom: 0;
    }
.x-progress .progress-title {
    display: inline-block;
    float: left;
    width: 95px;
    }
.x-progress .progress-percent {
    display: inline-block;
    float: right;
    text-align: center;
    padding-left: 30px;
    }
.x-progress .progress {
    width: 70%;
    display: inline-block;
    height: 8px;
    margin-bottom: 0;
    background-color: var(--whitish);
    box-shadow: none;
    }

@media (min-width : 992px) and (max-width : 1198px) {
    .x-progress .progress {
        width: 60%;
        }
    }
@media only screen and (max-width : 991px) {
    .x-progress .progress {
        width: 60%;
        }
    }
@media only screen and (max-width : 479px) {
    .x-progress .progress-title {
        width: 70px;
        }
    .x-progress .progress {
        width: 40%;
        }
    }

.x-progress .progress-bar {
    background-color: #31aae2;
    box-shadow: none;
    }



/* --------------------------------------------------
service-icon-style
------------------------------------------------- */

.service-icon-style {}
/*promo-block*/
.service-icon-style .promo-block-wrapper {
    /*margin-bottom: 80px;*/
    }

.service-icon-style .promo-icon {
    width: 75px;
    height: 80px;
    color: #dadada;
    font-size: 24px;
    line-height: 76px;
    text-align: center;
    border: 2px solid #dadada;
    margin: 0 auto 36px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    }
.service-icon-style .promo-block-wrapper:hover .promo-icon {
    background-color: #31aae2;
    color: #fff;
    border: 2px solid transparent;
    }

.service-icon-style .promo-content {
    padding: 20px;
    }
.service-icon-style .promo-content h3{
    font-size: 15px;
    text-transform: capitalize;
    }


/* ---------------------------------
    x-accordion
 ------------------------------------*/

.x-accordion-section{
    background: var(--whitish);
    }

.x-accordion .panel-group .panel+.panel {
    margin-top: 0px;
    }

.x-accordion .panel-group {
    margin-bottom: 0;
    }
.x-accordion .panel-default {
    border: 0;
    }
.x-accordion .panel {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 10px solid transparent;
    border-radius: 0;
    margin: 0;
    }
.x-accordion .panel:last-of-type {
    border-bottom: 0;
    }
.x-accordion .panel .panel-heading a {
    display: block;
    padding: 12px 30px;
    background: #fff;
    color: #31aae2;
    }
.x-accordion .panel .panel-heading a.collapsed {
    color: #969595;
    background-color: #fff;
    padding: 12px 30px;
    }
.x-accordion .panel-default>.panel-heading {
    border-radius: 0px;
    padding: 0;
    }

.x-accordion .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 0;
    padding: 10px 30px 30px 30px;
    background: #fff;
    color: #969595;
    }


@media screen and (max-width:767px){
    .x-accordion .panel-group{
        margin-bottom: 50px ;
        }
    }

/*----------------------
 tabOne start
 -----------------------*/
.tabOne {}
.tabOne .nav-tabs {
    border: 1px solid #eee;
    border-bottom: none;
    }
.tabOne .nav-tabs.nav-justified li {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    }
.tabOne .nav-tabs.nav-justified li.active {
    border-bottom: 1px solid transparent;
    }
.tabOne .nav-tabs.nav-justified li:last-child {
    border-right: 0;
    }
.tabOne .nav-tabs.nav-justified>li>a {
    border: 0;
    border-radius: 0;
    background-color: var(--whitish);
    color: #969595;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    }
.tabOne .nav-tabs.nav-justified>.active>a,
.tabOne .nav-tabs.nav-justified>.active>a:focus,
.tabOne .nav-tabs.nav-justified>.active>a:hover {
    border: 0;
    background-color: transparent;
    color: #31aae2;
    }

/*media query*/

@media (min-width : 768px) {
    .tabOne .tab-content{
        border: 1px solid #eee;
        padding: 30px;
        border-top: 0;
        overflow: hidden;
        }
    }

@media screen and (max-width : 600px) {
    .tabOne .tab-content{
        margin-top: 30px;
        }
    }

.tabOne .tab-pane img {
    margin-top: 8px;
    }
.tabOne .tab-pane img.pull-left {
    margin-right: 20px;
    }
.tabOne .tab-pane img.pull-right {
    margin-left: 20px;
    }
/*collapse in small devices*/
.tabOne .panel-body img{
    margin-top: 8px;
    }
.tabOne .panel-body img.pull-left {
    margin-right: 20px;
    }
.tabOne .panel-body img.pull-right {
    margin-left: 20px;
    }

.tabOne .tab-pane p {
    margin-bottom: 15px;
    }
.tabOne .tab-pane p:last-of-type {
    margin-bottom: 0;
    }


/* ------------------
   TomTom Map
   ------------------*/

#sectionTomTomMap {
    height: 300px;
}

.gmap-iw-title {
  font-weight:bold;
  padding-bottom:6px;
  font-size: 14px;
  text-transform: capitalize;
}
.gmap-iw-address {
  
}



/*------------------
  FORM STYLE
  -------------------- */
.form-group {
    margin-bottom:20px;    }
.form-control {
    height: 53px;padding: 6px 20px 6px 40px;font-size: 13px;line-height: 24px;color: #969595;border: 1px solid #F1F1F1;border-radius: 0.3rem;box-shadow: none;    }
.form-control:focus {
    border: 1px solid var(--accent-color) !important;box-shadow: none;border-radius: 0.3rem;    }


/*---------------
 Contact Form
 -----------------*/

.contact-form  {}
.contact-form  h2{
    line-height: 36px;
    margin-bottom: 45px;
    }

.user-message textarea {
    min-height: 195px;
    padding-top: 12px;
    }
.contact-form form button {
    margin-top: 10px;
    }


.user-name,
.user-email,
.user-phone,
.user-url,
.user-message{
    position: relative;
    }
.user-name::after,
.user-email::after,
.user-phone::after,
.user-url::after,
.user-message::after {
    position: absolute;
    left: 15px;
    top: 15px;
    font-family: "FontAwesome";
    color: #dadada;
    }

.user-name::after {
    content: "\f007";
    }
.user-email::after {
    content: "\f003";
    }
.user-phone::after {
    content: "\f095";
    }
.user-url::after {
    content: "\f0ac";
    }
.user-message::after {
    content: "\f086";
    }


/* --------------------------------------------
    Footer
----------------------------------------------- */
.footer {
    background-color:#303030;
    }

.footer .footer-block {
    border-right : 1px solid #3a3a3a;padding: 80px 60px;min-height: 380px;color:#a7a7a7;    }

@media (min-width : 992px) and (max-width : 1198px) {
    .footer .footer-block {
        padding : 60px 50px;
        }
    }

@media (min-width : 768px) and (max-width : 1198px) {
    .footer .footer-block {
        padding : 50px 15px;
        }
    .footer-hours-container {
        font-size:13px;
        }
    }

@media (max-width : 767px) {
    .footer .footer-block {
        padding    : 30px 15px;
        min-height : inherit;
        }
    }

.footer .footer-block.last {
    border-right : 0;
    }

.footer .footer-widget h3 {
    font-size:22px; font-weight:400; line-height:24px; color:#fff; margin-bottom:25px;    }

.footer .widget_text {
    }

.footer .footer-logo {
    margin-bottom:25px;    }

.footer-logo-img {
    /* max-width: 100%; */
	max-width:160px;
}
.footer-lslogo-img {
    max-width: 100%;
    padding-top:20px;
}

.footer-hours-block {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.footer .footer-widget .btn {
    font-size:11px;padding:5px 18px;border-radius:50px;color:#6b6b6b;border:1px solid #4a4a4a;margin-top:40px;    }

.footer .footer-widget .btn:hover {
    color:#fff;background-color:#31aae2;border:1px solid transparent;    }

.footer .footer-widget address {
    line-height   : 22px;
    margin-bottom : 30px;
    }

.footer .footer-widget .social-links {
    }

.footer .footer-widget .social-links li a {
    border-radius: 50%;
    display: flex;
    font-size: 20px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
}

.footer .footer-widget .social-links li a:hover {
    color            :     var(--primary-color);
    background-color :     #fff;
    }

.footer .copyright-section {
    background-color: #2d2d2d;color: #6b6b6b;padding: 10px 0;    }

.footer .copyright-section .copytext {
    order:2;color: #6b6b6b;font-size: 12px;    }
.footer .copyright-section .menu {
    order:1;
    font-size:16px;
    padding-bottom:10px;
}

/* Overlap Fix */
li.footer-social {
    padding-top: 8px;
}

@media (max-width : 767px) {
#footer-menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    }
}

@media (min-width : 768px) {
    .footer .copyright-section .list-inline > li {
        padding-right : 10px;
        padding-left  : 10px;
        }
    }

.footer .copyright-section li a {
    display   : block;
    font-size : 13px;
    color     : #6b6b6b;
    }

.footer .copyright-section li a:hover,
.footer .copyright-section li.active a {
    color : #ffffff;
    }



/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */
#preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    }

/*
#status,
.status-mes {
    background-image: url(../img/preloader.gif);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
    }
*/
.status-mes {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
    }

/*----------------------
 Section Miscellaneous
 -----------------------*/

 .bg-restaurant-1 {
    background-image: url(bg-restaurant-1.jpg);
}


/*----------------------
 MOBILE MENU
 -----------------------*/

.mobile-header-social {
    margin:6px;font-size:100%;color:var(--primary-color) !important;
}

.overflow-hidden {
    overflow: hidden;
}

@media (min-width: 900px) {
    nav#mobile-header {
        display:none;
    }
}

div.sbmenu_navbar > a.navbar-brand {
    float: left; height: 60px;font-size: 18px;line-height: 20px;}
div.sbmenu_screen {
    width: 100%;
    position: fixed;
    top: 0px;
    margin-top: 0px;
    z-index: 1200;
    /* Fix for Auto Scroll */
    height: 100%;
}
div.sbmenu_hidden {
    overflow-x: hidden;
    height: 0;
}

div.sbmenu_burger {
    height: 100%;
    width: 42px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    background-color: #33333308;
    z-index: 3500;
    padding-left: 8px;
}
.sbmenu_hamburger {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-top: -6px;
    position: relative;
}
.sbmenu_onlineorder {
    height: 100%;
    width: 52px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 4001;
}
.sbmenu_onlineorder_icon {
    height: 100%;
    padding-top: 18px;
    text-align: center;
    font-size: 90%;
}
	div.sbmenu_x,
	div.sbmenu_y,
	div.sbmenu_z {
		position: absolute; margin: auto;
		top: 0px; bottom: 0px;		
		background: var(--primary-color);
		border-radius:2px;
		-webkit-transition: all 200ms ease-out;
		   -moz-transition: all 200ms ease-out;
		    -ms-transition: all 200ms ease-out;
		     -o-transition: all 200ms ease-out;
		        transition: all 200ms ease-out;
	}		
	div.sbmenu_x, div.sbmenu_y, div.sbmenu_z { height: 3px; width: 26px; }
	div.sbmenu_y{top: 18px;}
	div.sbmenu_z{top: 37px;}
	div.sbmenu_collapse{
		top: 20px;
		background: var(--primary-color);
		-webkit-transition: all 70ms ease-out;
		   -moz-transition: all 70ms ease-out;
		    -ms-transition: all 70ms ease-out;
		     -o-transition: all 70ms ease-out;
		        transition: all 70ms ease-out;
	}
	 
	
	div.sbmenu_rotate30{
		-ms-transform: rotate(30deg); 
    	-webkit-transform: rotate(30deg); 
	    transform: rotate(30deg);	
		-webkit-transition: all 50ms ease-out;
		   -moz-transition: all 50ms ease-out;
		    -ms-transition: all 50ms ease-out;
		     -o-transition: all 50ms ease-out;
		        transition: all 50ms ease-out;					
	}
	div.sbmenu_rotate150{
		-ms-transform: rotate(150deg); 
    	-webkit-transform: rotate(150deg); 
	    transform: rotate(150deg);	
		-webkit-transition: all 50ms ease-out;
		   -moz-transition: all 50ms ease-out;
		    -ms-transition: all 50ms ease-out;
		     -o-transition: all 50ms ease-out;
		        transition: all 50ms ease-out;					
	}
	
	div.sbmenu_rotate45{
		-ms-transform: rotate(45deg); 
    	-webkit-transform: rotate(45deg); 
	    transform: rotate(45deg);	
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;					
	}
	div.sbmenu_rotate135{
		-ms-transform: rotate(135deg); 
    	-webkit-transform: rotate(135deg); 
	    transform: rotate(135deg);	
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;					
	}
.dtop_onlineorder_div {
    float: right;
    height: 100%;
    top: 0px;
    padding: 10px;
    /* margin-left: 20px; */
}

.cursor_ptr:hover { cursor: pointer; }

div.sbmenu_navbar{
    z-index: 3000;
    top:0px; margin-top:0px; z-index: 3000; height: 64px; width:100%;-webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15);box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15); position: relative; background: #fff;}

div.sbmenu_circle_fade{
    top: 0px;
    width: 2000px;
    -webkit-transition: all 1200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 1200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 1200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 1200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 1200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);	
}

div.sbmenu_circle_circle{
    border-radius: 50%;
    width: 0px;
    top: -560px;
    right: -565px;
    -webkit-transition: all 1000ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 1000ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 1000ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 1000ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 1000ms cubic-bezier(0.000, 0.995, 0.990, 1.000);	
}

div.sbmenu_circle{	
    height: 0px;
    position: absolute;
    background:     #fff;
    opacity: .98;
}
div.sbmenu_circle.sbmenu_expand{
    width: 2000px;
    height: 1600px;
   /* top: -560px;
    right: -565px;	*/
}
div.sbmenu_menu {
    /*height: 100%;*/
    width: 100%;
	position: absolute;
	top: 0px; left: 0px;
	/* Fix for Auto Scroll */
	height:100%;
    overflow-y: auto;
    overflow-x: hidden;
}
div.sbmenu_menu ul li {
	list-style: none;
    position: absolute;
    top: 50px;
    left: 0;
    opacity: 0;
    width: 100%;
    text-align: center;
    font-size: 0px;
    -webkit-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.sbmenu_menu ul li a {
	color:    var(--primary-color);
	text-transform:uppercase;
	text-decoration:none;	
    letter-spacing:3px;			
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-size: 30px;
}

div.sbmenu_menu ul li a:hover {
    opacity: .8;
    color: var(--accent-color);
}

div.sbmenu_menu li.animate{
	font-size:21px;
	opacity:1;
	-webkit-transition: all 250ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 250ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 250ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 250ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 250ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.sbmenu_menu li.animate:nth-of-type(1){	
	top:120px;
	transition-delay: 0.0s;	
}
div.sbmenu_menu li.animate:nth-of-type(2){
	top:190px;
	transition-delay: 0.03s;	
			
}
div.sbmenu_menu li.animate:nth-of-type(3){
	top:260px;
	transition-delay: 0.06s;		
	
}
div.sbmenu_menu li.animate:nth-of-type(4){
	top:330px;
	transition-delay: 0.09s;		
	
}
div.sbmenu_menu li.animate:nth-of-type(5){
	top:400px;
	transition-delay: 0.12s;		
	
}
div.sbmenu_menu li.animate:nth-of-type(6){
	top:470px;
	transition-delay: 0.15s;	
			
}
div.sbmenu_menu li.animate:nth-of-type(7){
	top:540px;
	transition-delay: 0.18s;	
			
}
div.sbmenu_menu li.animate:nth-of-type(8){
	top:610px;
	transition-delay: 0.21s;	
			
}
div.sbmenu_menu li.animate:nth-of-type(9){
	top:680px;
	transition-delay: 0.24s;	
			
}
div.sbmenu_menu li.animate:nth-of-type(10){
	top:750px;
	transition-delay: 0.27s;	
			
}

/* END MOBILE MENU */

/*----------------------
 SOCIAL LINKS
 -----------------------*/

.div-header-social {
    float: left;
    padding-top: 6px;
}

@media (max-width : 991px) {
    .div-header-social {
    max-width:102px;
    max-height:30px;
    overflow:hidden;
        }
    }

.fa.fa-light {
    color: #fff;
}
.fa.fa-dark {
    color: #000;
}
li.header-social {
    width: 25px;
    height: 25px;
    padding-top: 1px;
    margin-left:1px;
    margin-left:1px;
}
li.header-social:hover {
    opacity: .8;
}

.mobile-header-social:hover {
    opacity: .7;
}

/*----------------------
 HOUR DISPLAY
 -----------------------*/
.hours_today {
    font-weight:500;
    color: #fff;
}

td.hour_display_day {
    text-align: right;
    padding-right: 10px;
    font-size: 90%;
}

.footer-hours-container {
    margin:0 auto;
}

.hours_display_closed {

}
.hours-holiday-note-hide {
    display:none;
    }
.hours-holiday-note {
    font-size: 12px;
    text-align: center;
}

/*----------------------
RESTAURANT
-----------------------*/
/*---------- TABS ----------*/ 
.nav-tabs-center {
    display: inline-block;
}
#buttonTabs li a {
    min-width: 120px;
    line-height: 1.8;
    margin: 0 1px;
}
#buttonTabs .menu-tab-item-side a {
    display: block;
    min-width: 100px;
    line-height: 1.8;
    margin: 0 1px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.tab-content {
    padding-top: 10px;
}
.restaurant .menu-item-horizontal {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 10px;
}
.restaurant .menu-item-horizontal h4 {
    font-family: "Fjalla One", sans-serif;
    color: #000;
    font-weight: 400; margin-bottom: 0; line-height: 1.1;}
.restaurant .menu-item-horizontal span {
    float: right;
    margin-top: 8px;
}
.restaurant .menu-item-horizontal img { 
    position: absolute;
    margin-top: -30px;
    max-width: 100px;
}

.restaurant .menu-item-horizontal h4,
.restaurant .menu-item-horizontal p { 
    padding-left: 120px;
}

.restaurant .menu-item-horizontal.menu-item-no-image h4,
.restaurant .menu-item-horizontal.menu-item-no-image p { 
    padding-left: 0px;
}

@media (max-width : 479px) {
    .restaurant .menu-item-horizontal img { 
        margin-top: -15px;
        max-width: 60px;
    }
    .restaurant .menu-item-horizontal h4,
    .restaurant .menu-item-horizontal p { 
    padding-left: 80px;
    }
}

.restaurant-bottom { 
    width: 100%;
    position: absolute;
    display: block;
    left: 0;
    bottom: 20px;   
    text-align: center;
}

.menu-item-horizontal h4 {
    margin-bottom: 0;
}
.menu-item-horizontal span {
    float: right;
    margin-top: 8px;
}
.menu-item-horizontal {
    margin-bottom: 30px;
}



@media (max-width: 767px) {
    /* .col-sm-6 {
        width: 100%;
    } 
    .col-xs-6 {
        width: 98%;
    } */
}

@media (min-width: 768px) {
    /* .col-sm-6 {
        width: 50%;
    } */
}

.menu-cat-header {
    padding: 10px;
}

.menu-table {
	display: table;   /* Allow the centering to work */
	margin: 0 auto;
}

div#menuDiv {
    width: 100%;
    text-align: center;
}

@media (max-width: 991px) and (min-width: 768px) {
    div#menuDiv {
        width: 98%;
    }
}

@media (max-width: 767px) {
    div#menuDiv {
        width: 320px;
    }
}

.mobile-food-menu-btn {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
}

#buttonTabs .menu-tab-item-side a.tab-menu-abtn {
    padding:6px;
    font-size:21px;
}
    
@media (min-width : 992px) {
    .mobile-food-menu-btn {display:none;}
}

ul.centerUL {
    margin: 2px auto;
    line-height: 1.4;
    padding-left: 0;
}
.centerUL li {
    display: inline;
    text-align: center;
    padding-left:10px;
    padding-right:10px;
}
li.menu-tab-item {
    display: inline-block;
}
li.menu-tab-item-side {
    display: block;
    text-align: left !important;
}
.menu-tab-item-side a {
    display: block;
}
.menu-tab-item-side.ui-state-active a, .menu-tab-item-side.ui-state-active a:visited {
    color:#fff;
}
.menu-tab-item-side.ui-state-active a:hover, .menu-tab-item-side.ui-state-active a:focus {
    color:#fff !important;
}
.menu-tab-item.active a {
    color:var(--primary-color);
}
.row.menu {
    padding-bottom: 20px;
}

.restaurant-tabs li a,
.restaurant-tabs li.active a,
.restaurant-tabs li.ui-state-active a {
    text-transform: none;
    font-family: "Open Sans", serif;
    font-weight: normal;
    /* background-color: transparent!important;  */
}
.restaurant-tabs li a:hover,
.restaurant-tabs li.active a:hover {
    color: var(--primary-color);
}
.restaurant-tabs li a {
    color: var(--primary-color);
}
.menu-cat-header { 
    font-family: "Fjalla One", sans-serif;
    text-align: center; font-weight: 600; line-height: 1.1; font-size: 34px;}   
    
    
.menu-scat-header { 
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-color);
    background-color: var(--whitish);font-weight: 600;line-height: 1.1;font-size: 28px;margin-top: 30px;margin-bottom: 16px;margin-right: auto;margin-left: auto;max-width: 400px;padding-bottom: 10px;padding-top: 15px;border-bottom: var(--primary-color) 3px solid;text-align:center;}

.menu-img-deco {
    border: 4px solid var(--primary-color); max-width:100px; overflow: hidden; -webkit-box-shadow: 2px 0px 6px -1px rgba(0,0,0,0.34); -moz-box-shadow: 2px 0px 6px -1px rgba(0,0,0,0.34); box-shadow: 2px 0px 6px -1px rgba(0,0,0,0.34);    
}
.menu-img-deco.deco-rounded-square {
    border-radius: 25%;
    -webkit-border-radius: 25%; -moz-border-radius: 25%; -ms-border-radius: 25%; -o-border-radius: 25%; border-radius: 25%; 
}
.menu-img-deco.deco-circle {
    border-radius: 50%;
    -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; 
}
.menu-img-deco.deco-square {}

span.menu-price {
    margin-top: 0px !important; font-size:16px; font-weight:400; font-family: "Open Sans", serif; }
span.menu-description {
    font-size: 13px; font-weight: 300; width: 100%;}
span.menu-calories {
    font-size: 13px;}
.ls-menu {
    background-color:#fff}
.food-menu-nav {
}
.food-menu-nav-ul {}
.food-menu-nav-but {
    background-color: var(--whitish);
    margin: 4px;
    min-width: 100px;
    font-size: 16px;
    }
.food-menu-content-div {}
.food-menu-nav-but.ui-state-active {
    background-color: var(--primary-color) !important;
}

.food-menu-nav-but.ui-state-active a {
    color: white;
}

.food-menu-nav-but:hover {
    background-color: transparent;
}
/*----------------------
HERO SECTIONS
-----------------------*/
/* Hero Containers */ 
.hero-fullscreen { 
    position: relative; 
	width: 100%;
	height: 100%;  
    background-color: #0f1112;
}
.hero-fullwidth { 
    position: relative; 
	width: 100%;
	height: 70%;  
    background-color: #0f1112;
} 
.page-hero { 
    position: relative; 
	width: 100%;
	height: 45%; 
	max-height: 600px;
	min-height: 260px;
}
.page-hero-animate {  
	height: 0%; 
    opacity: 0;
}

/* Hero Movements */ 
.hero-parallax-fullscreen {
	position: fixed; 
	width: 100%;
	height: 100%; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 
.hero-parallax-fullwidth {
	position: fixed; 
	width: 100%;
	height: 70%; 
}  
.page-hero-parallax {
	position: fixed; 
	width: 100%;
	height: 45%; 
    max-height: 630px;
	min-height: 260px;
} 

@media (max-height: 799px) {
    .section-page-hero .section-heading h2 {
    font-size: 48px;
    line-height: 48px;
    }
}

@media (max-width:991px) {  
    .hero-fullscreen { 
        /* top: -57px!important;  
        margin-bottom: -57px!important; */
    }  
    .hero-parallax-fullscreen,
    .page-hero-parallax {
        position: relative!important; 
        width: 100%;
        height: 100%!important; 
        top: 0!important;
    } 
    .hero-fullwidth { 
        top: -57px!important;  
        margin-bottom: -57px!important;  
    }  
    .hero-parallax-fullwidth {
        position: relative!important; 
        width: 100%; 
        height: 100%!important; 
        top: 0!important;
    } 
}
.hero-fixed-fullscreen {
	position: fixed; 
	width: 100%;
	height: 100%; 
} 
.hero-fixed-fullwidth {
	position: fixed; 
	width: 100%;
	height: 70%; 
}  
.page-hero-fixed {
	position: fixed; 
	width: 100%;
	height: 45%; 
}
.hero-static-fullscreen {
	position: relative; 
	width: 100%;
	height: 100%; 
} 
.hero-static-fullwidth {
	position: relative; 
	width: 100%;
	height: 70%; 
} 
.page-hero-static {
	position: relative; 
	width: 100%;
	height: 45%;
} 

/* Hero Image  */ 
.hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%!important; 
}

/* Hero Video  */ 
.hero-video {
    background-color: #111;
}
@media (max-width:991px) {
    .hero-video { 
        top: 0!important;
    } 
}
.hero-video video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform:  -webkit-translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 1s opacity;
} 
.hero-video .play-pause-btn {
    display: block; 
    padding: 20px;  
    cursor: pointer; 

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
} 
.stopfade {
  opacity: 0;
}
@media (max-width: 991px) { 
    #bgvid,
    .play-pause-btn { 
        display: none; 
        opacity: 0;
    }
}  

/* Hero Content */
.hero-container {
    position: relative;
    display: table; 
    height: 100%;
    text-align: center;
} 
.hero-content {
    display: table-cell;
    height: 100%;
    vertical-align: middle; 
}
@media (max-height: 800px) {
    .hero-content {
    display: block;
    height: 100%;
    padding-top:60px;
    }
} 
@media (min-width: 992px) {
    .hero-lrg-header {  
        font-size: 12rem;
        font-weight: 700;
        /* line-height: 1.1em; */
        /* letter-spacing: -7px; */
    } 
} 
@media (max-width: 991px) {
    .hero-lrg-header {  
        font-size: 10rem;
        font-weight: 700;
        /* line-height: 1.1em; */
        /* letter-spacing: -4px; */
    } 
} 
@media (max-width: 620px) { 
    .hero-lrg-header {  
        font-size: 6rem;
        font-weight: 700;
        /* line-height: 1.1em; */
        /* letter-spacing: -2px; */
    } 
}
@media (max-width: 479px) { 
    .hero-lrg-header {  
        font-size: 4rem;
        font-weight: 700;
        /* line-height: 1.1em; */
        /*  letter-spacing: -1px; */
    } 
}
@media (max-width:991px) { 
    .hero-container {
        padding-top: 0!important;
        top: 0!important;
    }
    .hero-content { 
        text-align: center;
    }
    .scroll-opacity {
        opacity: 1!important;
    }
}
.hero-bottom {
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    left: 0;
    bottom: 10px;
}

.hero-bottom h6 {
    margin-bottom:6px;
    padding-left: 10px;
    padding-right: 10px;
    }
    
/* <!-- NEEDS PHP #PHP --> */
.hero-bottom .list-inline li a {
    font-size: 11px;
    font-family: "Open Sans", serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b3b3b3;
}
.hero-bottom > h6 > a {
    line-height: 1.5;
    color: #fff;
    font-family: "Open Sans", serif;
}

/*----------------------
FOOD MENU MOBILE POPUP MENU
-----------------------*/

/* The Overlay (background) */
.food-mobile-menu-overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 5000; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.food-mobile-menu-overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.food-mobile-menu-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.food-mobile-menu-overlay a:hover, .food-mobile-menu-overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.food-mobile-menu-overlay .food-mobile-menu-closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .food-mobile-menu-overlay a {font-size: 20px}
    .food-mobile-menu-overlay .food-mobile-menu-closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

/* 
FOOD ITEM CARD DISPLAY
*/

.width48 {
  width: 48%;
}

.width50 {
  width: 50%;
}

.width100 {
  width: 100%;
}

/* BOOTSTRAP MODAL */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
.modal-ani-zoomIn {
  -webkit-animation: zoomIn .3s !important; /* Safari 4+ */
  -moz-animation:    zoomIn .3s !important; /* Fx 5+ */
  -o-animation:      zoomIn .3s !important; /* Opera 12+ */
  animation:         zoomIn .3s !important; /* IE 10+, Fx 29+ */
}
.modal-ani-zoomOut {
  -webkit-animation: zoomOut .5s !important; /* Safari 4+ */
  -moz-animation:    zoomOut .5s !important; /* Fx 5+ */
  -o-animation:      zoomOut .5s !important; /* Opera 12+ */
  animation:         zoomOut .5s !important; /* IE 10+, Fx 29+ */
}
.modal.fade{
  opacity:1;
}
.modal.fade .modal-dialog {
   -webkit-transform: translate(0);
   -moz-transform: translate(0);
   transform: translate(0);
}
.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 0px solid #e9ecef;
}
@media (min-width: 768px) {

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.15);
        box-shadow: 0 5px 15px rgba(0,0,0,.15);
        }
}
.modal-content {
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.1);
    box-shadow: 0 3px 9px rgba(0,0,0,.1);
    border-radius: 4px;
    border: 0px solid rgba(0,0,0,.2); 
}
.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 0px solid #e9ecef;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
  background: var(--primary-color);
}
.modal-header .close {
  right: 8px;
  position: fixed;
  width: 23px;
  color: #fff;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0px;
}.md-info-div {
	padding: 16px;
}
.md-image-div {text-align:center}
.md-info {
	font-size: 80%;
	text-align:right;
	padding-right:10px;
}
.md-price {
	text-align: center;
	font-weight: 600;
	padding-bottom: 10px;
}
.md-data-img {
  max-width: 100%;
}
.md-description {
  margin: 0;
  padding-bottom: 10px;
}
.md-button {
	border: none;
	padding: 0.3em 1.0em;
	font-size: 1em;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-block;
	margin: 3px 2px;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,0);
}
.md-button.md-btn-close:hover, .md-button.md-btn-close:focus {
    border: 1px solid rgba(0,0,0,0);
}
.md-button.md-btn-close, .md-button.md-btn-close:visited {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.md-button:hover {
    text-decoration: none;
}
.md-nav {
  text-align:center;
  margin: 0 auto;
}


/* FOOD ITEM OVERLAY */

.ls-card-buttons-div {
  background-color:var(--whitish);
  text-align:center;
}
.card-btns {
  display:inline-block;
  text-align:center;
  padding: 10px;
  cursor: pointer;
}
.card-btn-moreinfo, .card-btn-moreinfo:visited {
  background-color:var(--whitish);
  color: var(--primary-color);
  }
.card-btn-moreinfo:hover, .card-btn-moreinfo:focus {
  background-color:#f5f5f5;
  color: var(--primary-color);
  text-decoration: none;
}
.card-btn-order, .card-btn-order:visited {
  background-color:var(--primary-color);
  color: #fff;
  }
.card-btn-order:hover, .card-btn-order:focus {
  background-color:#fff;
  color: var(--primary-color);
  text-decoration: none;
}


.card-info-div {
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
}
.card-info {
  display: inline-block;
}
.card-item-price {
  text-align: right;
  width:60%;
  font-size: 14px;
}
.card-item-cals {
  text-align: left;
  width:40%;
  font-size: 80%;
  line-height: 1.2;
}

.ls-card {
  float: left;
  padding: 10px;
 /* width: 50%; */
}
.ls-card .menu-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ls-card .menu-content::before, .ls-card .menu-content::after {
  content: '';
  display: table;
}
.ls-card .menu-content::after {
  clear: both;
}
.ls-card .menu-content li {
  display: inline-block;
}
.ls-card .menu-content a {
  color: #fff;
}
.ls-card .menu-content span {
  position: absolute;
  left: 50%;
  top: 0;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Open Sans';
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.ls-card .wrapper {
  background-color: #fff;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 5px 7px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.ls-card .wrapper:hover .data {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.ls-card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(calc(30px + 1em));
          transform: translateY(calc(30px + 1em));
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ls-card .data .content {
  position: relative;
  z-index: 1;
}

.ls-card .title {
  padding-top: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom:0px;
}
.ls-card .text {
  height: 70px;
  margin: 0;
}
.ls-card input[type='checkbox'] {
  display: none;
}
.ls-card input[type='checkbox']:checked + .menu-content {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

.card-design-1 .wrapper {
  background-size: cover !important;
  background-position: center -2rem !important;
  background-repeat: no-repeat !important;
}
.card-design-1 .content {
  background-color: #fff;
  box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}
.card-design-1 .title a {
  color: gray;
}
.card-design-1 .menu-button {
  position: absolute;
  z-index: 999;
  top: 16px;
  right: 16px;
  width: 25px;
  text-align: center;
  cursor: pointer;
}
.card-design-1 .menu-button span {
  width: 5px;
  height: 5px;
  background-color: gray;
  color: gray;
  position: relative;
  display: inline-block;
  border-radius: 50%;
}
.card-design-1 .menu-button span::after, .card-design-1 .menu-button span::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  /* background-color: currentColor; */
  position: absolute;
  border-radius: 50%;
}
.card-design-1 .menu-button span::before {
  left: -10px;
}
.card-design-1 .menu-button span::after {
  right: -10px;
}
.card-design-1 .menu-content {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.card-design-1 .menu-content li {
  width: 33.333333%;
  float: left;
  background-color: #77d7b9;
  height: 60px;
  position: relative;
}
.card-design-1 .menu-content a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 24px;
}
.card-design-1 .menu-content span {
  top: -10px;
}

/* CUSTOM ICONS FROM FONTELLO */


 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "custombrands";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-cust-happycow:before { content: '\e800'; } /* '' */


/* PhotoSwipe CSS */

.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }


.video-container {
    position: relative;
    width: 100%;
}
.video-container .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    color: #FFF;
    display: block;
    background: url('https://www.lineskipapp.com/_pages/pizzapatio/dev/assets/img/_mg_playoverlay.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-color: #0009;
}

.media-gallery-video-title {
  margin-top: 10px;
  text-align: center;
  width: 100%;
}

  /* VIDEO EDITS */
.pswp__zoom-wrap {
text-align: center;
}

.pswp__zoom-wrap::before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
  

.ps-wrapper {
    line-height: 0;
    width: 100%;
    max-width: 900px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}
    
.ps-wrapper video { 
    width: 100% !important;
    height: auto !important;
  }
  
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    /* width: 100%; */
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* END PhotoSwipe CSS */


/* SPRITE SHEET */
.app-store-div {
}


.app-store-a {
    display:inline-block;
}

.sprite {
    background-image: url(./_spritesheet.png);
    background-repeat: no-repeat;
    display: block;
}

.sprite-appstore_apple {
    width: 152px;
    height: 47px;
    background-position: -5px -5px;
}

.sprite-appstore_google {
    width: 152px;
    height: 47px;
    background-position: -5px -62px;
}

/* END Sprite Sheet */

/* Google Map: Remove default padding */
.gm-style-iw {
    padding-top: 0 !important;
}
/* Google Map: Hide the close button */
.gm-ui-hover-effect {
    display: none !important;
}

.hour-start, .hour-end {
    display: inline-block;
    width: 80px;
    text-align: left;
}

.hour-separator {
    display: inline-block;
    width: 20px;
    text-align: center;
}

.hour_display_time {
    line-height: 20px;
    padding-bottom: 4px;
}

.hour_display_day {
    vertical-align: top;
}

/* SECTION MAP MODAL STYLES */

div.scroll {
    height: 80vh;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #5e5d5d transparent;
}

@media (min-width: 768px) {
    div.scroll {
        margin-right: -30px;
    }

    #ModalMap .tt-side-panel {
        margin-right: -20px;
    }
}

div.scroll::-webkit-scrollbar {
    width: 4px;
}

div.scroll::-webkit-scrollbar-track {
    background: transparent;
}

div.scroll::-webkit-scrollbar-thumb {
    background: #5e5d5d;
    border-radius: 10px;
}

div.scroll::-webkit-scrollbar-thumb:hover {
    background: #5e5d5d;
}

@media screen and (max-width: 47.99em) {
    div.scroll {
        height: 350px;
        overflow: auto;
    }
}

.block_address {
    margin: 10px;
    border: solid 0.5px var(--primary-color);
    padding: 15px;
    border-radius: 24px;
    padding-left: 15px;
    padding-bottom: 15px;
}

.close_address {
    border-radius: 25px;
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    background-color: white;
}

.modal-width {
    width: 95% !important;
    padding-left: 20px !important;
    margin-left: 20px !important;
}

.tt-search-box {
    margin-top: 12px;
    background: #e3ebd3 !important;
    font-size: 30px !important;
    font-family: Gotham,Helvetica,Arial,sans-serif!important;
    position: relative;
    border-radius: 20px !important;
    color: black;
}

.tt-search-box-input-container {
    border: none !important;
}

.icon-wrapper {
    display: flex;
    gap: 2px;
    font-size: 15px;
    margin-bottom: 5px;
}

#map_container {
    padding-left: 10px !important;
}

@media screen and (max-width: 47.99em) {
    .modal-width {
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0px !important;
        margin-left: 0px !important;
    }

    .tt-search-box-input {
        width: 70% !important;
    }

    #ModalMap {
        padding-left: 0 !important;
    }

    #map_container {
        padding-left: 0px !important;
    }
}

@media (min-width: 998px) and (max-width: 1360px) {
    .card-text {
        font-size: 12px !important;
    }
}

#ModalMap .modal-content {
    height: auto !important;
    min-height: 80% !important;
    border-radius: 0 !important;
}

#ModalMap .modal-body {
    height: 80% !important;
}

.text-white {
    color: white !important;
}

#ModalMap .tt-side-panel {
    overflow-y: auto !important;
}

#ModalMap #map_col-9 span.pull-right {
    padding-right: 55px !important;
}

#ModalMap #map_col-9 button.btn-circle {
    background-color: white;
}

#ModalMap #map_col-9 i {
    font-size: 18px !important;
    color: var(--primary-color) !important;
}

#ModalMap .target {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 5px;
}

#ModalMap .target a {
    display: block;
    margin-bottom: 10px;
}

#ModalMap .target p {
    font-size: 16px;
    color: #786259;
    line-height: normal;
}

.block_address .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block_address .card-text address {
    line-height: 1.5;
    text-transform: capitalize;
    color: white;
}

.block_address .card-text address div i {
    display: inline-block;
    width: 20px;
    padding: 2px;
    text-align: center;
    margin-right: 5px;
}

.block_address span a {
    width: 220px;
    border-radius: 20px;
}

.m-t-10 {
    margin-top: 10px !important;
}

/* SITE SCROLLBAR STYLES */

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #C5C5C5;
}
::-webkit-scrollbar-thumb {
    background: #F0AC00;
}
::-webkit-scrollbar-thumb:hover {
    background: #303030;
}

/* FOOD MENU PAGE STYLES */

#box-menu {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
    box-shadow: none;
}

#box-menu:focus, #box-menu:hover, #box-menu:active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.box-menu-1 {
    font-size: 16px;
    border-radius: 22px;
    padding-left: 25px;
    margin-left: 5px;
    text-align: center;
}

.box-menu-1:focus, .box-menu-1:hover, .box-menu-1:active {
    border-radius: 22px;
}

.box-menu-2 {
    font-size: 14px;
    width: 97%;
    height: 38px;
    padding-left: 10px;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 5px;
    border-radius: 0px;
}

.box-menu-2:focus, .box-menu-2:hover, .box-menu-2:active {
    border-radius: 0px;
}

@media (max-width: 767px) {
    .box-menu-2 {
        font-size: 15px !important;
        width: 312px !important;
    }
}

.menu-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.box-active {
    border: 3px solid var(--primary-color);
    box-shadow: -8px 8px 6px -8px rgb(255 169 0 / 74%);
}

#mapsection .mapboxgl-popup {
    top: -43px !important;
}

.fixed-menu {
    z-index: 1;
}

.footer {
    z-index: 10;
    position: relative;
}

#orderbuttons {
    z-index: 10;
}

#mapsection {
    z-index: 10;
}