/*
Theme Name: websima
Theme URI: https://websima.com
Author: Websima Creative Agency
Author URI: https://websima.com
Description: Websima Creative Agency
Version: 1.0
*/


/* pre loader */

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #a5a5d3;
    z-index: 1000;
}
 
#loader-wrapper .loader-section.section-left {
    left: 0;
}
 
#loader-wrapper .loader-section.section-right {
    right: 0;
}

#loader {
    z-index: 1001; /* anything higher than z-index: 1000 of .loader-section */
}
h1 {
    color: #EEEEEE;
}

/* Loaded */
#loader svg{
	z-index: 200000;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50% , -50%);
    font-size: 100px;
	font-family:arial;
}
.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
#loader .text {
  fill: none;
  stroke-width: 2px;
  stroke-linejoin: round;
  stroke-dasharray: 70 330;
  stroke-dashoffset: 0;
  -webkit-animation: stroke 6s infinite linear;
  animation: stroke 6s infinite linear;
}

#loader .text:nth-child(5n + 1) {
  stroke: var(--color1);
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}
#loader .text:nth-child(5n + 2) {
  stroke: var(--color2);
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}

#loader .text:nth-child(5n + 3) {
  stroke: var(--color3);
  -webkit-animation-delay: -3.6s;
  animation-delay: -3.6s;
}

#loader .text:nth-child(5n + 4) {
  stroke: #56D9CD;
  -webkit-animation-delay: -4.8s;
  animation-delay: -4.8s;
}

#loader .text:nth-child(5n + 5) {
  stroke: #3AA1BF;
  -webkit-animation-delay: -6s;
  animation-delay: -6s;
}

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: -400;
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: -400;
  }
}

/* Other styles */
html, body {
  height: 100%;
}

body {
  background: #111;
  background-size: .2em 100%;
  font: 14.5em/1 Open Sans, Impact;
  text-transform: uppercase;
  margin: 0;
}

svg {
  position: absolute;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */
p {
    line-height: 1.33em;
    color: #7E7E7E;
}
h1 {
    color: #EEEEEE;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
        align-items: center;
        justify-content: center;
}


    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #011528;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;
        display: flex;
    align-items: center;
    justify-content: center;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
    .no-js h1 {
        color: #222222;
    }

    #content {
        margin: 0 auto;
        padding-bottom: 50px;
        width: 80%;
        max-width: 978px;
    }  


    /* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide.slick-active
{
    transform:scale(1.1);
}
.slick-vertical .slick-slide
{
    transition:.4s;
    transition-delay:.4s;
    transform:scale(1);
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}
.load-3 .line:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}
.load-3 .line:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
}
.load-3 .line:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
}
@keyframes loadingC {
    0 {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}
.ui-input-clear{
    display: none;
}
.load-3{
    display: flex;
    align-items: center;
    justify-content: center;
}
.load-3 .line{
    width: 6px;
    height: 6px;
    margin: 0 2px;
    display: block;
    border-radius: 100%;
    background: var(--color1);
}
/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
   content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
   content: '→';
}
[dir='rtl'] .slick-next:before
{
   content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li{
    display: block;
    width:100%;
    position: relative;
    display: flex;
    justify-content:flex-start;
    height: 13px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    margin-right: 7px;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    border-radius:100%;
    background:#efefef;
    border:1px solid #c3c3c3;
    line-height: 20px;
    position: absolute;
    top: 50%;
    right:6px;
    transform:translateY(-50%);
    width: 8px;
    height: 8px;
    z-index:10;
    content: ' ';
    text-align: center;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    background:var(--color2);
    border:none;
    color: black;
}
/**
 * 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,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.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;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-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{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{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-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.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}.owl-carousel .animated{animation-duration:1s;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-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.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(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s 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-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* --------------------
    wow
-------------------- */
@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);transform:translateX(0%)}}@keyframes wobble{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);opacity:1;-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);opacity:1;-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0deg);transform:translateX(0) rotate(0deg)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0deg);-ms-transform:translateX(0) rotate(0deg);transform:translateX(0) rotate(0deg)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0deg);transform:translateX(0) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0deg);-ms-transform:translateX(0) rotate(0deg);transform:translateX(0) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}
/* --------------------
    Bootstrap
-------------------- */
html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}
/* --------------------
    Css Reset (Mayerweb)
-------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}:focus{outline:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none;-moz-appearance:none}input[type=search]{-webkit-appearance:none;-moz-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}textarea{overflow:auto;vertical-align:top;resize:vertical}audio,canvas,video{display:inline-block;*display:inline;*zoom:1;max-width:100%}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:none}a:active,a:hover{outline:0}img{border:0;-ms-interpolation-mode:bicubic}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,button,input,select,textarea{color:#222}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}img{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}button:focus, input:focus, textarea:focus {outline: none !important;}li {list-style: none;}
/* --------------------
    Fonts & Icons
-------------------- */
@font-face {
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
    font-family: IRANSansWeb;
    src: url("assets/fonts/IRANSansWeb_Light.eot");
    src: url("assets/fonts/IRANSansWeb_Light.eot") format('embedded-opentype'), url("assets/fonts/IRANSansWeb_Light.ttf") format('truetype'), url("assets/fonts/IRANSansWeb_Light.woff") format('woff');
}

@font-face {
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
    font-family: IRANSansWeb-bold;
    src: url("assets/fonts/IRANSansWeb_Medium.eot");
    src: url("assets/fonts/IRANSansWeb_Medium.eot") format('embedded-opentype'), url("assets/fonts/IRANSansWeb_Medium.ttf"), url("assets/fonts/IRANSansWeb_Medium.woff") format('woff');
}

@font-face {
    font-family: 'icomoon';
    src:  url('assets/fonts/icomoon.eot?myndct');
    src:  url('assets/fonts/icomoon.eot?myndct#iefix') format('embedded-opentype'),
    url('assets/fonts/icomoon.ttf?myndct') format('truetype'),
    url('assets/fonts/icomoon.woff?myndct') format('woff'),
    url('assets/fonts/icomoon.svg?myndct#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-message:before {
    content: "\e912";
}
.icon-name:before {
    content: "\e913";
}
.icon-qout:before {
    content: "\e914";
}
.icon-clock:before {
    content: "\e915";
}
.icon-date:before {
    content: "\e916";
}
.icon-tag:before {
    content: "\e901";
}
.icon-user:before {
    content: "\e90f";
}
.icon-share-5:before {
    content: "\e92c";
}
.icon-instagram:before {
    content: "\e906";
    color: rgb(255, 255, 255);
}
.icon-instagram:after {
    content: "\e908";
    margin-left: -1em;
    color: rgb(201, 215, 47);
}
.icon-tweeter:before ,
.icon-twitter:before {
    content: "\e909";
    color: rgb(255, 255, 255);
}
.icon-tweeter:after ,
.icon-twitter:after {
    content: "\e90b";
    margin-left: -1em;
    color: rgb(201, 215, 47);
}
.icon-whatsapp:before {
    content: "\e90d";
    color: rgb(255, 255, 255);
}
.icon-whatsapp:after {
    content: "\e90e";
    margin-left: -1em;
    color: rgb(201, 215, 47);
}
.icon-timer:before {
    content: "\e904";
}
.icon-Path:before {
    content: "\e905";
}
.icon-cart-1:before {
    content: "\e900";
}
.icon-search:before {
    content: "\e907";
}
.icon-facebook:before {
    content: "\e90a";
}
.icon-linkedin:before {
    content: "\e90c";
}
.icon-chevron-thin-left:before {
    content: "\e92f";
}
.icon-chevron-thin-right:before {
    content: "\e930";
}
.icon-menu:before {
    content: "\e937";
}
.icon-close:before {
    content: "\e950";
}
.icon-email:before {
    content: "\e902";
}
.icon-location:before {
    content: "\e903";
}
.icon-photo:before {
    content: "\e910";
}
.icon-fax:before {
    content: "\e941";
}
.icon-reply:before {
    content: "\e922";
}
.icon-star:before {
    content: "\e917";
}
.icon-star2:before {
    content: "\e918";
}
/* --------------------
    Config
-------------------- */
:root {
    --color1: #004A8F;
    --color3: #ccd731;
    --color2: #fc8946 ;
    --bg_light: #fdf9f6;
    --border_light: #f3efee;
    --bg_body: #fff;
    --bg_footer: #002140;
    --danger: #d53343;
    --bg_danger : #fff5f5;
    --success : #28a745;
    --bg_success : #f4fff3;
    --bg_info:#cce5ff4a;
    --info:#004085cc;
    --main_font: IRANSansWeb;
    --bold_font: IRANSansWeb-bold;
}

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: var(--color1);
}

::selection {
    color: #fff;
    background: var(--color1);
}
html{
	/*//scroll-behavior: smooth;*/
}
body {
    direction: rtl;
    text-align: right;
    font-family: var(--main_font), Arial;
    font-size: 14px;
    color: #222;
    line-height: 2;
    background: var(--bg_body) !important;
	scroll-behavior: smooth;
}

.clearfix:after{
    content: '';
    clear: both;
    display: block;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.row > [class*="col-"],
.row > [class*="col"]{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

#wrapper .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

#wrapper .no-gutters > .col,
#wrapper .no-gutters > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

h1, h2, h3, h4, h5, h6, b, strong {font-family: var(--bold_font), Arial;}

input {
    font-family: var(--main_font), Arial;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: 0.3s;
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--color2);
}

.inner-pages .site-main{
    padding: 50px 0;
}


.icon-email1{
    font-size: 11px !important;
}

/* --------------------
    Alerts
-------------------- */
#wrapper{
    overflow-x:hidden;
}
#wrapper .cart-empty.woocommerce-info,
.wpcf7-response-output.wpcf7-validation-errors,
.woocommerce-error,
.woocommerce-mini-cart__empty-message,
.comment-awaiting-moderation.waiting_pm,
.stock.out-of-stock{
    background: var(--bg_danger);
    color: var(--danger);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    display: block;
}

.woocommerce-error li a {
    color: var(--color1);
}
.woocommerce-error{
    margin-bottom:15px;
}
.woocommerce-message .button{
    margin-right:10px;
	order:1;
}

/* --------------------
   GENERAL SETTING
-------------------- */
@media (min-width: 1200px){
    .container {
        max-width: 1240px;
    }
}
.inner-page .site-main {
    margin-top: 30px;
    margin-bottom: 60px;
}
.title-part.inner-title h1 {
    font-size: 18px;
}
.title-part.inner-title h4 {
    font-size: 18px;
}
.title-part.inner-title {
    margin-bottom: 20px;
}
.title-site-center .title-heading{
    text-align:center;
}
.title-heading{
    color:var(--color1);
    font-size: 20px;
}
.text-center{
    text-align:center;
}
.title-site-center .title-heading i:before{
    display:inline-block;
    transform:rotate(90deg);
}
.title-site-center .title-heading i{
    display: block;
    color: var(--color2);
    margin: 8px 0;
    font-size: 16px;
    animation: movearrow infinite 1s;
}
@keyframes movearrow{
    50%{
        transform:translateY(10px);
    }
    100%{
        transform:translateY(0);
    }
}
/* --------------------
    Animation Pulse
-------------------- */

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow:0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -webkit-box-shadow:0 0 0 10px rgba(250,190,88,0);
    }
    100% {
        -webkit-box-shadow:0 0 0 0 rgba(250,190,88,0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow:0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow:0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -moz-box-shadow:0 0 0 10px rgba(250,190,88,0);
        box-shadow:0 0 0 10px rgba(250,190,88,0);
    }
    100% {
        -moz-box-shadow:0 0 0 0 rgba(250,190,88,0);
        box-shadow:0 0 0 0 rgba(250,190,88,0)
    }
}

/* --------------------
    Menu Mobile
-------------------- */
#mask{
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#menumobile{
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    width: 250px;
    background: var(--bg_light);
    font-family: var(--bold_font);
    z-index: 99991;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.3) !important;
    overflow-y: auto;
}

#menumobile .childer{
    left:0;
}

#menumobile img{
    /*! filter: brightness(0)invert(1); */
    max-width: 130px;
}

#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    background: var(--danger);
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: #fff;
    font-size: 11px;
    align-items: center;
    justify-content: center;
    top: 15px;
    left: 15px;
    position: absolute;
}

.tel-mm a {
    background: var(--bg_footer);
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tel-mm a i{
    margin-right: 10px;
    color: var(--color2);
    font-size:18px;
    display:inline-block;
}


.come-menumobile{
    right: 0 !important;
}


.title-mm{
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-mm img{
    user-select: none;
}

.btn-mm{
    padding: 0 20px;
    margin-top: 20px;
}

.btn-mm a{
    display: flex;
}

.title-sub-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-flow: row-reverse;
}


.title-sub-head strong {
    font-family: var(--bold_font);
}

.main-mm{
    padding: 5px 20px;
}

.main-mm ul li a{
    color: #222;
    display: block;
    padding: 8px 0;
    position: relative;
    width: 100%;
}

.main-mm ul li a:hover{
    color: var(--color2);
}

.main-mm ul li > .sub-menu{
    position: static;
    width: 250px;
    background: #fff;
    z-index: 9;
    margin-right: -20px;
    padding-right: 20px;
}

.childer i{
    position: absolute;
    cursor: pointer;
    top: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left: 10px;
}



.childer{
    transform: rotate(0deg);
    position: absolute;
    left: -25%;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--bg_footer);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:0.3s;
}

.childer-opened {
    transform: rotate(-90deg) !important;
}

.come-submenu{
    right: 0 !important;
}

.sub-closer{
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--color2);
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-closer i{
    cursor: pointer;
    top: -1px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    left: -1px;

}

.title-subcome{
    color: var(--color2);
    font-weight: normal;
    position: relative;
    top: 2px;
}

/* --------------------
    Button
-------------------- */

#userverify .btn-primary,
.button{
    user-select: none;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    min-width:120px;
    font-family: inherit;
    border-radius: 100px;
    z-index: 1;
    color: black !important;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    border: 1px solid var(--color3);
    background:transparent;
    background:white;
    box-shadow: 0 2px 5px transparent;
    font-weight:bold;
    
}
#userverify .btn-primary:hover,
.button:hover{
    color: var(--color1) !important;
    box-shadow: none;
    border-color: var(--color1);
}

.filter_sd:hover {
    color: #fff !important;
}

.head_account .sub_part a {
    display: block;
    color:var(--color1);
}

.head_account .sub_part a:hover {
        color:var(--color2) !important;

}

