/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  /* font-family: "Montserrat", sans-serif; */
  /*font-family: Verdana,Geneva,sans-serif; */
  font-family: "Raleway", sans-serif;
  color: #444444;
}

a {
  color: #625950;
  text-decoration: none;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

h1, h2 {
  font-weight: 400;
  text-transform: uppercase;
  color: #aaa;
  margin: 20px 0;
  text-align: center;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #428bca;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
*/
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #625950b3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #7d7266;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  border-bottom: 1px solid #0002;
  background: #0003;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #0003;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 100px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fd7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  /*top: calc(100% + 40px);*/
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #0007;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 12px;
  /*font-weight: normal;*/
  text-transform: uppercase;
  /*color: #000000;*/
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fd7;
}

.navbar .dropdown:hover>ul {
  opacity: 0.8;
  /*top: 100%;*/
  visibility: visible;
  border-radius: 10px;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  -webkit-text-stroke: 2px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /*background: rgba(34, 39, 43, 0.7);*/
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 25px;
  right: 65px;
  /*bottom: 15px;*/
  /*left: 15px;*/
  /*padding: 40px 0;*/
  padding: 10px 20px 10px 20px;
  border-radius: 10px;
  /*background-color: #fffa;*/
  /*background-color: #444a;*/
  background-color: #0006;
  overflow-y: auto;
  transition: 0.3s;  
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  /*color: #000000;*/
  min-width: 200px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fd7;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  /* background: #fff; */
   background: #0003; 
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fd7;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(12, 13, 14, 0.8);*/
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 8px #000;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  font-size: 24px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #625950;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #625950;
}

#hero .btn-get-started:hover {
  background: #3f342e;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/*
section {
  padding: 50px 0;
}
*/
.section-bg {
  background-color: #fafafb;
}

.section-title {
  text-align: center;
  /*padding-bottom: 50px;*/
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f5f9fc;
  color: #428bca;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  /*font-weight: 700;*/
}

.section-title h3 span {
  color: #5ad;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  color: #919191;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 70%;
  }
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.card {
	border: 0;
}
.card-body {
	text-align:center;
}

.card-body .card-text {
	margin-bottom: 0.3rem;
}

.card-body small {
	color:#aaa;
}

.btn-outline-secondary {
	background: #cabeb3;
	border-color: #cabeb3;
	color: #fff;
}

.btn-outline-secondary:hover {
	color: #cabeb3;
	background: #fff;
	border-color: #cabeb3;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #394047;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #b9d4ec;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #428bca;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #428bca;
  border-color: #428bca;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #428bca;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #428bca;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #428bca;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
  padding-top: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #394047;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e3e6e9;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #428bca;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 60px;
}

.services .icon {
  float: left;
}

.services .icon i {
  color: #428bca;
  font-size: 36px;
  line-height: 1;
}

.services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: #428bca;
}

.services .description {
  margin-left: 60px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 20px;
  background: #428bca;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #5697d0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #428bca;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(57, 64, 71, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(57, 64, 71, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6aa3d5;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #428bca;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #428bca;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(57, 64, 71, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #394047;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b9d4ec;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #428bca;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 40px 40px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  text-align: center;
}

.contact .info i {
  font-size: 48px;
  color: #92bce0;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
  padding: 0 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: #777777;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #428bca;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fff;
  border: 2px solid #428bca;
  padding: 12px 35px;
  transition: 0.4s;
  background: #428bca;
  color: #fff;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5697d0;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  /*background: #f7f8f8;*/
  min-height: 40px;
  /* margin-top: 70px; */
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #505a63;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2e3339;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #2e3339;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -3px;
  right: -4px;
  bottom: -3px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 0 20px;
  margin: 3px;
  background: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #3071a9;
}

#footer .footer-top {
  background: #444;
  /* border-top: 1px solid #394047; */
  /* border-bottom: 1px solid #394047; */
  padding: 30px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #625950;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #7d7266;
  color: #fff;
  text-decoration: none;
}

