.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../themes/drevotrieska/assets/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
.rtl .toast-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}
#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
  #toast-container > div.rtl {
    padding: 15px 50px 15px 15px;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a {
    text-decoration: none !important;
}

div#loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff90;
    z-index: 100;
}


.autocomplete {
    background: white;
    z-index: 1000;
    font: 14px/22px "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid rgba(50, 50, 50, 0.6);
}
a.btn.btn-style-1.btn-bigger.doplnok {
    padding: 8px 16px;
    font-size: 15px;
}



.autocomplete * {
    font: inherit;
}

.autocomplete > div {
    padding: 0 4px;
}

.autocomplete .group {
    background: #eee;
}

.autocomplete > div:hover:not(.group),
.autocomplete > div.selected {
    background: #81ca91;
    cursor: pointer;
}

img.delivery_icon {
    max-width: 80px;
    padding: 20px;
}

span.del_info {
    display: block;
    font-size: 10px;
    color: #ff660c;
}


.delivery a {
    width: 100%;
    display: block;
    border: 1px solid #ff660c;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #ff660c !important;
    cursor:pointer;
}

.payment a {
    width: 100%;
    display: block;
    border: 1px solid #ff660c;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #ff660c !important;
    cursor:pointer;
}


a.selected {
    background: #ff660c;
    color: white !important;
    text-decoration: none;
}
a.selected  img{
 filter: invert(1) brightness(100);
}

.delivery a:hover {
    background: #ff660c;
    color: white !important;
    text-decoration: none;
}

.delivery a:hover img {
    filter: invert(1) brightness(100);
}


.payment a:hover {
    background: #ff660c;
    color: white !important;
    text-decoration: none;
}

.payment a:hover img {
    filter: invert(1) brightness(100);
}


ul.payment {
    list-style: none;
    padding-left: 0;
}
img.payment_icon {
    max-width: 80px;
    padding: 20px;
}

ul.payment li {
    margin-bottom: 5px;
    border: 1px solid #ff660c;
    border-radius: 5px;
    cursor:pointer;
}

ul.payment li:hover {
    background: #ff660c;
    color: white;
}




ul.delivery li:hover img {
    filter: invert(1) brightness(100);
}



.cart-summary.cart {
    margin-top: 0;
    top: 0;
    bottom: unset;
    position:sticky;
}

.swal-text {
    font-family: "Poppins",sans-serif;
    text-align: center;
    font-weight: 300;
    color: black;
}
.swal-title {
    font-family: "Poppins",sans-serif;
    color: black;
    font-weight: 600;
}

.swal-icon--warning {
    border-color: #ff660c !important;
}
.swal-icon--warning__body, .swal-icon--warning__dot {

    background-color: #ff660c;
}



div#previewImage.left{
    border-left: 2px solid #000090;
}
div#previewImage.left2{
    border-left: 5px solid green;
}
div#previewImage.right{
    border-right: 2px solid #000090;
}
div#previewImage.right2{
    border-right: 5px solid green;
}

div#previewImage.top{
    border-top: 2px solid #000090;
}
div#previewImage.top2{
    border-top: 5px solid green;
}
div#previewImage.bottom{
    border-bottom: 2px solid #000090;
}
div#previewImage.bottom2{
    border-bottom: 5px solid green;
}


#quantity{
    text-align:center;
    }
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  font-family: 'Poppins', sans-serif;
}
img.icon-sidebar {
  width: 100%;
  padding: 10px 20px 10px;
}
.form-control {
    height: calc(2em + .75rem + 2px);
}

li.active .icon-sidebar {
  filter: invert(1);
}

div#previewImage img {
    max-width: 100%;
    position:relative;
    z-index:5;
}

span.width-line {
    width: 100%;
    background: #fe650c;
    height: 2px;
    position: absolute;
    top: -4%;
}
    .width-size{
position: absolute;
    top: -7%;
    width: 40%;
    left: 30%;
    padding: 0 5%;
    color: #ff660c;
    background: white;
    z-index: 2;
    text-align: center;
        
        }
        
        span.height-line {
    position: absolute;
    top: 0;
    left: -4%;
    background: #ff660c;
    width: 2px;
    height: 100%;
}

    .height-size {
position: absolute;
    top: 48%;
    width: 40%;
    text-align: center;
    left: -25%;
    transform: rotate(-90deg);
    background: white;
    z-index: 2;
    color: #ff660c;
}
    
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 20;
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
          box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
  padding: 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .logo {
  border-right: 1px solid #dddddd;
  padding-right: 30px;
}

nav .logo img {
  max-height: 38px;
}

nav .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}

nav .navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav .navigation ul li {
  margin: 0 20px;
  display: inline-block;
}

nav .navigation ul li a {
  color: #3a3a3a;
  font-weight: 600;
}

nav .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .info > *{
    margin:0 10px;    
}

nav .info img {
  max-height: 32px;
  width: 24px;
  margin: 0 5px;
  cursor: pointer;
}

nav .info #header-contacts-container {
  margin-right: 20px;
}

nav .info #header-contacts-container a {
  display: block;
  color: #464646;
  font-weight: 500;
}
nav .user{
    position:relative;    
}
nav .user .btn{
    padding:10px 30px !important;
}
nav .user i{
    margin-right:10px;    
}
nav .user:hover ul{
    display:block;    
}
nav .user ul{
    display:none;
    position: absolute;
    top: 45px;
    width:100%;
    background: white;
    padding: 10px 0;
    list-style-type: none;    
    box-shadow:0 3px 30px rgba(0, 0, 0, 0.1), 0 3px 20px rgba(0, 0, 0, 0.1);
}
nav .user ul li a{
    padding:7px 10px;    
    color:black;
    transition:.2s all ease-in-out;
    display:block;
}
nav .user ul li a:hover{
    background:#e6e6e6;    
}
nav .cart{
    position:relative;    
}
nav .cart i{
    margin-right:15px;    
}
nav .cart span{
    position:absolute;
    top:0;
    padding:3px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#ff660d;
    font-size:11px;
    color:white;
    left:25px;
}

main {
    margin-top: 150px;
    margin-left: 150px;
}

main.no-left {
  margin-left: 0;
}

main .left-menu {
  width: 140px;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1), 0 3px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1), 0 3px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 100px;
  height: 100%;
}

main .left-menu a{
    text-decoration:none;
    color:inherit;
}