#userverify .form-row{
	width: 100%;
}
#resend-verify-code{
	display:block;
	text-align:center;
}
#userverify {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#userverify .btn-primary:after,
.button:after{
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    height: 0;
    height: 100%;
    background-image: linear-gradient(to top, #c3d833, #e2fc45);
    z-index: -2;
    border-radius: 100%;
    transform: scale(1.5);
}

#userverify .btn-primary:hover:after,
.button:hover:after{
    height: 0;
}
/* .btn{ */
    /* padding: 7px 0; */
    /* border-top: 2px solid var(--color1); */
    /* border-bottom: 2px solid var(--color1); */
    /* position: relative; */
    /* transition: 0.3s; */
    /* font-family: var(--bold_font); */
/* } */

/* .btn:before{ */
    /* content: ''; */
    /* transition: 0.3s; */
    /* position: absolute; */
    /* top: -2px; */
    /* height: 2px; */
    /* background: var(--color2); */
    /* right: 0; */
    /* width: 100%; */
    /* transform: scaleX(0); */
    /* transform-origin: right center; */
/* } */

/* .btn:after{ */
    /* content: ''; */
    /* transition: 0.3s; */
    /* position: absolute; */
    /* bottom: -2px; */
    /* height: 2px; */
    /* background: var(--color2); */
    /* left: 0; */
    /* width: 100%; */
    /* transform: scaleX(0); */
    /* transform-origin: left center; */
/* } */

/* .btn:hover:before, */
/* .btn:hover:after{ */
    /* transform: scaleX(1); */
/* } */

/* .btn:hover{ */
    /* color: var(--color2); */
/* } */

/* --------------------
    Editor Content
-------------------- */
.editor-content iframe{
	margin:15px 0;
}
.editor-content mark{
    background:var(--color1);
    color:white;
}
input,
input::-webkit-input-placeholder {
    font-size: 12px;
}
.editor-content input[type=text],
.editor-content input[type=email],
.editor-content input[type=number],
.editor-content input[type=password],
.editor-content input[type=search],
.editor-content input[type=tel],
.editor-content textarea,
.editor-content select,
.comment-form input,
.comment-form textarea{
    border: 1px solid #ddd;
    padding:10px 20px;
    border-radius: 10px;
    height: 45px;
    display: block;
    box-sizing: border-box;
    font-family: inherit;
    width: 100%;
    transition: 0.3s;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: right;
}
.editor-content input[type=text]:focus,
.editor-content input[type=email]:focus,
.editor-content input[type=number]:focus,
.editor-content input[type=password]:focus,
.editor-content input[type=search]:focus,
.editor-content input[type=tel]:focus,
.editor-content textarea:focus,
.comment-form input:focus,
.comment-form textarea:focus{
    border: 1px solid var(--color3);
    background-color:#ffffff;
}
.editor-content textarea,.comment-form textarea{
    min-height: 140px;
}
.editor-content{
    line-height: 35px;
}
.editor-content img{
    border-radius:3px;
}

.owl-gallery{
    margin: 25px auto;
}

.gallery_item {
    position: relative;
    display: block;
}
.lg-outer{
    text-align: right;
}
.gallery_item a {
    display: block;
    position:relative;
    text-align: center;
    margin: auto;
    overflow:hidden;
    border-radius:15px;
}
.gallery_item:hover a img{
    transform: scale(1.2) rotate(5deg);
    transition:.4s;
}
.gallery_item a:after{
    padding-top:2px;
    content: "+";
    position: absolute;
    border: 3px solid var(--color3);
    color: var(--color3);
    font-size: 16px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    bottom: 5px;
    left: 40px;
    font-weight: 600;
    transition: 0.3s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    transform:scale(0);

}
.gallery_item a:before{
    opacity:0;
    visibility:hidden;
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: var(--color3);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition:0.3s;

    z-index: 1;
}
.gallery_item:hover a:before{
    opacity:.65;
    visibility:visible;
    transition:0.3s;
}
.gallery_item:hover a:after{
    transform:scale(1);
    transition-delay:.2s;
}
.editor-content .alignleft {
    float: left;
    margin: 20px 20px 10px 0;
}

.editor-content .alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.editor-content .aligncenter{
    text-align:center;
    display:block;
    margin: 20px auto;
}

.editor-content li h2,
.editor-content li h3,
.editor-content li h4,
.editor-content li h5,
.editor-content li h6{
    margin-bottom: 0;
    display: inline;
}
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6{
    margin-bottom: 10px;
}
.editor-content.main-content h1,
.editor-content.main-content h2,
.editor-content.main-content h3,
.editor-content.main-content h4,
.editor-content.main-content h5,
.editor-content.main-content h6{
    margin-top: 20px;
}
.editor-content.main-content.single-content h1,
.editor-content.main-content.single-content h2,
.editor-content.main-content.single-content h3,
.editor-content.main-content.single-content h4,
.editor-content.main-content.single-content h5,
.editor-content.main-content.single-content h6{
    margin-top: 40px;
}
.editor-content h1 {
    font-size: 24px;
}
.editor-content h2 {
    font-size: 22px;
}
.editor-content h3 {
    font-size: 20px;
}
.editor-content h4 {
    font-size: 18px;
}
.editor-content h5 {
    font-size: 16px;
}
.editor-content h6 {
    font-size: 14px;
}
.editor-content ul, .editor-content ol {
    margin-bottom: 20px;
}
.editor-content ul li {
    margin: 10px 0;
}
.editor-content.main-content ul li:before{
    content: "";
    background:var(--color3);
    margin-left: 12px;
    display: inline-flex;
    height: 6px;
    width:6px;
    border-radius:50%;
}
.single-content p{
    margin-bottom:20px;
}
.editor-content p{
    color:#575757;
}
.editor-content table p{
    margin-bottom:0;
}
.editor-content a:hover{
    color:black;
}
.editor-content.main-content a{
    color:var(--color3);
}
.editor-content blockquote p{
    margin-bottom:0;
}
.editor-content blockquote {
    border-radius: 10px;
    padding: 25px 100px 20px 100px;
    background-color: #e5eef7;
    position: relative;
    margin: 110px 0 50px 0;
    text-align: center;
}
.editor-content blockquote:after{
    font-family: 'icomoon';
    position: absolute;
    display: inline-block;
    top: 0;
    left: 50%;
    transform: translate(-50% , -70%);
    font-size: 19px;
}
.editor-content #reviews .byadmin:before,
.editor-content blockquote:before{
    content: "";
    background-image: url(assets/img/cloud-qout.svg);
    width: 100%;
    height: 130px;
    display: inline-block;
    position: absolute;
    top: -60px;
    border-radius:0;
    background-color:transparent;
    left: 0;
    background-size: 100%;
    z-index: -1;
}
.editor-content .commentlist li.byadmin{
    margin-top:40px;
}
.editor-content #reviews .byadmin:before{
    top: -40px;
}
.editor-content blockquote:after{
    content: "\e914";
    color: var(--color1);
}
.editor-content blockquote p{
    position: relative;
    font-family: var(--bold_font);
}
.editor-content ol {
    list-style: none;
    margin-left: 0;
    padding: 0;
}
.editor-content ol li {
    counter-increment:item;
    position: relative;
    padding-right: 25px;
    margin: 10px 0;
}
.editor-content ol li:before{
    content:counter(item)" ";
    color: var(--color3);
    font-weight: bold;
    height: 100%;
    width: 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
}
.editor-content ol li:after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    transform: scale(.5);
    border-radius: 50%;
    background: var(--color3);
    top: 19px;
    right: 13px;
}
.gallery_item  img{
    transition:all 0.3s;
}
.editor-content .wp-video {
    display: block;
    margin: 20px auto;
}
.owl-carousel.owl-gallery .owl-item img {
    object-fit: contain;
}
.owl-carousel.owl-gallery  .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 30px;
    font-size: 30px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    right: -5px;
    left: -5px;
    z-index: -1;
}
.owl-carousel.owl-gallery  .owl-nav button i{
    display:inline-block;
    font-size: 18px;
    padding: 10px;
}
.about-top{
    margin-bottom: 35px;
}

/* --------------------
    Cart & Checkout
-------------------- */
#shipping_country_field {
    display: none;
}

.cart-empty.woocommerce-info {
    margin-bottom: 20px;
}

.return-to-shop {
    text-align: center !important;
}

table.shop_table {
    border-collapse: collapse;
    border: 1px solid #eee;
    border-bottom: 2px solid #223657;
    width: 100%;
    background: #fff;
}

table.shop_table ul{
	margin-bottom: 0;
}

table.shop_table th,
table.shop_table td {
    color: #222;
    border: 1px solid #eee;
    border-collapse: collapse;
    vertical-align: middle;
    text-align: center;
}

table.shop_table td{
    padding: 5px 10px;
}

table.shop_table th {
    background: #f9f9f9;
    color: #223657 !important;
    text-transform: uppercase;
    font-weight: bold;
    border: none !important;
    padding: 15px;

}

table.shop_table .actions {
    display: none !important;
}

table.shop_table input {
	display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

#shipping_method label {
    display: inline;
}

.product-remove a {
    background: transparent;
    border: none !important;
    position: relative;
    top: 2px;
    color: var(--danger) !important;
    background: transparent !important;
    font-size: 25px;
}

.product-thumbnail img {
    max-width: 70px;
    border: 1px solid #eee;
}

.wc-proceed-to-checkout {
    margin-top: 20px;
    text-align:center;
}

.wc-proceed-to-checkout .button:hover{
    color:white;
}
.wc-proceed-to-checkout .button {
    height: 45px;
}

.cart-collaterals {
    margin-top: 20px;
}

.cart-collaterals h2{
    display: none;
}

/*
Checkout
 */

.woocommerce-address-fields__field-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-row.form-row-first,.form-row.form-row-last {
    max-width: 48%;
  	flex: 0 0 48%
}

#payment{
    margin-top: 15px;
}

#payment ul li{
    margin-bottom: 20px;
    user-select: none;
    background: #fff;
}

#payment label{
    cursor: pointer;
    margin-bottom: 0;
    vertical-align: middle;
    display: inline-block;
}

#payment label img{
    margin: 0;
    margin-right: 5px;
    vertical-align: middle;
}

.wc_payment_method input {
    float: none !important;
    clear: both !important;
    position: relative;
    top: 1px;
    margin-left: 10px;
}

.wc_payment_methods.payment_methods.methods li {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
}

.payment_box {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

#payment li:before{
    display: none;
}

#place_order {
    justify-content: center;
    display: flex;
    height: 45px;
    margin: 15px auto;
}

.checkout_coupon.woocommerce-form-coupon {
    background: #fff;
    padding: 20px 30px;
    border-radius: 5px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.checkout.woocommerce-checkout {
    margin-top: 20px;
}

.checkout.woocommerce-checkout .delivery-wrapper{
    display: inline-block;
    width: 100%;
}

.clear {
    clear: both;
}

.checkout_coupon.woocommerce-form-coupon p:not(.form-row) {
    margin-bottom: 10px;
}

#order_review_heading {
    display: none;
}

#order_review {
    position: sticky;
    position: -webkit-sticky;
    top: 20px;
}

#billing_country_field {
    display: none;
}


.woocommerce-checkout .woocommerce-error {
    margin: 20px 0;
}

@media screen and (min-width: 768px){
        .woocommerce-order-received .woocommerce-order::after {
    content: '';
    clear: both;
    display: block;
}
    
    .woocommerce-order-received .woocommerce-customer-details {
    float: left;
    width: 48%;
    margin:30px 0;
}

.woocommerce-order-received .woocommerce-order-details {
    float: right;
    width: 48%;
}
    table.shop_table td.product-quantity .quantity{
        max-width: 150px;
        margin: 0 auto;
    }
}
table.shop_table td{
    padding: 10px;
}


/********* login part ********/
.logged-in.woocommerce-account .woocommerce {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items:flex-start;
}
.woocommerce-MyAccount-navigation {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 5px 15px;
    color: white;
    background: var(--color1);
    border-radius: 10px;
}
.woocommerce-MyAccount-content {
    flex: 0 0 75%;
    max-width: 75%;
    flex-wrap:wrap;
    padding: 20px;
    padding-top:0;
    font-size:15px;
}
td.woocommerce-table__product-name.product-name {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



td.product-name a span,.mini_cart_item a span {
margin: 0 5px;
  display: inline-block;
}

ul.wc-item-meta {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
ul.wc-item-meta li {
    display: flex;
    justify-content: flex-start;
    margin-left: 20px;
}
ul.wc-item-meta li strong {
    flex: 0 0 100%;
}

.woocommerce-MyAccount-content p{
    flex:0 0 100%;
}
.woocommerce-MyAccount-content p a:hover{
    color:var(--color1);
}
.woocommerce-MyAccount-navigation-link.is-active ,
.woocommerce-MyAccount-navigation-link:hover {
    background: white;
    color:var(--color1);
    transition:0.3s;
}
.woocommerce-MyAccount-navigation-link{
    background: #000;
    border-radius:10px;
    transition:0.3s;
    text-align: center;
    padding-right: 0!important;
    justify-content: center;
    margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation-link:before{
    display: none!important;
}
.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation-link:hover a {
    color:white;
    background:var(--color3);
}
.woocommerce-MyAccount-navigation-link a  {
    color: #fff;
    font-family: var(--bold_font);
    padding: 10px 20px;
    border-radius:10px;
    display: block;
    text-align: center;
    background: white;
    color: var(--color1);
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell .button{
    min-width: 90px;
    padding:0 15px;
}
.woocommerce-EditAccountForm fieldset {
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    margin-top: 30px;
    border: 1px solid var(--color1);
}
.woocommerce-EditAccountForm fieldset .woocommerce-form-row {
    width: 100%;
    max-width: 100%;
}
.woocommerce-EditAccountForm fieldset .woocommerce-form-row:first-of-type {
    width: 100%;
    max-width: 100%;
}
/* edit adress */
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 48%;
    flex: 0 0 48.333333%;
    max-width: 48.333333%;
}
.u-columns.woocommerce-Addresses.col2-set.addresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
    margin-top: 20px;
}
.woocommerce-Address-title.title, .woocommerce-column__title {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    align-items: end;
}
.woocommerce-Address-title > a,.woocommerce-EditAccountForm fieldset legend {
    user-select: none;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: transparent;
    color: var(--color3);
    font-family: inherit;
    border-radius: 50px;
    z-index: 1;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    border: 1px solid var(--color3);
    min-width: 124px;
}
.woocommerce-Address-title > a:hover{
    color:white;
    background:var(--color3)
}
.points-total, .friend_list-wrap,.add-moaref {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    align-items: center;
    background: #f7f7f7;
    flex-wrap: wrap;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
}
#rememberme {
    margin-left: 10px;
}
section.woocommerce-order-details {
    margin: 30px 0;
}
@media screen and (max-width: 992px){
    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .u-column1.col-1.woocommerce-Address{
        margin-bottom:35px;
    }
    #customer_login .u-column2.col-2{
    }

}
@media screen and (max-width: 992px) and (min-width: 768px){
    .woocommerce-MyAccount-content {
        flex: 0 0 64%;
        max-width: 64%;
    }
    .woocommerce-MyAccount-navigation {
        flex: 0 0 34%;
        max-width: 34%;
    }
}
@media screen and (max-width: 767px){

    .woocommerce-Address-title.title h3{
        font-size: 15px!important;
    }
    .u-columns.woocommerce-Addresses.col2-set.addresses{
        margin-left:0;
        margin-right:0;
    }
    .woocommerce-MyAccount-navigation {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .woocommerce-MyAccount-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    ul.wc-item-meta li {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
    }
    .woocommerce-edit-account.woocommerce-js .woocommerce-MyAccount-content, .woocommerce-edit-address .woocommerce-MyAccount-content{
        padding: 0;
    }
    .woocommerce-MyAccount-content,
    .u-column1.col-1.woocommerce-Address,
    .u-column2.col-2.woocommerce-Address{
        padding:0;
    }
}
.woocommerce-form.woocommerce-form-login label {
    display: flex;
}
#customer_login{
    display:flex;
    justify-content:space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions .woocommerce-button{
    margin:3px;
}

@media screen and (max-width: 768px) {

    .shop_table_responsive.shop_table{
        overflow: hidden;
    }

    .shop_table_responsive.shop_table tr,
    .shop_table_responsive.shop_table td,
    .shop_table_responsive.shop_table th,
    .shop_table_responsive.shop_table tbody,
    .shop_table_responsive.shop_table thead,
    .shop_table_responsive.shop_table{
        display: block;
        width: 100%;
    }

    .shop_table_responsive.shop_table tbody tr:nth-child(2n) {
        background: #f9f9f9;
    }

    .shop_table_responsive.shop_table thead{
        display: none;
    }

    .shop_table_responsive.shop_table td{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 10px;
    }

    .shop_table_responsive .quantity{
        margin: 0;
    }

    .shop_table_responsive.shop_table td:before{
        content: attr(data-title);
        display: inline-block;
        background: #e7e7e7;
        padding: 2px 10px;
        border-radius: 5px;
        min-width: 80px;
        text-align: center;
        font-size: 12px;
        color: var(--color1);
    }

    .product-name{
        justify-content: center !important;
    }

    .product-name a{
        display: block;
        text-align: center;
    }

    .product-name:before,
    .product-thumbnail:before,
    .product-remove:before{
        display: none !important;
    }


    .product-thumbnail a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 130px;
        margin: 0 auto;
    }

    .product-remove {
        position: absolute;
        right: 20px;
        border: none !important;
    }

    #wrapper .cart-collaterals table td:before{
        display: none;
    }

    #wrapper .cart-collaterals table td{
        justify-content: center;
        background: #fff;
    }


    .product-remove {
        margin-right: 20px;
    }
}














/* --------------------
    FAQ CSS
-------------------- */

.faq-cats {
    margin-bottom: 45px;
    border-radius: 10px;
    background: #f8f8f8;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.faq-cats a {
    padding: 15px 25px;
    position: relative;
    font-size: 14px;
    display: inline-block;
}
.faq-cats a:after {
    content: "";
    width: 0px;
    height: 3px;
    display: inline-block;
    border-radius: 5px;
    background: var(--color2);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    transition: all 0.3s;
}
.faq-cats li.active a{
    color:var(--color2)
}
.faq-cats li.active a:after{
    width: 70%;
}
.faqs-content .faqs-question {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: #f8f8f8;
    cursor: pointer;
}
.faqs-content .faqs-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}
.accordion-content{
    display:none;
}
/* .faqs-item .faqs-answer{
	display:none;
} */
.faqs-item .faqs-answer {
    border-radius: 0 0 10px 10px;
    background: #f8f8f8;
    border-top: 1px solid #cfcfcf;
    padding: 35px 20px;
}
.faqs-question .faq-num {
    font-size: 16px;
}
.faqs-question .faq-num:after {
    content: "";
    width: 3px;
    height: 3px;
    background: var(--color1);
    display: inline-block;
    margin: 0 2px 0 5px;
    border-radius: 50%;
}

/* --------------------
    TAB CSS
-------------------- */

