@charset "utf-8";
/*------------------------------------------------------------------
[Main Theme Styles]

Project:  BeaRR - ThemeBear WordPress theme framework
Author: ThemeBear.co
Version:  1.2.3
Last change:  07/04/2017
Primary use:  

/*------------------------------------------------------------------
[Table of contents]

00. IMPORTS - MIXINS / VARIABLES (LESS)
01. General
02. Other itens here and below

-------------------------------------------------------------------*/
/* ==========================================================
! >> 00. IMPORTS - MIXINS / VARIABLES (LESS)
==============	=========================================== */
/*--------------------------------------------------------------
>>> _S BASE STYLES - TABLE OF CONTENTS
----------------------------------------------------------------
            # Normalize
            # Typography
            # Elements
            # Forms
            # Navigation
              ## Links
              ## Menus
            # Accessibility
            # Alignments
            # Clearings
            # Widgets
            # Content
              ## Posts and pages
              ## Asides
              ## Comments
            # Infinite scroll
            # Media
              ## Captions
              ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
select {
  border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  padding: 3px;
}
textarea {
  padding-left: 3px;
  width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
.main-navigation ul ul {
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
/* ! >> Media Queries
==============  =========================================== */
/* ! >> Colors
========================================================= */
.layout-boxes-style {
  padding: 20px;
  background: #ffffff;
  border: 0px solid #cccccc;
  border-radius: 0px;
  -moz-border-radius: 0px;
}
.text-border {
  border: 2px solid;
}
.gradient-bg {
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
}
.gradient-bg2 {
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
}
.gradient-border {
  background-clip: padding-box;
  border-image: -webkit-linear-gradient(45deg, #b54cd8, #4f0072) 10 stretch;
}
.color1 {
  color: #8219a5;
}
.color2 {
  color: #929f9f;
}
.color3 {
  color: #8219a5;
}
.color4 {
  color: #111111;
}
/* ! >> Fonts
========================================================= */
.font1 {
  font-family: Open Sans;
}
.font2 {
  font-family: Open Sans;
}
/* ! >> Animations Mixings & Helpers
========================================================= */
.anima1 {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.anima-none {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}
.anima-transform {
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}
/* ! >> CSS Mixins
========================================================= */
.box-shadow {
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
/* ! >> CSS Helpers
========================================================= */
.background-cover,
.bg-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.vertically-centered {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
.horizontally-centered {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
}
.absolute-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.no-transform {
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
}
.responsive-image {
  width: 100%;
}
.no-pl {
  padding-left: 0 !important;
}
.no-pr {
  padding-right: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-space {
  padding: 0 !important;
  margin: 0 !important;
}
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clean-list li {
  padding-left: 0;
  margin-left: 0;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
.position-fixed {
  position: fixed;
}
.vertically-centered {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
.horizontally-centered {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
}
.absolute-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.no-transform {
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
}
.image-zoom {
  overflow: hidden;
}
.image-zoom img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  max-width: 100%;
}
.image-zoom img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
}
.box-up-hover {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.box-up-hover:hover {
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
}
.box-slide-left {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.box-slide-left:hover {
  transform: translate(-10px, -10px);
  -webkit-transform: translate(-10px, -10px);
  -moz-transform: translate(-10px, -10px);
}
.box-slide-right {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.box-slide-right:hover {
  transform: translate(10px, -10px);
  -webkit-transform: translate(10px, -10px);
  -moz-transform: translate(10px, -10px);
}
/* ==========================================================
! >> 01. General
========================================================== */
html {
  background: #ffffff;
}
body {
  color: #555555;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  display: block;
  font-family: Open Sans;
}
@media (min-width: 1200px) {
  body.with-page-transition {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 1200px) {
  body.with-page-transition-hide {
    opacity: 0;
  }
}
html,
body {
  overflow-x: hidden;
}
@media (min-width: 1400px) {
  .container {
    width: 1280px;
  }
}
p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
}
a {
  color: #8219a5;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:visited {
  color: #8219a5;
}
a:hover {
  color: #929f9f;
}
a:focus {
  border: none;
  outline: none;
}
ul {
  padding: 0;
}
ul li {
  padding-left: 0;
  margin: 0;
  list-style-position: inside;
  margin-bottom: 5px;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: Open Sans;
}
table thead th {
  background: #8219a5;
  color: #ffffff;
  border: 1px solid #fff;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
table td,
table tbody th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 12px;
}
.page-content-fluid:after {
  content: '';
  display: block;
  clear: both;
}
.kc_col-sm-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.white-color {
  color: #fff !important;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #8219a5;
  font-size: 20px;
  height: 30px;
  width: 30px;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 88888;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  opacity: 1;
}
.back-to-top-hide {
  visibility: hidden;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  opacity: 0;
}
.content-area {
  padding: 110px 0 40px;
  position: relative;
  background-color: #ffffff;
}
.content-area-blog {
  background-color: #ffffff;
  background-repeat: repeat;
  background-position: center center;
}
.content-area-custom {
  padding-bottom: 0 !important;
  background-color: #ffffff;
}
.content-area-custom-home {
  padding: 0 !important;
  background-color: #ffffff;
}
.content-area-portfolio2 {
  padding-bottom: 0 !important;
  background-color: #ffffff;
}
.social-icons {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-icons li {
  padding-left: 0;
  margin-left: 0;
}
.social-icons a {
  display: block;
  height: 30px;
  width: 30px;
  background-color: #8219a5;
  border: 1px solid #8219a5;
  text-align: center;
  font-size: 18px;
  padding-top: 2px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social-icons a:hover {
  background-color: #929f9f;
}
/* ==========================================================
! >> Buttons
========================================================== */
.primary-btn {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.primary-btn:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.primary-btn.compact-btn {
  padding: 7px 36px;
}
.primary-btn:visited {
  color: #fff;
}
.primary-btn:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.primary-btn:hover:before {
  width: 100%;
}
.primary-btn .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.secondary-btn {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #929f9f;
}
.secondary-btn:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.secondary-btn.compact-btn {
  padding: 7px 36px;
}
.secondary-btn:visited {
  color: #fff;
}
.secondary-btn:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.secondary-btn:hover:before {
  width: 100%;
}
.secondary-btn .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.secondary-btn:before {
  background: #8219a5;
}
.secondary-btn:hover {
  background: #929f9f;
}
.primary-btn-small {
  padding: 5px 15px;
  font-size: 12px;
}
.primary-btn-alt {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-alt {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
}
/* ==========================================================
! Page Loader (Loader 1)
========================================================== */
/* 
* Loader style - 1
*/
#page-loader {
  display: none;
  visibility: hidden;
  width: 100%;
  height: 100%;
  color: #ffffff;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  font-family: Open Sans;
}
@media (min-width: 768px) {
  #page-loader {
    display: block;
    visibility: visible;
  }
}
#page-loader:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #757575;
  z-index: 1;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  border: 20px solid #fff;
  border-right: 0;
}
#page-loader:after {
  content: '';
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #757575;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  border: 20px solid #fff;
  border-left: 0;
}
.loader-out {
  opacity: 0;
}
.loader-out:before {
  transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -webkit-transform: translateX(-300px);
  opacity: 0;
}
.loader-out:after {
  transform: translateX(300px);
  -moz-transform: translateX(300px);
  -webkit-transform: translateX(300px);
  opacity: 0;
}
.loading-wrapper {
  width: 250px;
  position: fixed;
  top: 50%;
  margin-top: -70px;
  left: 50%;
  margin-left: -125px;
  opacity: 1;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  z-index: 9;
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.loading-wrapper-hide {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
}
.tp-loader {
  z-index: 10000;
  position: relative;
}
.loader-name {
  color: #ffffff;
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0px;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: bold;
  margin-top: 25px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: 35px;
}
.loader-name img {
  max-width: 230px;
}
.loader-job {
  border: 1px solid #ffffff;
  padding: 5px;
  text-align: center;
  font-weight: 200;
  margin-top: 5px;
  color: #ffffff;
  font-size: 13px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.loader-left {
  -webkit-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  -o-transform: translateX(-40px);
  transform: translateX(-40px);
  opacity: 0;
}
.loader-right {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
}
.loader-up {
  -webkit-transform: translateY(-80px);
  -moz-transform: translateY(-80px);
  -o-transform: translateY(-80px);
  transform: translateY(-80px);
  opacity: 0 !important;
}
.loader-down {
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
}
.loader-hide {
  opacity: 0;
}
.loader {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  top: 50%;
  animation: loader 2s infinite ease;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}
.loader-animation {
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.mask-loading {
  widows: 100%;
  background-color: transparent;
}
.spinner {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto;
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* 
* Loader style - 2
*/
.dots-loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dot {
  width: 12px;
  height: 12px;
  border: 2.4px solid #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  transform: scale(0);
  animation: fx 1000ms ease infinite 0ms;
}
.dot:nth-child(2) {
  animation: fx 1000ms ease infinite 200ms;
}
.dot:nth-child(3) {
  animation: fx 1000ms ease infinite 400ms;
}
@keyframes fx {
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 
* Loader style - 3
*/
.hourglass {
  display: block;
  background: #757575;
  margin: 3em auto;
  width: 2em;
  height: 4em;
  box-shadow: inset #757575 0 0 0 0, inset #ffffff 0 2em 0 0, inset #757575 0 0 4em 0;
  animation: hourglass 1s linear infinite;
}
.outer {
  fill: #fff;
}
.middle {
  fill: #757575;
}
@keyframes hourglass {
  0% {
    transform: rotate(0deg);
    box-shadow: inset #757575 0 0 0 0, inset #ffffff 0 2em 0 0, inset #757575 0 4em 0 0, inset #ffffff 0 4em 0 0;
  }
  80% {
    transform: rotate(0deg);
    box-shadow: inset #757575 0 2em 0 0, inset #ffffff 0 2em 0 0, inset #757575 0 2em 0 0, inset #ffffff 0 4em 0 0;
  }
  100% {
    transform: rotate(180deg);
    box-shadow: inset #757575 0 2em 0 0, inset #ffffff 0 2em 0 0, inset #757575 0 2em 0 0, inset #ffffff 0 4em 0 0;
  }
}
/* 
* Loader style - 4
*/
.cs-loader-inner label {
  font-size: 20px;
  opacity: 0;
  display: inline-block;
}
@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    transform: translateX(0px);
  }
  66% {
    opacity: 1;
    transform: translateX(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}
@-webkit-keyframes lol {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300px);
  }
}
.cs-loader-inner label:nth-child(6) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}
.cs-loader-inner label:nth-child(5) {
  -webkit-animation: lol 3s 100ms infinite ease-in-out;
  animation: lol 3s 100ms infinite ease-in-out;
}
.cs-loader-inner label:nth-child(4) {
  -webkit-animation: lol 3s 200ms infinite ease-in-out;
  animation: lol 3s 200ms infinite ease-in-out;
}
.cs-loader-inner label:nth-child(3) {
  -webkit-animation: lol 3s 300ms infinite ease-in-out;
  animation: lol 3s 300ms infinite ease-in-out;
}
.cs-loader-inner label:nth-child(2) {
  -webkit-animation: lol 3s 400ms infinite ease-in-out;
  animation: lol 3s 400ms infinite ease-in-out;
}
.cs-loader-inner label:nth-child(1) {
  -webkit-animation: lol 3s 500ms infinite ease-in-out;
  animation: lol 3s 500ms infinite ease-in-out;
}
/* 
* Loader style - 5
*/
.loader5-wrapper {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
}
.loader5-wrapper .leftEye,
.loader5-wrapper .rightEye {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  background: #dfdfc2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: leftEyeAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: leftEyeAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.loader5-wrapper .rightEye {
  -webkit-animation: rightEyeAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: rightEyeAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.loader5-wrapper .mouth {
  width: 10vh;
  height: 10vh;
  border-radius: 50%;
  border: solid 1.3vh #dfdfc2;
  border-right: solid 1.3vh rgba(223, 223, 194, 0);
  border-left: solid 1.3vh rgba(223, 223, 194, 0);
  border-bottom: solid 1.3vh rgba(223, 223, 194, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
  -webkit-animation: mouthAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: mouthAnimation 3s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@-webkit-keyframes mouthAnimation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(180deg);
    transform: translate(-50%, -50%) rotateX(180deg);
  }
  10% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
  40% {
    -webkit-transform: translate(-50%, -50%) rotateZ(320deg);
    transform: translate(-50%, -50%) rotateZ(320deg);
  }
  60% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }
}
@keyframes mouthAnimation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(180deg);
    transform: translate(-50%, -50%) rotateX(180deg);
  }
  10% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
  40% {
    -webkit-transform: translate(-50%, -50%) rotateZ(320deg);
    transform: translate(-50%, -50%) rotateZ(320deg);
  }
  60% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(900deg);
    transform: translate(-50%, -50%) rotateZ(900deg);
  }
}
@-webkit-keyframes leftEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }
  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }
  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@keyframes leftEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }
  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
  }
  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes rightEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  70% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  75% {
    width: 2vh;
    height: 2px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  80% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@keyframes rightEyeAnimation {
  0% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  50% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  60% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  70% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  75% {
    width: 2vh;
    height: 2px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  80% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  90% {
    width: 2vh;
    height: 2vh;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  100% {
    width: 5vh;
    height: 5vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/* ==========================================================
! Header
========================================================== */
/* 
* Header
*/
#top-bar {
  z-index: 8889 !important;
  background-color: #d71717;
  color: #ffffff;
  padding-top: 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #top-bar {
    display: block;
  }
}
#top-bar a {
  color: #ffffff;
  font-weight: 300;
}
#top-bar .top-bar-item {
  border-left: 1px dotted rgba(255, 255, 255, 0.5);
  padding: 0 15px;
  padding-top: 3px;
  font-size: 12px;
  opacity: 0.9;
  font-weight: lighter;
  font-style: italic;
}
#top-bar .top-bar-item:first-child {
  padding-left: 0;
  border-left: none;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  #top-bar .top-bar-item:first-child {
    margin-top: 0;
  }
}
#top-bar .top-bar-item .fa {
  color: #fff;
  margin-right: 10px;
}
#top-bar .topbar-right-text {
  padding-top: 10px;
}
#top-bar .top-header-login {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  top: -20px;
  opacity: 0.8;
  font-size: 12px;
}
#top-bar .top-header-login span {
  font-style: italic;
}
#top-bar .top-header-login span strong {
  text-decoration: underline;
}
#top-bar .top-header-menu {
  display: inline-block;
}
#top-bar .top-header-menu ul {
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
#top-bar .top-header-menu ul li {
  float: left;
}
#top-bar .top-header-menu ul a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  opacity: 0.8;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
#top-bar .top-header-menu ul a:hover {
  opacity: 1;
  background: #8219a5;
  color: #fff;
  text-decoration: none;
}
#top-bar .social-icons {
  display: inline-block;
  margin-top: 0px;
}
#top-bar .social-icons li {
  margin: 0 !important;
  padding: 0;
}
#top-bar .social-icons a {
  display: block;
  font-size: 11px;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 40px;
  height: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  border-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#top-bar .social-icons a:hover {
  background: #8219a5;
}
.navbar-collapse {
  border-top: 0 !important;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .navbar-collapse {
    margin-top: 0;
    display: block;
    width: 100%;
    text-align: right;
    padding-right: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .masthead-wrapper {
    display: flex;
    align-items: center;
  }
}
.navbar-default {
  background-color: transparent !important;
  border: 0;
  padding: 0;
  margin: 0;
}
.navbar-default .navbar-toggle {
  background-color: #ffffff !important;
  color: #666666 !important;
  position: relative;
  top: 5px;
}
.navbar-default .navbar-toggle a {
  color: #666666 !important;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #666666 !important;
}
.navbar-default .navbar-nav {
  border: 0 !important;
}
@media (min-width:992px) {
  .navbar-default .navbar-nav {
    padding-top: 3px;
    display: inline-block;
    float: none;
  }
}
.navbar-default .navbar-nav a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #666666;
}
.navbar-default .navbar-nav a:hover,
.navbar-default .navbar-nav a:active {
  color: #8219a5 !important;
}
.navbar-default .navbar-nav > li {
  margin-left: 2px;
}
.navbar-default .navbar-nav > li.active > a {
  background-color: transparent !important;
  color: #8219a5;
}
.navbar-default .navbar-nav > li.active > a:hover,
.navbar-default .navbar-nav > li.active > a:focus,
.navbar-default .navbar-nav > li.active > a:active {
  background-color: transparent !important;
  color: #8219a5;
}
.navbar-default .navbar-nav > li > a {
  font-family: Open Sans;
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  color: #666666;
  text-align: center;
  border: none;
  font-weight: bold;
  border-color: transparent;
  border-style: solid;
  border-width: 0 0 0 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  position: relative;
}
.navbar-default .navbar-nav > li > a:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #8219a5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(6px);
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  opacity: 0;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a.active {
  color: #8219a5 !important;
  background-color: transparent !important;
  border-color: #8219a5;
}
.navbar-default .navbar-nav > li > a:hover:after,
.navbar-default .navbar-nav > li > a:focus:after,
.navbar-default .navbar-nav > li > a.active:after {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 5px;
  }
}
@media (min-width: 1200px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 15px;
    line-height: 20px;
    padding: 10px 20px;
  }
}
.navbar-default .navbar-nav > li:first-child a {
  margin-left: 0;
}
.navbar-default .navbar-nav > li:first-child:before {
  display: none;
}
.navbar-default .navbar-nav .dropdown ul {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}
.navbar-default .navbar-nav .dropdown li {
  margin: 0;
  padding: 0;
}
.navbar-default .navbar-nav .dropdown li,
.navbar-default .navbar-nav .dropdown a {
  margin: 0;
  display: block;
}
.navbar-default .navbar-nav .dropdown li:hover,
.navbar-default .navbar-nav .dropdown a:hover,
.navbar-default .navbar-nav .dropdown li:focus,
.navbar-default .navbar-nav .dropdown a:focus,
.navbar-default .navbar-nav .dropdown li:active,
.navbar-default .navbar-nav .dropdown a:active {
  background-color: transparent;
}
.navbar-default .navbar-nav .dropdown.open > a {
  background-color: transparent;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav .dropdown.open .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    visibility: visible;
  }
}
.navbar-default .navbar-nav .dropdown-menu {
  background: #8219a5;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav .dropdown-menu {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    display: block;
    visibility: hidden;
    opacity: 0;
  }
}
@media (min-width:992px) {
  .navbar-default .navbar-nav .dropdown-menu {
    text-align: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
  }
}
.navbar-default .navbar-nav .dropdown-menu a {
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
}
.navbar-default .navbar-nav .dropdown-menu a:hover {
  background: #710894;
  color: #fff !important;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background: #710894;
}
#masthead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 10;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 8888;
}
#masthead.header-bg-transparent {
  background-color: transparent;
  background-image: none;
}
#masthead .header-logo {
  width: 314px;
  display: block;
}
#masthead .header-logo .site-title {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1;
  margin-top: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666666;
}
#masthead .header-logo .site-title a {
  color: #666666 !important;
  text-decoration: none;
}
#masthead .header-logo .site-description {
  color: #666666;
  opacity: 0.8;
}
#masthead .header-logo p {
  margin: 0;
}
#masthead .header-logo img {
  max-width: 160px;
}
@media (min-width: 768px) {
  #masthead .header-logo img {
    max-width: 100%;
  }
}
#masthead .custom-logo-link {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-fixed {
  position: fixed;
}
.topbar-fixed.topbar-hide {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  opacity: 0;
}
#masthead.masthead-fixed {
  position: fixed;
}
#masthead.masthead-fixed.header-stick {
  opacity: 0.9;
  background-color: #ffffff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  top: 0;
}
@media (min-width: 768px) {
  #masthead.masthead-fixed.header-stick {
    padding: 3px 0;
  }
  #masthead.masthead-fixed.header-stick:hover {
    opacity: 1;
  }
  #masthead.masthead-fixed.header-stick .logo {
    width: 100px;
    margin-top: 3px;
  }
  #masthead.masthead-fixed.header-stick .site-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  #masthead.masthead-fixed.header-stick #main-navigation {
    top: 57px;
  }
}
@media (min-width:992px) {
  #masthead.masthead-fixed.header-stick #main-navigation {
    top: 0;
    margin-top: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
#masthead.masthead-fixed.header-stick .bearr-wc-header-cart {
  padding-top: 6px !important;
}
@media (min-width: 768px) {
  .header-container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1400px) {
  .header-container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.bearr-page-heading {
  padding-top: 0px;
  padding-bottom: 20px;
  background: #8219a5;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}
.bearr-page-heading .page-title {
  margin-bottom: 2px;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 3px;
}
.bearr-page-heading .page-tagline {
  margin-bottom: 0;
  font-style: italic;
  font-size: 14px;
}
#page.with-top-bar #masthead {
  top: 40px;
}
#page.with-top-bar #masthead.masthead-fixed.header-stick {
  top: 0 !important;
}
body.admin-bar {
  margin: 0;
}
@media (min-width:992px) {
  body.admin-bar #masthead {
    top: 32px;
  }
  body.admin-bar #page.with-top-bar #masthead {
    top: 72px;
  }
  body.admin-bar #page.with-top-bar #masthead.masthead-fixed.header-stick {
    top: 32px !important;
  }
  body.admin-bar #page.with-top-bar #page {
    margin-top: 32px;
  }
  body.admin-bar #page.with-top-bar #top-bar {
    margin-top: 32px;
  }
}
@media (min-width:992px) {
  .masthead-row {
    display: flex;
    align-items: center;
  }
}
.bearr-wc-header-cart-wrapper {
  align-self: center;
  position: relative;
  top: -4px;
  left: -15px;
}
/* 
* Header
*/
.bearr-page-heading {
  padding-top: 0px;
  padding-bottom: 20px;
  background: #8219a5;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}
.bearr-page-heading .page-title {
  margin-bottom: 2px;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.bearr-page-heading .page-tagline {
  margin-bottom: 0;
  font-style: italic;
  font-size: 14px;
}
.bearr-mini-hero {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: absolute;
  background-attachment: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  text-align: center;
  color: #ffffff;
  padding-top: 130px;
  padding-bottom: 50px;
  -webkit-transition: all 0 ease-in-out;
  -moz-transition: all 0 ease-in-out;
  transition: all 0 ease-in-out;
}
@media (min-width: 768px) {
  .bearr-mini-hero {
    padding-top: 170px;
    padding-bottom: 90px;
  }
}
@media (min-width: 1400px) {
  .bearr-mini-hero {
    min-height: 450px;
  }
}
.bearr-mini-hero:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.bearr-mini-hero .container {
  position: relative;
  z-index: 1;
}
.bearr-mini-hero .bearr-mini-hero-title {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  border: 4px solid;
  border-color: #fff;
}
.bearr-mini-hero .bearr-mini-hero-title.with-border {
  margin-bottom: 15px;
}
@media (min-width: 1400px) {
  .bearr-mini-hero .bearr-mini-hero-title {
    margin-top: 60px;
  }
}
.bearr-mini-hero .bearr-mini-hero-subtitle {
  font-size: 18px;
  font-style: italic;
  font-weight: normal;
}
.bearr-mini-hero.bearr-mini-hero-color-bg:before {
  display: none;
}
.page-heading {
  background-color: #8219a5;
  padding: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.page-heading .page-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
  text-transform: none;
  color: #ffffff;
  position: relative;
  font-weight: bold;
}
.page-heading .page-title span {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}
.page-heading .taxonomy-description {
  font-style: italic;
  font-size: 14px;
}
.page-heading .taxonomy-description p {
  font-size: 14px;
}
/* ==========================================================
! Footer
========================================================== */
/* 
* Footer
*/
#colophon {
  color: #ffffff;
  background-color: #666666;
  background-repeat: repeace;
  background-position: center center;
  padding: 0;
  /* calendar widget */
}
@media (min-width: 768px) {
  #colophon {
    padding: 0;
  }
}
#colophon .item-heading {
  color: #111111;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
}
#colophon .item-heading .item-icon {
  margin-right: 10px;
}
@media (min-width:992px) {
  #colophon .item-heading .item-icon {
    font-size: 24px;
  }
}
#colophon p,
#colophon a {
  color: #ffffff;
  margin-bottom: 0;
}
#colophon .footer-logo {
  margin-top: 30px;
  text-align: center;
}
#colophon .footer-logo img {
  max-width: 100%;
}
#colophon .footer-item {
  display: table;
  margin: 0 auto;
  text-align: center;
  margin: 30px auto;
}
@media (min-width: 768px) {
  #colophon .footer-item {
    text-align: left;
    margin: 0;
    display: block;
  }
}
#colophon .footer-top {
  padding-top: 40px;
}
#colophon .footer-bottom {
  background-color: #111111;
  margin-top: 0px;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff !important;
}
#colophon .footer-bottom p {
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffff !important;
}
#colophon .footer-bottom .site-quote {
  padding-top: 7px;
  color: #ffffff !important;
  opacity: 0.6;
}
#colophon .widget {
  color: #ffffff;
  font-size: 14px;
}
#colophon .widget ul li {
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 0px solid rgba(255, 255, 255, 0.1);
  padding-left: 0px;
  font-size: 14px;
}
#colophon .widget ul li a {
  font-size: 14px;
  font-weight: bold;
}
#colophon .widget ul li:before {
  top: 12px;
  width: 8px;
  height: 8px;
  background-repeat: no-repeat;
  display: none;
}
#colophon .widget ul li ul.children li,
#colophon .widget ul li ul.sub-menu li {
  border-bottom: 0 !important;
  font-style: italic;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  list-style: none;
}
#colophon .widget ul li ul.children li a,
#colophon .widget ul li ul.sub-menu li a {
  font-size: 10px !important;
}
#colophon .widget ul li ul.children li:before,
#colophon .widget ul li ul.sub-menu li:before {
  display: none;
}
#colophon .widget ul li ul.children li ul.children,
#colophon .widget ul li ul.sub-menu li ul.children {
  display: none;
}
#colophon .widget-title {
  padding: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#colophon .widget-title:after {
  display: none;
}
#colophon .calendar_wrap {
  padding: 0;
}
#colophon #wp-calendar tbody {
  color: #ffffff;
}
#colophon #wp-calendar tbody td {
  border: 1px solid #ffffff;
  text-align: center;
  padding: 8px;
}
.footer-social-icons .social-icons-list {
  margin: 0;
  padding: 0;
}
.footer-social-icons .social-icons-list li {
  display: inline-block;
  list-style: none;
  border-bottom: 0 !important;
}
.footer-social-icons .social-icons-list a {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  padding-top: 10px;
  font-size: 12px;
  border: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #ffffff !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #555;
}
.footer-social-icons .social-icons-list a:hover {
  opacity: 0.8;
  color: #ffffff !important;
  background: #8219a5;
}
/* ==========================================================
! Blog & Posts
========================================================== */
/* 
* Posts - Main Styles
*/
.post-element {
  margin-bottom: 35px;
  background-color: #ffffff;
}
.post-element .post-featured-image {
  overflow: hidden;
  text-align: center;
  background: #111;
}
.post-element .post-featured-image img {
  max-width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.post-element .post-featured-image p {
  margin: 0;
  line-height: 1;
  padding: 0;
}
.post-element .post-content {
  padding: 30px;
  padding-top: 30px;
  border: 0px solid #cccccc;
  border-top: 0;
}
.post-element .entry-meta {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-element .entry-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #393939;
  font-weight: bold;
}
.post-element .entry-title a {
  color: #393939;
}
.post-element .entry-title a:hover {
  text-decoration: none;
}
.post-element .entry-content {
  margin-top: 0;
  color: #555555;
}
.post-element .entry-content,
.post-element .entry-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}
.post-element ul,
.post-element ol {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
}
.post-element ul li,
.post-element ol li {
  padding-top: 1px;
  padding-bottom: 1px;
}
.post-element ul ul,
.post-element ol ul,
.post-element ul ol,
.post-element ol ol {
  padding-left: 15px;
}
.post-element .page-links {
  font-weight: bold;
}
.post-element .page-links a {
  display: inline-block;
  padding: 5px;
  color: #8219a5;
}
.type-page .entry-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.post-block .post-block-col {
  padding: 0;
}
.post-block.post {
  margin-bottom: 35px;
}
@media (min-width:992px) {
  .post-block.post {
    margin-bottom: 0;
  }
}
.post-block .post-content {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
}
@media (min-width: 768px) {
  .post-block .post-content {
    padding: 60px 30px;
  }
}
@media (min-width:992px) {
  .post-block .post-content {
    padding: 100px 30px;
  }
}
@media (min-width: 1200px) {
  .post-block .post-featured-image,
  .post-block .post-featured-image > a,
  .post-block .post-featured-image img {
    height: 100%;
    display: block;
  }
}
.about-author {
  background-color: #252525;
  padding: 30px;
  color: #ffffff;
}
.about-author .author-image {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-author .author-image {
    margin-bottom: 0;
  }
}
.about-author .author-title {
  font-weight: 300;
}
.about-author .author-title span {
  font-weight: normal;
}
.post-element-aside,
.post-element-link {
  border: 0px solid #929f9f;
  color: #ffffff;
}
.post-element-aside .post-content,
.post-element-link .post-content {
  background: #929f9f;
  color: #fff;
}
.post-element-aside p,
.post-element-link p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 0;
  color: #fff;
}
.post-element-link {
  display: block;
  background-color: #8219a5 !important;
  color: #ffffff !important;
  font-size: 14px;
  padding: 20px;
  padding-left: 40px;
  background-image: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/ico-link-bg.png');
  background-position: -20px center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-element-link:hover {
  text-decoration: none;
}
.post-element-link p {
  font-size: 14px;
  margin-bottom: 0;
}
.post-link-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 5px !important;
}
.post-element-quote {
  background-image: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/quote-bg1.png');
  background-position: -10px -10px;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  padding-bottom: 20px;
}
.post-element-quote:after {
  display: block;
  content: '';
  background-image: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/quote-bg2.png');
  background-position: 10px 20px;
  background-repeat: no-repeat;
  width: 127px;
  height: 96px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .post-element-quote {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.post-element-quote p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 5px;
}
.post-element-quote .quote-author {
  font-weight: bold;
  font-size: 12px;
}
.post-element-quote blockquote {
  padding-left: 0;
  border-left: 0;
}
.post-element-video iframe {
  width: 100% !important;
}
.gallery-item {
  margin: 0;
}
.slideshow-window {
  background-color: #222;
  border: 0 !important;
  border-radius: 0 !important;
  height: 0;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 30px !important;
  padding-bottom: 56.25% !important;
  position: relative;
  z-index: 1;
}
.post-password-form label {
  display: inline-block;
  width: 85%;
  margin-right: 5px;
}
.post-password-form input[type=submit] {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #8219a5;
  color: #ffffff;
  border: 0;
  height: 38px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  top: -1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
.post-password-form input[type=submit]:hover {
  background: #929f9f;
}
.post-password-form input[type=password] {
  display: inline-block;
  margin-left: 5px;
  height: 40px;
  width: 100%;
  padding-left: 10px;
}
.sticky .posted-on {
  display: none;
}
.sticky .post-content {
  background-clip: padding-box;
  border-image: -webkit-linear-gradient(45deg, #b54cd8, #4f0072) 10 stretch;
  padding: 30px;
  border-style: solid;
  border-width: 4px;
}
.entry-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-height: 70px;
  margin-top: 30px;
  position: relative;
  top: 30px;
}
@media (min-width: 768px) {
  .entry-footer {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.entry-footer .cat-links {
  display: inline-block;
  padding-right: 10px;
}
.entry-footer .cat-links a {
  display: inline-block;
  background: transparent;
  color: #8219a5;
  text-transform: uppercase;
  border: 2px solid;
  border-color: #8219a5;
  font-size: 11px;
  font-family: Open Sans;
  font-weight: bold;
  padding: 4px 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 3px;
  font-style: italic;
}
.entry-footer .cat-links a:hover {
  background-color: #929f9f;
  border-color: #929f9f;
  color: #ffffff;
  text-decoration: none;
}
.entry-footer .tags-links {
  display: inline-block;
  padding-right: 8px;
}
.entry-footer .tags-links a {
  display: inline-block;
  background: transparent;
  color: #929f9f;
  text-transform: uppercase;
  border: 1px solid;
  border-color: #929f9f;
  font-size: 10px;
  font-family: Open Sans;
  font-weight: bold;
  padding: 4px 12px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 3px;
  font-style: italic;
}
.entry-footer .tags-links a:hover {
  background-color: #929f9f;
  border-color: #929f9f;
  color: #ffffff;
  text-decoration: none;
}
.entry-footer .tags-links a:hover:after {
  background: #fff;
}
.entry-footer .tags-links a:after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 4px;
  background: #929f9f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.entry-footer .comments-link {
  display: block;
  float: right;
  text-transform: uppercase;
}
.entry-footer .comments-link a {
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #8219a5;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.entry-footer .comments-link a:hover {
  text-decoration: none;
  background-color: #8219a5;
}
.entry-footer .post-edit-link {
  font-size: 9px;
  text-transform: uppercase;
  font-style: italic;
  border: 0;
  background: #8219a5;
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.entry-footer .post-edit-link:hover {
  color: #fff;
  background: #929f9f;
  text-decoration: none;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin-bottom: 25px;
}
/*
* Blog Styles
*/
.bearr-blog-masonry .hentry {
  margin: 0 !important;
}
.bearr-blog-masonry article {
  float: left;
  width: 50%;
  padding: 5px;
}
.bearr-blog-masonry article .post-element {
  margin-bottom: 0;
}
.bearr-blog-masonry article .post-element .entry-footer {
  margin-top: 0;
}
.without-sidebar .bearr-blog-masonry article {
  width: 33%;
}
/* ==========================================================
! Sidebar
========================================================== */
/* 
* Posts - Main Styles
*/
.sidebar-area {
  margin-top: 40px;
}
@media (min-width:992px) {
  .sidebar-area {
    margin-top: 0;
  }
}
.sidebar-area .widget {
  padding: 25px;
  background: #ffffff;
  border: 0px solid #cccccc;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
}
.sidebar-area .widget .widget-title {
  margin-left: -25px;
  margin-right: -25px;
  margin-top: -25px;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 0;
  padding: 13px 18px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
  font-size: 18px;
}
.sidebar-area .widget .widget-title a {
  color: #ffffff;
}
.sidebar-area .widget ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebar-area .widget ul li a {
  color: #555555;
}
.sidebar-area .widget ul li a:hover {
  text-decoration: none;
  color: #929f9f;
}
.widget {
  margin-bottom: 30px;
}
.widget.search_widget {
  margin-bottom: 20px;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding-left: 0;
  margin-left: 0;
}
.widget ul li,
.widget ul a {
  font-size: 14px;
  position: relative;
}
.widget ul a {
  display: inline-block;
}
.widget ul > li {
  padding: 17px 0 14px 20px;
  position: relative;
}
.widget ul > li:before {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  left: 2px;
  background-image: url(http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/bullet-ball.png);
  width: 5px;
  height: 5px;
}
.widget ul > li ul.children,
.widget ul > li ul.sub-menu {
  margin-top: 5px;
  margin-bottom: 0px;
}
.widget ul > li ul.children li,
.widget ul > li ul.sub-menu li {
  padding-top: 5px;
  padding-bottom: 5px;
  list-style-position: inside;
  padding-left: 0px;
  list-style-image: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/list-style-mini.png');
  font-size: 12px;
  margin-bottom: 0;
  border-bottom: 0 !important;
}
.widget ul > li ul.children li:before,
.widget ul > li ul.sub-menu li:before {
  display: none;
}
.widget ul > li ul.children li a,
.widget ul > li ul.sub-menu li a {
  font-size: 12px;
}
.widget ul > li ul.children ul.children,
.widget ul > li ul.sub-menu ul.children {
  margin-bottom: 0;
}
.widget ul > li ul.children ul.children li,
.widget ul > li ul.sub-menu ul.children li {
  padding-left: 16px;
  list-style-image: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/list-style-mini.png');
  font-style: italic;
  margin-bottom: 0;
}
.widget select {
  width: 100%;
  padding: 10px;
}
.widget .calendar_wrap {
  padding-left: 0px;
  padding-right: 0px;
}
.widget_tag_cloud .tagcloud a {
  background-color: #8219a5;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  display: inline-block;
  font-size: 12px !important;
  margin: 0 5px 5px 0;
  padding: 4px 8px;
  text-decoration: none;
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: #710894;
  color: #ffffff;
}
.widget_rss .widget-title img {
  display: none;
}
.widget_rss li {
  margin-bottom: 0.625rem;
}
.widget_rss li a {
  display: block;
  font-weight: 900;
  font-size: 14px;
}
.widget_rss li .rss-date {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: bold;
}
.widget_rss li .rss-date,
.widget_rss li cite {
  color: #333;
  font-size: 12px;
  line-height: 1.1;
}
.widget_rss li .rssSummary {
  font-size: 12px;
  display: inline;
}
/* calendar widget */
#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 15px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
  text-align: center;
}
#wp-calendar tbody {
  color: #333;
}
#wp-calendar tbody td {
  border: 1px solid #111;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}
.search-form {
  position: relative;
}
.search-form label {
  display: block;
  width: 100%;
  position: relative;
}
.search-form .search-submit {
  background: url(http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/lens.png) no-repeat center center transparent !important;
  border: 0;
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -9999px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
.search-form .search-field {
  width: 100% !important;
  max-width: 100% !important;
  height: 45px;
  padding-left: 20px;
  font-size: 14px;
  background-color: #f4f4f4;
  border: none;
  color: #555555;
  font-weight: normal;
}
.page-content .search-form .search-field {
  border: 1px solid #ccc;
}
.error-404 h1 {
  font-weight: bold;
  text-transform: none;
}
.tags a {
  background-color: #ffffff;
  display: inline-block;
  font-size: 14px;
  line-height: 17px;
  padding: 6px 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.tags a:hover {
  background-color: #8219a5;
  color: #ffffff;
}
.no-sidebar {
  display: none;
}
/* ==========================================================
! Comments
========================================================== */
/* 
* Comments - Main Styles
*/
.comments-area {
  display: block;
}
.comments-area .comment-form {
  display: block;
  padding-bottom: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
.comments-area .comments-title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}
.comments-area .comment-reply-title {
  font-weight: bold;
  margin-top: 20px;
  font-size: 24px;
}
.comments-area input[type=submit] {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
  font-size: 14px;
  box-shadow: 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.comments-area .comment-form-author,
.comments-area .comment-form-email {
  width: 50%;
  display: block;
  float: left;
  padding-right: 3px;
}
.comments-area .comment-form-email {
  padding-right: 0;
  padding-left: 3px;
}
.comments-area input[type=text],
.comments-area input[type=email],
.comments-area input[type=url] {
  height: 45px;
  padding-top: 2px;
  padding-left: 10px;
  width: 100%;
  display: block;
  border: 1px solid;
  border-color: #ccc;
  background: transparent;
  color: #111;
  font-style: italic;
  font-size: 12px;
  font-family: Open Sans;
}
.comments-area label {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  opacity: 0.8;
  display: block;
}
.comments-area textarea {
  border: 1px solid;
  border-color: #ccc;
  padding: 12px;
  width: 100% !important;
  color: #111;
  font-style: italic;
  font-size: 12px;
  font-family: Open Sans;
}
#respond {
  border: 0px solid #cccccc;
  background: #ffffff;
  padding: 20px;
}
.comments-area input[type=submit] {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.comments-area input[type=submit]:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.comments-area input[type=submit].compact-btn {
  padding: 7px 36px;
}
.comments-area input[type=submit]:visited {
  color: #fff;
}
.comments-area input[type=submit]:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.comments-area input[type=submit]:hover:before {
  width: 100%;
}
.comments-area input[type=submit] .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
ol.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol.comment-list > li {
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
}
@media (min-width: 768px) {
  ol.comment-list > li {
    padding: 30px;
  }
}
ol.comment-list ol.children {
  list-style: none;
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
ol.comment-list ol.children > li {
  background: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-bottom: 10px;
}
ol.comment-list ol.children > li > ol.children li {
  border-left: 2px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.comment-author {
  padding-top: 5px;
}
.comment-author .fn {
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .comment-author .fn {
    font-size: 18px;
  }
}
.comment-author .fn a {
  color: #555555;
}
.comment-author .says {
  opacity: 0.8;
  font-size: 16px;
}
@media (min-width: 768px) {
  .comment-author .says {
    font-size: 18px;
  }
}
.comment-author img.avatar {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
  margin-top: -5px;
}
.comment-metadata {
  font-size: 12px;
  font-weight: 300;
}
.comment-metadata a {
  color: #555555;
}
.comment-meta {
  min-height: 64px;
  margin-bottom: 20px;
}
.comment-reply-link {
  display: inline-block;
  color: #8219a5;
  font-weight: bold;
  margin-bottom: 20px;
}
.comment-content {
  font-size: 14px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.comment-content ul {
  padding: 0;
  list-style: inside;
}
.comment-body .reply a {
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pingback {
  font-weight: bold;
  font-size: 14px;
}
/* ==========================================================
! Pagination
========================================================== */
/* 
* Pagination - Main Styles
*/
.navigation a {
  display: inline-block;
  padding: 10px;
  background: transparent;
  color: #8219a5;
  border: 2px solid #8219a5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-size: 11px;
  padding-left: 14px;
  padding-right: 14px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-style: italic;
}
.navigation a:hover {
  background: #929f9f;
  border-color: #929f9f;
  color: #ffffff;
}
.navigation .nav-previous a:before {
  content: '« ';
}
.navigation .nav-next a:after {
  content: ' »';
}
/* ==========================================================
 WooCommerce
========================================================== */
.woocommerce .woocommerce-ordering select {
  height: 35px;
  padding-left: 15px;
}
.woocommerce .woocommerce-result-count {
  border-left: 2px solid #ccc;
  font-style: italic;
  padding-left: 20px;
  font-size: 13px;
  line-height: 35px;
}
.woocommerce .bearr-page-heading .woocommerce-breadcrumb {
  line-height: 20px;
  padding-top: 4px;
  color: #ffffff;
  display: none;
}
@media (min-width: 768px) {
  .woocommerce .bearr-page-heading .woocommerce-breadcrumb {
    display: block;
  }
}
.woocommerce .bearr-page-heading .woocommerce-breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}
.woocommerce .products ul,
.woocommerce ul.products {
  margin-left: -15px;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
  width: 33.33%;
  padding-left: 15px;
  margin-bottom: 15px;
}
.woocommerce ul.products li.product .woo-product-wrapper,
.woocommerce-page ul.products li.product .woo-product-wrapper {
  background: #ffffff;
  border: 0px solid #cccccc;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
}
.woocommerce ul.products li.product .woo-product-wrapper img,
.woocommerce-page ul.products li.product .woo-product-wrapper img {
  -webkit-border-radius: 0px 0px 0 0;
  -moz-border-radius: 0px 0px 0 0;
  border-radius: 0px 0px 0 0;
}
.woocommerce ul.products li.product .woo-product-wrapper p,
.woocommerce-page ul.products li.product .woo-product-wrapper p {
  margin: 0;
}
.woocommerce ul.products li.product .woo-product-wrapper br,
.woocommerce-page ul.products li.product .woo-product-wrapper br {
  display: none;
}
.woocommerce ul.products li.product .woo-product-content,
.woocommerce-page ul.products li.product .woo-product-content {
  padding: 0 25px 25px 25px;
  text-align: center;
}
.woocommerce ul.products li.product .woo-product-content .star-rating,
.woocommerce-page ul.products li.product .woo-product-content .star-rating {
  display: inline-block !important;
}
.woocommerce ul.products li.product .woo-product-content a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woo-product-content a.woocommerce-LoopProduct-link {
  color: #555555;
  opacity: 0.5;
}
.woocommerce ul.products li.product .woo-product-thumb,
.woocommerce-page ul.products li.product .woo-product-thumb {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.woocommerce ul.products li.product .woo-product-thumb img,
.woocommerce-page ul.products li.product .woo-product-thumb img {
  border-radius: 0px 0px 0 0;
  z-index: 1;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .woo-product-thumb:hover:before,
.woocommerce-page ul.products li.product .woo-product-thumb:hover:before {
  background-color: rgba(130, 25, 165, 0.7);
}
.woocommerce ul.products li.product .woo-product-thumb:hover .add_to_cart_button,
.woocommerce-page ul.products li.product .woo-product-thumb:hover .add_to_cart_button,
.woocommerce ul.products li.product .woo-product-thumb:hover .woo-read-more-btn,
.woocommerce-page ul.products li.product .woo-product-thumb:hover .woo-read-more-btn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}
.woocommerce ul.products li.product .woo-product-thumb:before,
.woocommerce-page ul.products li.product .woo-product-thumb:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(130, 25, 165, 0);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0px 0px 0 0;
  -moz-border-radius: 0px 0px 0 0;
  border-radius: 0px 0px 0 0;
}
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .add_to_cart_button {
  display: block;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 40px;
  margin-top: -40px;
  margin-left: -75px;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  color: #fff;
}
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce-page ul.products li.product .add_to_cart_button:hover {
  background: #929f9f;
  border-color: #929f9f;
}
.woocommerce ul.products li.product .woo-read-more-btn,
.woocommerce-page ul.products li.product .woo-read-more-btn {
  display: block;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 150px;
  margin-top: 5px;
  margin-left: -75px;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 8px;
  height: 40px;
}
.woocommerce ul.products li.product .woo-read-more-btn:hover,
.woocommerce-page ul.products li.product .woo-read-more-btn:hover {
  background: #929f9f;
  border-color: #929f9f;
}
body .woocommerce.columns-4 ul.products li.product {
  width: 25% !important;
}
body .woocommerce.columns-2 ul.products li.product {
  width: 50% !important;
}
.woocommerce ul.products li.product h3 {
  text-transform: uppercase;
  font-weight: bold;
  color: #393939;
  font-size: 19px;
  border: none;
}
.woocommerce ul.products li.product .price {
  color: #555555;
  font-size: 16px;
  opacity: 0.8;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #929f9f;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #8219a5;
  color: #ffffff;
}
.woocommerce .widget_rating_filter ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  list-style: none;
}
.woocommerce .widget_price_filter .price_slider {
  margin-top: 25px;
  margin-bottom: 25px;
}
.woocommerce .price_slider_amount {
  font-weight: bold;
}
.woocommerce .price_slider_amount span {
  font-style: italic;
  font-weight: normal;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: #929f9f !important;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: #929f9f !important;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(146, 159, 159, 0.5) !important;
}
.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  display: block;
  font-weight: 700;
}
.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
}
.woocommerce ul.cart_list li span.product-title,
.woocommerce ul.product_list_widget li span.product-title {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  color: #555555;
}
.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  display: block;
  margin-bottom: 5px;
  color: #555555;
}
.woocommerce ul.cart_list li .woocommerce-Price-amount,
.woocommerce ul.product_list_widget li .woocommerce-Price-amount {
  font-size: 14px;
}
.woocommerce .widget_recent_reviews li a {
  padding-bottom: 5px;
}
.woocommerce .widget_recent_reviews li .reviewer {
  font-style: italic;
  font-size: 11px;
}
.woocommerce .widget_shopping_cart .cart_list li a,
.woocommerce.widget_shopping_cart .cart_list li a {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 0;
}
.woocommerce .widget_shopping_cart .cart_list li .quantity,
.woocommerce.widget_shopping_cart .cart_list li .quantity {
  font-size: 11px;
  font-style: italic;
}
.woocommerce .widget_shopping_cart p.total {
  padding-top: 10px;
  font-size: 15px;
}
.woocommerce .widget_shopping_cart p.total strong {
  font-size: 12px;
}
.woocommerce .widget_shopping_cart a.wc-forward {
  background: #929f9f;
}
.woocommerce .widget_shopping_cart a.wc-forward:hover {
  background: #8219a5;
}
@media (min-width:992px) {
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    float: right;
    width: 49%;
  }
}
.woocommerce .summary.entry-summary {
  margin-top: 0;
  padding: 20px;
  background: #ffffff;
  border: 0px solid #cccccc;
  border-radius: 0px;
  -moz-border-radius: 0px;
}
.woocommerce div.product .product_title {
  font-weight: bold;
  text-transform: uppercase;
  color: #929f9f;
  margin-bottom: 8px;
}
.woocommerce div.product p.price {
  font-style: italic;
  color: #555555;
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 8px;
}
.woocommerce div.product p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 20px;
}
.woocommerce div.product form.cart .quantity input {
  height: 40px;
  width: 60px;
  text-align: center;
  line-height: 40px;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  background: #929f9f;
  height: 38px;
  position: relative;
  top: 1px;
  border: 0;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #8219a5;
}
.woocommerce div.product form.cart .single_add_to_cart_button:before {
  content: "\f07a";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  display: inline-block;
  margin-right: 8px;
  position: relative;
}
.woocommerce div.product .product_meta {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-size: 12px;
  font-style: italic;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 0;
  padding-left: 5px;
  border: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:after {
  border-bottom: 0px solid #cccccc;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  font-size: 14px;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: bold;
  text-transform: uppercase;
  border: 0px solid #cccccc;
  margin-bottom: -2px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .panel {
  margin-bottom: 20px;
  padding: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-bottom: 0;
  background-color: #ffffff;
  border-right: 0px solid #cccccc;
  border-left: 0px solid #cccccc;
  border-bottom: 0px solid #cccccc;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-bottom: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #ffffff;
  border: 0px solid #cccccc;
  border-bottom-color: #ffffff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
  display: none;
}
.woocommerce .related.products h2 {
  border: 0;
  padding: 20px;
  background: #ffffff;
}
.woocommerce .related.products ul.products li {
  width: 25%;
}
.bearr-wc-header-cart {
  display: none;
  position: relative;
  width: 100%;
  min-height: 40px;
  padding-top: 5px;
  border-left: 1px solid rgba(51, 51, 51, 0.1);
}
@media (min-width: 768px) {
  .bearr-wc-header-cart {
    display: block;
  }
}
@media (min-width: 1200px) {
  .bearr-wc-header-cart {
    margin-top: 5px;
  }
}
.bearr-wc-header-cart .widgettitle {
  border: 0 !important;
}
.bearr-wc-header-cart .cart-contents {
  color: #666666;
  position: relative;
  display: block;
  width: 100%;
  padding-left: 10px;
  text-align: center !important;
}
.bearr-wc-header-cart .cart-contents:before {
  /*font-family: WooCommerce;
      content: "\e01d";*/
  content: "\f07a";
  font-family: FontAwesome;
  font-size: 22px;
  margin-top: 15px;
  font-style: normal;
  font-weight: 400;
  padding-right: 0px;
  vertical-align: bottom;
}
.bearr-wc-header-cart .cart-contents:hover {
  text-decoration: none;
}
.bearr-wc-header-cart .cart-contents-count {
  color: #fff;
  background-color: #8219a5;
  font-weight: bold;
  border-radius: 10px;
  padding: 1px 6px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: top;
}
.bearr-wc-header-cart:hover .bearr-wc-header-cart-hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}
.bearr-wc-header-cart .bearr-wc-header-cart-hover {
  min-width: 100%;
  width: 225px;
  min-height: 40px;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 0;
  color: #555555;
  font-size: 12px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #f4f4f4;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bearr-wc-header-cart .bearr-wc-header-cart-hover .widget_shopping_cart .total {
  border-top: 0 !important;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list {
  border-bottom: 0px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list .mini_cart_item {
  text-align: left;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li {
  padding-left: 25px;
  border-bottom: 0;
  border: 0px dotted #333!important;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li:before {
  display: none;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li.empty {
  font-weight: bold;
  border-bottom: 0;
  font-size: 12px;
  padding-left: 0;
  text-align: center;
  padding: 0;
  margin: 0;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li a {
  font-size: 13px;
  font-weight: bold !important;
  color: #929f9f !important;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li a.remove {
  color: #929f9f !important;
  width: 15px;
  height: 15px;
  padding-left: 1px;
  line-height: 15px;
  display: inline-block;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li a.remove:hover {
  opacity: 0.5;
  background-color: transparent;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart ul.cart_list li .quantity {
  font-size: 11px;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart p.total {
  text-align: left;
  margin-top: 0;
  padding-top: 0;
  text-transform: uppercase;
}
.bearr-wc-header-cart .woocommerce.widget_shopping_cart p.total .woocommerce-Price-amount {
  font-style: italic;
  font-size: 12px;
}
.woocommerce-message {
  border-color: #929f9f !important;
}
.woocommerce-message:before {
  color: #929f9f;
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #929f9f;
  color: #fff;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #929f9f;
}
.cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}
.woocommerce table.shop_table {
  border: 0;
  margin: 0;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding-right: 20px;
}
.woocommerce table.shop_table td {
  border-color: #ccc;
}
.woocommerce table.shop_table tr.cart_item td {
  padding-top: 25px;
  padding-bottom: 25px;
}
.woocommerce table.shop_table td.actions {
  padding: 40px;
  border: 1px solid #ccc;
}
.woocommerce table.shop_table td.actions2 {
  padding-left: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 0;
  text-align: right;
}
.woocommerce table.shop_table td.actions2 .button {
  width: 100%;
  background-color: transparent;
  border: 1px solid #929f9f;
  color: #929f9f;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce table.shop_table td.actions2 .button:hover {
  background: #8219a5;
  color: #fff;
}
.woocommerce table.shop_table a.remove {
  border: 1px solid #ff0000;
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 14px;
}
.woocommerce .cart_totals h2 {
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  line-height: 39px;
}
.woocommerce #content table.cart td.actions .coupon,
.woocommerce table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon {
  display: block;
  float: none;
  max-width: 100%;
  margin: 0 auto;
}
.woocommerce #content table.cart td.actions .coupon input[type=text],
.woocommerce table.cart td.actions .coupon input[type=text],
.woocommerce-page #content table.cart td.actions .coupon input[type=text],
.woocommerce-page table.cart td.actions .coupon input[type=text] {
  height: 40px;
  width: 65%;
  padding-left: 10px;
}
.woocommerce #content table.cart td.actions .coupon input[type=submit],
.woocommerce table.cart td.actions .coupon input[type=submit],
.woocommerce-page #content table.cart td.actions .coupon input[type=submit],
.woocommerce-page table.cart td.actions .coupon input[type=submit] {
  height: 40px;
  width: 34% !important;
}
.woocommerce-cart .entry-header {
  display: none;
}
.woocommerce-cart .cart-collaterals a.checkout-button {
  width: 100%;
  height: 50px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px !important;
  padding-top: 18px !important;
}
.woocommerce-cart .cart-collaterals .shop_table {
  margin-bottom: 15px !important;
}
.woocommerce-cart .cart-collaterals .shop_table th,
.woocommerce-cart .cart-collaterals .shop_table td {
  padding-left: 0 !important;
  padding-right: 0;
}
.woocommerce-checkout .entry-header {
  display: none;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}
.woocommerce-checkout .woocommerce-billing-fields {
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-shipping-fields {
  margin-bottom: 30px;
}
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
  color: #929f9f;
  text-transform: uppercase;
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.woocommerce-checkout h3 {
  font-size: 18px;
}
.woocommerce-checkout label {
  font-style: italic;
}
.woocommerce-checkout .form-row.place-order {
  background-color: #fff;
  padding: 0 !important;
  padding-top: 20px !important;
  text-align: left !important;
}
.woocommerce-checkout .woocommerce-thankyou-order-received {
  background: #f4f4f4;
  padding: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.woocommerce form .form-row {
  margin-bottom: 10px;
}
.woocommerce form .form-row input.input-text {
  height: 40px;
  padding-left: 10px;
}
.woocommerce form .form-row textarea.input-text {
  padding: 10px;
  height: auto;
}
.woocommerce form .form-row .select2-container {
  line-height: 38px;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49%;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  background: #f4f4f4;
}
#add_payment_method #payment .payment_method_paypal .about_paypal,
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  line-height: 32px;
  padding-left: 10px;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: #eee;
  margin-top: 0;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  border-color: #eee;
  display: none;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: none;
  width: 50%;
  height: 60px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.woocommerce-MyAccount-navigation {
  background: #f4f4f4;
  padding: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #eee;
  list-style: none;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: bold;
  color: #929f9f;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.woocommerce-MyAccount-navigation ul li a:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 9px;
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/menu-bottom-detail-list-style.png');
  margin-right: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  text-decoration: none;
  transform: translateX(6px);
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
}
.woocommerce-MyAccount-content a {
  text-decoration: underline;
  color: #929f9f;
}
.woocommerce span.onsale {
  background: #929f9f;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 99;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0 !important;
  top: 0;
  left: 0;
}
.woocommerce div.product div.images {
  position: relative;
}
.woocommerce-page .entry-content h2,
.woocommerce-page .entry-content h3 {
  color: #929f9f;
  text-transform: uppercase;
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-weight: bold;
}
.woocommerce-page .entry-content h3 {
  font-size: 18px;
}
.woocommerce-page .entry-content legend {
  font-size: 18px;
  padding-top: 20px;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.woocommerce ul.product_list_widget li img {
  width: 80px;
}
.woocommerce input.button {
  font-size: 14px;
  padding: 12px 25px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce table.shop_table td {
  border: 0;
}
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top: 0;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 120px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  border-bottom: 0;
}
.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  border-bottom: 0;
  list-style: none;
}
.woocommerce .widget_shopping_cart .cart_list li:before,
.woocommerce.widget_shopping_cart .cart_list li:before {
  display: none;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  padding: 2px;
  padding-top: 4px;
}
/* ==========================================================
 KingComposer
========================================================== */
@media (min-width: 1400px) {
  .kc-container {
    max-width: 1280px !important;
  }
}
.primary-btn-kc {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
}
.primary-btn-kc:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.primary-btn-kc.compact-btn {
  padding: 7px 36px;
}
.primary-btn-kc:visited {
  color: #fff;
}
.primary-btn-kc:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.primary-btn-kc:hover:before {
  width: 100%;
}
.primary-btn-kc .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.primary-btn-kc:before,
.primary-btn-kc:after {
  display: none !important;
}
.primary-btn-kc:hover {
  background-color: #929f9f;
}
body .kc_accordion_header {
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  color: #fff;
  font-weight: bold;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
body .kc_accordion_header a {
  font-weight: bold;
  color: #fff;
}
body .kc_accordion_content .kc-panel-body {
  background: #f4f4f4;
  border: 0;
}
body .kc_accordion_content .kc-panel-body p {
  font-size: 14px;
}
body .kc_accordion_header > span.ui-accordion-header-icon {
  color: #fff;
  font-weight: bold;
  font-size: 10px;
}
body .kc_accordion_section > .kc_accordion_header {
  border: 0;
}
body .kc_accordion_content {
  border: 0;
}
body .kc-icon-wrapper i {
  color: #8219a5;
}
body .kc-flip-container .wrap-icon {
  margin-bottom: 20px;
}
body .kc-flip-container .front .front-content i {
  color: #8219a5;
}
body .kc-flip-container .front p {
  font-size: 12px;
}
body .kc-flip-container .back {
  border: 0;
}
body .kc-flip-container .back p {
  font-size: 12px;
}
body .kc_piechart .percent {
  color: #8219a5;
}
body .kc_button {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
}
body .kc_button:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
body .kc_button.compact-btn {
  padding: 7px 36px;
}
body .kc_button:visited {
  color: #fff;
}
body .kc_button:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
body .kc_button:hover:before {
  width: 100%;
}
body .kc_button .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
body .kc_button:before,
body .kc_button:after {
  display: none !important;
}
body .kc_button:hover {
  background-color: #929f9f;
}
body .kc_counter_box .counterup {
  font-size: 65px;
  line-height: 1;
}
body .kc_counter_box h4 {
  font-size: 14px;
}
body .kc_tooltip .fati17 {
  background: #8219a5;
}
body .kc-feature-boxes .content-icon i {
  color: #8219a5;
}
body .kc-feature-boxes .content-title {
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
}
body .kc-feature-boxes .content-desc {
  font-size: 13px;
}
body .kc-feature-boxes .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  font-size: 12px;
}
body .kc-feature-boxes .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
body .kc-feature-boxes .content-button a.compact-btn {
  padding: 7px 36px;
}
body .kc-feature-boxes .content-button a:visited {
  color: #fff;
}
body .kc-feature-boxes .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
body .kc-feature-boxes .content-button a:hover:before {
  width: 100%;
}
body .kc-feature-boxes .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
body .kc-feature-boxes .content-button a:before,
body .kc-feature-boxes .content-button a:after {
  display: none !important;
}
body .kc-feature-boxes .content-button a:hover {
  background-color: #929f9f;
}
.message-boxes {
  border: 0;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  color: #fff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.message-boxes .message-box-wrap {
  font-weight: bold;
  border: 0;
}
body .kc-countdown-timer {
  text-align: center;
}
body .kc-countdown-timer span.group {
  background: transparent;
  color: #555555;
}
body .kc-countdown-timer span.unit {
  font-weight: bold;
  text-transform: uppercase;
}
body .kc-image-gallery .kc-grid .item-grid {
  overflow: hidden;
  padding: 5px;
}
body .kc-image-gallery .kc-grid .item-grid a {
  display: flex;
  background: #222;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
body .kc-image-gallery .kc-grid .item-grid a img {
  vertical-align: middle;
  align-self: center;
}
body .kc-dropcaps .dropcaps-text {
  background: #8219a5;
}
body .kc-blog-posts.kc-blog-posts-2 .kc-list-item-2 .post-meta span i {
  color: #8219a5;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button.compact-btn {
  padding: 7px 36px;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:visited {
  color: #fff;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:hover:before {
  width: 100%;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:before,
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:after {
  display: none !important;
}
body .kc-blog-posts.kc-blog-posts-2 .post-2-button:hover {
  background-color: #929f9f;
}
body .kc-blog-posts.kc-blog-posts-2 .kc-list-item-2 .post-title-alt {
  margin-bottom: 12px;
}
body .kc-blog-posts.kc-blog-posts-3 .kc-list-item-3 {
  padding: 15px;
  background: #f4f4f4;
}
body .kc-blog-posts.kc-blog-posts-4 .kc-post-header {
  text-align: center;
}
body .list-post .list-post-title {
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  font-weight: bold;
  margin-bottom: 15px;
}
body .list-post h3 {
  margin-bottom: 5px;
}
body .list-post .text {
  font-size: 12px;
  margin-bottom: 5px;
}
body .list-post a.read-more {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  padding: 5px 15px;
  font-size: 12px;
}
body .list-post a.read-more:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
body .list-post a.read-more.compact-btn {
  padding: 7px 36px;
}
body .list-post a.read-more:visited {
  color: #fff;
}
body .list-post a.read-more:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
body .list-post a.read-more:hover:before {
  width: 100%;
}
body .list-post a.read-more .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
body .list-post a.read-more:before,
body .list-post a.read-more:after {
  display: none !important;
}
body .list-post a.read-more:hover {
  background-color: #929f9f;
}
body .list-post a.read-more:hover {
  border-color: #8219a5;
}
body .kc-multi-icons-wrapper a {
  background: #8219a5;
}
body .kc-image-hover-effects .overlay-effects {
  padding: 15px;
}
body .kc-image-hover-effects .overlay-effects .content-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}
body .kc-image-hover-effects .overlay-effects .content-desc {
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
}
body .kc-image-hover-effects .overlay-effects .content-button a {
  font-weight: bold;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .kc-image-hover-effects .overlay-effects .content-button a:hover {
  text-decoration: none;
}
body .kc-team .content-title {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}
body .kc-team .content-subtitle {
  font-size: 12px;
  font-style: italic;
}
body .kc-team .content-desc {
  margin-top: 10px;
  font-size: 13px;
}
body .kc-team .content-socials a {
  background: #8219a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 0;
  font-size: 11px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-left: 2px;
  margin-right: 2px;
}
body .kc-team .content-socials a:hover {
  background: #929f9f;
}
body .kc-team .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  padding: 5px 15px;
  font-size: 12px;
}
body .kc-team .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
body .kc-team .content-button a.compact-btn {
  padding: 7px 36px;
}
body .kc-team .content-button a:visited {
  color: #fff;
}
body .kc-team .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
body .kc-team .content-button a:hover:before {
  width: 100%;
}
body .kc-team .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
body .kc-team .content-button a:before,
body .kc-team .content-button a:after {
  display: none !important;
}
body .kc-team .content-button a:hover {
  background-color: #929f9f;
}
body .kc-team.kc-team-1 {
  padding: 15px;
  background: #f4f4f4;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
body .kc-team.kc-team-1 .content-image {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px;
}
body .kc-team.kc-team-2 {
  background: #f4f4f4;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
body .kc-team.kc-team-3 {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
body .kc-team.kc-team-3 .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  padding: 5px 15px;
  font-size: 12px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
body .kc-team.kc-team-3 .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
body .kc-team.kc-team-3 .content-button a.compact-btn {
  padding: 7px 36px;
}
body .kc-team.kc-team-3 .content-button a:visited {
  color: #fff;
}
body .kc-team.kc-team-3 .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
body .kc-team.kc-team-3 .content-button a:hover:before {
  width: 100%;
}
body .kc-team.kc-team-3 .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
body .kc-team.kc-team-3 .content-button a:before,
body .kc-team.kc-team-3 .content-button a:after {
  display: none !important;
}
body .kc-team.kc-team-3 .content-button a:hover {
  background-color: #929f9f;
}
body .kc-team.kc-team-3 .content-socials a {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border: 0;
}
.kc-testimo.kc-testi-layout-1 .content-image img {
  max-width: 120px;
}
.kc-testimo.kc-testi-layout-1 .content-desc {
  margin-top: 20px;
  margin-bottom: 10px;
  font-style: italic;
}
.kc-testimo.kc-testi-layout-1 .content-title {
  font-size: 14px;
}
.kc-testimo.kc-testi-layout-2 {
  background: transparent;
  border: 1px solid #cccccc;
}
.kc-testimo.kc-testi-layout-2 .content-title {
  color: #8219a5;
}
.kc-testimo.kc-testi-layout-4 {
  display: flex;
}
.kc-testimo.kc-testi-layout-4 .box-right {
  vertical-align: middle;
  align-self: center;
}
.kc-testimo.kc-testi-layout-4 .content-desc {
  font-style: italic;
  font-size: 13px;
  margin-bottom: 8px;
}
.kc-testimo.kc-testi-layout-4 .content-position {
  color: #8219a5;
}
.kc-testimo.kc-testi-layout-3 {
  background: #f4f4f4;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.kc-testimo.kc-testi-layout-3 .content-title {
  color: #8219a5;
}
.kc-testimo.kc-testi-layout-5 .content-image {
  max-width: 80px;
}
.kc-testimo.kc-testi-layout-5 .content-desc {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: relative;
}
.kc-testimo.kc-testi-layout-5 .content-desc:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -5px;
  left: 22px;
  background: #fff;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}
.kc-testimo.kc-testi-layout-5 .box-right .content-title {
  padding-top: 8px;
  margin-bottom: 0px;
}
.kc-testimo.kc-testi-layout-5 .box-right .content-position {
  opacity: 0.9;
  font-size: 12px;
}
.kc-pricing-tables .content-sub-title {
  font-size: 12px;
  text-transform: none;
  font-style: italic;
  opacity: 0.8;
}
.kc-pricing-tables.kc-pricing-layout-1 {
  background: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-1 .header-pricing .kc-pricing-price .content-price {
  font-weight: bold;
}
.kc-pricing-tables.kc-pricing-layout-1 .header-pricing .kc-pricing-price .content-currency {
  font-size: 22px;
}
.kc-pricing-tables.kc-pricing-layout-1 .header-pricing .kc-pricing-price span.content-duration {
  font-size: 13px;
  font-style: italic;
  margin-left: 3px;
  display: inline-block;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-desc li {
  background: #eee;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 12px;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button {
  background: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a.compact-btn {
  padding: 7px 36px;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:visited {
  color: #fff;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:hover:before {
  width: 100%;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:before,
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:after {
  display: none !important;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-button a:hover {
  background-color: #929f9f;
}
.kc-pricing-tables.kc-pricing-layout-1 .content-icon-header i {
  font-size: 40px;
}
.kc-pricing-tables.kc-pricing-layout-1 .header-pricing .kc-pricing-price span {
  font-size: 52px;
}
.kc-pricing-tables.kc-pricing-layout-2 .header-pricing .content-title {
  padding-top: 15px;
}
.kc-pricing-tables.kc-pricing-layout-2 .header-pricing .kc-pricing-price .content-price {
  font-weight: bold;
  color: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-2 .header-pricing .kc-pricing-price .content-currency {
  font-size: 22px;
  color: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-2 .header-pricing .kc-pricing-price span.content-duration {
  font-size: 13px;
  font-style: italic;
  margin-left: 3px;
  display: inline-block;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  border: 0;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a.compact-btn {
  padding: 7px 36px;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:visited {
  color: #fff;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:hover:before {
  width: 100%;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:before,
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:after {
  display: none !important;
}
.kc-pricing-tables.kc-pricing-layout-2 .content-button a:hover {
  background-color: #929f9f;
}
.kc-pricing-tables.kc-pricing-layout-3 {
  background: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-3 .header-pricing .kc-pricing-price .content-price {
  font-weight: bold;
  color: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-3 .header-pricing .kc-pricing-price .content-currency {
  font-size: 22px;
  color: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-3 .header-pricing .kc-pricing-price span.content-duration {
  font-size: 13px;
  font-style: italic;
  margin-left: 3px;
  display: inline-block;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-title {
  font-weight: bold;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a.compact-btn {
  padding: 7px 36px;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:visited {
  color: #fff;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:hover:before {
  width: 100%;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:before,
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:after {
  display: none !important;
}
.kc-pricing-tables.kc-pricing-layout-3 .content-button a:hover {
  background-color: #929f9f;
}
.kc-pricing-tables.kc-pricing-layout-4 {
  background: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-4 .header-pricing .kc-pricing-price .content-price {
  font-weight: bold;
}
.kc-pricing-tables.kc-pricing-layout-4 .header-pricing .kc-pricing-price .content-currency {
  font-size: 22px;
  color: #8219a5;
}
.kc-pricing-tables.kc-pricing-layout-4 .header-pricing .kc-pricing-price span.content-duration {
  font-size: 13px;
  font-style: italic;
  margin-left: 3px;
  display: inline-block;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-desc li {
  font-size: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a {
  display: inline-block;
  color: #fff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-image: none;
  background-color: transparent;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #929f9f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a.compact-btn {
  padding: 7px 36px;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:visited {
  color: #fff;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:hover {
  color: #ffffff;
  background-color: #8219a5;
  text-decoration: none;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:hover:before {
  width: 100%;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a .btn-icon {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:before,
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:after {
  display: none !important;
}
.kc-pricing-tables.kc-pricing-layout-4 .content-button a:hover {
  background-color: #929f9f;
}
/* ==========================================================
! Plugin: Owl Carousel
========================================================== */
/* 
* Owl Carousel
*/
html body .owl-carousel .owl-controls .owl-prev,
html body .owl-carousel .owl-controls .owl-next {
  text-indent: -99999px;
}
@media (min-width: 768px) {
  html body .owl-carousel .owl-controls .owl-prev,
  html body .owl-carousel .owl-controls .owl-next {
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    font-size: 80px !important;
    background-color: transparent;
    opacity: 1;
    margin: 0;
    padding: 0;
    width: 21px;
    height: 37px;
    overflow: hidden;
    text-indent: -99999px;
    opacity: 0.3;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  html body .owl-carousel .owl-controls .owl-prev:hover,
  html body .owl-carousel .owl-controls .owl-next:hover {
    opacity: 0.7;
  }
}
html body .owl-carousel .owl-controls .owl-prev {
  left: 0;
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/slide-left2.png') no-repeat center center transparent;
}
@media (min-width: 1200px) {
  html body .owl-carousel .owl-controls .owl-prev {
    left: 50px;
  }
}
html body .owl-carousel .owl-controls .owl-next {
  right: 0;
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/slide-right2.png') no-repeat center center transparent;
}
@media (min-width: 1200px) {
  html body .owl-carousel .owl-controls .owl-next {
    right: 50px;
  }
}
html body .owl-carousel .owl-controls .owl-dot span {
  height: 10px;
  width: 10px;
  background-color: transparent !important;
  border: 2px solid #8219a5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
html body .owl-carousel .owl-controls .owl-dot span:hover,
html body .owl-carousel .owl-controls .owl-dot span:focus,
html body .owl-carousel .owl-controls .owl-dot span:active {
  background: #8219a5;
}
html body .owl-carousel .owl-controls .owl-dot.active span {
  height: 10px;
  width: 10px;
  border: 2px solid #8219a5;
  background-color: #8219a5 !important;
}
html body .owl-carousel .owl-dots {
  margin-top: 25px;
}
html body .owl-carousel.owl-theme.common-carousel {
  padding: 0;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel {
    padding: 0 20px;
  }
}
html body .owl-carousel.owl-theme.common-carousel .owl-next,
html body .owl-carousel.owl-theme.common-carousel .owl-prev {
  background: none;
  font-size: 50px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel .owl-next,
  html body .owl-carousel.owl-theme.common-carousel .owl-prev {
    padding: 0 20px;
  }
}
html body .owl-carousel.owl-theme.common-carousel .owl-next {
  right: -20px;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel .owl-next {
    right: 0;
  }
}
html body .owl-carousel.owl-theme.common-carousel .owl-prev {
  left: -20px;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel .owl-prev {
    left: 0;
  }
}
html body .owl-carousel.owl-theme .owl-controls {
  margin-top: 0 !important;
}
html body .owl-carousel.owl-theme.common-carousel {
  padding: 0;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel {
    padding: 0;
  }
}
html body .owl-carousel.owl-theme.common-carousel .owl-next,
html body .owl-carousel.owl-theme.common-carousel .owl-prev {
  background: none;
  font-size: 50px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel .owl-next,
  html body .owl-carousel.owl-theme.common-carousel .owl-prev {
    padding: 0 20px;
  }
}
html body .owl-carousel.owl-theme.common-carousel .owl-next {
  right: -20px;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel .owl-next {
    right: 0;
  }
}
html body .owl-carousel.owl-theme.common-carousel .owl-prev {
  left: -20px;
}
@media (min-width: 768px) {
  html body .owl-carousel.owl-theme.common-carousel .owl-prev {
    left: 0;
  }
}
/* ==========================================================
 Module: Elements
========================================================== */
/* Service / Feature Block (bearr_service_block) */
.title-section-wrapper {
  margin-bottom: 10px;
}
.title-section-wrapper .title-section {
  font-family: Open Sans;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .title-section-wrapper .title-section {
    font-size: 38px;
  }
}
@media (min-width:992px) {
  .title-section-wrapper .title-section {
    font-size: 40px;
  }
}
.title-section-wrapper .text-section {
  margin-bottom: 30px;
}
.title-section-wrapper.title-section-color1 {
  color: #393939;
}
.title-section-wrapper.title-section-color1 .text-section {
  color: #555555;
  font-size: 14px;
  opacity: 0.8;
}
.title-section-wrapper.title-section-color1 .title-section {
  color: #393939;
  display: inline-block;
  border: 4px solid;
  padding: 10px 20px;
  text-transform: uppercase;
  background-clip: padding-box;
  border-image: -webkit-linear-gradient(45deg, #b54cd8, #4f0072) 10 stretch;
}
.title-section-wrapper.title-section-white {
  color: #fff !important;
}
.title-section-wrapper.title-section-white .title-section {
  color: #fff;
  display: inline-block;
  border: 4px solid;
  border-color: #fff !important;
  padding: 10px 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.title-section-wrapper.title-section-white .text-section {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}
.title-section-wrapper .text-section {
  margin: 0 auto;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}
.service-block {
  text-align: center;
  padding-top: 0;
  padding-bottom: 20px;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
}
@media (min-width:992px) {
  .service-block {
    margin-bottom: 0;
  }
}
.service-block .service-block-icon {
  font-size: 36px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  margin-bottom: 10px;
  color: #ffffff;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
}
.service-block .service-block-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  color: #393939;
  margin-bottom: 5px;
  margin-top: 25px;
  padding-left: 15px;
  padding-right: 15px;
}
.service-block .service-block-text {
  font-size: 12px;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  color: #555555;
}
/* ==========================================================
 Module: Hero Slideshow
========================================================== */
/* Hero Slideshow Module (bearr-slideshow) */
.main-carousel-wrapper {
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/spinner.gif') no-repeat center center #eeeeee;
  background-size: 60px 60px;
  min-height: 500px;
}
@media (min-width:992px) {
  .main-carousel-wrapper {
    min-height: 550px;
  }
}
@media (min-width: 1400px) {
  .main-carousel-wrapper {
    min-height: 650px;
  }
}
.main-carousel .owl-controls .owl-next,
.main-carousel .owl-controls .owl-prev {
  width: 35px !important;
  height: 35px !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  top: 50%;
  margin-top: -20px;
  opacity: 0.2 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-carousel .owl-controls .owl-next:hover,
.main-carousel .owl-controls .owl-prev:hover {
  opacity: 0.9 !important;
  background-color: #8219a5 !important;
  border-color: #8219a5 !important;
}
.main-carousel .owl-controls .owl-prev {
  left: 0;
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/slide-left.png') no-repeat transparent !important;
  background-position: 10px 7px!important;
}
@media (min-width: 1200px) {
  .main-carousel .owl-controls .owl-prev {
    left: 50px;
  }
}
.main-carousel .owl-controls .owl-next {
  right: 0;
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/slide-right.png') no-repeat center center transparent !important;
  background-position: 12px 7px!important;
}
@media (min-width: 1200px) {
  .main-carousel .owl-controls .owl-next {
    right: 50px;
  }
}
.main-carousel .slide {
  color: #ffffff;
  text-align: center;
  background-position: right center;
  display: flex;
  width: 100%;
  height: 500px;
  font-family: Open Sans;
  align-items: center;
  padding-top: 70px;
  position: relative;
}
@media (min-width: 768px) {
  .main-carousel .slide {
    padding-top: 10%;
  }
}
@media (min-width:992px) {
  .main-carousel .slide {
    height: 550px;
  }
}
@media (min-width: 1400px) {
  .main-carousel .slide {
    height: 650px;
  }
}
.main-carousel .slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.66);
  z-index: 1;
}
.main-carousel .slide-inner {
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (min-width:992px) {
  .main-carousel .slide-inner {
    top: -30px;
  }
}
.main-carousel .slide-title {
  font-size: 40px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: -2px;
  font-weight: bold;
  font-family: Open Sans;
}
@media (min-width: 768px) {
  .main-carousel .slide-title {
    font-size: 57px;
  }
}
@media (min-width:992px) {
  .main-carousel .slide-title {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    opacity: 0;
  }
}
.main-carousel .slide-title.active {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.main-carousel .slide-title .slide-feature-text {
  color: #a43bc7;
}
@media (min-width:992px) {
  .main-carousel .primary-btn {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    opacity: 0;
  }
  .main-carousel .primary-btn.active {
    opacity: 0.9;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
  }
}
.main-carousel .slide-text {
  opacity: 0.9;
  font-weight: 200;
  font-style: italic;
  margin-bottom: 30px;
  font-family: Open Sans;
}
@media (min-width:992px) {
  .main-carousel .slide-text {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    opacity: 0;
  }
  .main-carousel .slide-text.active {
    opacity: 0.9;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
  }
}
@media (min-width:992px) {
  .main-carousel .slide-extra {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    opacity: 0;
  }
  .main-carousel .slide-extra.active {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
  }
}
.main-carousel .slide-text,
.main-carousel .slide-text p {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 1.5;
}
.main-carousel .owl-nav div.owl-prev,
.main-carousel .owl-nav div.owl-next {
  display: none;
  width: 40px;
  height: 40px;
  background-color: #0a0f14;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 3px;
}
@media (min-width: 768px) {
  .main-carousel .owl-nav div.owl-prev,
  .main-carousel .owl-nav div.owl-next {
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    display: block;
    font-size: 26px;
    opacity: 1;
    margin: 0;
    color: #ffffff;
    text-align: center;
  }
}
.main-carousel .owl-nav div.owl-prev:hover,
.main-carousel .owl-nav div.owl-next:hover {
  background-color: #8219a5;
}
.main-carousel .owl-dots {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
  width: 100%;
  bottom: 20px;
  z-index: 88889;
}
.main-carousel .owl-controls .owl-page span {
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  opacity: 1;
}
.main-carousel .owl-controls .owl-page.active span {
  height: 18px;
  width: 18px;
  border: 2px solid #ffffff;
  background: none;
}
.main-carousel .slide-extra {
  margin-top: 20px;
}
body .main-carousel .slide-videobg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  overflow: hidden;
  z-index: 0;
}
body .main-carousel .slide-videobg video {
  left: 0;
  top: 0;
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-carousel.owl-theme .owl-controls {
  margin: 0 !important;
}
/* Countdown Module (bearr-countdown) */
.bearr-countdown-item {
  display: block;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .bearr-countdown-item {
    flex-wrap: nowrap;
    display: flex;
  }
}
.bearr-countdown-item .countdown-col {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  margin: 15px;
  margin-top: 0;
  text-align: center;
  display: inline-block;
}
@media (min-width: 768px) {
  .bearr-countdown-item .countdown-col {
    min-width: 100px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .bearr-countdown-item .countdown-col:first-child {
    margin-left: 0;
  }
}
.bearr-countdown-item .countdown-col .countdown-time {
  font-size: 35px;
  line-height: 1;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bearr-countdown-item .countdown-col .countdown-time {
    font-size: 48px;
    margin-bottom: 5px;
  }
}
.bearr-countdown-item .countdown-col .countdown-type {
  font-size: 16px;
}
@media (min-width: 768px) {
  .bearr-countdown-item .countdown-col .countdown-type {
    font-size: 18px;
  }
}
/* ==========================================================
! Module: Testimonials
========================================================== */
/* Testimonials Module (bearr-testimonials) */
.testimonial-carousel {
  max-width: 980px;
  margin: 0 auto;
}
.testimonial-carousel .testimonial-image {
  margin-bottom: 35px !important;
}
.testimonial-carousel blockquote {
  border: 0;
  text-align: center;
}
.testimonial-carousel blockquote p {
  font-size: 17px;
  font-style: italic;
}
.testimonial-carousel blockquote footer:before {
  content: '';
  display: block;
  height: 2px;
  width: 70px;
  background: #fff;
  margin: 0 auto;
  margin-bottom: 8px;
  margin-top: 15px;
}
.testimonial-carousel blockquote footer cite {
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
}
/* ==========================================================
! Module: Timeline
========================================================== */
/* Timeline Module (bearr-timeline) */
@media (min-width: 768px) {
  .story-wrap {
    position: relative;
    padding-bottom: 25px;
    padding-top: 25px;
  }
  .story-wrap:hover .story-item {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
  }
  .story-wrap:before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #8219a5;
    top: 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    position: absolute;
    left: 50%;
    display: flex;
  }
}
.story-item {
  position: relative;
  background-color: #ffffff;
  border: 0px solid #cccccc;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .story-item {
    margin: 0 34px;
    text-align: right;
    margin: 20px 0 50px;
  }
}
@media (min-width:992px) {
  .story-item {
    margin: 0 44px;
  }
}
.story-item .story-item-content {
  padding: 20px;
}
.story-item .story-item-title {
  font-size: 28px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #393939;
  margin-bottom: 10px;
}
.story-item p {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.3;
}
.story-item p:last-child {
  margin-bottom: 0;
}
.story-item.story-item-alt {
  text-align: center;
}
@media (min-width:992px) {
  .story-item.story-item-alt {
    text-align: left;
  }
}
.story-date {
  display: flex;
  height: 100%;
  width: 100;
  align-items: center;
}
.story-date .story-time {
  color: #8219a5;
  font-size: 32px;
  line-height: 1.1;
  padding: 10px;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
@media (min-width: 768px) {
  .story-date .story-time {
    text-align: left;
  }
}
@media (min-width:992px) {
  .story-date .story-time {
    max-width: 370px;
    font-size: 52px;
    padding: 0px;
  }
}
@media (min-width: 1200px) {
  .story-date .story-time {
    max-width: 480px;
  }
}
@media (min-width: 768px) {
  .story-date-wrap {
    position: relative;
  }
  .story-date-wrap:before {
    content: "";
    left: -10px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    background: #fff;
    border: 4px solid #8219a5;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
}
@media (min-width: 768px) {
  .story-date-wrap-alt:before {
    left: inherit;
    right: -10px;
  }
  .story-date-wrap-alt .story-time {
    text-align: right;
  }
}
.story-item-img {
  margin-bottom: 15px;
}
.story-item-img img {
  width: 100%;
}
.story-text,
.story-text p {
  font-size: 13px;
  line-height: 1.5;
}
/* ==========================================================
! Module: Gallery
========================================================== */
/* Gallery Module (bearr-gallery) */
.gallery-images {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.gallery-item {
  padding: 0;
}
.gallery-item img {
  width: 100%;
}
/* ==========================================================
! Module: Clients
========================================================== */
/* Team Module (bearr-clients) */
.clients-carousel-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .clients-carousel-wrapper {
    padding: 40px 0px;
  }
}
.clients-carousel {
  position: relative;
  margin: 0 auto;
}
.clients-carousel .owl-item {
  text-align: center;
}
.clients-carousel .owl-next,
.clients-carousel .owl-prev {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  text-align: center;
  background-color: #8219a5 !important;
  color: #ffffff;
  top: 50%;
  margin-top: -48px !important;
  font-family: 'FontAwesome';
  font-size: 15px !important;
  padding: 0 !important;
  padding-top: 8px !important;
}
.clients-carousel .owl-prev {
  left: -90px !important;
  display: none;
  text-indent: -3px;
}
@media (min-width:992px) {
  .clients-carousel .owl-prev {
    display: block;
  }
}
.clients-carousel .owl-next {
  right: -90px !important;
  display: none;
  text-indent: 5px;
}
@media (min-width:992px) {
  .clients-carousel .owl-next {
    display: block;
  }
}
.clients-carousel .slide {
  margin: 0;
  padding: 0;
  max-width: 170px;
  text-align: center;
  display: inline-block;
}
.clients-carousel .slide img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.clients-carousel .client-item {
  width: 100%;
  display: block;
  opacity: 0.65;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.clients-carousel .client-item:hover {
  opacity: 1;
}
/* ==========================================================
! Module: Team
========================================================== */
/* Team Module (bearr-team) */
.team-carousel {
  margin-bottom: 20px;
}
.team-carousel .owl-stage-outer {
  padding-top: 10px !important;
}
.team-item {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.team-item:hover figcaption {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
}
.team-item figcaption {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translate(0px, -20px);
  -webkit-transform: translate(0px, -20px);
  -moz-transform: translate(0px, -20px);
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  opacity: 0;
}
.team-item figcaption:hover {
  opacity: 0.9;
  border-color: #8219a5;
}
.team-item figcaption:hover .team-caption {
  opacity: 1;
}
.team-item .team-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-item-heading {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}
.team-item .team-item-text {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0px;
  color: #ffffff;
}
.team-item > img {
  width: 100%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
/* ==========================================================
! Module: Blogroll
========================================================== */
/* Team Module (bearr-team) */
.blogroll-carousel {
  margin-bottom: 20px;
}
.blogroll-carousel .blog-item {
  background: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.blogroll-carousel .blog-item .blog-content {
  padding: 25px;
}
.blogroll-carousel .blog-item .heading {
  font-weight: bold;
  color: #393939;
  margin-bottom: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.1;
}
.blogroll-carousel .blog-item p {
  font-weight: normal;
  font-size: 13px;
  font-style: italic;
}
.blogroll-carousel .blog-item .blog-item-img {
  position: relative;
  margin-bottom: 0px;
}
.blogroll-carousel .blog-item .blog-item-img img {
  width: 100%;
}
.blogroll-carousel .blog-item .blog-item-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blogroll-carousel .blog-item .blog-item-img:after {
  content: "";
  background: url(http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/ico-plus-white.png) no-repeat center center;
  width: 94px;
  height: 86px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  opacity: 0;
}
.blogroll-carousel .blog-item .blog-item-img:hover:before {
  opacity: 0.5;
}
.blogroll-carousel .blog-item .blog-item-img:hover:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blogroll-carousel .blog-item-img {
  display: block;
  width: 100%;
  height: 250px;
  background-image: url(http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/icon_blog.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ddd;
}
.blogroll-carousel .blog-item-img-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.blogroll-carousel .post-element {
  margin-bottom: 0;
  background-color: transparent;
}
/* ==========================================================
! Module: GridBlog
========================================================== */
/* GridBlog Module (bearr-gridblog) */
.module-gridblog {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width:992px) {
  .module-gridblog {
    padding-right: 0;
    padding-left: 0;
  }
}
.module-gridblog .gridblog-date {
  width: 100%;
  height: 70px;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
@media (min-width: 768px) {
  .module-gridblog .gridblog-date {
    height: 110px;
    padding-top: 20px;
    margin-bottom: 0;
  }
}
.module-gridblog .gridblog-post {
  background: none;
}
.module-gridblog .gridblog-title {
  color: #393939;
  font-size: 17px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.module-gridblog .gridblog-text {
  color: #555555;
  font-size: 13px;
  margin-bottom: 10px;
}
.module-gridblog .gridblog-read-more {
  color: #8219a5;
  font-size: 13px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 1200px) {
  .module-gridblog .gridblog-read-more {
    text-align: left;
  }
}
.module-gridblog .gridblog-title,
.module-gridblog .gridblog-text,
.module-gridblog .read-more,
.module-gridblog .gridblog-date {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.module-gridblog .gridblog-item {
  border-bottom: 4px solid #e7e7e7;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .module-gridblog .gridblog-item {
    height: 150px;
  }
}
.module-gridblog .gridblog-item:hover .gridblog-title,
.module-gridblog .gridblog-item:hover .gridblog-text,
.module-gridblog .gridblog-item:hover .read-more {
  color: #555555;
}
.module-gridblog .gridblog-item:hover .gridblog-date {
  background-color: #555555;
}
.module-gridblog .gridblog-item-wrapper {
  clear: both;
}
.module-gridblog .gridblog-post {
  margin-bottom: 0;
}
.module-gridblog a:hover {
  text-decoration: none;
}
/* ==========================================================
! Module: Quover Features
========================================================== */
/* Timeline Module (bearr-quover) */
.quover-features {
  background-color: #8219a5;
  overflow: hidden;
  font-family: Open Sans;
}
@media (min-width:992px) {
  .quover-features {
    max-height: 160px;
  }
}
.quover-features .container-fluid {
  padding: 0px !important;
}
@media (min-width: 768px) {
  .quover-features .container-fluid {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width:992px) {
  .quover-features:hover .quover-features-item {
    width: 23%;
  }
}
.quover-features .quover-features-item {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 160px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width:992px) {
  .quover-features .quover-features-item {
    width: 25%;
    float: left;
  }
}
.quover-features .quover-features-item:nth-child(1) {
  background-color: #932ab6;
}
.quover-features .quover-features-item:nth-child(2) {
  background-color: #8219a5;
}
.quover-features .quover-features-item:nth-child(3) {
  background-color: #710894;
}
.quover-features .quover-features-item:nth-child(4) {
  background-color: #600083;
}
.quover-features .quover-features-item:nth-child(5) {
  background-color: #c5d2d2;
}
.quover-features .quover-features-item:nth-child(6) {
  background-color: #b4c1c1;
}
@media (min-width:992px) {
  .quover-features .quover-features-item:hover {
    width: 31%;
    background: #8219a5;
  }
}
.quover-features .quover-features-item .quover-features-item-wrapper {
  color: #fff;
  display: block;
  text-align: center;
  padding-top: 30px;
}
.quover-features .quover-features-item-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.quover-features .quover-features-item-icon {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  font-size: 22px;
  color: #fff;
}
@media (min-width: 1400px) {
  .quover-features .quover-features-item-icon {
    margin-bottom: 5px;
  }
}
.quover-features .quover-features-item-text {
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-transform: uppercase;
}
/* ==========================================================
! Module: Portfolio
========================================================== */
/* Portfolio Module (bearr-portfolio) */
body .bearr-portfolio {
  padding-bottom: 0;
}
body .bearr-portfolio .portfolio-filter-item {
  background: #929f9f;
  color: #ffffff;
  padding: 6px 12px;
  margin-right: 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body .bearr-portfolio .portfolio-filter-item:hover {
  background: #8219a5;
}
body .bearr-portfolio .portfolio-filter-item.item-active {
  background: #8219a5;
}
body .bearr-portfolio .bearr-portfolio-content .portfolio-item:hover .portfolio-item-infos-wrapper {
  opacity: 0.9;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
}
body .bearr-portfolio .bearr-portfolio-content .portfolio-item .portfolio-item-infos-wrapper {
  transform: translate(20px, -20px);
  -webkit-transform: translate(20px, -20px);
  -moz-transform: translate(20px, -20px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
body .bearr-portfolio .bearr-portfolio-content .portfolio-item .portfolio-item-title {
  text-transform: uppercase;
  font-weight: 16px;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 5px;
}
body .bearr-portfolio .bearr-portfolio-content .portfolio-item .portfolio-item-category {
  font-weight: 200px;
  font-size: 11px;
  font-style: italic;
  opacity: 0.7;
}
body .bearr-portfolio .bearr-portfolio-content .portfolio-item .bearr-portfolio-cat {
  display: inline-block;
  padding-left: 3px;
  padding-right: 3px;
}
body .bearr-portfolio .bearr-portfolio-content.bearr-portfolio-margin .portfolio-item {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}
body .bearr-portfolio .bearr-portfolio-content.bearr-portfolio-margin .portfolio-item img {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}
body .bearr-portfolio .bearr-portfolio-content.bearr-portfolio-margin .portfolio-item-infos-wrapper {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.content-area-portfolio {
  padding-bottom: 0;
  background: #ffffff;
}
.post-portfolio .portfolio-hero {
  padding-top: 220px;
  padding-bottom: 160px;
  background-color: #555;
  color: #ffffff;
  text-align: center;
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
.post-portfolio .portfolio-hero:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.post-portfolio .portfolio-hero .container {
  position: relative;
  z-index: 1;
}
.post-portfolio .portfolio-hero-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 42px;
}
.post-portfolio .portfolio-hero-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 6px;
}
.post-portfolio .post-portfolio-content {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width:992px) {
  .post-portfolio .post-portfolio-content {
    width: 90%;
    margin: 0 auto;
  }
}
.post-portfolio .post-portfolio-description {
  padding: 20px;
  background: #ffffff;
  border: 0px solid #cccccc;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.post-portfolio .post-portfolio-description:first-letter {
  font-size: 24px;
  font-weight: bold;
}
.post-portfolio .post-portfolio-description,
.post-portfolio .post-portfolio-description p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 200;
  margin-bottom: 15px;
}
.post-portfolio .post-portfolio-meta {
  background: #ffffff;
  padding: 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.post-portfolio .portfolio-meta-item-title {
  font-size: 14px;
  line-height: 1.8;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 3px;
  opacity: 0.9;
}
.post-portfolio .portfolio-meta-item-content {
  font-size: 12px;
  font-style: italic;
  opacity: 0.7;
}
.post-portfolio .post-portfolio-category:after {
  content: ', ';
}
.post-portfolio .post-portfolio-category:last-child:after {
  content: '' !important;
}
@media (min-width:992px) {
  .post-portfolio .post-portfolio-gallery {
    width: 90%;
    margin: 0 auto;
  }
}
.post-portfolio .portfolio-gallery-item {
  margin-bottom: 30px;
}
.post-portfolio .portfolio-gallery-item a {
  display: block;
  height: 250px;
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
@media (min-width:992px) {
  .post-portfolio .portfolio-gallery-item a {
    height: 400px;
  }
}
.post-portfolio .portfolio-gallery-item a:before {
  font-family: FontAwesome;
  content: "\f067";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  transform: translate(20px, -20px);
  -webkit-transform: translate(20px, -20px);
  -moz-transform: translate(20px, -20px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  font-weight: bold;
  padding-top: 35%;
}
.post-portfolio .portfolio-gallery-item a:hover:before {
  opacity: 0.1;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
}
.post-pagination-style2 {
  width: 100%;
  background: #eee;
}
.post-pagination-style2:after {
  content: '';
  display: block;
  clear: both;
}
.post-pagination-style2 a {
  display: inline-block;
  background: #8219a5;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  padding: 20px;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-pagination-style2 a:hover {
  padding-left: 50px;
  padding-right: 50px;
}
.post-pagination-style2 .nav-previous {
  background: #eee;
}
.post-pagination-style2 .nav-previous a:before {
  content: '« ';
}
.post-pagination-style2 .nav-next {
  background: #eee;
}
.post-pagination-style2 .nav-next a:after {
  content: ' »';
}
.post-pagination-style2 .navigation {
  margin-bottom: 0;
}
/* ==========================================================
! Module: Restaurant Elements
========================================================== */
/* Restaurant Elements Module (bearr-restaurant-elements) */
.bearr-restaurant-menu {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.bearr-restaurant-menu ul {
  list-style: none;
}
.bearr-restaurant-menu .menu-heading {
  background-color: #8219a5;
  background-image: linear-gradient(to right, #932ab6, #710894);
  color: #ffffff;
  padding: 15px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
}
.bearr-restaurant-menu .menu-content {
  background-color: #f4f4f4;
  border: 0px solid #cccccc;
  padding: 45px 35px;
  color: #000;
}
.bearr-restaurant-menu .menu-content li {
  margin-bottom: 30px;
}
.bearr-restaurant-menu .menu-content li:last-child {
  margin-bottom: 0;
}
.bearr-restaurant-menu .menu-content .item-compound {
  background: url('http://www.buckleyforflooring.co.uk/wp-content/themes/pando/css/../framework/img/dot.png') repeat-x center 16px;
  width: 100%;
  z-index: 2;
}
.bearr-restaurant-menu .menu-content .item-name {
  text-transform: uppercase;
  color: #111111;
  padding-right: 10px;
}
.bearr-restaurant-menu .menu-content .item-price {
  font-size: 18px;
  color: #8219a5;
  padding-left: 10px;
}
.bearr-restaurant-menu .menu-content .item-name,
.bearr-restaurant-menu .menu-content .item-price {
  background-color: #f4f4f4;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 24px;
}
.bearr-restaurant-menu .menu-content .item-description {
  font-style: italic;
  color: #555555;
  font-size: 12px;
}
/* ==========================================================
! Plugin: Contact Form 7
========================================================== */
/* 
* Contact Form 7
*/
.wpcf7-form label {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.wpcf7-form .wpcf7-form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #555555;
  background-image: none;
  border: 1px solid #cccccc;
  height: 48px;
  background: none;
  margin-top: 8px;
  font-weight: 300;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (min-width:992px) {
  .wpcf7-form .wpcf7-form-control {
    height: 48px;
  }
}
.wpcf7-form textarea.wpcf7-form-control {
  min-height: 200px;
  padding: 20px;
  width: 100% !important;
}
.wpcf7-form span.form-label {
  font-weight: bold;
  text-transform: uppercase;
}
.wpcf7-form input[type=submit] {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  background: #8219a5;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 35px;
  display: inline-block;
  width: auto;
}
div.wpcf7-response-output {
  padding: 15px;
  text-align: center;
  margin-top: 5px;
}
span.wpcf7-not-valid-tip {
  background: #ff0000;
  color: #ffffff;
  display: inline-block;
  padding: 8px;
  font-size: 12px;
}
/* ==========================================================
! Plugin: Simple Lightbox
========================================================== */
/* 
* Simple lightbox
*/
.simple-lightbox .sl-close:before {
  display: none;
}
.simple-lightbox [class^="sl-"] {
  font-family: Open Sans;
}
.simple-lightbox .sl-navigation {
  font-size: 24px !important;
}
/* ==========================================================
! Crossbrowser Solutions
========================================================== */
.ie9 #page-loader,
.ie8 #page-loader {
  display: none !important;
}