main .left-menu ul {
  padding: 0;
}

main .left-menu ul li {
  width: 100%;
  display: block;
  border-bottom: 1px solid #3a3a3a;
  text-align: center;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}

main .left-menu ul li a{
    padding: 20px 20px;
    display:block;
}

main .left-menu ul li:hover  {
  background: #ff660d;
  color: white;
  
}

main .left-menu ul li:hover .icon-sidebar {
  filter: invert(1);
}


main .left-menu ul li.active {
  background: #ff660d;
  color: white;
}

main .content {
  max-width: 65vw;
}

main aside {
  position: fixed;
  right: 0;
  top: 100px;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1), 0 3px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1), 0 3px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px 40px;
  max-width:28vw;
  max-height: 91vh;
  min-width: 20vw;
}

.main_slider {
  margin-top: 90px;
  background:black;
}

section .section-title {
  margin-bottom: 50px;
  text-align: center;
}

section .section-title h2 {
  font-weight: 700;
}

.content label{
    font-weight:500;    
}

.products .col-md-6 {
  margin-bottom: 50px;
}

.products .image img {
    float: left;
    max-width: 160px;
    margin-right: 20px;
}

.products .text {
  display: inline-block;
}

.products .text h3 {
  font-weight: 700;
  font-size: 20px;
}

.products .text table {
  width: 100%;
  margin-bottom: 20px;
}

.products .text table tr {
  border-bottom: 1px dashed #cacaca;
}

.products .text table tr td {
  padding: 3px 0;
  font-size: 13px;
  color: #464646;
}

.products .text table tr td:nth-last-child(1) {
  text-align: right;
  font-weight: 600;
}

.sub-section {
  margin-top: 100px;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ff660d;
  color: white;
  margin-bottom: 30px;
}



input {
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid #9c9c9c;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  width: 100%;
}

.btn.btn-style-1 {
    background-color: #ff660d;
    color: white;
    border: 1px solid #ff660d;
    padding: 5px 15px;
}
.btn.btn-style-1:hover {
    background-color: #333;
    color: white;
    border: 1px solid #333;
}


.btn.btn-style-2 {
  color: #ff660d;
  background-color: white;
  border: 1px solid #ff660d;
  padding: 5px 15px;
}
.btn.btn-style-2:hover{
  background-color: #333;
  color: white;
  border: 1px solid #333;  
}
.btn.btn-style-3 {
  color: white;
  background-color: #78c142;
  border: 1px solid #78c142;
  padding:10px 15px;
  font-size:16px;
  font-weight:600;
}
.btn.btn-bigger{
    padding:15px 30px;
}

.login-page {
  max-width: 70vw;
}

.login-page .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.login-page .section-title h2 {
  font-weight: 600;
}

.login-page .col-md-6:nth-child(1) {
  border-right: 1px solid #3a3a3a;
}

.login-page .input-group {
  margin: 10px 0;
}

.login-page .input-group label {
  font-weight: 600;
  margin: 0;
}

.login-page form {
  max-width: 25vw;
  margin: 0 auto;
}

.login-page a {
  color: black;
}

.login-page button {
  border-radius: 2px;
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: 1px;
  width: 100%;
  background-color: #93be58;
  color: White;
  border: none;
  padding: 10px 0;
}

.padd-45 {
  padding: 0 45px;
}

.preview_cart{
    overflow-y:auto;    
    max-height: 64vh;
}

.cart-item {
  border-bottom: 1px solid #9c9c9c;
}

.cart-item .cart-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #f0f0f0;
  padding: 10px 20px;
  border-radius: 5px;
}

.cart-item .cart-item__title .left h3 {
  color: #ff660d;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.cart-item .cart-item__title .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left:50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-item .cart-item__title .right > * {
  margin: 0 10px;
}
.cart-item .cart-item__title .right a{
    cursor:pointer;
    text-decoration:none;
    
}
.cart-item .cart-item__title .right a:hover span,
.cart-item .cart-item__title .right a:hover i{
    color:#333;    
}

.cart-item .cart-item__title .right span, .cart-item .cart-item__title .right i {
  color: #ff660d;
}
.cart-item .cart-item__title .right i{
    font-size:15px;
    transition:.2s all ease-in-out;
}

.cart-item .cart-item__title .right span {
  font-weight: 700;
  font-size:15px;
  transition:.2s all ease-in-out;
}

.cart-item .card-item__body {
  padding: 10px 10px;
}

.cart-item .card-item__body .image {
  width: 20%;
}

.cart-item .card-item__body .image img {
  float: left;
  max-width: 100%;
}
.cart-item .card-item__body .text{
    width:100%;
    display:inline-block;
}
.cart-item .card-item__body .text table {
  width: 100%;
}
.number-input-element{
    display:flex;    
}
.number-input-element input{
    margin:0 5px;    
}
.number-input-element button{
    padding:14px 15px !important;    
}
td.bold-data {
    font-weight: 700;
    color: black !important;
}

.cart-item .card-item__body .text td {
    color: #797979;
    padding: 3px 0;
    font-size: 13px;
}
.cart-item .card-item__body .text td:nth-child(1){
    width:100px;    
}
.cart-summary{
    margin-top:20px;
    position: absolute;
    background:white;
    bottom:20px;
    width:83%;
}
.cart-summary table{
    width:100%;    
}
.cart-summary table td{
    color: #1d1d1d;
    font-size:16px;
    font-weight:600;
    padding:6px 0;
}
.cart-summary table td:nth-child(2){
    font-size:20px;    
}
.cart-summary table tr:nth-last-child(1) td{
    color: #ff660d;
}
.cart-summary table tr td:nth-child(2) {
    text-align:right;    
}
.cart-summary .btn{
    margin:5px auto;
    display:block;
}
.error-msg{
    color: red;
    font-size: 13px;
    padding: 5px;    
}
.radio {
  display: grid;
  grid-template-columns: -webkit-min-content auto;
  grid-template-columns: min-content auto;
  grid-gap: 0.5em;
  font-size: 2.25rem;
  color: var(--color);
}
.radio:focus-within .radio__label {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 1;
}

.radio__label {
  line-height: 1;
  -webkit-transition: 180ms all ease-in-out;
  transition: 180ms all ease-in-out;
  opacity: 0.8;
  font-size:15px;
}