.tab-content{
    display:none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;

}
.tab-content.active{
    display:block;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* --------------------
   category
-------------------- */
.cat-more i{
    transform: rotate(180deg);
    display: inline-block;
    font-size: 10px;
    margin-right: 0px;
    transition:.4s;
}
.categories-carousel .owl-item:hover .item-categories .cat-more a{
    color:var(--color1);
}
.cat-more{

    font-size:13px;
    opacity:0;
    transition:.4s;
    text-align:center;
}
.categories-carousel .owl-item:hover .item-categories .cat-more i{
    margin-right: 6px;
}
.categories-carousel .owl-item:hover .item-categories .cat-more{
    opacity:1;
}
.section-categories{
    padding-bottom: 95px;
}
@keyframes move6{
    50%{
        transform:scale(1);
    }
    100%{
        transform:scale(0);
    }
}

.cat_desc{
    font-size: 14px;
    display: block;
    text-align: center;
}
.item-categories>a i:after{
    animation:move6 linear infinite 1.5s 1s;
    top: -16px;
    left: 20px;
    font-size: 10px;
    position: absolute;
}
.item-categories>a i:before{
    animation:move6 linear infinite 2s;
    position: absolute;
    top: -6px;
    left: 0px;
    font-size: 18px;
}
.item-categories>a i:before,
.item-categories>a i:after{
    transform:scale(0);
    display:inline-block;
    color: #eee;
}
.item-categories>a i{
    position: absolute;
    top: 10px;
    left:5px;
    font-size: 16px;
    z-index:-1;
}
.categories-carousel .owl-item{
    padding-top: 6px;
}
.item-categories>a i:after{
    content: "\e905";
    font-family: icomoon;

    top: -15px;
    left: 21px;
    font-size: 10px;
    position: absolute;
}
.item-categories a img{
    transition:.4s;
}

.categories-carousel .owl-stage-outer {
    padding-top: 15px;
}

.item-categories{
    transition: 0.4s;
}

.categories-carousel .owl-item:hover .item-categories h2 a{
    color:var(--color3)
}
.categories-carousel .owl-item:hover .item-categories{
    transform: translateY(-15px);
}

.categories-carousel .owl-item:hover .item-categories a img{
    transform: scale(1.3);
}

.item-categories img{
    width:auto !important;
}
.item-categories:hover a{
    color:var(--color3);
}
.item-categories>a{

    min-height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    position:relative;
    z-index:1;
}
.item-categories>a:after{
    content: '';
    width: 200px;
    height: 197px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.65);
    background-image: url(assets/img/sprite.png);
    background-position: -37px 184px;
    z-index:-1;
}
.item-categories h2 a{
    display:block;
    text-align:center;
    color:var(--color1);
    padding-top:13px;
    font-size: 16px;
}
/* --------------------
   header
-------------------- */
/* --------------------
   submenu
-------------------- */

.header-logo .logo-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: -1;
    animation: logo-animate 3s infinite ease-in-out alternate;
    filter: brightness(0) invert(1) drop-shadow(0px 9px 3px #00000023);
}
@keyframes logo-animate{
    10%{
        transform:translate(-50% , -56%);
    }
    70%{
        transform:translate(-50% , -56%);
    }
    100%{
        transform:translate(-50% , -50%);
    }
}
.header-logo{
    position: relative;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 1;
    margin-bottom: -10px;
    transform: translateY(33px);
}

.header-logo.remove{
	pointer-events: none; 
}

.main-logo{
    display:block;
    position:relative;
    overflow:hidden;
    text-align: center;
}
.main-logo:after {
    content: '';
    top: -25px;
    left: 0;
    transform: rotate(45deg) translateX(-100%);
    width: 50px;
    height: 120px;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    animation: slide 2s infinite 3s;
    background: -moz-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.6) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.6)),color-stop(99%,rgba(128,186,232,0)),color-stop(100%,rgba(125,185,232,0)));
    background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.6) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%);
    background: -o-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.6) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%);
    background: -ms-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.6) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%);
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.6) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff',endColorstr='#007db9e8',GradientType=1);
}
@keyframes slide {
    0% {transform:rotate(45deg) translateX(-100%); }
    100% {transform:rotate(45deg) translateX(350%);}
}
#header{
    position:relative;
    z-index:99;
    box-shadow: 0 0 7px #7c7c7c;
}
#header:after{
    content:'';
    width:100%;
    display:inline-block;
    background:var(--color1);
    position:absolute;
    bottom:0;
    left:0;
    height:40px;
    z-index:-1;
}
#header:before{
    content:'';
    width:100%;
    height:50px;
    position:absolute;
    bottom:20px;
    left:0;
    background-image: url(assets/img/abr-header.svg);
    background-repeat-y: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.header-menu {
    display:none;
}

.header-menu > li > a:hover{
    color:var(--color1);
}
.header-menu > li > a {
    padding: 21px 5px 33px;
    margin: 0 5px;
    color: #868686;
    display: inline-block;
    font-size:13px;
}
.header-menu > li:first-child > a {
    margin-right: 0;
    padding-right: 0;
}
.button.head_item_cart.empty > i, .button.head_item_cart.empty .amount {display: none;}

.button.head_item_cart.empty {
    min-width: unset;
    background-color: var(--color3);
}
.head_item_cart .woocommerce-Price-currencySymbol{
    display:none;
}
.head_item_cart .icon-cart-1{
    font-family: icomoon;
    color: var(--color3);
    font-size: 20px;
    line-height: 1;
    background: white;
    border-radius: 100px;
    padding: 3.5px;
    margin: 0 3px;
}
.head_item_cart>span{
    display: flex;
    align-items:center;
}
.head_item_cart .woocommerce-Price-amount{
    margin-bottom: -5px;
}
.head_item_cart i.icon-chevron-thin-right{
    transform: rotate(90deg);
    margin-right: 10px;
}
.head_item_cart .icon-cart-1{
    transition:.4s;
}
.head_item_cart:hover{
    color:black!important;
}
.head_item_cart:hover:after,
.head_item_cart:after{
    height: 100%;
}
.head_item_cart{
    padding: unset;
    display: flex;
    justify-content: space-between;
    color: black !important;
    box-shadow: 0 2px 5px var(--color3);
}
.parent_item_cart.item_has_sub .sub_part {
    width: 320px;
}
.item_has_sub {
    position: relative;
}

.beforesend {
    text-align: center;
    font-size: 30px;
    color: var(--color1);
    margin-top: 5px;
}

.sub_part {
    position: absolute;
    width: 100%;
    min-width: 135px;
    right: auto;
    left: 0;
    top: 90%;
    opacity: 0;
    background: #fff;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
    z-index: 91;
    pointer-events: none;
    transform: translateY(60px) scale(0.9);
    transform-origin: right top;
    padding: 15px;
}
.item_has_sub:hover .sub_part {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    border-radius:10px;
}
.header-mm{
    display:block;
    margin-right:5px;
    cursor: pointer;
}
@media screen and (min-width: 992px) {
    .head_item_cart:hover .icon-cart-1{
        transform: rotate(360deg);
    }
    .header-mm{
        display:none;
    }
    .header-menu {
        display: flex;
        align-items: center;
    }
}
.header-search{
    color:white;
}
.icon-search-head{
    position:relative;
    margin-right:15px;
    animation:3s infinite search-move ease-out;
}
@keyframes search-move{
    30%{
        transform:translate(-2px) rotate(110deg);
    }
    40%{
        transform:translate(-2px) rotate(110deg);
    }
    60%{
        transform:translate(2px) rotate(-50deg);
    }
    80%{
        transform:translate(2px) rotate(-90deg);
    }
    100%{
        transform:translate(0) rotate(0);
    }
}
.icon-search-head:before{
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color3);
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50% , -50%);
    border: 2px solid var(--color1);
    transition:.4s;
}
.icon-search-head:after{
    content: '';
    border: 2px solid var(--color3);
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
}
.wrap-menu2 .header-menu > li > a:hover{
    color:var(--color3);
}
.wrap-menu2 .header-menu > li > a{
    position:relative;
    font-size:14px;
}
.wrap-menu2 .header-menu > li:hover > a:before{
    transform:scale(1);
}
.wrap-menu2 .header-menu > li > a:before{
    width: 100%;
    height: 3px;
    border-radius: 5px 5px 0 0;
    background: var(--color3);
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:.4s;
    transform:scale(0);
    transform-origin: bottom center;
}
.wrap-menu2 .header-menu > li > a{
    padding:10px 8px;
    color:white;
}
.header-search{
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 12px;
    cursor:pointer;
}
.header-search:hover .icon-search-head:before{
    width: 18px;
    height: 18px;
    top: 0;
    transform: unset;
    border:none;
}
.basket-wrapper{
    padding: 12px 0 28px 0;
}

.head_account{
    padding-right:15px;
}

.head_account:hover>a,
.head_account a:hover{
    color:var(--color3);
}
.head_account .sub_part{
    color: #000;
}
#websima-auth-modal .modal-dialog .head_account{
    margin-top: 15px;
}
.head_account{
    display:flex;
    align-items:center;
    height:37px;
    font-size: 13px;
    color: white;
    background: none;
    border: none;
    font-family: var(--main_font);
}
.head_account i{
    color: var(--color3);
    font-size: 10px;
    margin: 0 4px;
    font-family: var(--bold_font);
}
/* --------------------
   Contact Mode
-------------------- */
.acf-field .acf-label label{
    font-weight: normal !important;
    display: flex !important;
    align-items: center;
    font-size: 13px;
}
.acf-field .acf-label label:before{
    font-family: icomoon;
    color: #73767b;
    font-size: 20px;
    margin-left: 8px;
}
.acf-field.acf-field-textarea .acf-label label:before{
    content: "\e912";
}
.acf-field.acf-field-text .acf-label label:before{
    content: "\e913";
}
.acf-field.acf-field-email .acf-label label:before{
    content: "\e902";
}
.websima-contact-form .acf-field.acf-field-textarea{
    padding-top:25px !important;
}
#contactaccordion .card:last-child{
    margin-bottom: 0;
}
#contactaccordion .card {
    margin-bottom: 20px;
    border: 1px solid var(--color1);
    padding: 10px 20px;
    border-radius: 15px;
}
#contact-tab{
    margin-bottom:45px;
}
#contact-tab li a {
    padding: 5px 10px;
}
#contact-tab li{
    position:relative;
    flex-grow
}
.acf-form .acf-fields>.acf-field{
    border:none;
}
.websima-contact-form .input-cform {
    line-height: 1;
    padding: 8px 0!important;
    clear: none!important;
    width: 100%;
}
.websima-contact-form textarea::placeholder{
    font-size:13px;
}
.websima-contact-form textarea {
    min-height: 170px;
}
.input-cform .acf-input, .input-cform .acf-label, .text-cform .acf-label, .text-cform .acf-input {
    line-height: 1;
}
.websima-contact-form .text-cform {
    padding: 8px 0!important;
    width: 100%;
    order: 1;
}
.websima-contact-form .acf-field  textarea,
.websima-contact-form .acf-field  input[type="text"],
.websima-contact-form .acf-field  input[type="email"] {
    padding: 10px 20px;
}
.websima-contact-form #message {
    text-align: center;
    border: 1px solid var(--success);
    padding: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.websima-contact-form .acf-fields {
    display: flex;
    flex-wrap: wrap;
}
.websima-contact-form {
    margin: 30px 0 15px;
}
@media screen and (min-width: 768px) {
    .websima-contact-form .input-cform {
        width: 49%;
        float: right;
        clear: none!important;
    }
    .websima-contact-form .acf-fields {
        display: block;
    }
    .acf-field.acf-field-email {
        position: absolute !important;
        left: 0;
    }
}
.contact-share-wrapper .social-txt:before{
    content: '';
    width: 3px;
    height: 10px;
    background: var(--color3);
    display: inline-block;
    border-radius: 10px;
    margin-left: 7px;
}
.contact-share-wrapper .social-txt{
    font-size:14px;
}
.contact-share-wrapper {
    font-size: 21px;
    background: #f5f9fc;
    margin-top: 25px;
    border-radius: 13px;
    padding: 10px 0;
}
.contact-share-wrapper a i:before,
.contact-share-wrapper a i:after{
    transition:.4s;
}
.contact-share-wrapper a i:before{
    color:var(--color1);
}
.contact-share-wrapper a i:hover:after{
    color:var(--color1);
}
.contact-share-wrapper a i:hover:before{
    color:var(--color3);
}
.contact-share-wrapper a i{
    vertical-align:center;
}
.social-wrapper a{
    line-height:1;
    margin-right:20px;
}
.social-wrapper{
    display: flex;
    align-items: center;
}
.websima-map{
    border-radius: 15px;
}
.contact-share a{
    margin-right:20px;
}
.contact-share{
    display:flex;
    font-size:21px;

}
.contact-container{
    margin-bottom: 65px;
}
.contact-info li:last-child{
    margin-bottom:0;
}
.contact-info li i {
    color: var(--color3);
    min-width: 35px;
    font-size: 20px;
    display:inline-block;
}
.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-container .social-links a i:after{
    transition:.4s;
}
.contact-container .social-links a:hover i:after{
    color:var(--color1);
}
.contact-container .social-links a:hover i:before{
    color:var(--color2);
}
.contact-container .social-links a i:before{
    color:var(--color1);
    transition:.4s;
}
.contact-info .secound-level:before{
    background: var(--color3);
}
.social-links{
    border-top:1px solid #e6ebf1;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}
.social-links span{
    display:flex;
    align-items:center;
    font-size:13px;
}
.social-links span:before{
    content:'';
    display:inline-block;
    border-radius:10px;
    background:var(--color3);
    width:3px;
    height: 10px;
    margin-left: 8px;
}
.acf-form-submit{
    text-align:center;
    margin-top: 15px;
}
.websima-subtitle{
    color:#73767b;
}
.acc-contact{
    border-top: 1px solid var(--color3);
}
.accordion-title{
    color:var(--color1);
    cursor:pointer
}
/* --------------------
   Footer Style
-------------------- */
#footer .socials{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 20px;
}
#footer{
    position:relative;
    z-index:2;
}
#footer:before{
    content: '';
    width: 100%;
    height: 130px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-image: url(assets/img/abr-footer.svg);
}
.footer-desc{
    text-align:center;
    color:#a5c1d9;
}
.item-features:hover>div{
    transform:scale(1.1);
}
.item-features>div{
    transition:.4s;
    text-align:center;
}
.item-features span{
    margin-right:10px;
}
.footer-features{
    background: #003c72;
    padding-bottom: 100px;
    padding-top:20px;
    color: white;
    position:relative;
    margin-top:280px;
    z-index:2;
}
.footer-features:after{
    pointer-events:none;
    content: '';
    display: inline-block;
    width: 100%;
    height: 300px;
    background-image: url(assets/img/abr-fooyter.svg);
    position: absolute;
    top: -270px;
    position: absolute;
    opacity: .1;
    background-size: cover;
    transform: scaleX(-1);
}
.footer-features:before{
    content: '';
    display: inline-block;
    width: 100%;
    height: 300px;
    background-image: url(assets/img/abr-fooyter.svg);
    position: absolute;
    top: -240px;
    background-size: cover;
}
.footer-features:before{}
.footer-logo{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50% , -50%);
}
.footer-logo:before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background-image: url(assets/img/under-logo.png);
    content: '';
    display: inline-block;
    width: 150px;
    height: 135px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
#footer {
    position: relative;
    background: var(--bg_footer);
    color: #a5c1d9;
    border-top: 20px solid #002f59;
    padding-top: 90px;
}
#footer a:hover{
    color:var(--color3);
}
.wrap-ft-menu {
    padding: 0 5px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom:20px;
}
.wrap-ft-menu .footer-title{
    margin-bottom:20px;
}

