﻿@import url(https://fonts.googleapis.com/css?family=Raleway);

body, html {
    /*font-family: 'Hind', sans-serif;*/
    color: #151515;
    overflow-x: hidden;
 /*   -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}
.div-block {
    margin: 0px;
    padding: 0px;
    width: 100%;
    display: block;
    clear: both;
}

h1, h2, h3, h4, h5, h6 {
    color: #151515;
    margin: 0 0 10px;
    font-weight: 700;
}

a {
    color: #151515;
    -webkit-transition: 0.3s color;
    transition: 0.3s color;
}

    a:hover, a:focus {
        color: #0088cf;
        text-decoration: none;
        outline: none;
    }

.primary-color {
    color: #0088cf;
}

.white-color {
    color: #FFF;
}

.font-weak {
    font-weight: 400;
}

strong {
    color: #151515;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
    border-color: #DADADA;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.main-btn, .primary-btn {
    display: inline-block;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.icon-btn.main-btn, .icon-btn.primary-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0px;
    border: none;
}

.main-btn {
    color: #151515;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
    box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
}

    .main-btn:hover, .main-btn:focus {
        color: #0088cf;
        -webkit-box-shadow: 0px 0px 0px 1px #0088cf inset, 0px 0px 0px 0px #0088cf;
        box-shadow: 0px 0px 0px 1px #0088cf inset, 0px 0px 0px 0px #0088cf;
    }

.primary-btn {
    color: #FFF;
    background-color: #0088cf;
    -webkit-transition:.8s;-moz-transition:.8s;-o-transition:.8s;transition:.8s;
}

    .primary-btn:hover, .primary-btn:focus {
        color: #FFF;
        background-color: #ff7f00;
        -webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);
    }

.searchprimary-btn {
    color: #FFF;
    background-color: #0088cf;
    display: inline-block;
    padding: 8px 18px 8px 18px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    margin-top: 5px;
}

    .searchprimary-btn:hover, .primary-btn:focus {
        color: #FFF;
        background-color: #151515;
    }
/*----------------------------*\
	Inputs
\*----------------------------*/

.input {
    width: 100%;
    height: 40px;
    padding: 0px 15px;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
    box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

    .input:focus {
        -webkit-box-shadow: 0px 0px 0px 1px #0088cf inset, 0px 0px 0px 0px #0088cf;
        box-shadow: 0px 0px 0px 1px #0088cf inset, 0px 0px 0px 0px #0088cf;
    }

textarea.input {
    padding: 15px;
}

.input-checkbox .caption {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-checkbox > label {
    color: #151515;
}

.input-checkbox input[type="checkbox"]:checked + label + .caption, .input-checkbox input[type="radio"]:checked + label + .caption {
    max-height: 800px;
}

/*----------------------------*\
	Lists
\*----------------------------*/

.list-links .list-links-title {
    text-transform:capitalize;
    margin-bottom: 10px;
    font-size: 14px;
}

.list-links li > a {
    position: relative;
    display: inline-block;
    text-transform:capitalize;
    padding: 2px 0px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

    .list-links li > a:before {
        content: "\f105";
        position: absolute;
        left: 0px;
        font-family: FontAwesome;
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

    .list-links li > a:hover, .list-links li > a:focus, .list-links li.active > a {
        color: #0088cf;
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

        .list-links li > a:hover:before, .list-links li > a:focus:before, .list-links li.active > a:before {
            opacity: 1;
            visibility: visible;
        }

/*----------------------------*\
	Sections
\*----------------------------*/

.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-logo-scroller {
    padding-top: 30px;
    padding-bottom: 0px;
}

.section-grey {
    width: 100%;
    position: relative;
    background: url("/Images/bkbanner.jpg") scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .section-grey::after {
        content: "";
        background: rgba(0, 0, 0, 0.5);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 25px;
        position: absolute;
        z-index: -1;
    }

.section-grey-foter {
   background:linear-gradient(#f3f3f3, #f3f3f3, #fff, #fff);
    /*-webkit-clip-path: polygon(70% 0%, 100% 10%, 100% 100%, 100% 100%, 0% 100%, 0% 1%);
		clip-path: polygon(70% 0%, 100% 10%, 100% 100%, 100% 100%, 0% 100%, 0% 1%);*/
    border-top: 2px solid #0088cf;
}

.section-title {
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
    border-bottom: 2px solid #DADADA;
}

    .section-title .title {
        display: inline-block;
        text-transform: capitalize;
    }

    .section-title .title1 {
        display: inline-block;
        text-transform: capitalize;
    }

.title1 span {
    font-size: 19px;
    color: #0088cf;
}

.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 35%;
    background: #0088cf;
}
/*.section-title:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.5px;
  height: 3px;
  width: 25%;
  background-color: #0088cf;
}*/
.section-title ul {
    margin: 35px 0px 5px;
}

    .section-title ul > .active {
        color: #0088cf;
    }

    .section-title ul > li {
        display: inline-block;
        font-size: 17px;
        font-weight: 600;
    }

        .section-title ul > li + li:before {
            color: #DADADA;
            content: "/\00a0";
            padding: 0 5px;
        }

        .section-title ul > li + li + li:before {
            color: #DADADA;
            content: "/\00a0";
            padding: 0 5px;
        }
    /*.section-title ul li:nth-child(odd)
{  
  color:#151515;
}
.section-title ul li:nth-child(even)
{
  color:#0088cf;
}*/
    .section-title ul li {
        color: #151515;
    }

        .section-title ul li + li {
            color: #0088cf;
        }

            .section-title ul li + li + li {
                color: #0088cf;
            }

                .section-title ul li + li + li + li {
                    color: #151515;
                }

                    .section-title ul li + li + li + li + li {
                        color: #0088cf;
                    }
/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    -webkit-box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.175);
}

.breadcrumb {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    padding: 15px 0px;
    margin: 0;
}

    .breadcrumb > .active {
        color: #0088cf;
    }

    .breadcrumb > li + li:before {
        color: #DADADA;
    }

/*=========================================================
	02 -> HEADER
===========================================================*/

#header {
    padding-top: 5px;
    padding-bottom: 5px;
}

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #DADADA;
    background: #fff;
}

    #top-header .contact-dtl ul {
        display: block;
    }

        #top-header .contact-dtl ul > li {
            display: inline-block;
        }

        #top-header .contact-dtl ul > li {
            margin-right: 5px;
            padding: 5px;
        }

    #top-header .top-social > li:nth-child(odd) {
        background: #0088cf;
    }

    #top-header .top-social > li:nth-child(even) {
        background: #ff7f00;
    }

    #top-header .top-social > li {
        color: #fff !important;
        font-size: 14px;
        padding: 5px;
        margin: 3px;
        width: 30px;
        height: 25px;
        display: inline-block;
        text-align: center;
    }

        #top-header .top-social > li > a {
            color: #fff !important;
        }

            #top-header .top-social > li > a:hover {
                color: #fff !important;
            }

        #top-header .top-social > li:hover, #top-header .top-social > li:focus {
            background: #151515;
            color: #fff !important;
        }