.radio__input {
  display: -webkit-box;
  display: flex;
  color:#ff660d;
}
.radio__input input {
  opacity: 0;
  width: 0;
  height: 0;
}
.radio__input input:focus + .radio__control {
  box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

.radio-gradient input:checked + .radio__control {
  background: radial-gradient(currentcolor 50%, rgba(255, 0, 0, 0) 51%);
}

.radio-before .radio__control {
  display: grid;
  place-items: center;
}
.radio-before input + .radio__control::before {
  content: "";
  width: 5px;
    height: 5px;
  box-shadow: inset 0.5em 0.5em currentColor;
  border-radius: 50%;
  -webkit-transition: 180ms -webkit-transform ease-in-out;
  transition: 180ms -webkit-transform ease-in-out;
  transition: 180ms transform ease-in-out;
  transition: 180ms transform ease-in-out, 180ms -webkit-transform ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.radio-before input:checked + .radio__control::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.radio__control {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid currentColor;
  -webkit-transform: translateY(-0.05em);
          transform: translateY(-0.05em);
}
.radio-vertical{
    display:block;
    grid-gap:0;
    font-size:inherit;
    text-align:center;
}
.radio-vertical .radio__input{
    display:flex;
    justify-content:center;
    margin-bottom:5px;
}
.shipping_content{
    padding-right:20px;    
}

main aside h2 {
  margin-bottom: 30px;
  font-weight: 700;
}

footer {
  margin-top: 45px;
  padding-bottom: 20px;
  border-top:1px solid #cccccc;
  padding-top:20px;
}

footer .logo {
  border-right: 1px solid #cccccc;
  padding-right: 36px;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo img {
  max-width: 100%;
}

footer h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

footer ul li {
  margin-bottom: 1px;
}

footer ul li a {
  font-size: 13px;
  color: #3a3a3a;
}

.banner_area {
  margin-bottom: 88px;
}

.banner_thumb {
  position: relative;
}

.banner_thumb:hover img {
  opacity: 0.8;
}

.banner_thumb img {
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
}

.banner_content {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  left: 31px;
}

.banner_content h3 {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 17px;
}

.banner_content h2 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 0;
}

.banner_content a {
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  margin-top: 36px;
}

.banner_content a:hover {
  color: #ff660d;
}


.shipping_area {
  padding: 99px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_area {
    padding: 78px 0;
  }
}

@media only screen and (max-width: 767px) {
  .shipping_area {
    padding: 59px 0 58px;
  }
}

.single_shipping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #ebebeb;
}

@media only screen and (max-width: 767px) {
  .single_shipping {
    margin-bottom: 23px;
    border-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_shipping.col_2 {
    border-right: 0;
  }
}

.single_shipping.col_3 {
  border-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_shipping.col_3 {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .single_shipping.col_3 {
    margin-bottom: 0;
  }
}

.shipping_icone {
  margin-right: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_icone {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .shipping_icone {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .shipping_icone img {
    max-width: 42px;
  }
}

.shipping_content h3 {
  font-size: 20px;
  line-height: 16px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping_content h3 {
    font-size: 13px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .shipping_content h3 {
    font-size: 13px;
  }
}

.shipping_content p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shipping_content p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .shipping_content p {
    font-size: 13px;
  }
}


/*home three css here*/
.welcome_lukani_store {
  margin-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome_lukani_store {
    margin-bottom: 72px;
  }
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_store {
    margin-bottom: 57px;
  }
}

.welcome_lukani_container {
  border-bottom: 1px solid #3a3a3a;
  padding: 98px 0 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome_lukani_container {
    padding: 78px 0 73px;
  }
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_container {
    padding: 59px 0 53px;
  }
}

.welcome_lukani_thumb {
  text-align: center;
}
.welcome_lukani_thumb img{
    max-width:100%;    
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_thumb {
    margin-bottom: 32px;
  }
}

.welcome_lukani_header {
  margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_header {
    margin-bottom: 18px;
  }
}

.welcome_lukani_header h3 {
  color: #3a3a3a;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.welcome_lukani_header h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_header h2 {
    font-size: 27px;
    line-height: 30px;
  }
}

.welcome_lukani_desc p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 25px;
}

.welcome_lukani_desc p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_desc p {
    margin-bottom: 15px;
  }
}

.welcome_lukani_footer {
  margin-top: 32px;
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_footer {
    margin-top: 23px;
  }
}

.welcome_lukani_footer p {
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  margin-top: 16px;
}

.welcome_lukani_footer p span {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_footer p {
    margin-top: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .welcome_lukani_content {
    text-align: center;
  }
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content {
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .slider_content {
    text-align: center;
  }
}

.slider_content h1 {
  font-size: 90px;
  line-height: 90px;
  font-weight: 500;
  margin-bottom: 33px;
  text-transform: uppercase;
  letter-spacing: -2px;
  color:white;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_content h1 {
    font-size: 63px;
    line-height: 63px;
    margin-bottom: 23px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content h1 {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content h1 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 14px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 767px) {
  .slider_content h1 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 7px;
    letter-spacing: 1px;
  }
}

.slider_content p {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 30px;
  color:white;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_content p {
    font-size: 20px;
    line-height: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content p {
    font-size: 20px;
    line-height: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .slider_content p {
    font-size: 15px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider_content a {
    margin-top: 36px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_content a {
    font-size: 13px;
    padding: 0 25px;
    height: 45px;
    line-height: 45px;
    margin-top: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_content a {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin-top: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .slider_content a {
    font-size: 11px;
    height: 34px;
    line-height: 34px;
    padding: 0 18px;
    margin-top: 13px;
  }
}

.slider_content h1{
    font-size: 90px;
    line-height: 90px;
    font-weight: 500;
    margin-bottom: 33px;
    text-transform: uppercase;
    letter-spacing: -2px;
}


.single_slider {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: 638px;
  display:flex;
  align-items:center;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single_slider {
    height: 419px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_slider {
    height: 433px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_slider {
    height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .single_slider {
    background-position: 5%;
    height: 280px;
  }
}


.contact-info-section{
	position:relative;
	padding:40px 0px 40px;
	background-color:#ff660d;
}

.contact-info-block{
	position:relative;
}

.contact-info-block .inner-box{
	position:relative;
	text-align:center;
}

.contact-info-block .inner-box .icon-box{
	position:relative;
	font-size:40px;
	color:#ffffff;
	line-height:1em;
	margin-bottom:15px;
}

.contact-info-block .inner-box .icon-box .icon{
	position:relative;
}

.contact-info-block .inner-box h3{
	position:relative;
	font-size:24px;
	font-weight:600;
	color:#ffffff;
	margin-bottom:12px;
}

.contact-info-block .inner-box .text{
	position:relative;
	color:#ffffff;
	font-size:17px;
	line-height:1.7em;
}

.main-slider .slide{
	position:relative;
	text-align:center;
	padding:220px 0px 220px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

.main-slider.style-two .slide{
	text-align:left;
}

.main-slider .title{
	position:relative;
	color:#ffffff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
	text-transform: capitalize;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .active .title{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 500ms;
}

.text p strong {
    color: #ff670d;
    font-size: 20px;
    font-weight: 700;
}


.main-slider h2{
	position:relative;
	color:#ffffff;
	font-size:60px;
	font-weight:700;
	line-height:1.2em;
	margin-bottom:20px;
	opacity: 0;
	text-transform:unset;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .active h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 1000ms;
}

.main-slider .text{
	position:relative;
	color:#ffffff;
	font-size:16px;
	opacity:0;
	line-height: 1.8em;
	font-weight:400;
	margin-bottom:32px !important;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .text.alternate{
	color:#1f1f1f;
}

.main-slider .active .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 1500ms;
}

.main-slider .link-box{
	opacity:0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 2000ms;
}
/*** 



====================================================================

	Experiance Section

====================================================================



***/

.experiance-section{
	position:relative;
	padding-top:115px;
	margin-bottom:50px;
}

.experiance-section .pattern-layer{
	position:absolute;
	right:0px;
	top:0px;
	width:844px;
	height:670px;
}

.experiance-section .title-column{
	position:relative;
	margin-bottom:40px;
}

.experiance-section .title-column .inner-column{
	position:relative;
}

.experiance-section .title-column .upper-box{
	position:relative;
	margin-bottom:90px;
}

.experiance-section .title-column .upper-box .upper-inner{
	position:relative;
	padding-left:200px;
}

.experiance-section .title-column .upper-box .upper-inner:before{
	position:absolute;
	content:'';
	left:0px;
	top:-45px;
	width:110px;
	height:172px;
	border:12px solid #eaeaea;
}

.experiance-section .title-column .upper-box .number{
	position:absolute;
	left:40px;
	top:-20px;
	color:#ff660d;
	font-weight:700;
	line-height:1em;
	font-size:120px;

}

.experiance-section .title-column .upper-box h3{
	position:relative;
	color:#322f2f;
	font-size:30px;
	font-weight:700;
	line-height:1.3em;
	text-transform:uppercase;

}

.experiance-section .title-column .upper-box .upper-title{
	position:relative;
	color:#ab7442;
	font-size:20px;
	font-weight:600;
	line-height:1.3em;
	margin-top:7px;
	text-transform:uppercase;
}

.experiance-section .title-column .inner-column .text{
	position:relative;
	color:#777777;
	font-size:16px;
	line-height:1.7em;
	margin-bottom:40px;
}

.experiance-section .title-column .lower-box .theme-btn{
	position:relative;
	float:left;
}

.experiance-section .title-column .lower-box .signature{
	position:relative;
	float:left;
	margin-top:-10px;
	margin-left:40px;
}

.experiance-section .video-column{
	position:relative;
}
.featured-section {
    margin-top: 60px;
}
.experiance-section .video-column .inner-column{
	position:relative;
	padding-left:40px;
	padding-bottom:40px;
}

.experiance-section .video-column .image{
	position:relative;
	padding-right:0px;
}

.experiance-section .video-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.experiance-section .video-column .image .video-box{
	position:absolute;
	right:-20px;
	bottom:-90px;
	width:270px;
	height:180px;
	z-index:1;
	overflow:hidden;
}

.experiance-section .video-column .image .video-box .video-image{
	position:relative;
	margin:0px;
}

.experiance-section .video-column .image .video-box .video-image img{
	position:relative;
	width:100%;
	z-index:3;
}

.experiance-section .video-column .image .video-box .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	text-align:center;
	overflow:hidden;
	line-height: 45px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.experiance-section .video-column .image .video-box .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:10;
	background-color:rgba(255,102,13,.85);
}

.experiance-section .video-column .image .video-box .overlay-box span{
	position: absolute;
	width:60px;
	height: 60px;
	left:50%;
    top: 50%;
	z-index:99;
	color: #ffffff;
	font-weight:400;
	font-size:16px;
	text-align: center;
	border-radius:50%;
	padding-left:4px;
	display: inline-block;
	margin-top: -30px;
	margin-left:-30px;
	line-height:60px;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	background-color:rgba(255,255,255,0.30);

}

.experiance-section .video-column .image .video-box .overlay-box span:after{
	position:absolute;
	content:'';
	left:-9px;
	top:-9px;
	right:-9px;
	bottom:-9px;
	border-radius:50px;
	border:1px dashed #ffffff;
}

.experiance-section .video-column .image .video-box .ripple,
.experiance-section .video-column .image .video-box .ripple:before,
.experiance-section .video-column .image .video-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:60px;
	height: 60px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.experiance-section .video-column .image .video-box .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.experiance-section .video-column .image .video-box .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

.experiance-section .video-column .info-box{
	position:relative;
	margin-top:90px;
}

.experiance-section .video-column .info-box .info-inner{
	position:relative;
	padding-left:85px;
	display:inline-block;
}

.experiance-section .video-column .info-box .icon{
	position:absolute;
	left:0px;
	top:0px;
	width:60px;
	height:60px;
	color:#3c3939;
	font-size:28px;
	text-align:center;
	border-radius:50px;
	line-height:58px;
	border:1px solid #3c3939;
	background-color:#ffffff;
}

.experiance-section .video-column .info-box h3{
	position:relative;
	color:#322f2f;
	top:-2px;
	font-size:18px;
	font-weight:700;
	text-transform:capitalize;
}

.experiance-section .video-column .info-box .number{
	position:relative;
	color:#777777;
	font-size:24px;
	font-weight:700;
	text-transform:capitalize;
}
.featured-section .inner-container{
        position: relative;
    padding-left: 70px;
    padding-bottom: 60px;    
}

.featured-section .inner-container:before{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 630px;
    height: 530px;
    background: url(../themes/drevotrieska/assets/img/pattern-5.png) no-repeat;    
}

.what-we-section{
	position:relative;
	padding-top:100px;
	background: whitesmoke;
	margin-bottom:50px;
}

.what-we-section .pattern-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-repeat:no-repeat;
}

.what-we-section .title-column{
	position:relative;
}

.what-we-section .title-column .inner-column{
	position:relative;
	padding-right:45px;
}

.what-we-section .title-column .text{
	position:relative;
	margin-bottom:30px;
}

.what-we-section .title-column .text p{
	position:relative;
	line-height:1.7em;
	color:#777777;
	font-size:16px;
	margin-bottom:20px;
}

.what-we-section .title-column .text p:last-child{
	margin-bottom:0px;
}

.what-we-section .title-column .image{
	position:relative;
	margin-top:60px;
}

.what-we-section .blocks-column{
	position:relative;
}
.what-we-section .blocks-column .inner-column{
	position:relative;
	padding-top:50px;
}

.what-we-section .blocks-column .services-block-two{
	position:relative;
	margin-bottom:40px;
}

.services-block-two{
	position:relative;
}

.services-block-two .inner-box{
	position:relative;
	padding:35px 35px;
	background-color:#ffffff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
	box-shadow:0px 0px 15px rgba(0,0,0,0.15);
}

.services-block-two .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:0px;
	background-color:#ff660d;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
}

.services-block-two .inner-box:hover::before{
	height:100%;
}
.services-block-two .inner-box .icon-box{
	position:relative;
	line-height:1em;
	font-size:64px;
	color:#ab7442;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
}

.services-block-two .inner-box:hover .icon-box{
	color:#ffffff;
}

.services-block-two .inner-box h3{
	position:relative;
	color:#322f2f;
	font-size:22px;
	font-weight:600;
	line-height:1.3em;
	margin-top:12px;
}

.services-block-two .inner-box h3 a{
	position:relative;
	color:#322f2f;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
}

.services-block-two .inner-box .text{
	position:relative;
	color:#777777;
	font-size:16px;
	font-weight:400;
	line-height:1.7em;
	margin-top:12px;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
}

.services-block-two .inner-box:hover .read-more,
.services-block-two .inner-box:hover .text{
	color:#ffffff;
}

.services-block-two .inner-box .read-more{
	position:relative;
	color:#ab7442;
	font-size:16px;
	font-weight:600;
	margin-top:15px;
	display:inline-block;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
}


====================================================================

	Contact Page Section

====================================================================



***/



.contact-page-section{

	position:relative;

	padding:100px 0px 30px;

}



.contact-form .form-group{

	margin-bottom:20px;

}



.contact-form .form-group input[type="text"],

.contact-form .form-group input[type="password"],

.contact-form .form-group input[type="tel"],

.contact-form .form-group input[type="email"],

.contact-form .form-group select{

	position:relative;

	display:block;

	width:100%;

	line-height:28px;

	padding:10px 25px;

	color:#888888;

	border:1px solid #dddddd;

	height:60px;

	font-size:14px;

	background:#ffffff;

	-webkit-transition:all 300ms ease;

	-ms-transition:all 300ms ease;

	-o-transition:all 300ms ease;

	-moz-transition:all 300ms ease;

	transition:all 300ms ease;

}



.contact-form .form-group input[type="text"]:focus,

.contact-form .form-group input[type="password"]:focus,

.contact-form .form-group input[type="tel"]:focus,

.contact-form .form-group input[type="email"]:focus,

.contact-form .form-group select:focus,

.contact-form .form-group textarea:focus{

	border-color:#c08c4d;

}



.contact-form .form-group textarea{

	position:relative;

	display:block;

	width:100%;

	line-height:24px;

	padding:15px 25px 25px;

	color:#888888;

	border:1px solid #dddddd;

	height:145px;

	background:#ffffff;

	resize:none;

	font-size:14px;

	-webkit-transition:all 300ms ease;

	-ms-transition:all 300ms ease;

	-o-transition:all 300ms ease;

	-moz-transition:all 300ms ease;

	transition:all 300ms ease;

}



.contact-form .submit-btn{

	position:relative;

	color:#ffffff;

	font-weight:500;

	font-size:14px;

	margin-top:10px;

	border-radius:50px;

	letter-spacing:1px;

	border:2px solid #222222;

	background-color:#222222;

	padding:14px 50px 14px;

	text-transform:uppercase;

	-webkit-transition:all 300ms ease;

	-ms-transition:all 300ms ease;

	-o-transition:all 300ms ease;

	-moz-transition:all 300ms ease;

	transition:all 300ms ease;

}



.contact-form .submit-btn:hover{

	background:none;

	color:#222222;

}



.contact-form input.error,

.contact-form select.error,

.contact-form textarea.error{

	border-color:#ff0000 !important;	

}



.contact-form label.error{

	display:block;

	line-height:24px;

	padding:5px 0px 0px;

	margin:0px;

	text-transform:uppercase;

	font-size:12px;

	color:#ff0000;

	font-weight:500;	

}



.contact-page-section .info-column .text{

	position:relative;

	line-height:2em;

	font-size:14px;

	color:#777777;

	margin-bottom:25px;

}



/* Contact Info */



.contact-info{

	position: relative;

	margin-bottom: 50px;

}



.contact-page-section .contact-info li{

	position: relative;

	padding-left: 70px;

	font-size: 16px;

	line-height: 24px;

	color: #777777;

	font-weight: 400;

	margin-bottom: 45px;

}



.contact-page-section .contact-info li .icon{

	position: absolute;

	left: 0;

	top: 0;

	font-size: 40px;

	line-height: 1.4em;

	color: #ab7442;

}



.contact-page-section .contact-info li strong{

	display: block;

	font-size: 18px;

	line-height: 26px;

	color: #322f2f;

	font-weight: 700;

	margin-bottom: 5px;

}



.contact-page-section .contact-info li a{

	color: #322f2f;

	display: inline-block;

    -webkit-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    transition: all 300ms ease;

}



.contact-page-section .contact-info li a:hover{

	color: #ab7442;

}


.page-title{

	position:relative;

	padding:120px 0px 110px;

	background-size:cover;

	background-repeat:no-repeat;

	background-position:center center;

	background-attachment: fixed;

}



.page-title:before{

	position:absolute;

	content: '';

	left: 0px;

	top: 0px;

	width: 100%;

	height: 100%;

	display: block;

	background-color: rgba(0,0,0,0.80);

}



.page-title .auto-container{

	position:relative;

}



.page-title .title{

	position:relative;

	color:#ffffff;

	font-size:16px;

	margin-bottom:12px;

}



.page-title h2{

	position:relative;

	color:#ffffff;

	font-weight:800;

	line-height:1.2em;

	margin-bottom: 10px;

	font-size:40px;

	padding-bottom:18px;

	text-transform:capitalize;

}



.page-title h2:before{

	position:absolute;

	content:'';

	left:0px;

	bottom:0px;

	width:120px;

	height:2px;

	background-color:#cccccc;

}



.page-title h2:after{

	position:absolute;

	content:'';

	left:0px;

	bottom:0px;

	width:25px;

	height:3px;

	background-color:#ab7442;

}



.page-breadcrumb{

	position:relative;

	padding:18px 30px;

	margin-top:10px;

	display:inline-block;

	background-color:#ff660d;

	border-radius:0px 0px 10px 0px;

}



.page-breadcrumb li{

	position:relative;

	display:inline-block;

	margin-right:10px;

	padding-right:15px;

	color:#ffffff;

	font-size:15px;

	font-weight:500;

	text-transform:capitalize;

}



.page-breadcrumb li:after{

	position:absolute;

	content: "\f105";

	right:-2px;

	top:-1px;

	color:#ffffff;

	font-size:14px;

	font-family: 'FontAwesome';

}



.page-breadcrumb li:last-child::after{

	display: none;

}



.page-breadcrumb li:last-child{

	padding-right:0px;

	margin-right:0px;

}



.page-breadcrumb li a{

	color:#ffffff;

	font-weight:500;

	text-transform: capitalize;

	transition:all 0.3s ease;

	-moz-transition:all 0.3s ease;

	-webkit-transition:all 0.3s ease;

	-ms-transition:all 0.3s ease;

	-o-transition:all 0.3s ease;

}



/***



==================================================================

		Contact Map Section

==================================================================



***/



.contact-map-section{

	position: relative;

	padding-top:40px;

	padding-bottom:100px;

}



.contact-map-section .map-outer{

	position: relative;

	height: 500px;

} 

.contact-map-section .map-outer iframe{
	left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    margin-bottom: -10px;
}

.contact-map-section .map-canvas{

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 500px;

}


.featured-block{
	position:relative;
}

.featured-block .inner-box{
	position:relative;
	padding-bottom:60px;

}

.featured-block .inner-box .image{
	position:relative;
	padding-left:130px;

}

.featured-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;

}

.featured-block .inner-box .image .options{
	position:absolute;
	right:45px;
	bottom:45px;
}

.featured-block .inner-box .image .options .plus-icon{
	position:relative;
	width:30px;
	height:30px;
	color:#ffffff;
	font-size:14px;
	line-height:28px;
	margin-left:12px;
	text-align:center;
	display:inline-block;
	background-color:#ab7442;
	border:1px solid #ab7442;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.featured-block .inner-box .image .options .plus-icon:before{
	position:absolute;
	content:'';
	right:-5px;
	top:-5px;
	width:14px;
	height:14px;
	border-top:1px solid #ffffff;
	border-right:1px solid #ffffff;
}

.featured-block .inner-box .image .options .plus-icon:after{
	position:absolute;
	content:'';
	left:-5px;
	bottom:-5px;
	width:14px;
	height:14px;
	border-left:1px solid #ffffff;
	border-bottom:1px solid #ffffff;

}

.featured-block .inner-box .image .options .plus-icon:hover{
	color:#ffffff;
	border-color:#ffffff;
	background-color:#322f2f;
}

.featured-block .inner-box .image .content-box{
	position:absolute;
	left:0px;
	bottom:-60px;
	padding:35px 115px 35px 35px;
}



.featured-block .inner-box .image .content-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(255,255,255,0.95);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);

}

.featured-block .inner-box .image .content-box .title{
	position:relative;
	color:#777777;
	font-size:14px;
}

.featured-block .inner-box .image .content-box h3{
	position:relative;
	color:#322f2f;
	font-size:24px;
	font-weight:700;
	line-height:1.3em;
	margin-top:10px;
	text-transform:uppercase;
}

.featured-block .inner-box .image .content-box h3 a{
	position:relative;
	color:#322f2f;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.featured-block .inner-box .image .content-box h3 a:hover{
	color:#ab7442;
}

.featured-block .inner-box .image .content-box .text{
	position:relative;
	color:#777777;
	font-size:16px;
	line-height:1.7em;
	margin-top:12px;
	max-width:340px;
	margin-bottom:25px;
}

#previewImage button{
    border-radius:5px;
    background:white;
    border:1px solid #cecece;
    padding:5px 15px;
    position:relative;
    z-index:6;
}

.hide{
    display:none;    
}
.visible{
    display:block;    
}

.breakout{
    position:absolute; 
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    width:100%;
    border-bottom:2px solid black;
}

.breakout .mm{
    position: absolute;
    left: -40px;
    font-size: 12px;
    transform: rotate(-90deg);
}

.modal-dekor{
    position:fixed;
    height:90%;
    width:90%;
    top:5%;
    left:5%;
    display:none;
    background:white;
    box-shadow:0px 2px 20px 20px rgb(97 97 97 / 31%);
    padding:25px 50px;
    transition:.2s all ease-in-out;
    overflow: auto;
    z-index: 100;
}

.modal-dekor .close{
    position:absolute;
    right:25px;
    top:20px;
    cursor: pointer;
}

.modal-dekor .grid{
    display:flex;
    flex-wrap:wrap;
}

.modal-dekor .grid .item{
    width:16%;   
    margin-bottom:50px;
    cursor: pointer;
}

.modal-dekor .title{
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d2d2d2;
}
.modal-dekor .title h2{
    font-weight:700;
    
}
.modal-dekor .item img{
    max-width:95%;    
}

.modal-dekor .item h4{
    font-size: 16px;
    min-height: 50px;
    width: 90%;
}
.page-subtitle{
    font-weight:600;
    margin-bottom:20;
    position:relative;
}
.page-subtitle:after{
    content:"";
    display:block;
    margin:10px 0;
    height:2px;
    width:30px;
    background:black;
}

.dekor{
    display:none;    
}

.changeHeight{
    height:50px;    
}

.dekor-image img{
    max-width:178px;  
    margin-left:20px;
}

.page-title-2{
    color: #ff660d;
    font-weight: 700;  
}


====================================================================

	Services Section

====================================================================



***/



.services-section{

	position:relative;

	z-index:1;

	padding-top:115px;

}



.services-section .owl-nav{

	display:none;

}



.services-section .owl-dots{

	position:relative;

}



.services-section .owl-dots .owl-dot{

	position:relative;

	width:10px;

	height:10px;

	margin:0px 5px;

	border-radius:50px;

	background-color:#ab7442;

	display:inline-block;

	transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-section .owl-dots .owl-dot:hover,

.services-section .owl-dots .owl-dot.active{

	background-color:#ffffff;

}



.services-block{

	position:relative;

	margin-bottom:30px;

}



.services-block .inner-box{

	position:relative;

}



.services-block .inner-box .image{

	position:relative;

}



.services-block .inner-box .image img{

	position:relative;

	width:100%;

	display:block;

}



.services-block .inner-box .image .overlay-box{

	position:absolute;

	left:0px;

	top:0px;

	width:100%;

	height:100%;

	color:#ffffff;

	opacity:0;

	text-align:center;

	background:rgba(171,116,66,0.90);

	

	-webkit-transition: all 900ms ease;

    -ms-transition: all 900ms ease;

    -o-transition: all 900ms ease;

    transition: all 900ms ease;

    -webkit-transform: perspective(400px) rotateX(-90deg);

    -moz-transform: perspective(400px) rotateX(-90deg);

    -ms-transform: perspective(400px) rotateX(-90deg);

    -o-transform: perspective(400px) rotateX(-90deg);

    transform: perspective(400px) rotateX(-90deg);

    -webkit-transform-origin: top;

    -moz-transform-origin: top;

    -ms-transform-origin: top;

    -o-transform-origin: top;

    transform-origin: top;

    -ms-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -webkit-transition: all 0.5s;

    -o-transition: all 0.5s;

    transition: all 0.5s;

}



.services-block .inner-box:hover .image .overlay-box{

	opacity:1;

	-webkit-transform: perspective(400px) rotateX(0deg);

    -moz-transform: perspective(400px) rotateX(0deg);

    -ms-transform: perspective(400px) rotateX(0deg);

    -o-transform: perspective(400px) rotateX(0deg);

    transform: perspective(400px) rotateX(0deg);

}



.services-block .inner-box .image .overlay-box .overlay-inner{

	position:absolute;

	left:0px;

	top:0px;

	width:100%;

	height:100%;

	display:table;

	vertical-align:middle;

	padding:10px 30px;

}



.services-block .inner-box .image .overlay-box .overlay-inner .content{

	position:relative;

	display:table-cell;

	vertical-align:middle;

}



.services-block .inner-box .image .overlay-box .icon{

	position:relative;

	color:#ffffff;

	font-size:70px;

	line-height:1em;

}



.services-block .inner-box .image .overlay-box .text{

	position:relative;

	line-height:1.9em;

	font-size:16px;

	font-weight:400;

	margin-top:10px;

	margin-bottom:25px;

}



.services-block .inner-box .lower-box{

	position:relative;

	text-align:center;

	padding:25px 15px 25px;

	background-color:#ffffff;

	border-left:2px solid #ab7442;

	border-right:2px solid #ab7442;

}



.services-block .inner-box .lower-box:before{

	position:absolute;

	content:'';

	left:0px;

	bottom:0px;

	right:0px;

	height:2px;

	background-color:#ab7442;

	transition: all 600ms ease;

    -moz-transition: all 600ms ease;

    -webkit-transition: all 600ms ease;

    -ms-transition: all 600ms ease;

    -o-transition: all 600ms ease;

}



.services-block .inner-box:hover .lower-box:before{

	height:100%;

}



.services-block .inner-box .lower-box h3{

	position:relative;

	font-size:22px;

	font-weight:500;

}



.services-block .inner-box .lower-box h3 a{

	position:relative;

	color:#322f2f;

	transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block .inner-box:hover .lower-box h3 a{

	color:#ffffff;

}


.default-section{

	position:relative;

}



.default-section.margin-top{

	margin-top:-112px;

}



.default-section .outer-container{

	position:relative;

}



.default-section .outer-container:before{

	position: absolute;

	content:'';

	right:0px;

	top:0px;

	width:50%;

	height:100%;

	background-color:#f5f5f5;

}



.default-section .counter-column .image-layer{

	position:absolute;

	left:0px;

	top:-130px;

	width:100%;

	bottom:-30px;

	background-size:cover;

	background-repeat:no-repeat;

}



.default-section .counter-column .image-layer:before{

	position:absolute;

	content:'';

	left:0px;

	top:0px;

	right:0px;

	bottom:0px;

	background-color:rgba(50,47,47,0.80);

}



.default-section .outer-container{

	position:relative;

}



.default-section .counter-column{

	position:relative;

	float:left;

	width:50%;

}



.default-section .counter-column .inner-column{

	position:relative;

	max-width:600px;

	width:100%;

	float:right;

	width:100%;

	padding:180px  60px 80px 15px;

}



.default-section .counter-column .inner-column .fact-counter:before{

	position:absolute;

	content:'';

	left:50%;

	top:0px;

	width:2px;

	height:100%;

	margin-left:-45px;

	background:#ab7442;

	background:-webkit-linear-gradient(top,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

	background:-moz-linear-gradient(top,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

	background:-ms-linear-gradient(top,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

	background:-o-linear-gradient(top,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

}



.default-section .counter-column .inner-column .fact-counter:after{

	position:absolute;

	content:'';

	left:0px;

	top:50%;

	width:100%;

	height:2px;

	margin-top:-35px;

	background:#ab7442;

	background:-webkit-linear-gradient(left,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

	background:-moz-linear-gradient(left,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

	background:-ms-linear-gradient(left,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

	background:-o-linear-gradient(left,rgba(0,0,0,0),#ab7442,rgba(0,0,0,0));

}



/* Fact Counter */



.fact-counter{

	position:relative;

}



.fact-counter .column{

	position:relative;

	z-index:1;

	margin-bottom:70px;

}



.fact-counter .column .inner{

	position:relative;

}



.fact-counter .column .inner .content{

	position:relative;

}



.fact-counter .count-outer .percentage{

	display:inline-block;

	font-weight:600;

	color:#020e28;

	font-size:48px;

	line-height:1em;

	font-family: 'Archivo', sans-serif;

}



.fact-counter .column .inner .count-outer{

	position:relative;

	font-weight:600;

	color:#ffffff;

	font-size:60px;

	line-height:1em;

	padding-bottom:20px;

	display:inline-block;

}



.fact-counter .column .inner .count-outer:before{

	position:absolute;

	content:'';

	left:0px;

	bottom:0px;

	height:2px;

	width:40px;

	background-color:#ab7442;

}



.fact-counter .column .inner .counter-title{

	position:relative;

	font-size:16px;

	font-weight:500;

	margin-top:22px;

	color:#ffffff;

	line-height:1.7em;

	font-family: 'Raleway', sans-serif;

}



.default-section .accordian-column{

	position:relative;

	float:left;

	width:50%;

}



.default-section .accordian-column .inner-column{

	position:relative;

	width:100%;

	float:left;

	max-width:590px;

	padding:180px 15px 70px 50px;

}


.accordion-box{

	position:relative;
    list-style-type:none;
    padding:0;
}



.accordion-box .block{

	position: relative;

    margin-bottom:12px;

	border-radius:8px;

	border:1px solid #bbbbbb;

}



.accordion-box .block.active-block{

	

}



.accordion-box .block .acc-btn{

	position:relative;

	font-size:16px;

	cursor:pointer;

	line-height:34px;

	color:#322f2f;

	font-weight:500;

	background:none;

	padding:13px 50px 13px 30px;

	transition:all 500ms ease;

	-ms-transition:all 500ms ease;

	-o-transition:all 500ms ease;

	-moz-transition:all 500ms ease;

	-webkit-transition:all 500ms ease;

}



.accordion-box .block .acc-btn.active{

	

}



.accordion-box .block .icon-outer{

	position:absolute;

	right:0px;

	top:0px;

	width:60px;

	height:60px;

	font-size:20px;

	color: #ffffff;

	border-radius:0px 8px 8px 0px;

	transition:all 500ms ease;

	-moz-transition:all 500ms ease;

	-webkit-transition:all 500ms ease;

	-ms-transition:all 500ms ease;

	-o-transition:all 500ms ease;

}



.accordion-box .block .icon-outer .icon{

    position: absolute;

	right: 0px;

	width:60px;

	height:60px;

	color:#ffffff;

    font-size: 14px;

    text-align: center;

	line-height:60px;

	border-radius:0px 8px 8px 0px;

	background-color:#322f2f;

}



.accordion-box .block .icon-outer .icon-plus{

	opacity:1;

}



.accordion-box .block .icon-outer .icon-minus{

	opacity:0;

}



.accordion-box .block .acc-btn.active .icon-outer .icon-minus{

	opacity:1;

	background-color:#ab7442;

	border-radius:0px 8px 0px 0px;

}



.accordion-box .block .acc-btn.active .icon-outer .icon-plus{

	opacity:0;

}



.accordion-box .block .acc-content{

	position:relative;

	display:none;

}



.accordion-box .block .acc-content .content-text{

	padding-bottom:6px;

}



.accordion-box .block .acc-content.current{

	display:block;	

}



.accordion-box .block .content{

	position:relative;

	font-size:14px;

	color:#777777;

	line-height:1.7em;

	padding:5px 35px 30px 30px;

}



.accordion-box .block .content .accordian-text{

	line-height:1.9em;

	font-size:16px;	

	color:#84858a;

	font-weight:600;

}



.accordion-box .block .content p:last-child{

	margin-bottom:0px;	

}



.accordion-box.style-two .block{

	background-color:#ffffff;

}



.accordion-box.style-two .block .acc-btn.active .icon-outer .icon-minus{

	background-color:#8c8c8c;

}

.product-card{
    background:white;
    box-shadow:0px 4px 10px silver;
    margin-bottom:30px;
}
.product-card .image img{
    max-width:100%;
    width:100%;
}

.product-card .text{
    padding:20px 20px;
}


.product-image img{
    max-width:100%;
}
.breadcrumb{
    margin-bottom:50px;    
}
.breadcrumb ul{
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin:0;
}

.breadcrumb ul li a{
     color:black;   
     font-weight:600;
}


.contact-page-section{
    position: relative;
    padding: 100px 0px 30px;    
}

.experiance-section.style-two{
	padding-bottom:120px;
}


.sec-title{
	position:relative;
	margin-bottom:35px;
}




.sec-title h2{
	position: relative;
    font-size: 36px;
    color:#322f2f;
    font-weight: 700;
    line-height: 1.3em;
	padding-bottom:22px;
}

.sec-title .separate{
	position:relative;
	width:130px;
	float:left;
}

.sec-title .separate:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:130px;
	height:2px;
	background-color:#cccccc;
}

.sec-title .separate:after{
	position:absolute;
	content:'';
	left:0px !important;
	bottom:0px;
	width:30px;
	height:4px;
	background-color:#ab7442;
}

.sec-title.light h2{
	color:#ffffff;
}

.main-slider{
    position:relative;
    padding: 0px 70px;
}

.main-slider .mouse-btn-down {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 20px;
    width: 30px;
    height: 68px;
    cursor: pointer;
    display: block;
    background: url(../themes/drevotrieska/assets/img/mouse-icon.png) center center no-repeat;
    z-index: 20;
}

.main-slider .mouse-btn-down {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.btn-style-one{
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    padding: 12px 36px;
    font-weight: 400;
    overflow: hidden;
    overflow: hidden;
    background: #ff660d;
    border-radius: 50px;
    text-transform: capitalize;    
}

.btn-style-one:hover{
    color:white;    
}

.btn-style-two{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 15px 45px 15px;
    font-weight: 500;
    overflow: hidden;
    letter-spacing: 1px;
    border-radius: 50px;
    background-color: #ff660d;
    text-transform: capitalize;    
}
.btn-style-two:hover{
    color:white;    
}

.btn-style-two .txt{
    position: relative;
    z-index: 1;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;    
}


@media screen and (max-width: 991px) {
  nav {
    padding: 20px 20px;
  }
  nav .navigation {
    display: none;
  }
  main {
    margin-left: 0;
  }
  main .content {
    padding: 0 20px;
    max-width: 100vw;
  }
  main .left-menu {
    display: none;
    z-index: 5;
  }
  main .left-menu ul li {
    padding: 20 15px;
  }
  main aside {
    position: relative;
  }
}
/*# sourceMappingURL=style.css.map */