.footer-contact li i {
    margin-left: 15px;
    font-size: 17px;
    color:white;
}
.footer-contact li i.icon-location{
    font-size: 18px;
}
.footer-title {
    margin-bottom: 10px;
    color:var(--color3);

}
.footer-sub-menu li{
    margin-bottom:5px;
}
.copy-right {
    direction:ltr;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 5px 5px 15px;
    margin-top: 150px;
}
.newsletter{
    display:block;
    background: rgb(255 255 255 / 0.05);
}
.footer-newsletter {
    display: flex;
    flex-wrap:wrap;
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
    align-items:center;
}
.footer-newsletter input[type=email] {
    width: 100%;
    margin-bottom: 12px;
    height: 40px;
}
.newsletter p {
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .newsletter{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }
    .footer-newsletter {
        max-width: 55%;
        flex: 0 0 55%;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .newsletter p {
        text-align: right;
        margin-bottom: 0;
    }
    .footer-newsletter input[type=email] {
        width: 69%;
        margin-left: 8px;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 992px) {
    .footer-newsletter {
        max-width: 55%;
        flex: 0 0 55%;
    }
    .footer-newsletter input[type=email] {
        width: 75%;
    }
}
/* --------------------
  Breadcrumb Style
-------------------- */
#breadcrumbs-main {
    height: 50px;
    padding: 5px;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position:relative;
}
#breadcrumbs-main::-webkit-scrollbar {
    display: none;
}
#breadcrumbs-main{
    text-align:left;
    font-size:12px;
    padding: 22px 0 12px 0;
}
#breadcrumbs a:after{
    content: "";
    display: inline-block;
    margin: 0 5px;
    width: 1px;
    height: 9px;
    background: var(--color1);
}
.breadcrumb_last{
    color:var(--color2);
}
/* --------------------
 Single Style
-------------------- */
.gallery_item img{
    border-radius:15px;
}
.social_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thumbnail-img {
    float: none;
    max-width: 100%;
    margin: 0;
    display: inline-flex;
    overflow: hidden;
    border-radius: 3px;
}
.socials a {
    display: inline-block;
    margin: 0 7px;
    font-size:23px;
}
.socials .br-whatsapp:hover .icon-whatsapp:after{
    color:var(--color1);
}
.socials a:hover i:after,
.socials a:hover i:before{
    transition:.4s;
}
.socials a:hover i:before{
    color:var(--color3);
}
.bg-section .socials a:hover i:after{
    color:var(--color2);
}
.socials a:hover i:after{
    color:white;
}
.thumbnail-img{
    width:100%;
}
.thumbnail-img img{
    border-radius:15px;
    width:100%;
}
.tags_post i{
    font-size: 20px;
    margin-left: 8px;
    color:#003c72;
}
.tags_post a:last-of-type:after{
    display:none;
}
.tags_post a:after{
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #707e8b;
    display: inline-block;
    margin: 0 10px;
}
.tags_post a:hover{
    color:var(--color3);
}
.tags_post{
    background: #f5f9fc;
    border-radius: 10px;
    padding: 13px 30px;
    font-size: 13px;
    display: flex;
    color:#7b7e83;
    align-items: center;
    flex-wrap: wrap;
    margin-top:20px;
}
.section-related{
    margin:100px 0;
}
.section-blog-related{
    background:#fafbfd;
    padding:55px 0;
}
/* --------------------
 comment Style
-------------------- */
.editor-content ul.woocommerce-error li{
    margin:0;
}
.editor-content .button:hover{
    color:black !important;
}
.editor-content ol.commentlist li:before{
    display:none;
}
.commentlist ul.children {
    padding-right: 45px;
    position:relative;
    margin-top: 120px;
}
.commentlist ul.children:before {
    content: "\e922";
    font-family:icomoon;
    position: absolute;
    width: 40px;
    right: 0;
    writing-mode: tb-rl;
    top: 10px;
    color:#d3d3d3;
    font-size: 20px;
}
.editor-content .commentlist {
    margin-bottom: 100px;
}
#review_form_wrapper form,#commentform{
    margin-bottom: 50px;
}
.form-submit {
    text-align: center!important;
    margin:5px 0 20px;
    flex: 0 0 100%;
}
#commentform {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor-content .comment-form-author,.editor-content .comment-form-email {
    flex: 0 0 49%;
    flex-wrap: wrap;
    display: flex;
}
.comment-form-comment {
    flex: 0 0 100%;
}
.editor-content .comment-form input, .editor-content .comment-form textarea{
    background: #fff;
}
.editor-content label,.comment-form label{
    margin-bottom: 5px!important;
    position: relative;
    display: inline-block;
}
.comment-form label{
    display:flex;
    align-items:center;
    color: black;
}
.comment-form label:before{
    margin-left:8px;
    font-size:20px;
    color:#73767b;
    font-family:icomoon;
}
.comment-form .comment-form-comment label:before{
    content:'\e912';
}
.comment-form .comment-form-author label:before{
    content:'\e913';
}
.comment-form .comment-form-email label:before{
    content:'\e902';
}
.comment-awaiting-moderation {
    color: var(--color1);
    text-align: center;
    display: block;
}
.commentlist .comment_container {
    box-shadow: 2px 1px 7px rgb(240,240,240);
    border-radius: 10px;
    background: white;
    position:relative;
}
.comment-list .children .comment_container {
    width: 89%;
    margin: 20px 0;
    margin-right: 112px;
}
.head-comment .name_comment i{
    font-size: 20px;
    margin-left: 8px;
}
.head-comment .name_comment{
    font-size:16px;
    display:flex;
    align-items:center;
}
.head-comment {
    padding: 15px 0 8px 0;
    color: #003c72;
    font-family: var(--bold_font);
    position: relative;
    align-items: center;
    justify-content: space-between;
    border-bottom:1px solid #eef3f7;
}
.comment_container .editor-content p {
    padding: 13px 0 20px 0;
}
.editor-content a.comment-reply-link{
    color: #bcbcbc;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    font-family: var(--bold_font);
    transition: 0.3s;
    margin-top:7px;
}
.editor-content .byadmin .name_comment i:before{
    content:'\e917';
    font-size:18px;
}
.editor-content .byadmin .name_comment i{
    color:var(--color2)
}
.editor-content a.comment-reply-link:hover{
    color:var(--color3);
}
.comment-reply-link i {
    font-size: 11px;
    font-weight: bold;
    transition:0.3s;
}
.comment-reply-link:hover i{
    margin-left: -5px;
    padding-right: 5px;
}
.item-comment {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgb(242,240,247);
    padding: 18px;
    position: relative;
}
.cdesc p{
    font-size:13px;
    padding: 10px 30px;
}
.commentlist #reply-title{
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
    margin:80px 0 20px 0;
    font-size:13px;
    background: var(--color1);
    color:white;
}

#cancel-comment-reply-link{
    color:white;
}
.commentlist .children  .comment_container {
    flex: 0 0 90%;
}
.editor-content .commentlist li {
    position: relative;
    margin-bottom:95px;
}
.head-comment .time_comment i{
    color:#707e8b;
    margin-right:8px;
    font-size:22px;
}
.head-comment .time_comment b{
    color:var(--color3);
    margin-right:3px;
}
.head-comment .time_comment {
    color: #abaeb3;
    display: flex;
    align-items: center;
}
.head-comment >span {
    display: inline-flex;
    align-items: center;
}
.comment-custom-field {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.comment-notes,
#review_form .comment-reply-title{
    display:none;
}
@media screen and (min-width: 768px) {
    .head-comment {
        display: flex;
    }
}
.comment-time{
    line-height:1;
    margin-bottom: -2px;
}
.comment-reply-link{
    position: absolute;
    left: 0;
    height: 40px;
}
/* --------------------
   CTA STYLE
-------------------- */
.cta {
    background: var(--color1);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 40px 0;
}
.cta a {
    color: #fff;
}

.cta h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 15px;
}

.cta a:hover {
    color: var(--color2);
}

/* --------------------
    Search Popup
-------------------- */
.header-search {
    direction: ltr;
    display: flex;
    align-items: center;
}

.header-search > span {
    margin-left: 5px;
    display:none
}
.search-pup-up {
    position: fixed;
    top: 0;
    left: 0;
    background: #000000bf;
    width: 100%;
    height: 100%;
    z-index: 1000;
    color: white;
    overflow: hidden;
    overflow-y: visible;
    padding-bottom: 50px;
    display:none;
}
.fd-outer {
    background:var(--color3);
    width: 40px;
    margin-top: 10px;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 90px;
    z-index: 10;
    border-radius: 5px
}
.fd-inner {
    width: 30px;
    text-align: center;
}
.fd-inner:before, .fd-inner:after {
    position: absolute;
    content: '';
    height: 2px;
    width: inherit;
    background: white;
    right: 5px;
    transition: all .3s ease-in;
}
.fd-inner:after {
    bottom: 48%;
    transform: rotate(-45deg);
}
.fd-inner:before {
    top: 48%;
    transform: rotate(45deg);
}
.fd-outer label {
    font-size: 15px;
    line-height: 3em;
    text-transform: uppercase;
    transition: all .3s ease-in;
    margin-right:47px;
    cursor: pointer;
}
.fd-outer:hover .fd-inner:before, .fd-outer:hover .fd-inner:after {
    transform:  scaleX(.8) rotate(0);
}
.form-wrap {
    padding-top: 140px;
}
#search-text:focus{
	border:1px solid var(--color2);
}
#search-text {
    width: 100%;
    text-align: center;
    border: none;
    background: none;
    color: #222;
    font-size: 16px;
    border-radius:100px;
    height: 43px;
	transition:.4s;
	border:1px solid var(--color1);
    background:white;

}
.search-title {
    font-size: 18px;
    padding: 5px 0 5px 0;
    display: block;
    margin: 15px 0;
    font-family: var(--bold_font);
    border-bottom: 1px solid var(--color1);
    background: var(--color1);
    text-align: center;
    border-radius: 10px;
    color: white;
}

.search-terms a:not(:first-child):before {content: "";display: inline-block;vertical-align: middle;width: 8px;height: 2px;background-color: var(--color2);margin: 0 5px;}

.search-pup-up .bg-white{
    transform:scale(0);
    opacity:0;
    transition-duration:.6s;
    transition-delay:.5s;
}
.search-pup-up.popup-search-active .bg-white{
    transform:scale(1);
    opacity:1;
}
.search-detail{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.search-detail h3 a{
    display:block;
    margin-bottom:10px;
}
.search-detail h3 a:before{
    font-family: icomoon;
    content: "\e905";
    color: var(--color1);
    display: inline-block;
    margin-left: 8px;
}
.search-image {
    display: block;
    margin-left: 15px;
}
.search-image img {
    max-width: 70px;
    border-radius: 5px;
}
.search-results-box .button{
    width:100%;
}
.noresults {
    display: block;
    color: var(--danger);
    background: var(--bg_danger);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-family: var(--bold_font);
    font-size: 12px;
}
@media screen and (max-width:768px){
    .form-wrap {
        padding-top: 80px;
    }

    .fd-outer {
        transform:scale(.8);
        top: 10px;
        right: 20px;
    }
}
@media screen and (min-width:576px){
    

    
    .header-search > span {
        display:block;
    }
}
@media screen and (min-width:992px){
    .header-search > span {
        font-size:12px;
    }
}
@media screen and (min-width:1200px){
    .header-search > span {
        font-size: inherit;
    }
}
/* single-product style starts */
.size-info-pop::-webkit-scrollbar {
  display: none;
}
.size-info-pop{
  -ms-overflow-style: none;
  scrollbar-width: none; 
}

.size-info-pop{
	position: fixed;
    top: 0;
    left: 0;
    background: #000000bf;
	color:white;
    z-index: 150;
    width: 100%;
    height: 100%;
	transition:.4s;
	opacity:0;
	visibility:hidden;
	overflow: hidden;
    overflow-y: visible;
	padding-bottom:50px;
}
.size-info-pop.active{
	opacity:1;
	visibility:visible;
}
.fd-outer.info-close{
	position: relative;
    margin-bottom: 50px;
    right: 0;
}
#size-information:after{
	background-image: linear-gradient(to top, var(--color1), #0a76d9);
}
#size-information:hover{
	color:var(--color1) !important;
	box-shadow: 0 2px 5px var(--color1);
}
#size-information{
    cursor: pointer;
    width: 200px;
    margin: 20px auto;
	position:relative;
	z-index:20;
    border: 1px solid var(--color1);
    color: white !important;
}

.product-main-data {
    margin-bottom: 50px;
}

.entry-title {
    font-size: 20px;
    margin-bottom: 5px;
}