#header .social-links { display: inline-block; margin-left: 10px;}
#header .social-links a i { margin: 0; }
#header .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #625950;
  color: #fff;
  line-height: 1;
  padding: 3px 0;
  margin-left: 3px;
  border-radius: 4px;
  text-align: center;
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

#header .social-links a:hover {
  background: #7d7266;
  color: #fff;
  text-decoration: none;
}


#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #625950;
  font-size: 18px;
  line-height: 1;
  margin-left: -5px;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #625950;
}
/*
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}
*/

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


.page-oferta h3 { 
  font-size:20px;
  text-transform: uppercase;
  margin-top: -50px;
  color: #fff;
  text-shadow: 0px 0px 2px #aaa;
  margin-bottom: 20px;
}
.page-oferta p { 
  font-size: 14px;
  color: #666;
}

.cat-oferta h2 {font-size:22px; font-weight:bold; }

.home_oferta h3 {font-size:16px; font-weight:bold; text-align:center;}
.home_oferta img {width:100%;}




/* DEFAULT STYLES */
/* DEFAULT STYLES */
/* DEFAULT STYLES */
/* DEFAULT STYLES */
/* DEFAULT STYLES */
/* DEFAULT STYLES */
/* DEFAULT STYLES */
/* DEFAULT STYLES */
/*--------------------------------------------------------------
# DEFAULT SLX STYLES
--------------------------------------------------------------*/
.btn-primary { background-color: #646464; border-color:#646464; }
.btn-primary:hover { background-color: #423b35; border-color:#423b35; }
.btn-secondary { background-color: #515151; border-color:#515151; }
.btn-secondary:hover { background-color: #aa9f96; border-color:#aa9f96; }


.left50 {width:48%; float:left;}
.right50 {width:48%; float:right;}
.clear {clear:both;}

.opacity0 {opacity:0;}
.opacity01 {opacity:.1;}
.opacity02 {opacity:.2;}
.opacity03 {opacity:.3;}
.opacity04 {opacity:.4;}
.opacity05 {opacity:.5;}
.opacity06 {opacity:.6;}
.opacity07 {opacity:.7;}
.opacity08 {opacity:.8;}
.opacity09 {opacity:.9;}
.opacity1 {opacity:1;}

.shop_top {float: right; margin-top: -30px; position:relative; z-index:4;}

.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}
.alert > p,.alert > ul{margin-bottom:0}
.alert > p + p{margin-top:5px}
.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}
.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}
.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}