@media (max-width: 480px) {
    #top-header .contact-dtl ul {
        display: inline-block;
        width: 100%;
    }

        #top-header .contact-dtl ul > li {
            display: block;
            text-align: left;
            width: 100%;
        }
}

.header-top-links > li {
    display: inline-block;
    padding-top: 5px;
}

    .header-top-links > li + li {
        margin-left: 15px;
    }

    .header-top-links > li > a {
        cursor: pointer;
        text-transform: uppercase;
        font-weight: 600;
    }

.header-top-links a:hover {
    color: #0088cf;
}
/*----------------------------*\
	logo
\*----------------------------*/

/*.header-logo {
  display: inline-block;
  margin-right: 15px;
}

.header-logo .logo>img {
  width: auto;
  max-height: 55px;
}*/

/*----------------------------*\
	Search header
\*----------------------------*/

.header-search {
    display: inline-block;
    padding: 15px 0px;
    max-width: 400px;
}

    .header-search > form {
        position: relative;
    }

        .header-search > form .search-input {
            padding-left: 150px;
            padding-right: 45px;
        }

        .header-search > form .search-categories {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 135px;
        }

        .header-search > form .search-btn {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 40px;
            height: 40px;
            background-color: transparent;
            border: none;
        }

/*----------------------------*\
	Account header
\*----------------------------*/

/*.header-btns>li {
  display: inline-block;
  vertical-align: top;
  padding: 8px 0px;
}

.header-btns>li+li {
  margin-left: 15px;
}

.header-btns>li .header-btns-icon {
  position: relative;
  float: left;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #151515;
  background-color: #FFF;
  border: 1px solid #DADADA;
}

.header-btns .dropdown-toggle {
  display: block;
  cursor:pointer;
}

.header-account.dropdown .custom-menu>li>a>i {
  margin-right: 15px;
  color: #0088cf;
}*/

/*----------------------------*\
	Cart header
\*----------------------------*/
header .pull-left, header .pull-right {
    /*float: none !important;*/
    margin: 3px;
}
/*.header-cart.dropdown .custom-menu {
  width: 300px;
}

#shopping-cart .shopping-cart-list {
  max-height: 260px;
  margin-bottom: 15px;
  overflow-y: scroll;
}

#shopping-cart .shopping-cart-list .product.product-widget:first-child {
  margin-top: 0px;
}

#shopping-cart .shopping-cart-list .product.product-widget:last-child {
  margin-bottom: 0px;
}

#shopping-cart .shopping-cart-btns>button {
  width: calc(50% - 2px);
}*/

/*=========================================================
	03 -> NAVIGATION
===========================================================*/

/*#navigation {
  background-color: #151515;
  width:100%;
}

#navigation .container {
  position: relative;
}*/

/*----------------------------*\
	Category nav
\*----------------------------*/

/*.category-nav {
  float: left;
  width: 270px;
}

.category-nav .category-header {
  padding: 15px;
  display: block;
  text-transform: uppercase;
  background: #0088cf;
  color: #FFF;
  font-weight: 700;
}

.category-nav .category-header>i {
  float: right;
  line-height: 20px;
}

.category-nav .category-list {
  position: absolute;
  width: 270px;
  background-color: #FFF;
  border-left: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  z-index: 50;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.category-nav.show-on-click .category-list {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
}

.category-nav.show-on-click .category-list.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.category-nav .category-list>li+li {
  border-top: 1px solid #DADADA;
}

.category-nav .category-list>li.dropdown>.dropdown-toggle>i {
  float: right;
  line-height: 20px;
  padding-left:10px;
}

.category-nav .category-list>li>a {
  display: block;
  padding: 15px;
  text-transform: uppercase;
}

.category-nav .category-list>li>a:hover, .category-nav .category-list>li>a:focus, .category-nav .category-list>li.dropdown.open>a {
  color: #0088cf;
}*/

/*----------------------------*\
	Menu nav
\*----------------------------*/