span.sku_wrapper {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.posted_in {
    color: var(--color1);
    font-size: 16px;
}

.posted_in a {
    font-size: 14px;
    color: var(--color3);
    transition: 0.5s;
    margin-right: 5px;
}

.posted_in a:before {content: "";display: inline-block;vertical-align: middle;margin-left: 5px;width: 5px;height: 5px;border-radius: 100%;background-color: var(--color1);}

.posted_in a:first-child:before {
    content: unset;
}

.posted_in a:hover {
    color: var(--color1);
}

.type-product .summary.entry-summary .price {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 28px;
    background: #f5f9fc;
    border-radius: 20px;
    padding: 15px 35px 18px 35px;
}
.type-product .summary.entry-summary .price del .woocommerce-Price-currencySymbol{
    display:none;
}

.type-product .summary.entry-summary .cart .button:before{
    content: '\e900';
    font-family: icomoon;
    border-radius: 100%;
    background: white;
    color: var(--color3);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 3px;
    top: 3px;
    font-size: 20px;
}
.type-product .summary.entry-summary .cart .button{
    flex: 0 0 66.5%;
    min-height:37px;
    padding-right:40px;
    padding-left:15px;
}
.type-product .summary.entry-summary .cart {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.product_meta {
    margin-bottom: 10px;
}

.type-product .summary .price del bdi:after{
	content: '';
    width: 80px;
    height: 1.5px;
    position: absolute;
    top: 43%;
    left: 0;
    background: gray;
}
.type-product .summary .price del:before{
	content: 'قیمت اولیه : ';
	font-size: 15px;
    text-decoration: none;
    font-family: var(--main_font);
    color: black;
}
.type-product .summary .price del{
	text-decoration:none;
		display:flex;
	align-items:center;
	justify-content:space-between;
}
.type-product .summary .price del bdi{
	position:relative;
    font-size:20px;
    color: #7c7c7c;
	text-decoration:none;

	
}

.type-product .summary .price del {
    font-size: 16px;
    opacity: 0.7;
    width: 100%;
    text-align: left;
}

span.woocommerce-Price-currencySymbol {
    font-size: 16px;
    margin-right: 5px;
}

.type-product .summary .price .span.woocommerce-Price-currencySymbol{
    font-size: 18px;
}
.summary .price bdi{
    font-size: 28px;
    color:#3e3e3e;
    font-family: var(--bold_font);
}
.type-product .summary .price ins {
    font-size: 20px;
    text-decoration: none;
    position: relative;
    width: 100%;
    text-align: left;
    font-family: var(--bold_font);
    line-height:1;
}
.type-product .summary .price{
    position:relative;
}
.type-product .summary .price ins .woocommerce-Price-amount,
.type-product .summary .price>.woocommerce-Price-amount{
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:100%;
}
.type-product .summary .price ins .woocommerce-Price-amount:before,
.type-product .summary .price>.woocommerce-Price-amount:before {
   content: "قیمت نهایی : ";
	font-size: 15px;
	font-family:var(--main_font);
}

.woocommerce-product-details__short-description {
    margin-bottom: 15px;
}

.quantity {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 30%;
    border: 1px solid #e1e8f0;
    border-radius: 50px;
    padding: 0 4px;
    background:white;
}
button.minus, button.plus {
    border: none;
    background: #f5f9fc;
    font-size: 24px;
    height: 30px;
    width: 30px;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    border-radius:100%;
    color:var(--color1);
}
.editor-content input[type=number].qty, input.qty {
    -webkit-appearance: none!important;
    -moz-appearance: textfield!important;
    background-color: #ffffff!important;
    color: #000!important;
    font-size: 20px!important;
    border-left: transparent!important;
    border-right: transparent!important;
    width: 60px!important;
    text-align: center!important;
    margin-bottom: 0!important;
    padding: 0 5px!important;
    height: 38px!important;
    border-radius: 0!important;
    border: none!important;
}
.quantity * {
    border: none;
    height: 100%;
    font-size: 18px;
}

.quantity button {
    width: 30px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.minus {
    font-size: 24px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.quantity .qty {
    text-align: center;
    color: var(--color1);
}

.quantity button:hover {
    color: var(--color3);
}
.variations_form {
    flex-direction: column !important;
    align-items: baseline !important;
}

.variations_form .woocommerce-variation-add-to-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction:row-reverse;
}

.variations_form .single_variation_wrap {
    width: 100%;
}

.variations_form .variations {
    width: 100%;
    display: block;
    padding: 20px;
    border-radius: 5px;
    background-color: #f8f8f8;
    margin-bottom: 25px;
}

.variations_form .variations tbody {
    width: 100%;
    display: block;
}

.variations_form .variations tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.reset_variations{
    display:none !important
}

.variations_form .variations tbody tr .label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #83868d;
}

.variations_form .variations tbody tr select {
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-family: var(--mani_font);
    cursor: pointer;
}

.product-meta-right {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.product-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-meta-right a:first-child:after {content: "";width: 1px;height: 15px;margin: 0 5px;display: inline-block;vertical-align: middle;background-color: var(--color1);}

.product-meta-left {
    background-color: #f8f8f8;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.sahre a {
    font-size: 16px;
    margin: 0 5px;
}

.sahre {
    display: flex;
    align-items: center;
}

.woocommerce-product-gallery {
    position: relative;
    margin-top: 10px;
}

.onsale {display: none;}

.woocommerce-product-gallery .onsale {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f8f8f8bb;
    border-radius: 50%;
}
.stock.in-stock:before{
    content:'';
    background:var(--color3);
    border-radius:100%;
    display:inline-block;
    width:6px;
    height:6px;
    margin-left:10px;
}
.stock.in-stock {
    margin-bottom: 20px;
}
a.woocommerce-product-gallery__trigger {
    display:none;
}
.product-main-data .on-sale {
    left: 25px;
    top: 30px;
    right: unset;
}
.product-main-data 
:before {
    top: 24px;
    right: 0px;
}
.woocommerce-product-gallery__image img {
    width: 100% !important;
}
.flex-viewport img{
    border-radius:20px;
}
.flex-control-nav img{
    border-radius:10px;
}
.flex-control-nav li:hover{
    border:1px solid var(--color3);
}
.flex-control-nav li{
    border:1px solid transparent;
    border-radius:10px;
    cursor:pointer;
    transition:.4s;
}
.flex-control-nav {
    display: flex !important;
    align-items: center;
    position: relative;
    padding: 0 30px;
    margin-top: 15px;
}
.color-carousel .owl-nav {
    top: 7px;
}
.color-carousel .owl-nav .owl-prev:hover:before,
.color-carousel .owl-nav .owl-next:hover:before{
    opacity: 1;
}
.color-carousel .owl-nav .owl-prev:hover,
.color-carousel .owl-nav .owl-next:hover{
    color: #000 !important;
}
.color-carousel .owl-nav .owl-prev:before,
.color-carousel .owl-nav .owl-next:before{
    background-image: linear-gradient(to top, #c3d833, #e2fc45);
    content: '';
    width: 24px;
    height: 24px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
    transition: .4s;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
}
.color-carousel .owl-nav .owl-next,
.color-carousel .owl-nav .owl-prev{
    border: 1px solid #b8b5b5 !important;
    color: #a8a8a8 !important;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px !important;
    overflow: hidden;
}
.color-carousel .owl-nav ,
.flex-control-nav .owl-nav {
    position: absolute;
    right: 0;
    left: 0;
    display: flex;
    z-index: -1;
    justify-content: space-between;
}


.flex-control-nav .disabled i {
    opacity: 0.6;
}


.tabs.wc-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border:2px solid #f1f5f8;
    border-radius: 100px;
}

.contact-container .tabs.wc-tabs{
    justify-content: center;
}

.tabs.wc-tabs li{
    min-width: 30%;
    position:relative;
}

.tabs.wc-tabs li a:hover{
	color:var(--color3);
}
.tabs.wc-tabs li a {
    display: block;
    padding: 6px 10px;
    min-width: 100%;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    border-radius:100px;
}

.tabs.wc-tabs li.active a:after{
    width:19px;
}
.tabs.wc-tabs li a:after{
    content:'';
    width:0;
    height:2px;
    background:white;
    position:absolute;
    right:0;
    transition:.4s;
    top:calc(50% - 1px);
}
.tabs.wc-tabs li.active a:before{
    opacity:1;
}
.tabs.wc-tabs li a:before{
    background-image: linear-gradient(to top, var(--color1), #0a76d9);
    content:'';
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
    transition:.4s;
    border-radius:100px;
    opacity:0;
}
.tabs.wc-tabs li.active a {
    color: #fff;
    border-radius: 100px;
    z-index:1;
    position:relative;
    border-radius: 100px;
}

.shop_attributes {
    width: 100%;
    margin-top: 30px;
}

.shop_attributes tbody {
    background-color: #fff;
    display: block;
}

.shop_attributes tbody tr {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.shop_attributes tbody tr td{
    font-family:var(--bold_font);
}
.shop_attributes tbody tr th {
    margin-left: 20px !important;
    font-size: 14px;
    min-width: 70px;
    font-family:var(--bold_font);
    width: 26%;
    color:#74777c;
}

.shop_attributes tbody tr:last-child {
    margin-bottom: 0;
}
#tab-additional_information .shop_attributes{
    margin:16px 0;
}
#tab-additional_information{
    border: 2px solid #f1f5f8;
    border-radius:20px;
}
.comment-form-rating{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 15px;
    background:#f5f9fc;
    border-radius:10px;
    margin-bottom: 35px;
}
.comment-form-rating label {
    margin-bottom:0 !important;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 1em;
    background-color: #d8d8d8;
    border: 0;
    position: relative;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: var(--color3);
}
.woocommerce .widget_price_filter .ui-slider {
    position: relative;
    text-align: right;
    margin-right: .5em;
    margin-left: .5em;
}
.woocommerce .widget_price_filter .price_slider_amount {
    text-align: left;
    line-height: 2.4;
    font-size: .8751em;
}
.price_slider_wrapper .price_slider_amount {
    position: relative;
    margin-top: 40px;
    padding-bottom: 32px;
    line-height: 2.4;
    text-align: center !important;
}
.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 2px;
    background-color: var(--color3);
}
.price_slider_wrapper .ui-slider .ui-slider-handle {
    z-index: 2;
    width: 21px !important;
    height: 21px !important;
    cursor: ew-resize;
    outline: 0;
    top: -10px;
    margin-left: -10px;
    position: absolute;
    border: 1px solid var(--color3);
}
.price_slider_wrapper .ui-slider .ui-slider-handle:hover{
    background: var(--color1);
}
.price_slider_wrapper .ui-slider .ui-slider-handle:before {
    content: "\e92f";
    font-family: 'icomoon';
    font-size: 10px;
    transition: 0.3s;
    display: flex;
    transform: rotate(-180deg);
}
.price_slider .ui-slider-handle:last-child:before {
    transform:rotate(0deg);
}
.price_slider_wrapper .price_label span.from, .price_slider_wrapper .price_label span.to {
    position: absolute;
    color: #222;
}
.price_slider_wrapper .price_label span.from, .price_slider_wrapper .price_label span.to {
    font-size: 13px !important;
    font-weight: bold;
}
.price_slider_wrapper .price_label span.from {
    left: 0;
    top: -85px;
}
.woocommerce .price_label, .woocommerce .price_label span {
    unicode-bidi: embed;
    font-size: 0;
}
.price_slider_wrapper {
    margin-top: 60px;
    padding: 0 25px;
}
.price_slider_wrapper .price_label span.to {
    right: 0;
    bottom: auto;
    top: -24px;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
    width: 140px;
    margin-top: 20px;
    font-family: var(--bold_font);
    font-size: 14px;
}
.widget-side:before{
	content:'';
	width:calc(100% + 1px);
	height:100%;
	position:absolute;
	top:0;
	left:-1px;
	border-radius:24px;
	border:2px solid #f3f4f6;
	z-index:-1;
}
.widget-side{
	position:relative;
    border-radius:24px;
}
.woocommerce-widget-layered-nav .widget-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor:pointer;
	border-radius:24px;
	transition:.4s;
}
.woocommerce-widget-layered-nav-list{
    display:none;
}
.woocommerce-widget-layered-nav .widget-title:after {
    content: '';
    border: solid white;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg);
    -webkit-transform: rotate(45deg);
    transition: 0.3s;
}
.widget-title{
    background-image: linear-gradient(to top, var(--color1), #0a76d9);
    background-color: var(--color1);
    font-size:14px;
	color:white;
    padding: 9px 22px;
	border-radius:24px 24px 0 0;
	z-index: 2;
    position: relative;
}
.woocommerce-widget-layered-nav .widget-title.br-rotate{
	border-radius:24px 24px 0 0;
}
.woocommerce-widget-layered-nav .widget-title.br-rotate:after{
    transform:rotate(-135deg);
}
.product-categories>li:last-of-type{
    border-bottom:none;
}
.product-categories>li{
    border-bottom:1px solid #f3f4f6;
    padding: 10px 20px;
}
.mchilder {
    position: absolute;
    left: 11px;
    top: -3px;
    width: 40px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    transform: rotate(-90deg);
}
.mchilder:before {
    content: '';
    border: solid #787676;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transition: 0.3s;
}
.mchilder-open:before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    border: solid var(--color2);
    border-width: 0 1px 1px 0;
}
.widget .cat-item a:hover{
    color:var(--color2);
}
.cat-item .children .cat-item a:hover{
    color:var(--color1);
}
.product-categories .children{
    margin: 5px 0;
}
.cat-parent.parent-open>a{
    color:var(--color2);
}
.cat-item.cat-parent{
    position:relative;
}
.archive-product ul.page-numbers{
    margin-top:45px;
}
.cat-item .children li:before{
    content:'';
    width:5px;
    height:5px;
    border-radius:100%;
    background:var(--color1);
    margin-left:5px;
    display: inline-block;
}
.cat-item .children li{
    font-size:13px;
}
.wc-layered-nav-term a:hover:before{
    background: var(--color3);
}
.woocommerce-widget-layered-nav-list li a:hover{
    color:var(--color3);
}
.woocommerce-widget-layered-nav-list{
    padding:12px 0;
}
.wc-layered-nav-term.chosen a:before{
    background: var(--color3);
}
.wc-layered-nav-term.chosen a{
    position: relative;
}
.wc-layered-nav-term.chosen a:after{
    position: absolute;
    content: '';
    width: 8px;
    height: 5px;
    border: solid white;
    border-width: 0 0 2px 2px;
    top: 4px;
    right: 3px;
    transform: rotate(-45deg);
}
.wc-layered-nav-term a:before{
    content:'';
    border:1px solid var(--color3);
    width:14px;
    height:14px;
    display:inline-block;
    margin-left:10px;
    transition: .4s;
}
.wc-layered-nav-term{
    padding:0 20px;
}
.woocommerce-review__verified.verified:before{
    content: '';
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    margin-left: 10px;
    transform: rotate(45deg);
}
.woocommerce-review__verified.verified{
    position: absolute;
    z-index: 10;
    left: 0;
    display: inline-block;
    background: var(--color1);
    color: white;
    border-radius: 8px 8px 0 0;
    transform: rotate(-90deg);
    font-size: 12px;
    width: 115px;
    text-align: center;
    line-height: 30px;
    height: 30px;
    top: 50%;
    z-index:-1;
    transform: translate(-70px, -50%) rotate(-90deg);
}
/* star in single product */
.woocommerce-Reviews .stars {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 80px;
    height: 16px;
    padding: 0;
    margin: 0;
    direction: rtl;
}
.woocommerce-Reviews .stars span {
    position: relative;
    display: block;
    font-size: 0;
    height: 100%;
    z-index: 2;
}

.woocommerce-Reviews .stars a:before {
    display: none !important;
}
.woocommerce-Reviews .stars::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 16px;
    background-size: 16px;
    background-image: url("assets/img/star-empty.svg") !important;
    background-repeat: repeat-x;
    z-index: 1;
}



.woocommerce-Reviews .stars a {
    display: inline-flex;
    vertical-align: top;
    font-size: 6px;
    width: 16px !important;
    text-decoration: none;
    color: transparent;
    overflow: hidden;
    text-align: center;
    height:16px;
    align-items:center;
    justify-content:center;
    transition:none;
}

.woocommerce-Reviews .stars a:hover {
    color: yellow;
}

.woocommerce-Reviews .stars a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 16px;
    background-size: 16px;
    background-image: url("assets/img/star.svg") !important;
    background-repeat: repeat-x;
}

.woocommerce-Reviews .star-1.active::after,
.woocommerce-Reviews .star-1:hover::after,
.woocommerce-Reviews .star-1:focus::after {
    width: 16px;
}

.woocommerce-Reviews .star-2.active::after,
.woocommerce-Reviews .star-2:hover::after,
.woocommerce-Reviews .star-2:focus::after {
    width: 32px;
}

.woocommerce-Reviews .star-3.active::after,
.woocommerce-Reviews .star-3:hover::after,
.woocommerce-Reviews .star-3:focus::after {
    width: 48px;
}

.woocommerce-Reviews .star-4.active::after,
.woocommerce-Reviews .star-4:hover::after,
.woocommerce-Reviews .star-4:focus::after {
    width: 64px;
}

.woocommerce-Reviews .star-5.active::after,
.woocommerce-Reviews .star-5:hover::after,
.woocommerce-Reviews .star-5:focus::after {
    width: 80px;
}

.title-star-rating {
    height: 16px;
    position: relative;
    width: 80px;
    margin-right: auto;
}

.title-star-rating:before {
    background-image: url("assets/img/star-empty.svg") !important;
    background-repeat: repeat-x;
    background-size: 16px;
    bottom: 0;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
}
.title-star-rating>span {
    display: block;
    text-indent: -10000px;
    width: 80px;
    height: 16px;
    position: absolute;
    overflow: hidden;
    left: 0;
}
.title-star-rating>span:before {
    background-image: url("assets/img/star.svg") !important;
    background-repeat: repeat-x;
    background-size: 16px;
    bottom: 0;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
    text-indent: 10000px;
    top: 0;
}

.woocommerce-Reviews .stars {
    display: inline-flex;
    vertical-align: top;
    font-size: 10px;
    text-decoration: none;
    color: #cecece;
    overflow: hidden;
    text-align: center;
    height: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom:0;
}

form#commentform {
    position: relative;
    margin-top: 15px;
}
h3#reply-title > a {
    color: #000;
}
p.comment-form-cookies-consent {
    display: none;
}
.form-submit {
    text-align: left;
}
a#cancel-comment-reply-link {
    border:1px solid var(--color2);
    background: var(--color2);
    padding: 0px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 12px;
    margin-right: 15px;
}
a#cancel-comment-reply-link:hover {
    background: none;
}


.woocommerce-product-rating {
    margin-right: auto;
}
.woocommerce-product-rating * {
    display: inline-block;
}
.woocommerce-product-rating > span  {
    color: #5d5d5d;
    margin-left: 10px;
    vertical-align: middle;
}
.comment-form label i {
    margin-left: 15px;
    font-size: 24px;
    vertical-align: middle;
}
.comment-form label .icon-mail1 {
    font-size: 22px;
}
#reply-title {
    display: none;
}
.filter_sd{
    position: fixed;
    left: 15px;
    bottom: 15px;
    padding:0 20px;
    margin:0 auto;
    z-index: 20;
    right: 15px;
    background: #011528;
    border: none;
    color: #fff;
     width: 150px;
}

/* single-product style ends */

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

    .product-main-data .order-lg-2{
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 768px) {
    .tabs.wc-tabs li {
        min-width: 33.33%;
        margin: 0;
    }
}

@media screen and (max-width: 576px) {
    
    #wrapper .categories-carousel .owl-nav button {
        background: var(--color1) !important;
        color: #fff !important;
        box-shadow: none;
    }

 #wrapper .categories-carousel .owl-nav button i{
     color: #fff !important;
    }


.timer-wrapper{
    float: left;
margin-left: 15px;
}

    .zoomContainer {
        display: none !important;
    }

    .type-product .summary.entry-summary .cart,.variations_form .woocommerce-variation-add-to-cart{
        flex-direction: column;
    }
    .quantity{
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 425px) {
    .product-meta-top{
        flex-direction: column;
    }
    .product-meta-top > div {
        width: 100%;
        margin: 5px 0;
        justify-content: space-around;
    }
    .product-meta-right a:first-child:after{
        content: unset;
    }
    .type-product .summary .price ins:before{
        font-size: 16px;
    }
}



/* --------------------
    Modules Css
-------------------- */

.section-base{
    padding: 30px 0;
}

.countdown-wrapper {
    direction: ltr;
    transition:.4s;
}

.countdown-wrapper span:last-of-type:after{
    display:none;
}
.countdown-wrapper span{
    display: inline-block;
    margin: 0 5px;
}
.countdown span:after{
    content:':';
    transform:translateX(5px) translateY(-2px);
    display:inline-block;
}
@media screen and (min-width: 992px) {

    .section-products-home .product-carousel {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -10px;
        margin-left: -10px;
    }

    .section-products-home .product-item-parent {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 33px;
    }
}


.product-colors{
    text-align: center;
}
.product-colors .pccolor-wrapper span {
    width: 20px;
    display: block;
    height: 100%;
}
.product-colors .pccolor-wrapper {
    height: 8px;
    width: 15px;
    margin: 0 2px;
    display: flex;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 0 2px black;
}

.owl-brands .owl-stage-outer .owl-stage {
    display: flex;
    align-items: center;
}