span.error, div.error, .form-error {color:#ffffff; background:#8e0b0b; font-weight:bold; padding:10px 12px; border-radius:3px; margin: -10px 0 20px 0; position: relative; font-size: 12px; line-height: 12px; display:block;}

.error:after, .form-error:after {bottom: 100%; left: 20px; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(142, 11, 11, 0); border-bottom-color: #8e0b0b; border-width: 6px; margin-left: -6px;}

.transition {
-webkit-transition: all 0.45s;
-moz-transition: all 0.45s;
-o-transition: all 0.45s;
transition: all 0.45s;
}

.login-left input[type="text"], .login-left input[type="password"], .login-left input[type="email"], .login-left input[type="phone"],
.login-right input[type="text"], .login-right input[type="password"], .login-right input[type="email"], .login-right input[type="phone"], .login-left select, .login-right select {display:block; margin:12px 0; width:100%; box-sizing:border-box; padding:10px 12px; border-radius:2px;}

.login-left h3, .login-right h3 {font-size:25px;}

/*
a.button {font:bold 11px Tahoma, Geneva, serif; color:#636363; padding:8px 10px; background:#dedacb; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px;}
a.button:hover {background:#888888; color:#ffffff;}
*/

.btn {padding: 12px 24px; color:#ffffff; margin:10px 0; display:inline-block;}
.btn2 {background:#004c66; padding:8px 14px; font-size:13px; font-weight:bold; color:#f6f9fa;}

.home-newsletter input[type="text"], .home-newsletter input[type="email"] {padding: 14px 24px; color:#000000; margin:10px 0; display:inline-block; margin-right:20px; border-radius:0; border:0; width: calc(100% - 230px);}
.contactForm input[type="text"], .contactForm input[type="email"] {padding: 10px; color:#000000; margin:10px 0; display:inline-block; /*border-radius:0; border:1px solid grey;*/ }
.contactForm input[type="submit"] {padding: 12px 24px; color:#ffffff; margin:10px 0; display:inline-block;}

.btn.alt {background:#d1cbbf;}

.btn-blue {background:#031674; width:100%; font-size: 14px; letter-spacing:0.2px; font-weight:800; margin:0;}
.btn-blue:hover {background:#b58523}

/* SHOP STEPS */
.shop-steps {text-align:center; font-size:0; padding: 20px 0;}
.shop-steps .step {display:inline-block; padding:0 22px; border-bottom:2px solid #c1c3c3; font-size:14px; color:#cdcdcd; vertical-align: bottom; padding-bottom:12px;}
.shop-steps .step span {display:inline-block; width:30px; height:30px; border-radius:15px; color:#ffffff; background:#bfbfbf; font-size:18px; line-height:30px; text-align:center; margin-right:10px;}

.shop-steps .status {display:inline-block; vertical-align: bottom;}

.shop-steps .step.active {border-bottom:2px solid #808583; color:#808583;}
.shop-steps .step.active span {background:#808583;}
/*
.shop-steps .status.active {background:url(img/step-active.png) no-repeat center bottom; border-bottom:0; margin-bottom:-3px; width:9px; height:9px;}
*/

.left {float:left;}
.right {float:right;}

.list_count {z-index:10; position:relative;}
.list_count:hover .select-listbox {display:block;}
.select-listbox {position:absolute; left:0; top:100%; width:100%; z-index:11; display:none;}

td:hover .list_count, .cart_count:hover .list_count {z-index:15;}

.select-listbox span {display:block; height:18px; line-height:17px; text-align:center; border:1px solid #d9d8d3; background:#eae4dc; color:#000000; cursor:pointer; font-size:12px; font-weight:normal; z-index:12;}
.select-listbox span:hover {background:#fefefe; box-shadow:inset 1px 1px 1px #ffffff; -moz-box-shadow:inset 1px 1px 1px #ffffff; -webkit-box-shadow:inset 1px 1px 1px #ffffff; z-index:14;}

.but { font-weight:bold; font-size:22px; display:inline-block; cursor:pointer; margin-top: 3px;}
.but.inc {float: right; width:10px; padding-top: 2px;}
.but.dec {float: left; width:10px;}


.div33 {width:33.33%; float:left; box-sizing:border-box; padding:0 20px;}

table {border-spacing: 0px; border-collapse: collapse;}
th {padding: 0px; font-weight:bold;}
td {padding: 0px;}

table.dataTable {margin-bottom: 20px; border-radius: 5px; width:100%;}
table.dataTable th {padding: 10px; text-align: left; vertical-align: middle; white-space: nowrap; font-weight: bold; background-color: #646464b3; color:#ffffff;}
table.dataTable td {padding: 15px 10px 15px 10px; text-align: left; vertical-align: middle; white-space: nowrap;  border-bottom: 1px solid #c1c1c1;}
/*
table.dataTable td.thumb, table.dataTable th.thumb {width:60px;}
*/
table.dataTable .thumb {width:60px; margin-right:10px;}
table.dataTable .thumb img {max-height: 120px; max-width:50px;}


.txt-right {text-align:right;}
.txt-left {text-align:left;}
.txt-center {text-align:center;}


.wrap {white-space:normal !important;}

.confirm-box {float:left; width:49%; margin-right:2%; box-sizing:border-box; padding:15px 25px; margin-top:12px; border-radius:3px;}
.confirm-box span {font-size:18px; display:block; padding-bottom:10px;}
.confirm-box .slx-shop-cart-total span {margin-top:0; display:inline;}


.confirm-box1 {background:#776a5a;}
.confirm-box1, .confirm-box2 {font-size:15px; color:#ffffff; line-height:26px;}
.confirm-box2 {color:#9e9e9e;}
.confirm-box1 span {color:#ffffff;}

.confirm-box1 input, .confirm-box1 select {background:#ffffff; color:#000000; font-family: 'Poppins', sans-serif; font-weight:normal; font-size:16px; padding: 3px 6px; margin-bottom: 10px; border: 1px solid rgba(171, 102, 110, 0.4); width:100%; box-sizing: border-box; display: block; border-radius: 3px;} 
.confirm-box2 {background:#f0f0f0; margin-right:0;}
.confirm-box2 input, .confirm-box2 select {background:#ffffff; color:#000000; font-family: 'Poppins', sans-serif; font-weight:normal; font-size:16px; padding: 3px 6px; margin-bottom: 10px; border: 1px solid rgba(158, 158, 158, 0.4); width:100%; box-sizing: border-box; display: block; border-radius: 3px;}

.confirm-box3 {float:none; margin-right:0; font-size: 17px; line-height: 30px; width:100%; clear:both; padding:0; padding-top:20px;}
.confirm-box3 {text-align:right;}
.confirm-box3 .btn {font-size: 18px; padding: 14px 22px;}

.confirm-box3 textarea {background:#f0f0f0; color:#000000; font-family: 'Poppins', sans-serif; font-weight:normal; font-size:15px; padding: 3px 6px; border: 1px solid rgba(171, 102, 110, 0.4); width:100%; box-sizing: border-box; display: block; border-radius: 3px;}
.red {color:#b52234;}
/*
.button-modif {}
.button-modif1 {background:url(img/edit-icon1.png) no-repeat left 2px; display:block; float:right; padding-left:30px; font-size:16px; color:#ffffff; margin-right:-5px; margin-bottom:-5px;}
.button-modif2 {background:url(img/edit-icon2.png) no-repeat left 2px; display:block; float:right; padding-left:30px; font-size:16px; color:#9e9e9e; margin-right:-5px; margin-bottom:-5px;}
*/
.gray-bg {background:#bbbbbb; width:50%; box-sizing:border-box; padding:15px 25px; margin-top:52px;}
.softgray-bg {background:#f9f9f9; width:50%; box-sizing:border-box; padding:15px 25px; margin-top:52px;}

.gray-bg, .gray-bg h3, .gray-bg p {color:#ffffff; text-transform:none;}

.softgray-bg, .softgray-bg p {color:#000000;}
.softgray-bg h3 {color:#776a5a; text-transform:none;}



.user-recovery {/*width:40%;*/ margin:0 auto; /* border: 1px solid #e1e1e1; padding: 30px; border-radius: 3px; */}
.user-recovery form {width:40%;}
.user-recovery p {font-size:13px; line-height:18px; margin-top:0; padding-top:0;}
.user-recovery form {padding-top:12px;}
.user-recovery .button {font-size: 14px; padding: 6px 18px; margin-top:10px;}

/*
.required {background-image:url(img/asterisk.png); background-position:right top; background-repeat:no-repeat; padding-right:20px;}
*/

ul.bookmark {list-style: none; padding: 0; margin: 0; border-bottom:1px solid #bcbcbc; margin-top:30px;}
ul.bookmark li {display: inline-block; border: 1px solid #bcbcbc; border-bottom-width: 0; margin: 0 0.5em 0 0; border-top-left-radius: 2px; border-top-right-radius: 2px;}
ul.bookmark a {display: block; padding: 5px 20px;}
ul.bookmark li.active {font-weight:bold;}
ul.bookmark li.active, ul.bookmark li:hover {position: relative; top: 1px; background: white;}


.slx-users .button {display:inline-block; margin-top:14px; font-size:14px; padding:4px 12px;}
.slx-users input {display:block; margin:5px 0 15px 0;}

.slx-users h2 {font-size:18px; font-weight:bold; color:#727272; text-transform:none; font-family: 'Poppins', sans-serif; display:none;}
.slx-users label {display:block; font-weight:bold; margin-top:10px; font-size:13px;}



.column1-3 {float:left; width:32%;}
.column1-3 + .column1-3 {margin-left: 2%;}


/* TABLES */
table{background-color:transparent}
caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}
th{text-align:left}
.table{width:100%;max-width:100%;margin-bottom:20px}
.table > thead > tr > th,.table > tbody > tr > th,.table > tfoot > tr > th,.table > thead > tr > td,.table > tbody > tr > td,.table > tfoot > tr > td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}
.table > thead > tr > th{vertical-align:bottom;border-bottom:2px solid #ddd}
.table > caption + thead > tr:first-child > th,.table > colgroup + thead > tr:first-child > th,.table > thead:first-child > tr:first-child > th,.table > caption + thead > tr:first-child > td,.table > colgroup + thead > tr:first-child > td,.table > thead:first-child > tr:first-child > td{border-top:0}
.table > tbody + tbody{border-top:2px solid #ddd}
.table .table{background-color:#fff}
.table-condensed > thead > tr > th,.table-condensed > tbody > tr > th,.table-condensed > tfoot > tr > th,.table-condensed > thead > tr > td,.table-condensed > tbody > tr > td,.table-condensed > tfoot > tr > td{padding:5px}
.table-bordered{border:1px solid #ddd}
.table-bordered > thead > tr > th,.table-bordered > tbody > tr > th,.table-bordered > tfoot > tr > th,.table-bordered > thead > tr > td,.table-bordered > tbody > tr > td,.table-bordered > tfoot > tr > td{border:1px solid #ddd}
.table-bordered > thead > tr > th,.table-bordered > thead > tr > td{border-bottom-width:2px}
.table-striped > tbody > tr:nth-of-type(odd){background-color:#f9f9f9}
.table-hover > tbody > tr:hover{background-color:#f5f5f5}
table col[class*="col-"]{position:static;display:table-column;float:none}
table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}

.table-responsive{min-height:.01%;overflow-x:auto}

.table-striped > tbody > tr:hover{background-color:#f5f5f5}

/*--------------------------------------------------------------
# SHOP
--------------------------------------------------------------*/
.cart-remove{
	display:inline-block;
	width:20px;height:20px;padding:0;
	color:#0000;
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px' viewBox='0 0 482.428 482.429' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M381.163 57.799h-75.094C302.323 25.316 274.686 0 241.214 0c-33.471 0-61.104 25.315-64.85 57.799h-75.098 c-30.39 0-55.111 24.728-55.111 55.117v2.828c0 23.223 14.46 43.1 34.83 51.199v260.369c0 30.39 24.724 55.117 55.112 55.117 h210.236c30.389 0 55.111-24.729 55.111-55.117V166.944c20.369-8.1 34.83-27.977 34.83-51.199v-2.828 C436.274 82.527 411.551 57.799 381.163 57.799z M241.214 26.139c19.037 0 34.927 13.645 38.443 31.66h-76.879 C206.293 39.783 222.184 26.139 241.214 26.139z M375.305 427.312c0 15.978-13 28.979-28.973 28.979H136.096 c-15.973 0-28.973-13.002-28.973-28.979V170.861h268.182V427.312z M410.135 115.744c0 15.978-13 28.979-28.973 28.979H101.266 c-15.973 0-28.973-13.001-28.973-28.979v-2.828c0-15.978 13-28.979 28.973-28.979h279.897c15.973 0 28.973 13.001 28.973 28.979 V115.744z'/%3E%3Cpath d='M171.144 422.863c7.218 0 13.069-5.853 13.069-13.068V262.641c0-7.216-5.852-13.07-13.069-13.07 c-7.217 0-13.069 5.854-13.069 13.07v147.154C158.074 417.012 163.926 422.863 171.144 422.863z'/%3E%3Cpath d='M241.214 422.863c7.218 0 13.07-5.853 13.07-13.068V262.641c0-7.216-5.854-13.07-13.07-13.07 c-7.217 0-13.069 5.854-13.069 13.07v147.154C228.145 417.012 233.996 422.863 241.214 422.863z'/%3E%3Cpath d='M311.284 422.863c7.217 0 13.068-5.853 13.068-13.068V262.641c0-7.216-5.852-13.07-13.068-13.07 c-7.219 0-13.07 5.854-13.07 13.07v147.154C298.213 417.012 304.067 422.863 311.284 422.863z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cart-pickup {margin:10px 0 20px 0;}
.cart-pickup h3, .gray-bg h3 {font-size:16px; margin-bottom:20px; font-family: 'Poppins', sans-serif;}
.cart-pickup a {padding-left:28px; display:block; min-height:20px; font-size:14px; line-height:20px; margin:8px 0; font-family: 'Poppins', sans-serif;}
.cart-pickup a {background:url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='%F0%9F%94%8D-Product-Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='ic_fluent_checkbox_unchecked_24_regular' fill='%23212121' fill-rule='nonzero'%3E%3Cpath d='M5.75 3 L18.25 3 C19.7687831 3 21 4.23121694 21 5.75 L21 18.25 C21 19.7687831 19.7687831 21 18.25 21 L5.75 21 C4.23121694 21 3 19.7687831 3 18.25 L3 5.75 C3 4.23121694 4.23121694 3 5.75 3 Z M5.75 4.5 C5.05964406 4.5 4.5 5.05964406 4.5 5.75 L4.5 18.25 C4.5 18.9403559 5.05964406 19.5 5.75 19.5 L18.25 19.5 C18.9403559 19.5 19.5 18.9403559 19.5 18.25 L19.5 5.75 C19.5 5.05964406 18.9403559 4.5 18.25 4.5 L5.75 4.5 Z' id='%F0%9F%8E%A8Color'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat left center; }
.cart-pickup a .left {width:70%;}
.cart-pickup a .right {color:#595959; width:20%; text-align:right;}
.cart-pickup a.selected, .cart-pickup a:hover {background:url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='%F0%9F%94%8D-Product-Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='ic_fluent_checkbox_checked_24_regular' fill='%23212121' fill-rule='nonzero'%3E%3Cpath d='M18.25 3 C19.7687831 3 21 4.23121694 21 5.75 L21 18.25 C21 19.7687831 19.7687831 21 18.25 21 L5.75 21 C4.23121694 21 3 19.7687831 3 18.25 L3 5.75 C3 4.23121694 4.23121694 3 5.75 3 L18.25 3 Z M18.25 4.5 L5.75 4.5 C5.05964406 4.5 4.5 5.05964406 4.5 5.75 L4.5 18.25 C4.5 18.9403559 5.05964406 19.5 5.75 19.5 L18.25 19.5 C18.9403559 19.5 19.5 18.9403559 19.5 18.25 L19.5 5.75 C19.5 5.05964406 18.9403559 4.5 18.25 4.5 Z M10 14.4393398 L16.4696699 7.96966991 C16.7625631 7.6767767 17.2374369 7.6767767 17.5303301 7.96966991 C17.7965966 8.23593648 17.8208027 8.65260016 17.6029482 8.94621165 L17.5303301 9.03033009 L10.5303301 16.0303301 C10.2640635 16.2965966 9.84739984 16.3208027 9.55378835 16.1029482 L9.46966991 16.0303301 L6.46966991 13.0303301 C6.1767767 12.7374369 6.1767767 12.2625631 6.46966991 11.9696699 C6.73593648 11.7034034 7.15260016 11.6791973 7.44621165 11.8970518 L7.53033009 11.9696699 L10 14.4393398 L16.4696699 7.96966991 L10 14.4393398 Z' id='%F0%9F%8E%A8Color'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat left center;}


/*form[name="add_to_cart"] {position:relative;}*/
/*
form[name="add_to_cart"] {position:relative; display:inherit; width: 100%;}
.cart-button-valider {font-size:10px !important; opacity:0 !important; padding:2px 4px !important; height:0px !important; overflow:hidden !important; position:absolute;left: 0; right: 0; width: 100%;}
.cart-button-valider.show {opacity:1 !important; height:auto !important; overflow:visible !important; position: absolute;}
*/
/*
.slx-shop-cart input[type="submit"] {background: #515151; display: block; margin: 30px 0 0 0; color: #ffffff; text-align: center; font-weight: bold; padding:6px 12px; border:0; font-family: 'Poppins', sans-serif; display:inline-block; margin:0; font-size:14px;}
*/
.cart-button-valider {font-size:12px; color:#fff; background-color: #515151; border-color:#515151; }
.slx-shop-cart-next input[type="submit"] {font-size:18px; padding:12px 20px; margin-top:10px;}

.slx-shop-cart-products input[type="text"] {display:inline-block; text-align:center; font-size: 13px;}

.slx-shop-cart-code {float:right;}


.slx-shop-cart input[type="text"] {padding:6px; border-radius:3px;}
.slx-shop-cart input[type="submit"] {padding:5px; border-radius:3px;}

.slx-shop-cart-next input[type="submit"] {display: inline-block; margin: 10px 0 12px 0; padding:12px 22px; font-family: 'Poppins', sans-serif; vertical-align:bottom; margin-left:30px; font-size:16px;}
.slx-shop-cart-next .btn {display: inline-block; margin: 10px 0 12px 0; padding:8px 15px; font-family: 'Poppins', sans-serif; font-size:12px; vertical-align:bottom;}
.slx-shop-cart-next form {display:inline;}

.slx-shop-cart-total {font-size:30px; font-weight:bold; line-height:30px;}
.slx-shop-cart-total span {font-size:22px; font-weight:normal;}

.slx-shop-item-price {color:#aaa;} 

/*
.payments-div {background:#8e8e8e; box-sizing:border-box; padding:15px 25px; color:#ffffff; text-align:left;}
.payments-div * {color:#ffffff; text-align:left;}
.delivery-div {background:#eaeaea; box-sizing:border-box; padding:15px 25px; color:#000000; text-align:left;}
.delivery-div * {color:#000000; text-align:left;}

.payments-div h3 {color:#ffffff; text-align:left; text-transform:none;}
.delivery-div h3 {color:#776a5a; text-transform:none;}

.payments-div h3:after, .delivery-div h3:after {display:none;}
.payments-div h3, .delivery-div h3 {margin-top:0; padding-bottom:0;}
*/

.payment-finish {background:#bbbbbb; width:90%; margin:0 auto;}
.payment-finish h3 {color:#ffffff; text-transform:none;}
.payment-finish p {font-size:14px; line-height:16px;}
.payment-finish .left50 {width:50%; box-sizing:border-box; padding:20px 25px; text-align:left; color:#ffffff; float:none; display:table-cell; vertical-align: top;}
.payment-finish .left50 {}
.payment-finish .right50 {width:50%; text-align:left; background:#ffffff; border:1px solid #bbbbbb; box-sizing:border-box; float:none; display:table-cell; vertical-align: middle;}


.page-2col { margin-bottom:40px;}
.page-2col-right .page-2col-img {float:right; margin-left:16px; width:50%;}
.page-2col-left .page-2col-img {float:left; margin-right:16px; width:50%;}

/*
.slx-page .card {
  border: 0;
  width: 300px;
  height: 300px;
  overflow: hidden;
  margin: auto;
  border-radius: 0;
}
*/