/*.menu-nav .menu-header {
  display: none;
  padding: 15px;
  text-transform: uppercase;
  background: #151515;
  color: #FFF;
  font-weight: 700;
}

.menu-nav .menu-header>i {
  float: right;
  line-height: 20px;
}

.menu-nav .menu-list>li {
  display: inline-block;
}

.menu-nav .menu-list>li>a {
  display: block;
  padding: 15px;
  color: #FFF;
  text-transform: uppercase;
}

.menu-nav .menu-list>li>a:hover, .menu-nav .menu-list>li>a:focus, .menu-nav .menu-list>li.dropdown.open>a {
  color: #0088cf;
}*/

/*----------------------------*\
	Dropdowns
\*----------------------------*/

/*.custom-menu {
  position: absolute;
  padding: 15px;
  background: #FFF;
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 100;
  top: 100%;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.dropdown.open>.custom-menu {
  opacity: 1;
  visibility: visible;
}*/

/*-- Default Dropdown --*/

/*.dropdown.default-dropdown>.custom-menu {
  border-top: 2px solid #0088cf;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(15px);
  -ms-transform: translateX(-50%) translateY(15px);
  transform: translateX(-50%) translateY(15px);
}

.dropdown.default-dropdown.open>.custom-menu {
  -webkit-transform: translateX(-50%) translateY(0px);
  -ms-transform: translateX(-50%) translateY(0px);
  transform: translateX(-50%) translateY(0px);
}

.dropdown.default-dropdown>.custom-menu>li>a {
  display: block;
  padding: 10px 0px;
  text-transform: uppercase;
}*/

/*-- Mega Dropdown --*/

/*.dropdown.mega-dropdown.full-width {
  position: static !important;
}

.dropdown.mega-dropdown>.custom-menu {
  border-top: 2px solid #0088cf;
  left: 0;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  width: auto;
  min-width: 750px;
  max-width: 100%;
}

.dropdown.mega-dropdown.full-width>.custom-menu {
  width: 100%;
}

.dropdown.mega-dropdown.open>.custom-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}*/

/*-- Side Dropdown --*/

/*.dropdown.side-dropdown>.custom-menu {
  border-left: 2px solid #0088cf;
  left: 100%;
  top: 0;
  width: 750px;
  -webkit-transform: translate(15px, 0px);
  -ms-transform: translate(15px, 0px);
  transform: translate(15px, 0px);
}

.dropdown.side-dropdown.open>.custom-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}*/

/*----------------------------*\
	Mobile nav
\*----------------------------*/

/*#header .nav-toggle {
  display: none;
}*/

@media only screen and (max-width: 991px) {
    /*#header .nav-toggle {
    display: inline-block;
  }
  header .pull-left, header .pull-right {
    float: none !important;
  }
  header .pull-right {
    margin-top: 10px;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 270px;
    width: 0%;
    overflow: hidden;
    background-color: #FFF;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    z-index: 990;
  }
  #responsive-nav.open {
    width: 100%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  #responsive-nav .dropdown .custom-menu {
    display: none;
    position: static;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid #0088cf;
  }
  #responsive-nav .dropdown.open .custom-menu {
    display: block;
    min-width: auto;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .category-nav .category-list, .menu-nav .menu-list {
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 100px);
  }
  .category-nav .category-list.open, .menu-nav .menu-list.open {
    display: block;
  }
  .menu-nav .menu-header, .category-nav .category-header {
    cursor: pointer;
  }
  .category-nav {
    float: none;
    width: 100%;
  }
  .category-nav .category-list {
    position: static;
  }
  .menu-nav .menu-header {
    display: block;
  }
  .menu-nav .menu-list {
    float: none;
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
  }
  .menu-nav .menu-list>li {
    display: block;
  }
  .menu-nav .menu-list>li+li {
    border-top: 1px solid #DADADA;
  }
  .menu-nav .menu-list>li>a {
    color: #151515;
  }
  #navigation.shadow:after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
  }*/

}

/*=========================================================
	04 -> BANNERS
===========================================================*/

.banner {
    display: block;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .banner > img {
        width: 100%;
    }

.top-img > img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.food-img > img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.banner-slnt {
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
   clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);*/
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 100% 95%, 50% 100%, 0% 95%, 0% 0%);
    clip-path: polygon(100% 0%, 100% 100%, 100% 95%, 50% 100%, 0% 95%, 0% 0%);
}

.banner.banner-1 .banner-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner.banner-2 .banner-caption {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
}

.banner h1 {
    font-size: 46px;
    text-transform: uppercase;
}

/*=========================================================
	05 -> HOME SLIDER
===========================================================*/

#home .home-wrap {
    margin-left: 0px;
}

#home-slick .banner {
    margin: 0px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

.product .product-old-price {
    color: #0088cf;
    font-size: 70%;
}

.product .product-rating {
    display: inline-block;
}

    .product .product-rating > i {
        color: #FFB656;
    }

        .product .product-rating > i.empty {
            color: #DADADA;
        }

.product .product-label > span {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    color: #FFF;
    background-color: #151515;
    z-index: 22;
}

    .product .product-label > span.sale {
        background-color: #0088cf;
    }

.product .product-countdown {
    z-index: 22;
}

    .product .product-countdown > li {
        display: inline-block;
        margin-right: -4px;
    }

        .product .product-countdown > li + li:before {
            content: ":";
            color: #FFF;
            background: #151515;
            padding: 2px;
        }

        .product .product-countdown > li > span {
            display: inline-block;
            color: #FFF;
            font-weight: 700;
            padding: 10px;
            background: #0088cf;
        }

/*----------------------------*\
	Single product
\*----------------------------*/