.owl-brands img {
    width: auto !important;
    display: block;
    margin: 0 auto;
    transition:.4s;
}
.owl-brands img:hover{
    filter:grayscale(1);
}
/* --------------------
    section products offer
-------------------- */
.section-products-home.cloud-section:before{
    opacity:.1;
}
.section-products-home.cloud-section{
    margin-top:0;
    padding-bottom:250px;
}
.section-products-offer:after,
.section-products-offer:before{
    content: "";
    color: var(--color2);
    background: white;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 16px;
}
.section-products-offer:after{
    content: "\e930";
    font-family: icomoon;
    animation: movearrow2 infinite 1s;
    background:none;
}
@keyframes movearrow2{
    50%{
        transform:translateY(5px) translate(-50%, -50%) rotate(90deg);
    }
    100%{
        transform:translateY(0) translate(-50%, -50%) rotate(90deg);
    }
}
.section-products-offer .title-site-center .title-heading{
    color:white;
}
.section-products-offer .cloud-section{
    padding-bottom:180px;
}
.section-products-offer .product-carousel-sale{
    z-index:20;
}
.section-products-offer .product-carousel-sale .product-item .product-price .price>.woocommerce-Price-amount,
.section-products-offer .product-carousel-sale .product-item .product-price .price ins>.woocommerce-Price-amount{
    box-shadow:0 2px 5px #ccd73154;
}
.section-products-offer{
    background:var(--color1);
    position:relative;

}
.product-carousel .owl-stage-outer{
    padding:15px 0;
}
.product-carousel-sale .owl-stage-outer{
    padding:15px 0;
}
/* --------------------
    product
-------------------- */
.on-sale{
    background: var(--color3);
    border-radius: 8px;
    position: absolute;
    bottom: 5px;
    right: 20px;
    width: 40px;
    height: 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: var(--bold_font);
    z-index:1;
}
.product-item-parent:hover .product-item,
.product-item-parent:hover .countdown-wrapper{
    transform:translateY(-6px);
}
.product-image-wrapper{
    overflow:hidden;
    display: block;
    position:relative;
    border-radius: 15px 15px 0 0;
}
.product-image-wrapper-2>img:last-of-type{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.product-item-parent:hover .product-image-wrapper-2>img:first-of-type{
    opacity:0;
    visibility:hidden;
}
.product-item-parent:hover .product-image-wrapper-2>img:last-of-type{
    opacity:1;
    visibility:visible;
}
.product-item-parent:hover .product-item{
    border: 1px solid transparent;
}
.product-item{
    position: relative;
    border: 1px solid #f2f3f5;
    border-radius: 15px;
    background:white;
    transition:.4s;
  
}
.product-item-top {
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    height: 70px;
    pointer-events: none;
    border-radius: 15px 15px 0 0;
}

.product-main-data .product-item-top {
    top: 10px;
    margin: 0 10px;
}

.product-item img{
    transition:.4s;
    width:100%;
    border-radius:15px 15px 0 0 ;
}
.product-item:hover img{
    transform:scale(1.2);
}
.product-item:after,
.product-item:before{
    content:'';
    width:calc(100% + 1px);
    height:calc(100% + 1px);
    border:solid var(--color3);
    border-radius:15px;
    display:block;
    position:absolute;
    pointer-events:none;
    top:-1px;
    left:-1px;
    transform:scaleX(0);
    transition:.4s;
    z-index:2;
}
.product-item:after{
    border-width:1px 0 1px 0;
}
.product-item:before{
    border-width:0 1px 0 1px;
    transform:scaleY(0);
}
.product-item-parent:hover .product-item:after{
    transform:scaleX(1);
}
.product-item-parent:hover .product-item:before{
    transform:scaleY(1);
}
.product-item:hover{
    box-shadow: 0 17px 10px -11px #e5e3e3;
}
.on-new{
    background: var(--color3);
    position: absolute;
    transform: rotate(-45deg);
    top: -2px;
    left: -23px;
    width: 75px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bold_font);
    z-index: 1;
    background-image: var(--color3);
    color: var(--color1);
    padding: 15px 0 0px;
}
#customer_login .u-column .form-row.form-row-first{
	width:100%;
}
#customer_login .u-column{
    box-shadow: 0 0 6px #6b6b6b17;
    border-radius: 10px;
    padding: 25px;
	width:50%;
}
.product-main-data .product-item-top .on-new{
	top: -8px;
    right: -34px;
    left: unset;
    transform: rotate(45deg);
    width: 100px;
    padding: 20px 0 5px;
    height: 50px;
}
.product-colors-wrapper{
    border-radius: 50px;
    background: white;
    padding: 5px;
    pointer-events: none;
    line-height: 1;
    display: flex;
}
.product-image{
    display: block;
    position: relative;
}
.product-colors{
    z-index:10;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50% , 50%);
}
.price-not-icon span{
    border-radius: 100px;
    color: white;
    padding: 0 15px;
    background-image: linear-gradient(to top, #fa8a4b, #fda55d);
}
.timer-wrapper i{
    margin-right: 6px;
    color: var(--color3);
    font-size: 15px;
}
.timer-wrapper{
    background: #003C72;
    color: white;
    margin-right: 15px;
    display: inline-flex;
    border-radius: 0 0 10px 10px;
    padding: 2px 12px;
    align-items: center;
    z-index: 2;
    transition:.4s;
    position: relative;
}
.section-products-offer .product-item:hover {
    box-shadow: 0 17px 10px -11px #00000047;
}
.product-item-parent:hover .timer-wrapper{
    color:var(--color3);
}

.pro-info {
    position: relative;
}

.pro-info .price del {
    text-decoration: none;
    color: var(--color1) !important;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    margin-top: -30px;
}

.pro-info .price del:before {content: "";position: absolute;width: 110%;height: 1px;background-color: var(--color1);transform: rotate(-10deg);top: 14px;right: -10%;}

.product-item h2 a{
    padding: 10px 15px 25px 10px;
    min-height: 55px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.product-item h2{
    color: var(--color1);
}
.product-item .product-price:hover{
    color:black;
}
.product-item .product-price .price{
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 6px 12px 6px 5px;
	font-family: var(--main_font) !important;
	font-weight:normal !important;
}
.product-item .product-price .price del{
    order:1;
}
.product-item:hover .product-price .price>.woocommerce-Price-amount:before,
.product-item:hover .product-price .price ins>.woocommerce-Price-amount:before{
    height: 100%;
}
.product-item .product-price .price>.woocommerce-Price-amount:before,
.product-item .product-price .price ins>.woocommerce-Price-amount:before{
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    height: 0;
    background-image: background-image: linear-gradient(to top, #c3d833, #e2fe49);
    z-index: -2;
    border-radius: 100%;
    transform: scale(1.5);
}
.product-item .product-price .price>.woocommerce-Price-amount:after,
.product-item .product-price .price ins>.woocommerce-Price-amount:after{
    content: "\e900";
    font-family: icomoon;
    color: var(--color3);
    font-size: 20px;
    line-height: 1;
    background: white;
    border-radius: 100px;
    padding: 3.5px;
    margin-right: 8px;
}

.product-item .product-price .price>.woocommerce-Price-amount,
.product-item .product-price .price ins>.woocommerce-Price-amount{
    border: 1px solid var(--color3);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    height: 35px;
    overflow: hidden;
    position: relative;
    z-index:1;
    transition:.4s;
    padding-right: 20px;
    padding-left: 3px;
}
.product-item .product-price .price del{
    color:#9c9a9b;
}
.product-item .product-price .price del .woocommerce-Price-currencySymbol{
    display:none;
}
.product-item .product-price .price ins{
    text-decoration:none;
}
.product-item .product-price .price span.woocommerce-Price-currencySymbol{
    margin-right:0;
    font-size:10px;
}
.product-item:hover .product-price .price>.woocommerce-Price-amount,
.product-item:hover .product-price .price ins>.woocommerce-Price-amount{
    box-shadow: 0 2px 5px var(--color3);
    background:var(--color3);
}

/* --------------------
    banners
-------------------- */
.section-banners{
    padding-bottom:260px;
}
.section-banners a img{
    width:100%;
    border-radius: 15px;
    transition:.4s;
}
.section-banners a{
    display:block;
    overflow: hidden;
    border-radius: 15px;
}
.section-banners a:after, .section-banners a:before {
    content: '';
    transition: 0.3s;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    position: absolute;
    pointer-events: none;
    z-index: 1;
    right: 20px;
    left: 20px;
    bottom: 10px;
    top: 10px;
    transform: scaleY(0);
    border-radius: 15px;
}
.section-banners a:after {
    border-left: none;
    border-right: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scaleX(0);
}
.section-banners a:hover:before {
    transform: scaleY(1);
}
.section-banners a:hover img {
    transform: scale(1.1)rotate(2deg);
}
.section-banners a:hover:after {
    transform: scaleX(1);
}
/* --------------------
    Blog
-------------------- */
.page-numbers li:hover a{
    color:var(--color1);
}
.page-numbers li{
    color:#73767b;
    margin:0 10px;
}
.prev.page-numbers{
    margin-right:12px;
}
.next.page-numbers{
    margin-left:12px;
}
ul.page-numbers{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    direction: ltr;
}
.page-numbers.current:after{
    content:'';
    width:5px;
    height:5px;
    background:var(--color2);
    display:block;
    border-radius:100%;
    margin:auto;
    bottom:-5px;
    position:absolute;
    left:calc(50% - 2.5px);
}
.page-numbers.current{
    position:relative;
    color:var(--color2);
}
.img-post-wrapper img{
    transition:.4s;
    width:100% !important;
}
.img-wrapper-main{
    position:relative;
    overflow:hidden;
    display:block;
    border-radius:15px;
}
.post-item:hover .img-post-wrapper img{
    transform:scale(1.2) rotate(-5deg);
}
.img-post-wrapper{
    display: block;
    overflow: hidden;
    position: relative;
    border-radius:15px;
}
.gallery_item:hover:after{
    left: -3px;
    opacity:1;
    z-index:33;
}
.gallery_item:after{
    content:'';
    background-size: 140px;
}
.gallery_item:after,
.date-blog{
    display: inline-block;
    position: absolute;
    bottom: -3px;
    left: -100%;
    background-image: url(assets/img/hover-blog.png);
    width: 164px;
    height: 67px;
    background-position: bottom left;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-repeat: no-repeat;
    transition:.4s;
    padding:0 0 5px 5px;
    color: #adadad;
    line-height: 1;
    font-size: 16px;
    opacity:0;
}
.post-item .date-blog b{
    color: var(--color3);
    font-size: 22px;
    font-family: var(--main_font);
    margin-right: 8px;
}
.post-item:hover .date-blog{
    left: -3px;
    opacity:1;
}
.post-item:hover .icon-blog-arrow{
    transform: translateY(-52%) scale(1) rotate(0deg) ;
    box-shadow: 0 2px 5px var(--color3);
}
.post-item i.icon-blog-arrow{
    color: black;
    border-radius: 100%;
    padding: 10px;
    background-image: linear-gradient(to top, #c3d833, #e2fc45);
    font-size: 16px;
    position: relative;
    right: 15px;
    /* bottom: 0; */
    display: inline-block;
    transition: .4s;
    transform: translateY(-52%) scale(0) rotate(90deg);
    box-shadow: 0 2px 5px var(--color3);
}
.post-item-image{
    display:block;
    position:relative;
    overflow:hidden;
}
.post-item:hover h2{
    color:var(--color3);
}
.post-item h2{
    margin: 3px 0 15px 0;
    font-size: 16px;
    color: #464646;
}
.post-item-image img{
    border-radius:18px;
}
/* --------------------
    Slider
-------------------- */
/* @media (min-width: 576px){ */
    /* .slick-dots,.up-slick,.down-slick{ */
        /* max-width: 540px; */
    /* } */
/* } */
/* @media (min-width: 768px){ */
    /* .slick-dots,.up-slick,.down-slick{ */
        /* max-width: 720px; */
    /* } */
/* } */
/* @media (min-width: 992px){ */
    /* .slick-dots,.up-slick,.down-slick{ */
        /* max-width: 960px; */
    /* } */
/* } */
/* @media (min-width: 1200px){ */
    /* .slick-dots,.up-slick,.down-slick{ */
        /* max-width: 1140px; */
    /* } */
/* } */
.slick-dots:after{
    content: '';
    width: 90px;
    height: 105px;
    display: inline-block;
    background-image: url(assets/img/sprite.png);
    background-position: -290px -113px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(13px , 73%) scale(.42);
}
.nav-slide-container{
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.section-slider.cloud-section:before{
    bottom:-25px;
}
.section-slider.cloud-section:after{
    bottom:-60px;
}
.section-slider.cloud-section:after, .section-slider.cloud-section:before{
    width: calc(100% + 300px);
}
.slider-site img{
    width:100%;
}
#customNav button{
    box-shadow: none !important;
    border: none;
}
#customNav{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    width: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    bottom: 80px;
}
#customNav:after{
    content: '';
    background-image: url(assets/img/sprite.png);
    background-position: -16px 0;
    background-repeat: no-repeat;
    width: 200px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) scale(.5);
}
#customDots button{
    background: #f0f0f0;
    border: 1px solid #c5c5c5;
    width: 8px;
    height: 8px;
    display: inline-block;
    display: block;
    border-radius: 100px;
    margin: 4px 0;
    padding: 0;
    font-size:16px;
}
#customDots button.active{
    border:none;
    background:var(--color3);
}
.slider-eleman-wrapper button{
    border:unset;
    background:unset;
    padding:0;
    display:block
}
.slick-dots{
    position:absolute;
    bottom:30%;
    left:50%;
    transform:translateX(-50%);
    padding:0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
    align-content: center;
    height: 110px;
    z-index:40;
    width: 66px;
    right: -33px;
}
.slick-dots:before{
    content:'';
    position:absolute;
    bottom:0;
    z-index: 10;
    background: white;
    border-radius: 100px;
    float: right;
    width: 35px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 110px;
    box-shadow: 0 0 5px #00000052;
}
#customNav2 button{
    border:none;
    background:none;
    position: absolute;
    color:var(--color3);
    left:50%;
    transform:translateX(-50%) rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