.product.product-single {
    margin-top: 15px;
    margin-bottom: 15px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    border: 1px solid #dadada;
}

    .product.product-single:hover {
        -webkit-box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
        box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    .product.product-single .product-thumb {
        position: relative;
        margin-bottom: 0px;
    }

        .product.product-single .product-thumb > img {
            max-width: 250px;
        }

        .product.product-single .product-thumb:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.7);
            visibility: hidden;
            z-index: 0;
            -webkit-transition: 0.3s all;
            transition: 0.3s all;
        }

    .product.product-single:hover .product-thumb:after {
        opacity: 0.7;
        visibility: visible;
    }

    .product.product-single .quick-view {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        visibility: hidden;
        z-index: 20;
    }

    .product.product-single:hover .quick-view {
        opacity: 1;
        visibility: visible;
    }

    .product.product-single .product-label {
        position: absolute;
        left: 0;
        top: 0;
    }

        .product.product-single .product-label > span {
            display: block;
        }

    .product.product-single .product-countdown {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        text-align: center;
    }

    .product.product-single .product-body {
        padding: 15px;
    }

    .product.product-single .product-price {
        display: inline-block;
    }

        .product.product-single .product-price span {
            display: inline-block;
            color: #0088cf;
            padding-left: 5px;
        }

    .product.product-single .product-rating {
        float: right;
        margin-top: 5px;
    }

    .product.product-single .product-name {
        font-size: 16px;
    }

    .product.product-single .product-btns {
        margin-top: 20px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

    .product.product-single:hover .product-btns {
        opacity: 1;
        visibility: visible;
    }

    /*-- hot product --*/

    .product.product-single.product-hot {
        border: 2px solid #dadada;
        background: #f3f3f3;
    }

        .product.product-single.product-hot .product-btns {
            opacity: 1;
            visibility: visible;
        }

/*----------------------------*\
	 Widget product
\*----------------------------*/

.product.product-widget {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .product.product-widget .product-thumb {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
    }

        .product.product-widget .product-thumb > img {
            width: 100%;
        }

    .product.product-widget .product-body {
        padding-left: 75px;
        padding-top: 10px;
        min-height: 60px;
    }

    .product.product-widget .product-price {
        font-size: 14px;
        margin-bottom: 5px;
    }

        .product.product-widget .product-price .qty {
            font-size: 14px;
            font-weight: 400;
        }

    .product.product-widget .product-name {
        font-size: 14px;
    }

    .product.product-widget .cancel-btn {
        position: absolute;
        right: 0px;
        top: 10px;
        background-color: transparent;
        border: none;
        color: #DADADA;
    }

        .product.product-widget .cancel-btn:hover {
            color: #151515;
        }

/*----------------------------*\
	Product slick
\*----------------------------*/

.product-slick .slick-slide {
    margin-right: 15px;
    margin-left: 15px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

#aside .aside {
    margin-bottom: 30px;
}

    #aside .aside:last-child {
        margin-bottom: 0px;
    }

.aside .aside-title {
    position: relative;
    border-bottom: 1px solid #DADADA;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 30px;
    margin-top: 15px;
    line-height: 24px;
    font-size: 18px;
}

    .aside .aside-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1.5px;
        height: 3px;
        width: 60px;
        background-color: #0088cf;
    }

/*-- Filter list --*/

.filter-list {
    margin-bottom: 15px;
}

    .filter-list > li {
        display: inline-block;
        margin-right: 2px;
        margin-bottom: 6px;
    }

        .filter-list > li:last-child {
            margin-right: 0px;
        }

    .filter-list li a {
        position: relative;
        padding: 0px 5px 0px 20px;
    }

        .filter-list li a:before {
            content: "\f00d";
            font-family: FontAwesome;
            position: absolute;
            left: 4px;
            top: 5px;
            line-height: 12px;
            font-size: 9px;
            color: #FFF;
            background: #151515;
            width: 12px;
            text-align: center;
            border-radius: 50%;
            height: 12px;
        }

/*-- Price Filter --*/

#price-slider {
    margin: 60px 0px 50px;
}

.noUi-target {
    background-color: #DADADA;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0px;
}

.noUi-connect {
    background-color: #0088cf;
}

.noUi-horizontal {
    height: 4px;
}

    .noUi-horizontal .noUi-handle {
        width: 12px;
        height: 12px;
        left: -6px;
        top: -4px;
        border: none;
        background: #151515;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 0px;
    }

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.noUi-tooltip {
    border: none;
    color: #FFF;
    background: #151515;
    border-radius: 0px;
}

/*----------------------------*\
	Store
\*----------------------------*/

#store {
    margin-top: 15px;
    padding-top: 30px;
    border-top: 1px solid #DADADA;
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DADADA;
}

/*-- store filter --*/

.row-filter {
    display: inline-block;
    vertical-align: top;
}

    .row-filter > a {
        display: inline-block;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        color: #FFF;
        background-color: #151515;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

        .row-filter > a:hover {
            opacity: 0.9;
        }

        .row-filter > a.active {
            background-color: #0088cf;
        }

.sort-filter {
    display: inline-block;
    margin-left: 15px;
}

    .sort-filter select.input {
        width: 120px;
    }

.page-filter select.input {
    width: 90px;
}

.page-filter {
    display: inline-block;
}

.store-pages {
    display: inline-block;
    margin-left: 15px;
}

    .store-pages li {
        display: inline-block;
        margin-right: 6px;
    }

        .store-pages li a {
            display: block;
            min-width: 10px;
            text-align: center;
        }

        .store-pages li.active {
            color: #0088cf;
        }

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-view .slick-arrow {
    opacity: 0;
}

#product-main-view:hover .slick-arrow {
    opacity: 1;
}

#product-view {
    margin-top: 10px;
    margin-bottom: 15px;
}

    #product-view .product-view.slick-slide {
        opacity: 0.2;
    }

        #product-view .product-view.slick-slide.slick-current {
            opacity: 1;
            -webkit-box-shadow: 0px 0px 0px 2px #0088cf inset;
            box-shadow: 0px 0px 0px 2px #0088cf inset;
        }

    #product-view .product-view {
        padding: 7.5px;
    }

.product-view > img {
    width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/
.productside {
    -webkit-box-shadow: 0px 0px 0px 2px #0088cf inset;
    box-shadow: 0px 0px 0px 2px #0088cf inset;
    border: 2px solid #0088cf;
}

.product-name-side {
    color: #fff;
    text-shadow: 1px 0px 2px #000;
}

.product.product-details .product-name {
    margin-top: 15px;
}

.product.product-details .product-rating {
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.product.product-details .product-options {
    padding-top: 30px;
    margin-bottom: 15px;
    border-top: 1px solid #DADADA;
    margin-top: 15px;
}

.product-options .size-option {
    margin-bottom: 15px;
}

.size-option > li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: top;
}

    .size-option > li:last-child {
        margin-right: 0px;
    }

    .size-option > li > a {
        display: block;
        border: 1px solid #DADADA;
        font-weight: 700;
        padding: 2px 7px 0px 8px;
    }

    .size-option > li.active a {
        color: #0088cf;
        border-color: #0088cf;
    }

.color-option > li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: top;
}

    .color-option > li:last-child {
        margin-right: 0px;
    }

    .color-option > li > a {
        display: block;
        width: 20px;
        height: 20px;
    }

    .color-option > li.active a {
        -webkit-box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px #0088cf;
        box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px #0088cf;
    }

.product.product-details .qty-input {
    display: inline-block;
}

    .product.product-details .qty-input .input {
        width: 90px;
    }

/*----------------------------*\
	Product tab
\*----------------------------*/

.product-tab {
    margin-top: 30px;
}

    .product-tab .tab-nav {
        border-bottom: 1px solid #DADADA;
        margin-bottom: 30px;
    }

        .product-tab .tab-nav li {
            display: inline-block;
        }

            .product-tab .tab-nav li + li {
                margin-left: 30px;
            }

            .product-tab .tab-nav li a {
                display: block;
                padding: 15px 0px;
                text-transform: uppercase;
                font-weight: 700;
            }

            .product-tab .tab-nav li.active {
                position: relative;
            }

                .product-tab .tab-nav li.active a {
                    color: #0088cf;
                }

                    .product-tab .tab-nav li.active a:after {
                        content: "";
                        position: absolute;
                        left: 0;
                        bottom: -1.5px;
                        height: 3px;
                        width: 30px;
                        background-color: #0088cf;
                    }

/*-- reviews --*/

.single-review {
    margin-bottom: 30px;
}

    .single-review .review-heading > div {
        display: inline-block;
    }

        .single-review .review-heading > div + div {
            margin-left: 10px;
        }

    .single-review .review-rating {
        display: inline-block;
    }

        .single-review .review-rating > i {
            color: #FFB656;
        }

            .single-review .review-rating > i.empty {
                color: #DADADA;
            }

    .single-review .review-body {
        margin-top: 10px;
    }

.reviews-pages li {
    display: inline-block;
    margin-right: 6px;
}

    .reviews-pages li a {
        display: block;
        min-width: 10px;
        text-align: center;
    }

    .reviews-pages li.active {
        color: #0088cf;
    }

/*-- review form --*/

.review-form textarea.input {
    height: 90px;
}

.review-form .input-rating .stars {
    display: inline-block;
    vertical-align: top;
}

    .review-form .input-rating .stars input[type="radio"] {
        display: none;
    }

    .review-form .input-rating .stars > label {
        float: right;
        cursor: pointer;
        padding: 0px 3px;
        margin: 0px;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

        .review-form .input-rating .stars > label:hover, .review-form .input-rating .stars > label:hover ~ label {
            -webkit-transform: scale(1.5);
            -ms-transform: scale(1.5);
            transform: scale(1.5);
        }

        .review-form .input-rating .stars > label:before {
            content: "\f006";
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            color: #DADADA;
            font-size: 14px;
            -webkit-transition: 0.3s all;
            transition: 0.3s all;
        }

        .review-form .input-rating .stars > label:hover:before, .review-form .input-rating .stars > label:hover ~ label:before {
            content: "\f005";
            color: #FFB656;
        }

    .review-form .input-rating .stars > input:checked label:before, .review-form .input-rating .stars > input:checked ~ label:before {
        content: "\f005";
        color: #FFB656;
    }

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.terms-methods {
    margin-bottom: 30px;
}

/*-- shopping cart table --*/

.shopping-cart-table > tbody > tr > td, .shopping-cart-table > tbody > tr > th, .shopping-cart-table > tfoot > tr > td, .shopping-cart-table > tfoot > tr > th, .shopping-cart-table > thead > tr > td, .shopping-cart-table > thead > tr > th {
    padding: 15px 0px;
    vertical-align: middle;
    border-top: 1px solid #DADADA;
}

.shopping-cart-table > thead > tr > th {
    color: #151515;
    text-transform: uppercase;
    border-bottom: 1px solid #DADADA;
}

.shopping-cart-table > tbody > tr:last-child > td {
    border-bottom: 1px solid #DADADA;
}

.shopping-cart-table > tfoot > tr > td, .shopping-cart-table > tfoot > tr > th {
    color: #151515;
    border-top: 0px;
}

    .shopping-cart-table > tfoot > tr > td:not(.empty), .shopping-cart-table > tfoot > tr > th:not(.empty) {
        padding: 15px;
        background-color: #F6F7F8;
        border: 1px solid #DADADA;
    }

.shopping-cart-table > tbody > tr > .details > a {
    font-size: 18px;
    font-weight: 700;
}

.shopping-cart-table > tbody > tr > .thumb > img {
    width: 60px;
}

.shopping-cart-table > tbody > tr > .qty .input {
    width: 90px;
}

.shopping-cart-table > tbody > tr > .price {
    font-size: 18px;
}

.shopping-cart-table > tbody > tr > .total {
    font-size: 18px;
}

.shopping-cart-table > tfoot > tr > .sub-total {
    font-size: 18px;
}

.shopping-cart-table > tfoot > tr > .total {
    font-size: 24px;
    color: #0088cf;
}

/*=========================================================
	10 -> FOOTER
===========================================================*/

.footer {
    margin: 10px 10px 0px 8px;
}

    .footer .footer-header {
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 15px;
        border-bottom: 2px solid #969595;
        position: relative;
    }

        .footer .footer-header:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1.5px;
            height: 2px;
            width: 35%;
            background: #0088cf;
        }