#customNav2 .owl-prev{
    top: 7px;
}
#customNav2 .owl-next{
    bottom: 7px;
}
.up-slick{
    height: 10px;
    display: block;
    position: absolute;
    z-index: 50;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
    bottom: calc(30% + 100px);
}
.up-slick:before,
.down-slick:before{
    position: absolute;
    display: inline-block;
    color: var(--color3);
    transform: rotate(-90deg);
    margin-right: 10px;
    margin-top: 7px;
    cursor:pointer;
    z-index:50;
}
.down-slick:before{
    margin-bottom: 7px;
    transform: rotate(90deg);
}
.down-slick{
    bottom: calc(30% + 10px);
    color: var(--color3);
    margin-right: 10px;
    margin-bottom: 7px;
    height: 10px;
    display: block;
    position: absolute;
    width: 100%;
    position: absolute;
    left: 50%;
    padding: 0 15px;
    z-index:50;
    transform: translateX(-50%);
}
.slider-eleman{
    background: white;
    border-radius: 100px;
    float: right;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.section-slider{
    position:relative;
    overflow:hidden;
}


/* --------------------
    Brand
-------------------- */
.cloud-section{
    position:relative;
    overflow:hidden;
}
.cloud-section:after,
.cloud-section:before{
    content: '';
    width: 100%;
    background-image: url(assets/img/abr-footer.svg);
    display: inline-block;
    height: 200px;
    bottom:0;
    left: 0;
    background-size: cover;
    filter: brightness(1.9);
    position:absolute;
    z-index:10;

}
.cloud-section:after{
    background-image: url(assets/img/abr-footer.svg);
    filter: brightness(0) invert(1);
    height: 120px;
    bottom:-20px;
}
.section-slider:after{
    animation:17s move3 infinite;
}
.section-slider:before{
    left:-300px ;
    transform:scaleX(-1);
    opacity: .5;
    filter:brightness(0) invert(1) !important;
    animation:12s move2 infinite linear;
}
@keyframes move2{
    40%{
        left:0px;
    }
    100%{
        left:-300px;
    }
}
@keyframes move3{
    50%{
        left:-300px;
    }
    100%{
        left:0px;
    }
}
.price_slider_wrapper .ui-slider .ui-slider-handle:hover,
.flex-control-nav .owl-nav button:hover,
.owl-gallery .owl-nav button:hover,
.product-carousel .owl-nav button:hover,
.owl-responsive .owl-nav button:hover,
#customNav.owl-nav button:hover,
.next.page-numbers:hover,
.prev.page-numbers:hover,
.owl-brands .owl-nav button:hover{
    background-position: -56px 0px !important;
    color:black!important;
    box-shadow: 0 2px 5px var(--color3);
}
.price_slider_wrapper .ui-slider .ui-slider-handle,
.flex-control-nav .owl-nav button,
.owl-gallery .owl-nav button,
.owl-responsive .owl-nav button,
.product-carousel .owl-nav button,
#customNav.owl-nav button,
.next.page-numbers,
.prev.page-numbers,
.owl-brands .owl-nav button{
    pointer-events: auto;
    color: white !important;
    border-radius: 100%;
    background-image: linear-gradient(to left , #bed82f, #e3ff4a 55px,var(--color2) ,#ffa46f) !important;
    font-size: 16px !important;
    display: flex;
    transition: .4s;
    box-shadow: 0 2px 5px #e5e5e5;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background-position: 0px 0px !important;
    background-size: 115px !important;
    background-repeat: no-repeat !important;
    background-color: white !important;
}
.flex-control-nav .owl-nav button.disabled:hover{
    background-position: 35px 0px !important;
    color: var(--color3) !important;
    box-shadow: 0 2px 5px #e5e5e5;
}
.flex-control-nav .owl-nav button{
    width: 22px;
    height: 22px;
    font-size: 11px !important;
}
.next.page-numbers,
.prev.page-numbers{
    width: 30px;
    height: 30px;
}
.owl-responsive .owl-nav button,
.product-carousel .owl-nav button{
    width: 30px;
    height: 30px;
    font-size: 14px !important;
}
.owl-brands .owl-nav button{
    width: 35px;
    height: 35px;
    font-size: 16px !important;
}
.owl-responsive .owl-nav,
.product-carousel .owl-nav,
.owl-brands .owl-nav{
    right:0;
    position: absolute;
    top: 50%;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}
.secound-level{
    display:flex;
    align-items:center;
}
.secound-level:before{
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    margin: 0 6px;
    background: #ffffff45;
}
#billing_city_field,#billing_state_field,#shipping_state_field,#shipping_city_field{
    flex: 0 0 48%;
    max-width: 48%;
}

/* --------------------
    Single
-------------------- */
.share-icon i:before{
    color: #003b71;
}
.share-icon{
    opacity:0;
    transition:.4s;
}
.socials.socials-share:hover .share-icon{
    opacity:1;
}
.socials.socials-share{
    color: #003b71;
    direction: ltr;
    font-size: 17px;
    line-height: 1;
    cursor:pointer;
    user-select:none;
}
.social_share .socials a {
    margin: 0 8px;
}
.single-top{
    margin-bottom:30px;
}
.blog-date b{
    color:var(--color3);
    margin-right: 4px;
    font-family:var(--main_font);
}
.blog-date{
    display:flex;
    align-items:center;
    font-size: 13px;
    color:#a7aaaf;
}
.blog-date i{
    color:#707e89;
    display: inline-block;
    font-size: 22px;
    margin-left: 8px;
}
.social_share{
    border-radius:10px;
    background:#f5f9fc;
    padding: 7px 25px;
    margin-top: 8px;
}
.category_post a:last-of-type:after{
    display:none;
}
.category_post a:after{
    content:'';
    width:3px;
    height:3px;
    margin:0 5px 0 2px;
    display:inline-block;
    border-radius:100%;
    background:#babfc3;
}

.category_post{
    font-size:13px;

    color:#72757a;
}
.post-content{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #e6ebf1;
}
/* --------------------
    Filter
-------------------- */
form.woocommerce-ordering {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.mh-orderby-wrap {
    position: relative;
    display: inline-block;
    flex: 0 0 32%;
}
.mh-orderby-wrap:before {
    content: '';
    border: solid #787676;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transition: 0.3s;
    position: absolute;
    top: calc(50% - 17px);
    left: 24px;
}
select.orderby {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 100px;
    color: var(--bg_footer);
    font-family: var(--bold_font);
    padding: 12px 20px;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;
    background: unset;
    font-size: 13px;
}
.btn-switch {
    position: relative;
    flex: 0 0 32%;
    height: 53px;
    border-radius: 100px;
    color: var(--bg_footer);
    font-family: var(--bold_font);
    padding: 15px;
    border: 1px solid #dcdcdc;
    margin: 20px 15px 30px;
    margin-left: 0;
    margin-top: 0;
}
.btn-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.btn-slider.btn-round {
    border-radius: 34px;
}
.btn-slider.btn-round:before {
    border-radius: 50%;
}
.btn-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.btn-switch b {
    position: absolute;
    bottom: 11px;
}
.btn-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto;
    width: 55px;
    height: 25px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.btn-switch input:checked + .btn-slider {
    background-color: var(--color1);
    display: inline-block;
}
.btn-switch input:checked + .btn-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(28px);
}
/* --------------------
    mini card
-------------------- */
.woocommerce-mini-cart-item.mini_cart_item {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 15px;
    font-size: 13px;
    padding-right: 25px;
}
.woocommerce-mini-cart .mini_cart_item a.remove {
    color: var(--danger);
    font-size: 22px;
    transition: 0.3s;
    background: var(--bg_danger);
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    padding-right: 0 !important;
    border: 1px solid var(--danger);
    right: 0;
}

.woocommerce-mini-cart-item.mini_cart_item img {
    height: auto;
    margin-left: 20px;
    border: 1px solid #eee;
    flex: 0 0 50px;
    max-width: 70px;
    margin: 0 10px;
}
.woocommerce-mini-cart .quantity {
    display: none;
}
.woocommerce-mini-cart__total.total {
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.woocommerce-mini-cart__total.total strong {
    color: #aaa;
    font-family: var(--main_font);
}
.woocommerce-mini-cart__total.total span {
    font-size: 14px;
    color: var(--color1);
    margin-right: 0;
}
.woocommerce-mini-cart__buttons.buttons .button{
    padding: 0 15px;
}
.woocommerce-mini-cart__buttons.buttons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.woocommerce-mini-cart .mini_cart_item a.remove:hover{
    background:var(--danger);
    color:white;
}
.color-carousel .owl-stage-outer .owl-stage{
    margin: 0 auto;
}
.widget_layered_nav_filters .chosen a:before{
    content: "\e950";
    margin-left: 7px;
    color: var(--danger);
    font-family: 'icomoon';
    font-size: 10px;
}
.widget_layered_nav_filters .chosen a{
    display: flex;
    align-items: center;
}
.widget_layered_nav_filters .chosen a:hover{
    color:var(--color3);
}
.widget_layered_nav_filters .chosen{
    padding:10px 20px;
    display: flex;
    align-items: center;
}
#customer_login .woocommerce-form .woocommerce-form-row .button{
    margin-top:15px;
}
.lost_password a{
    color: black;
    margin-top:15px;
}
#customer_login .login .form-row .password-input{
    width:100%;
}
#customer_login .login .form-row .button{
    margin:15px 0;
}
#customer_login .login .form-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
}
.lost_password:hover a{
    color:var(--color3);
}
#customer_login h2{
    font-size: 16px;
    background: var(--color1);
    display: inline-block;
    color: white;
    margin-bottom: 0;
    padding: 2px 25px;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 1;
    right: 15px;
}
#customer_login .woocommerce-form{
    border: 1px solid var(--color1);
    border-radius: 10px;
    padding: 25px;
}
.form-row.form-row-first, .woocommerce-billing-fields__field-wrapper .form-row {
    display: block;
    width: 48%;
    flex: 0 0 48%;
}

.woocommerce-MyAccount-content p label {
    display: flex;
}

.woocommerce-MyAccount-content p label abbr {
    margin: 0 10px 0 0;
    order: 2;
}

.woocommerce-MyAccount-content p label:after {content: ":";}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    height: 45px;
    display: block;
    box-sizing: border-box;
    font-family: inherit;
    width: 100%;
    transition: 0.3s;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: right;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 8px;
    right: auto;
    top: 10px;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding: 0;
    margin-top: -3px;
    font-size: 13px;
}
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pw-gateway-submit.button{
    color:black;
    font-size:14px;
}
.related.products{
    margin-top: 70px;
}
#comments .commentlist ul li:before,
#comments .commentlist li:after{
    display:none;
}
#comments .commentlist li {
    padding-right: 0px;
}
.woocommerce-tabs.wc-tabs-wrapper{
    margin-top: 110px;
}
.sku_main .socials {
    order:-1;
}
.sku_main{
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #e6ebf1;
    margin-top: 10px;
    padding-top: 10px;
    flex-direction:row-reverse;
}
.sku{
    color:black;
}
.pro-color-container>span{
    margin-right: -30px;
}
.label_brand,
.pro-color-container span,
.sku_wrapper{
    color:#8f9497;
}
.wp-post-image{
    border-radius: 20px;
}
.product-remove{
    width: 40px !important;
    margin-right: 0;
    left:10px !important;
}
.woocommerce-cart-form__cart-item.cart_item{
    position:relative;
}

tr.woocommerce-cart-form__cart-item.cart_item .product-name a {
    display: flex;
    align-items: center;
}

.stock.out-of-stock{
    margin-bottom: 15px;
}
.form_contact #message, .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received, .wpcf7-response-output.wpcf7-mail-sent-ok, .woocommerce-message, .woocommerce-info {
    background: var(--bg_success);
    color: var(--success);
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin: 10px auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
	flex-wrap:wrap;
    justify-content: space-between;
    font-weight:bold;
}
ul.order_details {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.rtwpvs .rtwpvs-terms-wrapper.radio-variable-wrapper .rtwpvs-radio-term:nth-of-type(1) label{
    margin-right:0;
}
.rtwpvs .rtwpvs-terms-wrapper.radio-variable-wrapper .rtwpvs-radio-term.selected label{
    border:1px solid var(--color3);
    color:var(--color3);
}
.rtwpvs .rtwpvs-terms-wrapper.radio-variable-wrapper .rtwpvs-radio-term label{
    border:1px solid transparent;
    border-radius:100%;
    padding:0;
    transition:.4s;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper [data-rtwpvs-tooltip]:active:after, .rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper [data-rtwpvs-tooltip]:active:before, .rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper [data-rtwpvs-tooltip]:focus:after, .rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper [data-rtwpvs-tooltip]:focus:before, .rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper [data-rtwpvs-tooltip]:hover:after, .rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper [data-rtwpvs-tooltip]:hover:before{
    display:none;
}
.rtwpvs .rtwpvs-terms-wrapper.radio-variable-wrapper .rtwpvs-radio-term label{
    margin:0 11px;
}
.rtwpvs .rtwpvs-terms-wrapper.color-variable-wrapper{
    border:2px solid #e8ecef;
    border-radius:100px;
    padding:8px;
}
.rtwpvs.rtwpvs-squared .rtwpvs-terms-wrapper.color-variable-wrapper .rtwpvs-term {
    margin-left: 12px;
}
.rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term) {
    box-shadow: none !important;
    padding: 0 !important;
    border-radius:100px !important;
    width: 29px;
    height: 18px;
}
.rtwpvs-term-span.rtwpvs-term-span-color{
    border-radius:100px;
}
.rtwpvs.rtwpvs-tooltip .rtwpvs-terms-wrapper.color-variable-wrapper [data-rtwpvs-tooltip].selected:after{
    top: 4px;
    left: 14px !important;
    border: solid white;
    width: 12px !important;
    height: 6px;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg) !important;
    display: inline-block;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-top: none !important;
    border-right: none !important;
    border-left: 2px solid white!important;
}
.rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-color-term .rtwpvs-term-span-color:after{
    display:none !important;
}
.summary .rtwpvs-terms-wrapper.radio-variable-wrapper{
    display: flex !important;
    flex-wrap:wrap;
}
.rtwpvs-term input{
    display:none;
}
.summary .variations_form .variations {
    padding: 0;
    border-radius: none;
    background-color: transparent;
}
.woocommerce-form-coupon-toggle .showcoupon:hover{
    color:var(--color3);
}
.woocommerce-form-coupon-toggle .showcoupon{
    color:black;
    margin-right:10px;
}
/* --------------------
    404
-------------------- */
.text404 p{
    width:100%;
    text-align:left;
}
.text404{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: flex-end;
    align-content: center;
}
.b-404{
    font-family: var(--bold_font);
    font-size: 7em;
    color: var(--color1);
    line-height: 1;
}
.editor-content .woocommerce-LostPassword.lost_password a:hover{
	color:var(--color3);
}
.editor-content .woocommerce-LostPassword.lost_password a{
	color:white;
}
.woocommerce-LostPassword.lost_password{
	background: var(--color1);
    border-radius: 10px;
    margin-top: 15px;
    padding: 5px 20px;
    color: white;
	text-align:center;
}
#customer_login i.icon-user{
    display:none;
}

.go-top{
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 30;
    background-image: linear-gradient(to top, var(--color2) , #ffa46f);
    color: white !important;
    font-size: 17px;
    transform:rotate(-90deg);
    display:none;
}
.go-top i{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50% , -50%);
    
}
.go-top i:before{
    display:block;
    animation:ease-in topanime .5s infinite alternate;
}
@keyframes topanime{
    from{
        transform:translate(-5px);
    }
    to{
        transform:translate(5px);
    }
}
/* --------------------
    Mega Menu
-------------------- */

.header-nav .container {
    position: relative;
}

.header-nav .col-lg-8{
    position: static;
}

#head_menu li{
    position: relative;
}

#head_menu .sub-menu a {
    display: block;
}

#head_menu .header-menu > .mega-menu.menu-item-has-children{
    position: static;
    overflow: hidden;
}

#head_menu .header-menu > .menu-item-has-children:after,
#head_menu .header-menu > .menu-item-has-children:before{
    display: none;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu li{
    margin-bottom: 5px;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu .menu-item-has-children > a:after,
#head_menu .header-menu > .menu-item-has-children > a:after{
    content: '';
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-right: 10px;
    transition: 0.3s;
    position: relative;
    top: -1px;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu .menu-item-has-children > a:after{
    border-color: #222;
    position: absolute;
    left: 10px;
    top: 10px;
    transform: rotate(135deg);
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu li:hover > a{
    color: var(--color1);
}

#head_menu .header-menu > .menu-item-has-children:hover > a:after{
    border-color: var(--color3);
    border-width: 0 1px 1px 0;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu li:hover > a:after{
    border-color: var(--color1);
    border-width: 0 1px 1px 0;
}

#head_menu .header-menu > li.mega-menu > .sub-menu{
    overflow: hidden;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu,
#head_menu .header-menu > li > .sub-menu{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px #22222217;
    padding: 20px;
    position: absolute;
    right: 15px;
    top: 88%;
    left: 15px;
    z-index: 9;
    pointer-events: none;
    transform: translateY(60px) scale(0.9);
    transform-origin: right top;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu{
    right: 0;
    left: auto;
    width: 260px;
    display: block !important;
}

#head_menu .header-menu > li:not(.mega-menu) .sub-menu .sub-menu{
    right: 100%;
    top: 0;
}

#head_menu .header-menu > li:not(.mega-menu) li:hover > .sub-menu,
#head_menu .header-menu > li:hover > .sub-menu{
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    display: flex;
    flex-wrap: wrap;
}

#head_menu .header-menu > li.mega-menu > .sub-menu > li{
    flex: 0 0 23%;
    max-width: 23%;
    flex-wrap: wrap;
    margin-left: 2%;
}

#head_menu .header-menu > li.mega-menu > .sub-menu > li > a{
    border-bottom: 1px solid #eee;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: block;
}


#head_menu .header-menu > li.mega-menu > .sub-menu > li > a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--color1);
    transform: rotate(45deg);
    margin-left: 10px;
    border-radius: 100px;
}

#head_menu .header-menu > li.mega-menu > .sub-menu > li > ul li{
    margin-bottom: 5px;
}

.mega_image {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 200px;
    height: auto;
    z-index: -1;
}

.mega-menu ul a:hover{
    color: var(--color1);
}


.flex-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.zoomLens {
    width: 150px !important;
    height: 150px !important;
}

#size-information{
    position: relative;
}
#customNav.owl-nav button{
	background-position: -115px 0px !important;
	color: var(--color3)!important;
}

.woocommerce-variation-availability {
    display: none !important;
}

.flex-viewport {
    border: 1px solid #eee;
}


.show-desc {
    color: #fff;
    cursor: pointer;
    background-color: var(--color2);
    font-size: 12px;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    width: 140px;
    text-align: center;
    position: relative;
    margin-top: -10px;
    margin-bottom: 10px;
  transition: .5s;
}

.woocommerce-product-details__short-description:before {content: "";position: absolute;width: 100%;height: 90px;background: linear-gradient(transparent,#fff);transition: .5s; bottom: 0px;top: unset;}

.show-desc:before,.show-desc:after {content: "\e930";font-family: 'icomoon';transform: rotate(90deg);position: absolute;line-height: 1;right: 10px;font-size: 10px;top: 6px;}

.show-desc:after {
    left: 10px;
    right: unset;
}

.show-desc:hover {
    background-color: var(--color1);
    
}



/* --------------------
    Responsive Mode
-------------------- */
@media screen and (min-width: 767px) {
    .section-slider.cloud-section:after, .section-slider.cloud-section:before{
        height: 190px;
    }
    .websima-map{
        height:100% !important;
        min-height: 270px;
        max-height: 100%;
    }

}
@media screen and (min-width: 991px) {
    #header:before{
        background-position: top;
    }
    .owl-responsive .owl-nav, .product-carousel .owl-nav{
        width:unset;
        right:-45px;
        left:-45px;
    }
    .editor-content .byadmin:before,
    .editor-content blockquote:before{
        background-size: 100%;
    }
    .editor-content blockquote:after {
        left: 49.7%;
        transform: translateY(-70%);
    }

    .header-logo .logo-wrapper{
        width: 100%;
    }
    .owl-carousel.owl-gallery .owl-nav{
        right: -55px;
        left: -55px;
    }

    .owl-brands{
        padding:0 100px;
    }
    .head_item_cart{
        min-width: 150px;
    }
    .section-slider.cloud-section:after, .section-slider.cloud-section:before {
        height: 250px;
    }

}
@media screen and (min-width: 575px) {


}

@media screen and (max-width: 991px) {
	.item_has_sub:hover .sub_part{
		display:none;
	}

    .close_btn{
        color:var(--danger);
    }
    .sidbar_head {
        border-radius: 0 0 20px 20px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
        background: var(--color1);
        padding: 15px 20px;
        position: relative;
        color: white;
    }
    .wrap-sidebar {
        position: fixed;
        right: -350px;
        top: 0;
        background: #fff;
        z-index: 99;
        padding: 0 15px;
        width: 320px;
        transition: all 0.6s;
        box-shadow: 0 0 12px #00000057;
        -webkit-box-shadow: 0 0 12px #00000057;
        -moz-box-shadow: 0 0 12px #00000057;
        height: 100%;
        overflow: scroll;
        border-radius: 0;
    }
    .wrap-sidebar.active {
        right: 0;
        transition: all 0.6s;
    }
    .mh-orderby-wrap, .btn-switch {
        flex: 0 0 48%;
    }
    .head_item_cart{
        background-color: transparent !important;
        border:none;
    }
    .head_item_cart:after{
        display:none;
    }
    .head_item_cart{
        box-shadow:none;
        border-radius: 0;
    }
    .button.head_item_cart:hover{
        box-shadow:unset;
    }
    .button.head_item_cart{
        min-width:unset;
    }
    .head_item_cart .woocommerce-Price-amount,
    .head_item_cart .icon-chevron-thin-right{
        display:none;
    }
    .owl-responsive,.product-carousel ,.owl-gallery{
        padding: 0 40px;
    }
    .header-logo {
        transform: translateY(20px);
    }
    .header-logo .attachment-full{
        max-width:85%;
    }
    .head_item_cart .icon-cart-1,
    .header-mm i, .header-home{
        display:inline-block;
        width:35px;
        height:35px;
        border-radius:5px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:16px;
        color: white;
        background: var(--color3);
    }
  
  .header-home:before {
    content: "\e911";
    font-family: 'icomoon';
    font-size: 18px;
    line-height: 1;
}
    
    .head_item_cart .icon-cart-1:before{
        color:white;
    }
    .header-search,.head_account{
        padding-bottom:10px;
    }
    #header:before {
        height: 35px;
        bottom: 19px;
    }
    .contact-container{
        padding: 20px 0;
    }
    #customer_login .u-column2.col-2{
        margin-top:50px;
    }

}

@media screen and (max-width: 767px) {
    .product-item-parent:hover .product-item, .product-item-parent:hover .countdown-wrapper {
        transform: translateY(0);
    }
    .b-404 {
        font-size: 5em;
    }
    .editor-content #reviews .byadmin:before {
        top: -30px;
    }
    .section-slider.cloud-section:after, .section-slider.cloud-section:before{
        height:100px;
    }
    .section-slider.cloud-section:after,
    .section-slider.cloud-section:before{
        bottom: 0px;
    }
    .editor-content blockquote {
        padding: 25px 20px 20px 20px;
    }
    .footer-features:before,
    .footer-features:after{
        height: 150px;
        top: -120px;
    }
    .footer-features:after{
        top: -150px;
    }
    .editor-content .byadmin:before, .editor-content blockquote:before {
        background-image: url(assets/img/cloud-qout.svg) , linear-gradient(to top, #e5eef7 50%, transparent 50%);
        width: 100%;
        z-index: -1;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 50px;
        top: -35px;
    }
	#customer_login .u-column{
		width:80%;
	}
  
  .woocommerce-product-details__short-description {
    position: relative;
    height: 85px;
    overflow: hidden;
    border-bottom: 1px solid #0002;
    margin-bottom: 0;
    padding-bottom: 20px;
    transition:.5s;
}
  
  .woocommerce-product-details__short-description.open {
    height: 100%;
	}
  .woocommerce-product-details__short-description.open:before{
  	opacity:0;
  }

}


@media screen and (max-width: 450px) {
    .product-carousel{
        padding: 0;
    }
}
@media screen and (max-width: 575px) {
  .product-item-top {
    width: 70px;
    height: 100%;
}
  
  .checkout-points-form .wrapper{
    flex-direction: column;
    text-align: center;
  }
  
  .checkout-points-form .alert{
      right: 0;
    left: 0;
    text-align: center;
    bottom: -7px !important;
  }
  
  .product-main-data .product-item-top{
      height: 70px;
    width: unset;
  }
  
  .on-new{
    transform: rotate(45deg);
    right: -27px;
    left: unset;
    top: -5px;
    width: 85px;
    height: 40px;
}
    .woocommerce-message .button{
        margin: 10px 0 0 0;
    }
    .woocommerce-message{
        justify-content: center;
    }

    .bg-white {
        padding: 15px 20px !important;
    }
    .head_account i {margin: 0 3px;}
    .icon-search-head {
        margin-right: 10px;
    }
	#customer_login .u-column{
		width:93%;
	}
	.section-slider:after{
		animation:23s move3 infinite;
	}
	.section-slider:before{
		animation:18s move2 infinite linear;;
	}
	.go-top {
		bottom: 20px;
		left: 20px;
		width: 40px;
		height: 40px;
	}
    .text404 p{
        text-align:center;
    }
    .text404{
        justify-content:center;
    }
    .product-image-wrapper img{
        object-fit:cover;
        height: 100%;
    }

    .product-item h2{
        margin-bottom: 10px;
        padding: 0 10px;
    }
    .product-image-wrapper{
        height:100%;
    }
    .product-item .on-sale{
        font-size: 13px;
    }
    .product-item .on-new:before {
        top: -4px;
        right: -19px;
        transform: scale(.4);
    }
    .product-item{
        display:flex;
    }
    .product-image{
        width:40%;
    }
    .product-image-wrapper img,
    .product-image-wrapper {
        border-radius: 0 15px 15px 0;
    }
    .pro-info{
        width:60%;
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    .mh-orderby-wrap:before {
        top: calc(50% - 2px);
    }
    #contact-tab {
        margin-bottom: 25px;
    }
    .head_account .sub_part{
        width: unset !important;
    }

    .item_has_sub:hover .sub_part {
        left: -51px;
        width: 310px;
    }
    .type-product .summary .price::before {
        right:15px;
    }
    .commentlist #reply-title {
        padding: 10px 15px;
    }
    .editor-content #reviews .byadmin:before {
        top: -15px;
    }
    .tags_post {
        padding: 13px 15px;
    }
    .type-product .summary.entry-summary .price{
        padding:15px;
    }
    ul.tabs.wc-tabs {
        padding: 10px 15px!important;
    }
    .tabs.wc-tabs li {
        min-width: 100%;
        margin: 10px 0;
    }
    .tabs.wc-tabs {
        border-radius: 20px;
    }

    .form-row.form-row-first, .form-row.form-row-last ,.woocommerce-billing-fields__field-wrapper .form-row,#billing_state_field,#billing_city_field,#shipping_state_field,#shipping_city_field {
        max-width: 100%;
        flex: 0 0 100%;
    }
    select.orderby{
        margin-bottom:0;
    }
    .mh-orderby-wrap, .btn-switch {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .item-features span{
        margin-right: 0;
        width:100%;
        text-align:center;
        display: block;
        margin-top:10px;
    }
    .editor-content img {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 !important;
    }
    .social_share {
        padding: 7px 10px;
    }
    .cart-arrow-w .sub_part{
        left: -41px;
        width: 290px;
    }
    .editor-content .comment-form-author, .editor-content .comment-form-email{
        width:100%;
        flex: 0 0 100%;
    }
    .commentlist ul.children {
        padding-right: 20px;
    }
    .commentlist ul.children:before {
        right: -13px;
    }
    .children .verified_comment{
        padding-left:0;
    }
    .verified_comment{
        padding-left: 1.5rem!important;
    }
    .commentlist ul.children .children {
        margin-right: -20px;
    }
    .verified_comment .children{
        margin-left: -1.5rem;
    }

}

.pswp__caption__center {
    text-align: center;
}

#ok-loupe {
    box-shadow: 0 0 5px #22222221 !important;
}

@media screen and (max-width: 420px) {
	.pro-info .price del{
        margin: 10px 0 15px;
  	}
  	.product-item .product-price .price {
    	flex-direction: column;
	}
  	.on-sale {
    	bottom: 5px;
    	right: 0;
    	left: 0;
    	margin: 0 auto;
	}
}

@media screen and (max-width: 370px) {
    .archive-product .product-colors span {
        height: 8px;
        width: 8px;
    }
}


.pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before{
	background-color: #000a !important;
}

.rtwpvs.rtwpvs-attribute-behavior-blur .rtwpvs-radio-term.disabled:hover input, .rtwpvs.rtwpvs-attribute-behavior-blur .rtwpvs-radio-term.disabled:hover label, .rtwpvs.rtwpvs-attribute-behavior-blur .rtwpvs-radio-term.disabled input, .rtwpvs.rtwpvs-attribute-behavior-blur .rtwpvs-radio-term.disabled label{
    text-decoration: none !important;
}
.rtwpvs.rtwpvs-attribute-behavior-blur .rtwpvs-radio-term.disabled label:after{
    content: '';
    width: 20px;
    height: 1px;
    background: gray;
    position: absolute;
    top: 44%;
    left: 28%;
    display: block;
    transform: rotate(45deg);
    pointer-events: none;
}
.flex-control-thumbs img {
    opacity: 0.5;
}

.flex-control-thumbs .flex-active {
    opacity: 1;
}
#websima-auth-modal{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    top:0;
    background:#000000ba;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    display:none;
}
#websima-auth-modal .close {
    position: absolute;
    top: 9px;
    font-size: 18px;
    background-color: var(--color1);
    border: none;
    border-radius: 3px;
    color: #FFF;
    left: 10px;
    margin: 0;
}

#websima-auth-modal input{
    text-indent:15px;
    border: none;
    height: 38px;
    width: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    margin-top: 5px;
    transition:0.4s;
    margin-bottom: 20px;
}
#websima-auth-modal input:hover ,#websima-auth-modal input:focus{
    border: 1px solid var(--color1);
}
#websima-auth-modal label{
    display:block;
}
#websima-auth-modal button{
    display:block;
    margin:auto;
    margin-bottom:20px;
    margin-top:20px;
}
#websima-auth-modal .modal-dialog{
    background-color:#f7f7f7;
    padding:15px;
    border-radius:5px;
    color:#000;
    width:100%;
    max-width:450px;
    position:relative;
    top:50%;
    transform:translateY(-50%);
    margin:auto;

}
#websima-auth-modal .modal-header{
    text-align:center;
    color:var(--color1);
    margin-bottom:30px;
    font-size:16px;
}
.related .product-carousel,
.categories-carousel {
    display: flex !important;
    justify-content: center;
}

.categories-carousel .owl-stage-outer{
    padding-top: 22px;
}
.footer-enamad img{
    margin: 0 5px;
}
.footer-enamad{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.item_has_sub {
    position: relative;
    cursor: pointer;
      margin-right: 5px;
}
.item_has_sub:hover .sub_part {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    border-radius: 6px;
    z-index: 1000;
}


.resend_code_wrapper {
    text-align: center;
    cursor:pointer;
    color:var(--color1);
}

.modal-dialog .alert{
    text-align: center;
}

#websima-auth-modal input {
    direction: ltr;
}

#websima-auth-modal .close{
    display: inline-flex;
    height: 30px;
    line-height: 29px;
}

#websima-auth-modal-label {
    text-align: right;
}

.modal-header {
    display: flex;
    align-items: center;
    background: var(--color1);
    color: #fff !important;
    padding: 10px 15px;
    margin: -15px;
        margin-bottom: -15px;
    border-radius: 5px 5px 0 0;
}

#websima-auth-modal form label.error {
    color: #dc3232 !important;
    font-size: 12px;
    position: absolute;
    bottom: -5px;
    right: 15px;
}


#account_detection_form > button {
    margin-right: 15px;
}

#websima-auth-modal .alert {
    background: #ddd;
    padding: 10px;
    margin: -15px;
    margin-top:15px;
    color:#fff;
}

.resend-code {
    height: 35px;
    background: #eee;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    padding: 0 15px;
    border-radius: 50px;
    transition:0.3s;
}

.resend-code:hover {
    background: var(--color1);
    color: #fff;
}

#websima-auth-modal .alert.bg-primary{
    background:#007bff !important;
}
#websima-auth-modal .alert.bg-success{
    background:#28a745 !important;
}

#websima-auth-modal .alert.bg-danger{
    background:#dc3545 !important;57
}

#websima-auth-modal button {
    margin-right: 0 !important;
}

#websima-auth-modal .buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

#account_profile_form_wrapper .form-row {
    display: flex;
    flex-wrap: wrap;
}

#account_profile_form_wrapper .form-row input{
    direction:rtl;
    
}

#customNav.owl-nav button i {
    font-weight: bold;
}

.woocommerce-form-coupon-toggle > div {
    justify-content: center;
}

#wrapper .price_slider span {
    background: var(--color1) !important;
    background-image: none !important;
    border: none;
}

#wrapper .price_slider span:hover{
    color:#fff !important;
}
.br-video-btn:hover:after{
    border-left: 15px solid var(--color2);
}
.br-video-btn:after{
    content: '';
    /* border: 20px solid red; */
    /* width: 40px; */
    display: block;
    border-left: none;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color3);
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50% , -50%) scaleX(1);
    transition: .4s;
}
.br-video-btn:hover{
    border: 2px solid var(--color2);
}
.br-video-btn{
    width: 45px;
    height: 45px;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--color3);
    border-radius: 100%;
    background: #00000078;
    transition: .4s;
    cursor: pointer;
    transform: translate(-50% , -50%) scale(1.15);
}
.br-video-none:after,
.br-video-none:before{
    display: none;
}
.br-video-none{
    display: block;
    width: 100%;
    height: calc(100% - 80px);
    top: 0;
    left: 0;
    transform: unset;
    z-index: 10;
    border: none;
    border-radius: 0;
    opacity: 0 !important;
}
.br-video-btn:hover .icon-pause:after,.br-video-btn:hover .icon-pause:before {
    background: var(--color2);
}
.icon-pause:after, .icon-pause:before {
    position: absolute;
    content: '';
    width: 3px;
    height: 17px;
    background: var(--color3);
    right: 36%;
    transition: .4s;
    top: 12px;
}
.icon-pause:before {
    left: 36%;
    right: unset;
}

.br-video video{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
}
.br-video{
    position: relative;
}
.br-video-btn-stop:after{
    display: none;
}
.br-video:hover .br-video-btn-stop{
    opacity: 1;
}
.br-video-btn-stop{
    opacity: 0;
}
.size-box .text{
    margin-bottom: 20px;.sub_part a
}
.size-img img{
    border-radius: 5px;
    width: 100%;
}
.bg-white{
    background: white;
    color: black;
    border-radius: 5px;
    padding: 40px 50px;
}
.search-pup-up .info-close-main,
.info-close-main{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    background: none;
    right: 0;
    z-index: 0;
    cursor: default;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
        justify-content: center;
    font-size: 18px;
    background: var(--success);
    color: #fff;
}

.delivery-wrap {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 30px;
        padding-bottom: 30px;
    margin-top: 15px;
    padding-bottom: 20px;
    text-align: center;
}
.product-type-variable .summary > .price{
    display: none !important;
}
.single-product .product:not(.sale) .summary .price, .summary .price ins {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#show_error{
    width: 100%;
}
.woocommerce-billing-fields__field-wrapper .validate-postcode .optional{
    display: none;
}
.woocommerce-billing-fields__field-wrapper .validate-phone{
    width: 100%;
}

/*color-slider*/

.item-color {
    position: relative;
      padding: 0 5px;
}

.item-color a span.white{
    border: 1px solid #00000091;
}
.item-color a span{
    display: block;
    height: 100%;
    width: 40px;
}
.item-color a:hover:before{
    opacity: 1;
}
.item-color a{
    width: 40px;
    height: 20px;
    display: flex;
    margin: 5px auto;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 0 2px black;
}
.item-color a:before{
    content: '';
    width: 50px;
    height: 28px;
    border: 1px solid var(--color1);
    position: absolute;
    top: -4px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 100px;
    transition: .4s;
    opacity: 0;
  
}
.color-carousel{
    margin: 10px 0;
    padding: 0 35px;
}
.pro-color-container{
    padding: 0 30px;
}
.item-color:hover .colorname{
    color: black;
    opacity: 1;
}
.colorname{
    text-align: center;
    display: block;
    width: 100%;
    margin-top: -5px;
    transition: .4s;
    font-size: 13px;
    opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 992px){
.pro-color-container {
    padding: 0 20px;
}
.pro-color-container>span {
    margin-right: -20px;
}
}
.widget_shopping_cart_content .wc-forward{
    width: 100%;
}
.widget_shopping_cart_content .checkout{
    display: none;
}
.billing-fw{
	width: 100%;
	display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.billing-sub-box{
	position:relative;
}
#billing-title{
	padding-right:20px;
}
#billing-check-w{
	position:absolute;
	    top: calc(50% + -2px);
transform: translateY(-53%);
}

#shipping-fields-w >div ,.billing-fw{
	width: 100%;
	display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.woocommerce-customer-details .woocommerce-columns{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#shipping-fields-w  #shipping_postcode_field ,#shipping-fields-w  #shipping_address_1_field{
	width:100%;
}
#billing-fields-w{
display:none;
}