.footer-pad {
    padding-top: 30px;
}

.footer-logo {
    margin-bottom: 30px;
}

    .footer-logo .logo {
        display: inline-block;
    }

        .footer-logo .logo > img {
            width: auto;
            max-height: 40px;
        }

.footer-social > li:nth-child(odd) {
    background: #0088cf;
}

.footer-social > li:nth-child(even) {
    background: #ff7f00;
}

.footer-social > li {
    color: #fff !important;
    font-size: 14px;
    padding: 8px;
    margin: 4px;
    width: 35px;
    height: 32px;
    display: inline-block;
    text-align: center;
}

    .footer-social > li > a {
        color: #fff !important;
    }

        .footer-social > li > a:hover {
            color: #fff !important;
        }

    .footer-social > li:hover, .footer-social > li:focus {
        background: #151515;
        color: #fff !important;
    }

@media (max-width: 480px) {
    .footer-social ul {
        display: block;
        width: 100%;
    }

        .footer-social ul > li {
            display: inline-block;
            text-align: center;
            width: 100%;
        }
}

.footer-social-size {
    font-size: 30px;
}

.footer-copyright {
    margin-top: 15px;
    text-transform: capitalize;
    font-size: 12px;
}

/*=========================================================
	11 -> SLICK
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: #151515;
    z-index: 22;
}

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        background: #0088cf;
    }

    .slick-prev:before, .slick-next:before {
        color: #FFF;
    }

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.custom-nav .slick-prev, .custom-nav .slick-next {
    display: inline-block;
    position: static;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
    width: 10px;
    height: 10px;
}

    .slick-dots li button:before {
        content: "";
        opacity: 1;
        background: #DADADA;
        border-radius: 50%;
    }

    .slick-dots li.slick-active button:before {
        background-color: #0088cf;
    }

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}

/*=========================================================
	12 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 991px) {
    #home .home-wrap {
        margin-left: 0px;
    }

    #aside {
        margin-bottom: 60px;
    }

    .product-reviews {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .banner h1 {
        font-size: 36px;
    }

    .store-filter .pull-right, .store-filter .pull-left {
        float: none !important;
    }

    .store-filter .pull-right {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }

    .team-clm {
        display: flex;
        flex-wrap: wrap;
        max-width: 98%;
        padding: 6px;
    }

    .wwd-div-element {
        width: 98%;
        min-width: 300PX;
        margin: 1.0%;
    }

    .wwd-div-element-food {
        width: 98%;
        min-width: 300PX;
        margin: 0.75%;
    }
}

.homefixed-bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-image: url("/Images/fixbk1.jpg");
    margin-top: 25px;
    margin-bottom: 25px;
    z-index: 1;
}

    .homefixed-bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,0.5);
        z-index: 2;
    }

    .homefixed-bg p {
        position: absolute;
        padding: 5%;
        z-index: 3;
        color: #fff !important;
        font-size: 13px;
        text-align: center;
    }

.scroll-bg {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 70px;
    color: #fff;
}

.dibpmg {
    width: 100%;
    z-index: 1;
    position: relative;
    border-bottom:2px #0088cf solid;
}

    .dibpmg img {
        width: 100%;
        max-height: 250px;
        overflow: hidden;
        background: no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .dibpmg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.4);
        z-index: 2;
    }

    .dibpmg h2 {
        position: absolute;
        bottom: 1.25%;
        z-index: 3;
        color: #fff !important;
        font-size: 45px;
        text-shadow: 2px 2px 2px #000;
        text-align: center;
    }
/*.dibpmg h2  {   
    color:#fff !important;
    font-size:45px;
    text-shadow:2px 2px 2px #000;
}*/
.prdpageimage {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    bottom: 0;
}
.Pagecategory {
        border: 2px solid #dadada;
        background: #f3f3f3;
    }
.Pagecategory .section-title {
      position: relative;
    margin: 10px 5px 10px 5px;
     border-bottom: 2px solid #DADADA;
}
 .Pagecategory .section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 35%;
    background: #0088cf;
}
     .Pagecategory .section-title> h1 {
        display: inline-block;
        text-transform: capitalize;
        font-size:1.8em;
        padding:5px 0px 5px;       
    }
    .Pagecategory .section-title .title1 {
        display: inline-block;
        text-transform: capitalize;
    }    
     .Pagecategory ul {
    list-style-type: none;
    text-align: left;
    margin: 15px 5px 5px 15px;
}

    .Pagecategory ul li {
        border-bottom: 1px solid #e7e7e7;
        margin-bottom: 5PX;
        padding-bottom: 5PX;
        padding-top: 5PX;
    }  
     .Pagecategory ul li .catbtn {     
       color:#151515;
    }  
    .Pagecategory ul li {
       -webkit-transition:.8s;-moz-transition:.8s;-o-transition:.8s;transition:.8s;
       color:#151515;
    }  
    .Pagecategory ul li .catbtn:hover, .Pagecategory ul li .catbtn:focus {color: #0088cf;}
   
    .Pagecategory ul li:hover, .Pagecategory ul li:focus {color: #0088cf;-webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}
   
    
    .package-category {
        border: 1px solid #015c8c;
        background: #0088cf;
        margin:25px 0px 25px;
    }
.package-category .section-title {
      position: relative;
    margin: 10px 5px 10px 5px;
     border-bottom: 2px solid #015c8c;
}
 .package-category .section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 35%;
    background: #fff;
}
     .package-category .section-title> h1 {
        display: inline-block;
        text-transform: capitalize;
        font-size:1.8em;
        padding:5px 0px 5px;   
        color:#fff;    
    }
    .package-category .section-title .title1 {
        display: inline-block;
        text-transform: capitalize;
    }
      .package-category ul {
    list-style-type: none;
    text-align: left;
    margin: 15px 5px 5px 15px;
}

    .package-category ul li {
        border-bottom: 1px solid #015c8c;
        margin-bottom: 5PX;
        padding-bottom: 5PX;
        padding-top: 5PX;
    }
      .package-category ul li .catbtn {      
       color:#fff;
    }  
    .package-category ul li .catbtn:hover, .package-category ul li .catbtn:focus {color: #d9e8f0;}
   
    .package-category ul li {
       -webkit-transition:.8s;-moz-transition:.8s;-o-transition:.8s;transition:.8s;
       color:#fff;
    }  
    .package-category ul li:hover, .package-category ul li:focus {color: #d9e8f0;-webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}
   
       .section-title .titlecom{
        display: inline-block;
        text-transform: capitalize;
        font-size:1.8em;    
    }
   
.title1 span {
    font-size: 19px;
    color: #0088cf;
}

.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 35%;
    background: #0088cf;
}

.googlemapw {
    width: 100%;
    min-height: 500px !important;
    overflow: hidden;
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    bottom: 0;
}

.clm-row {
    width: 100%;
    height: auto;
    display: flex;
}

.column-div {
    -ms-flex: 1; /* IE 10 */
    flex: 1;
}

.gallclmstyle {
    width: 100%;
}

.Videosize {
    width: 100% !important;
    height: auto !important;
}

.Video-bk {
    background: linear-gradient(#e7e6e6,#f8f8f8, #e7e6e6);
    -webkit-box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid #dadada;
}

.prdimage {
    width: 125px;
    height: auto;
    object-fit: cover;
}

.adv-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.photoimage {
    width: 75px;
    height: auto;
    object-fit: cover;
}

.post-job {
    background: #0088cf;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    position: relative;
    text-decoration: none;
    -webkit-animation: flash 1500ms infinite;
    -moz-animation: flash 1500ms infinite;
    -o-animation: flash 1500ms infinite;
    animation: flash 1500ms infinite;
}

    .post-job:hover, post-job:focus {
        background: #0088cf;
        color: #fff;
    }

@-webkit-keyframes flash {
    0% {
        background-color: #0088cf;
        -webkit-box-shadow: 0 0 3px #0088cf;
    }

    50% {
        background-color: #fff;
        -webkit-box-shadow: 0 0 40px #fff;
    }

    100% {
        background-color: #0088cf;
        -webkit-box-shadow: 0 0 3px #0088cf;
    }
}

@-moz-keyframes flash {
    0% {
        background-color: #0088cf;
        -moz-box-shadow: 0 0 3px #0088cf;
    }

    50% {
        background-color: #fff;
        -moz-box-shadow: 0 0 40px #fff;
    }

    100% {
        background-color: #0088cf;
        -moz-box-shadow: 0 0 3px #0088cf;
    }
}

@-o-keyframes flash {
    0% {
        background-color: #0088cf;
        box-shadow: 0 0 3px #0088cf;
    }

    50% {
        background-color: #fff;
        box-shadow: 0 0 40px #fff;
    }

    100% {
        background-color: #0088cf;
        box-shadow: 0 0 3px #0088cf;
    }
}

.fundus {
    background: #0088cf;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    position: relative;
    text-decoration: none;
    -webkit-animation: glowing 1200ms infinite;
    -moz-animation: glowing 1300ms infinite;
    -o-animation: glowing 1300ms infinite;
    animation: glowing 1300ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #0088cf;
        -webkit-box-shadow: 0 0 3px #0088cf;
    }

    50% {
        background-color: #fff;
        -webkit-box-shadow: 0 0 40px #fff;
    }

    100% {
        background-color: #0088cf;
        -webkit-box-shadow: 0 0 3px #0088cf;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #0088cf;
        -moz-box-shadow: 0 0 3px #0088cf;
    }

    50% {
        background-color: #fff;
        -moz-box-shadow: 0 0 40px #fff;
    }

    100% {
        background-color: #0088cf;
        -moz-box-shadow: 0 0 3px #0088cf;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #0088cf;
        box-shadow: 0 0 3px #0088cf;
    }

    50% {
        background-color: #fff;
        box-shadow: 0 0 40px #fff;
    }

    100% {
        background-color: #0088cf;
        box-shadow: 0 0 3px #0088cf;
    }
}

.fundus:hover, fundus:focus {
    background: #0088cf;
    color: #fff;
}

.fundus-pad {
    margin-right: 5px;
}

.fund-txt {
    color: #fff;
    padding-right: 5px;
}

.log-out {
    padding: 7px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    background: #0088cf;
    border-radius: 12px;
}

    .log-out:hover, log-out:focus {
        background: #0088cf !important;
    }

.full-page-width {
    padding: 0.5%;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 99%;
}

.team-clm {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
    max-width: 49%;
    padding: 6px;
}

.teamddl {
    position: relative;
    min-height: 1px;
    padding-right: 8px;
    padding-left: 8px;
}

    .teamddl select {
        line-height: 1;
        border: 1px solid #DADADA;
        height: auto;
        -webkit-appearance: listbox;
        color: #0088cf;
        padding: 5px;
        outline: none;
        margin: 5px;
        width: 100%;
    }

.donorimage {
    width: 100%;
}


.black-opacity {
    position: relative;
    z-index: 9999;
}

.banner-m-area {
    padding: 100px 0px;
    background: fixed;
}

    .banner-m-area.black-opacity:before {
        opacity: .7;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    }

.admintopnav {
    padding-left: 3%;
}

.adminmain {
    padding: 3%;
    width: 96%;
    height: 100%;
    min-height: 450px;
    display: block;
}

.fam {
    color: #5b5b5b;
    font-weight: lighter;
}

.famj {
    color: #5b5b5b;
    margin-right: 5px;
}

.search-background {
    background: linear-gradient(#dedede, #e7e6e6);
    border: 2px solid #dadada;
    border-radius: 8px;
    padding: 5px;
    /*width:auto;*/
}

.grid-overlay {
    position: absolute; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 99999; /* Specify a stack order in case you're using a different order for other elements */
    clear: both;
    cursor: pointer; /* Add a pointer on hover */
    display: block;
}

    .grid-overlay .close {
        position: absolute;
        top: 20px;
        right: 30px;
        width: 25px;
        height: 25px;
        transition: all 200ms;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
        background: #000;
        padding: 2px;
        border-radius: 50%;
    }

        .grid-overlay .close:hover {
            color: orange;
        }

    .grid-overlay .frm-pad {
        margin-top: 0.5%;
    }


.clm-ban {
    z-index: 1;
    position: relative;
}

    .clm-ban::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 2;
    }

    .clm-ban:hover {
        opacity: 1;
    }

    .clm-ban span {
        position: absolute;
        z-index: 3;
        top: 8%;
        left: 3%;
        right: 3%;
        color: #fff !important;
        font-size: 18px;
        text-shadow: 1px 0px 1px #000;
        text-align: center;
        font-weight: 600;
    }

    .clm-ban a {
        position: absolute;
        z-index: 3;
        bottom: 1.75%;
        left: 35%;
        color: #fff !important;
        text-align: center;
        font-size: 15px;
    }

.clm-ban-btn {
    color: #2b2b2b;
    background-color: #fff;
    padding: 8px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -o-transition: .8s;
    transition: .8s;
    -webkit-box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #dadada;
}

.clm-ban h2 {
    padding: 0px;
}

.clm-ban-btn:hover, .clm-ban-btn:focus {
    color: #0088cf;
    background-color: #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-intro {
    padding: 15px;
}

    .home-intro p div {
        padding: 5px;
        font-size: 18px;
        text-align: justify;
    }

.home-intro-border {
    border: 1px solid #dadada;
}

.grd-table {
    width: 100%;
}

    .grd-table td {
        border: 1px solid #dadada;
        padding: 5px;
    }

.callus {
    font-weight: 600;
}

.volunteer-bk {
    background: #ccc;
    font-weight: 600;
}

.shramdaan {
    color: #0088cf;
}


.pdf-block {
    display: block;
    padding: 5px;
}

    .pdf-block .datepdf {
        font-size: 12px;
    }

    .pdf-block .titlepdf {
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
    }

        .pdf-block .titlepdf:hover {
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            color: #0088cf;
        }

    .pdf-block ul li {
        display: inline-block;
        list-style: none;
    }

        .pdf-block ul li img {
            width: auto;
            height: 25px;
        }

.pdf-menu {
    font-weight: 600;
    padding-right: 10px;
}

.user-master-content {
    min-height: 450px;
}

.com-logo {
    height: 100px;
    width: auto;
}

.div-validator {
    display: inline-block;
    text-align: right;
    float: right;
    margin-right: 2%;
    font-size: 12px;
    font-weight: 700;
    color: red;
}

.job-box-border {
    display: block;
    width: 100%;
}

.job-box-header {
    background: #0088cf;
}

    .job-box-header h2 {
        color: #FFF;
    }

.job-box-bk {
    background: #e7e6e6;
}

.job-box-border .head-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.job-box-border .jobb-title {
    font-weight: 600;
}

.job-box-border .jobb-btn {
    font-weight: 600;
    color: #0088cf;
}

    .job-box-border .jobb-btn:hover, .jobb-btn:focus {
        font-weight: 600;
        color: #0088cf;
    }

.btnblink {
    -webkit-animation: bblink 1s linear infinite;
    -moz-animation: bblink 1s linear infinite;
    animation: bblink 1s linear infinite;
}

@keyframes bblink {
    0% {
        color: #0088cf;
    }

    100% {
        color: #0088cf;
    }
}

@-webkit-keyframes bblink {
    0% {
        color: #0088cf;
    }

    100% {
        color: #0088cf;
    }
}

.job-box-border ul {
    display: block;
    list-style: none;
}

    .job-box-border ul li {
        border: 1px solid #dadada;
        padding: 15px 0px 15px;
    }

        .job-box-border ul li span {
            padding: 10px;
        }


.news-bk {
    background: #0088cf;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}

.top-job-bk {
    background: linear-gradient(#fff, #fff, #e7e6e6);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}

