a.meanmenu-reveal {
    display: none
}

.mean-container .mean-bar {
    background: transparent none repeat scroll 0 0;
    float: left;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 9
}

.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 5px;
    top: 0;
    right: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: 700;
    float: right
}

.mean-container a.meanmenu-reveal span {
    display: block;
    height: 3px;
    margin-top: 3px
}

.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: #0c1923
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none
}

.mean-container .mean-nav ul li {
    background: #f8f8f8 none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 100%;
    border-top: 1px solid#ddd
}

.mean-container .mean-nav ul li a {
    background: #f8f8f8 none repeat scroll 0 0;
    color: #666;
    float: left;
    font-size: 12px;
    margin: 0;
    padding: 1em 5%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    width: 90%;
    font-weight: 700
}

.mobile-menu-area {
    background: #262626
}

.mean-container .mean-nav ul li li a {
    border-top: 1px solid hsla(0,0%,100%,.25);
    opacity: .75;
    padding: 1em 10%;
    text-shadow: none!important;
    visibility: visible;
    width: 80%;
    font-weight: 400;
    text-transform: capitalize;
    color: #444
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: 0;
    margin-bottom: 0
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1em 15%
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1em 20%
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1em 25%
}

.mean-container .mean-nav ul li a:hover {
    background: #f8f8f8 none repeat scroll 0 0;
    color: #f47e1e
}

.mean-container .mean-nav ul li a.mean-expand {
    width: 26px;
    height: 15px;
    margin-top: 1px;
    padding: 12px!important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: hsla(0,0%,100%,.1);
    border: 0!important;
    background: #f8f8f8
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: #f8f8f8
}

.mean-container .mean-push {
    float: left;
    clear: both
}

.mean-container .mean-push,.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0
}

.mean-container .mean-bar,.mean-container .mean-bar * {
    box-sizing: initial
}

.mean-remove {
    display: none!important
}

.mean-container .mean-bar:after {
    color: #fff;
    content: "MENU";
    font-size: 21px;
    left: 5%;
    position: absolute;
    top: 12px
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

code {
    font-family: source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace
}

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    0%,20%,53%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0)
    }
}

.shake {
    animation-name: shake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,11.1%,to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px,0,0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    border-radius: 4px
}

.fancybox-opened {
    z-index: 8030
}

.fancybox-opened .fancybox-skin {
    box-shadow: 0 10px 25px rgba(0,0,0,.5)
}

.fancybox-inner,.fancybox-outer {
    position: relative
}

.fancybox-inner {
    overflow: hidden
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch
}

.fancybox-error {
    color: #444;
    font: 14px/20px Helvetica Neue,Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap
}

.fancybox-iframe,.fancybox-image {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAACYCAMAAACoAftQAAAAvVBMVEUAAAAAAAAAAAAODg4AAAAAAAAAAADNzc0BAQHZ2dkDAwMHBwcAAADf398CAgI/Pz8BAQEAAACCgoIcHBzl5eUAAAC/v7/x8fEGBgZnZ2cAAADs7OwGBgb4+Pg/Pz/Jycmenp5nZ2f39/eDg4MAAADQ0ND4+Piurq7a2tr8/Pzs7OwAAAD5+fn9/f3e3t4AAAD///9OTk7BwcE1NTWsrKyNjY2cnJx6enpdXV1oaGgsLCy6uroiIiLOzs5BQUFt3PCNAAAAL3RSTlMAAQMIDRIZHSMnLTpESFNVXWlpbG15en+HiZCWoaGssrO2vsDFydPU3uL4+fr9/Ywv6xsAAAQVSURBVHhe7JZbc6JMGIQXAUOQEMi3uMYkrmopZgqs5ujZ//+zvpdNzMsMlli1N3uRvtCbpzo9I+nmhyqN9OO6GNQ6Ha1SG0mcrhskXe90rvKE6kbX7r9MF4vp2887nfBrqPW0xJemD4w32e7jHIj2602SbNZ7Qfgd0zJLtgKi2B0+tSsE3h8u0RX7HGGfHWrK9oiIbrK69SiQHxTliO5VWtP0rrNEemhoj6muaYqx2XuGyJrwbgUKohhb3hIFM6wCC7Zm4+M5Zs5fpKNiTYndEOUHDFRYCeADLvGiy7DtL7E5/12gJPacalPlqEc2eoFAdmCa2UOGyOhoUuQgwo7PxCwJMGXYGcQMlyCVX3DchCkGs3V6h0iFgyUSZsuS6QQLGaYDhueUHxhf3RpzOqB8dRMcz84lf5FS9A1Ngi2PQm8PF7RBZOnEyqFnSC/BKX6bHQmucpB13mRzCJtTsPUowlpl14if2JifUXcwgeqdA2OLn1C+PdsbzCKkW0a3KeKxbbAxF4FJ9EgAaXGqyFORAuLZNrkMZNoNKnNS9PE5dpltFofjB4PJXIAk5rP/HMu4Ukmm7XjEkwLfc2yT66tJk7lp2T2H1LMtk2wVVsWpcE0SlW4DbeLE/xG3eRvfQv7Fptw4KvpDNRKLt1/3rZty/xbjrPef1+5D018ITYttkiTrfAUsrmzK3RTIT/woHxH3DaZl9h2rRH2aX0ydaYb1BVK1zNdA32RvNn7DkVmmoyeVJvYBMcdl5Vg2/lW0zpSbUNIKT12KLV8wVjsmNvGW63feU3qj86veGQmAA1e5qzbStNZdmVTlRzzbSjG+4+t4u1iqjxxjR6pczaiNBCCVXoGx25X7mUNGgJBHM/QsXWp+dk4U5xJjX4EXSM7ACcCxnnnm2zI8rxVoFgMr/lUwUpyNPvYVx/eRfaUSQzkzLWxEOVhiwynCAd2GvCm/2bquBPEo+LxnDv0YXdyfFOHQP+8EV/kY0enSorxyitoLxxwiabDRqDImWF2JJVBIeVNEk2HgsDGn7vkhcPy67lMOiBGF4AGS3tX8yYqAfb5eF/kRiMPX4cDjEDLd8wezJT4lwtHrMHBtbg6V9oLhYDYLw3A2eSVbn0elSdMCecFg+Ee0Kq7dlftLXSCrRxNE8lzH7hp0Nu3qpHQty7Ztq2sabHvtpb/SLauisVTye1O+N2Ubbxhu2xSAq6x1UwoAWfum8P3Gu5ZNYaUA2jaFJYCofVPYOWnZFD4TcLpxU1ZAnN24KRnfxQ2bshEE/Vub8r0p35vi/t9eHRoBDMNQDJUvMLkOkDMM+8D7b9cR+kOKLPy4juojnQeAkWWVAyLLLINVdovj44N8LOqi/3Djxo0bN5ZvdbWJuwHhrw2ILYdqBwDT2fEEXtrZFmVcCWLiAAAAAElFTkSuQmCC)
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: .8;
    cursor: pointer;
    z-index: 8060
}

#fancybox-loading div {
    width: 44px;
    height: 44px
}

.fancybox-close {
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px
}

.fancybox-close,.fancybox-nav {
    position: absolute;
    cursor: pointer;
    z-index: 8040
}

.fancybox-nav {
    top: 0;
    width: 40%;
    height: 100%;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.fancybox-prev {
    left: 0
}

.fancybox-next {
    right: 0
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px
}

.fancybox-nav:hover span {
    visibility: visible
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible!important
}

.fancybox-lock {
    width: auto
}

.fancybox-lock,.fancybox-lock body {
    overflow: hidden!important
}

.fancybox-lock-test {
    overflow-y: hidden!important
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpCMEM4NDgzQjlDRTNFMTExODE4NUVDOTdFQ0I0RDgxRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGREU5OEVCQzAzMjYxMUUyOTg5OURDMDlDRTJDMTc0RSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGREU5OEVCQjAzMjYxMUUyOTg5OURDMDlDRTJDMTc0RSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkIxQzg0ODNCOUNFM0UxMTE4MTg1RUM5N0VDQjREODFFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkIwQzg0ODNCOUNFM0UxMTE4MTg1RUM5N0VDQjREODFFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+s3YRAQAAABtJREFUeNpiFODh2cBABGBiIBKMKqSOQoAAAwBokQDs5F/8FAAAAABJRU5ErkJggg==)
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll
}

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px Helvetica Neue,Helvetica,Arial,sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-opened .fancybox-title {
    visibility: visible
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    background: rgba(0,0,0,.8);
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #fff;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff
}

.fancybox-title-inside-wrap {
    padding-top: 10px
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0,0,0,.8)
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
    #fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span {
        background-size:44px 152px
    }

    #fancybox-loading div {
        background-size: 24px 24px
    }
}

.bx-wrapper {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    *zoom:1}

.bx-wrapper img {
    max-width: 100%;
    display: block
}

.bx-wrapper .bx-viewport {
    border: none;
    left: -5px;
    background: #fff;
    transform: translatez(0)
}

.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager {
    position: absolute;
    bottom: -30px;
    width: 100%
}

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000
}

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: 700;
    color: #666;
    padding-top: 20px
}

.bx-wrapper .bx-controls-auto .bx-controls-auto-item,.bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
    *zoom:1;*display: inline
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 5px
}

.bx-wrapper .bx-pager.bx-default-pager a.active,.bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #000
}

.bx-wrapper .bx-prev {
    left: 10px
}

.bx-wrapper .bx-next {
    right: 10px
}

.bx-wrapper .bx-prev:hover {
    background-position: 0 0
}

.bx-wrapper .bx-next:hover {
    background-position: -43px 0
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none
}

.bx-wrapper .bx-controls-auto {
    text-align: center
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-start.active,.bx-wrapper .bx-controls-auto .bx-start:hover {
    background-position: -86px 0
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-stop.active,.bx-wrapper .bx-controls-auto .bx-stop:hover {
    background-position: -86px -33px
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px
}

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666;
    background: rgba(80,80,80,.75);
    width: 100%
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px
}

body,html {
    height: 100%
}

.floatleft {
    float: left
}

.floatright {
    float: right
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px
}

.aligncenter {
    display: block;
    margin: 0 auto 15px
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto
}

.fix {
    overflow: hidden
}

p {
    margin: 0 0 9px
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    font-weight: 500;
    line-height: 1.1
}

.h4,h4 {
    font-size: 17px
}

h4,h5,h6 {
    margin-bottom: 9px;
    margin-top: 9px
}

a {
    transition: all .3s ease
}

a:hover {
    text-decoration: none;
    color: #979797
}

a:active,a:hover {
    outline: 0 none
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

.clear {
    clear: both
}

body {
    font-family: mark-pro;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500
}

.section-title {
    margin-bottom: 30px;
    position: relative;
    text-align: center
}

.section-title h4 {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    line-height: 23px;
    margin-top: 0;
    padding: 0 0 15px;
    position: relative
}

.section-title h4 span {
    color: #262b32;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase
}

.section-title h4:before {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    border-color: #ebebeb #fff;
    border-style: double;
    border-width: 2px;
    bottom: -5px;
    content: "";
    height: 7px
}

.section-title h4:after,.section-title h4:before {
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0
}

.section-title h4:after {
    background: #fff none repeat scroll 0 0;
    bottom: -11px;
    color: #979797;
    content: "\E650";
    font-family: Pe-icon-7-stroke;
    font-size: 18px;
    text-align: center;
    width: 30px
}

.logo {
    padding: 32px 15px;
    text-align: center
}

.logo>a {
    display: inline-block
}

.mainmenu {
    padding: 27px 0 0
}

.mainmenu ul#nav li {
    display: inline-block;
    position: relative
}

.mainmenu ul#nav>li>a {
    color: #636f77;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 96px;
    margin: 0;
    padding: 0 20px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-in 0s
}

.mainmenu ul#nav li:hover a {
    color: #979797
}

.mainmenu ul.sub-menu {
    background: #fff none repeat scroll 0 0;
    box-shadow: 2px 0 7px 0 rgba(0,0,0,.13);
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 30px 15px 44px 31px;
    position: absolute;
    text-align: left;
    top: 86px;
    visibility: hidden;
    width: 215px;
    z-index: -9;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all .5s ease 0s
}

.mainmenu ul#nav li ul.sub-menu>li {
    display: block;
    margin: 0;
    position: relative
}

.mainmenu ul#nav li .megamenu span>a,.mainmenu ul#nav li ul.sub-menu>li a {
    border-bottom: 1px dotted #efefef;
    color: #444;
    display: block;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-transform: capitalize
}

.mainmenu>nav>ul#nav>li:hover ul.sub-menu,.mainmenu ul#nav li:hover .megamenu {
    margin-top: 0;
    opacity: 1;
    top: 98px;
    transform: scaleY(1);
    visibility: visible;
    z-index: 999
}

.mainmenu ul#nav li ul.sub-menu>li {
    padding: 0
}

.mainmenu ul#nav li.drop-down {
    position: relative
}

.mainmenu ul#nav li .megamenu {
    background: #fff none repeat scroll 0 0;
    left: -255px;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: -99;
    top: 86px;
    width: 923px;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all .5s ease 0s;
    box-shadow: 2px 0 7px 0 rgba(0,0,0,.13);
    padding: 15px
}

.mega-title {
    color: #3c3c3c!important;
    font-weight: 600!important;
    font-size: 12px!important;
    line-height: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    text-decoration: none
}

.mainmenu ul#nav li .megamenu span {
    float: left;
    margin-right: 15px;
    padding: 15px 0;
    width: 185px
}

.mainmenu ul#nav li .megamenu span:nth-child(3) {
    margin-right: 0;
    padding-right: 0
}

.mainmenu ul#nav li .megamenu span:nth-child(4) {
    margin-bottom: 15px;
    margin-left: 15px;
    padding: 0;
    width: 278px
}

.mainmenu ul#nav li .megamenu span>a:before,.mainmenu ul#nav li .sub-menu li>a:before {
    content: "\F101";
    font-family: fontawesome;
    margin-right: 10px
}

.mainmenu ul#nav li .megamenu span>a.mega-title:before,.mainmenu ul#nav li .megamenu span a.mega-image:before,.mainmenu ul#nav li .sub-menu li a.mega-title:before {
    display: none
}

.footer-widget-area li a:hover,.mainmenu ul#nav li .megamenu span>a:hover,.mainmenu ul#nav li ul.sub-menu>li a:hover {
    color: #979797
}

.mobile-menu-area {
    display: none;
    background: #979797 none repeat scroll 0 0
}

.mean-container .mean-bar:after {
    display: none
}

.mean-container .mean-nav ul li a:hover {
    color: #979797;
    background: none
}

.mean-container a.meanmenu-reveal span {
    background: #fff
}

.mean-container .mean-nav ul li a {
    background: #fff;
    color: #303030;
    display: block
}

.mean-container .mean-nav ul li a.mean-expand {
    background: none;
    top: -4px
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: none
}

.mean-container .mean-nav ul li {
    background: #fff
}

.mean-container .mean-nav ul li li a {
    color: #303030;
    opacity: .9;
    border-top: 0
}

.mean-container a.meanmenu-reveal {
    color: #fff
}

.meanmenu-reveal.meanclose:hover {
    color: #303030!important
}

.mean-container a.meanmenu-reveal:hover span {
    background: #303030
}

.mobile-menu-area .mean-nav {
    background: #979797 none repeat scroll 0 0
}

.mean-last {
    margin-bottom: 20px
}

.mobile-menu {
    position: relative
}

.mean-container .mean-bar:before {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    left: 10px;
    position: absolute;
    top: 15px
}

.header-right-menu {
    float: right;
    padding: 27px 0 0
}

.header-right-menu i {
    color: #252525;
    font-size: 20px
}

.header-right-menu ul {
    display: inline-block
}

.header-right-menu>ul>li {
    line-height: 96px;
    padding: 0 15px;
    position: relative
}

.header-right-menu>ul>li:after {
    content: "";
    position: absolute;
    right: 0
}

.header-right-menu>ul:last-child li:after {
    display: none
}

.header-r-cart li .cart {
    position: relative
}

.header-r-cart img {
    min-width: 1.25rem;
    margin-top: -10px
}

.header-r-cart li .cart span {
    z-index: 2;
    background: red;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: -10px;
    text-align: center;
    top: 15px;
    width: 20px
}

.search {
    position: absolute;
    left: 0;
    top: 124px;
    height: 0%;
    width: 100%;
    z-index: 9999;
    overflow: hidden;
    transition-duration: .4s;
    -moz-transition-duration: .4s;
    -o-transition-duration: .4s;
    -webkit-transition-duration: .4s;
    transition-property: height;
    -moz-transition-property: height;
    -o-transition-property: height;
    -webkit-transition-property: height
}

.search.open {
    height: 100%
}

.search-form {
    background-color: #fff;
    box-shadow: 0 3px 3px #999;
    float: right;
    margin-right: 38px;
    padding: 15px;
    width: 290px
}

#search-form {
    overflow: hidden;
    position: relative
}

#search-form input {
    background: transparent none repeat scroll 0 0;
    color: #9c9c9c;
    font-size: 13px;
    font-weight: 300;
    height: 24px;
    padding: 2px 60px 2px 13px;
    width: 100%
}

.search-form input[type=search] {
    border: none;
    float: left;
    width: calc(100% - 40px);
    background: transparent;
    font-size: 24px
}

.search-form button[type=submit] {
    background: transparent none repeat scroll 0 0;
    border: none;
    color: #9c9c9c;
    display: block;
    font-size: 20px;
    height: 24px;
    line-height: 24x;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all .3s ease 0s;
    width: 50px
}

.search-form button[type=submit]:hover {
    color: #f45c5d!important
}

.search-menu i#toggle-search {
    cursor: pointer
}

.settings-menu {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 3px 3px #999;
    padding: 15px;
    width: 290px;
    right: 0;
    opacity: 0;
    position: absolute;
    top: 86px;
    visibility: hidden;
    width: 292px;
    z-index: -9;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all .5s ease 0s;
    margin: 0
}

ul.header-settings li:hover .settings-menu {
    margin-top: 0;
    opacity: 1;
    top: 97px;
    transform: scaleY(1);
    visibility: visible;
    z-index: 999
}

.settings-menu .menu-title {
    line-height: normal
}

.settings-menu .menu-title h3 {
    border-bottom: 1px solid #e5e5e5;
    color: #7e7e7e;
    font-size: 16px;
    margin: 0 0 10px;
    padding: 5px 0;
    text-transform: uppercase
}

.settings-menu .menu-title a {
    color: #777;
    display: block;
    font-size: 12px;
    line-height: 21px;
    text-decoration: none;
    text-transform: uppercase
}

.settings-menu .menu-title a:hover {
    color: #979797
}

ul.header-r-cart .mini-cart-content {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 3px 3px #999;
    color: #fff;
    right: 0;
    opacity: 0;
    position: absolute;
    top: 86px;
    visibility: hidden;
    width: 270px;
    z-index: -9;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all .5s ease 0s;
    margin: 0
}

ul.header-r-cart li:hover .mini-cart-content {
    margin-top: 0;
    opacity: 1;
    top: 97px;
    transform: scaleY(1);
    visibility: visible;
    z-index: 999
}

.mini-cart-content .cart-products {
    font-weight: 400;
    overflow: hidden;
    padding: 20px 10px 16px 20px;
    position: relative
}

.mini-cart-content .cart-products:nth-child(2) {
    padding: 0 10px 16px 20px
}

.mini-cart-content .cart-product-info a {
    color: #9a9a9a;
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    line-height: 18px
}

.mini-cart-content .cart-product-info {
    display: inline-block;
    margin-top: 5px;
    padding-bottom: 0;
    width: 59%;
    position: relative
}

.mini-cart-content .cart-image {
    float: left;
    margin-right: 5%;
    width: 36%
}

.cart-product-info {
    color: #9a9a9a;
    font-weight: 300;
    line-height: 18px
}

.mini-cart-content .cart-product-info .brand-name {
    font-size: 11px;
    margin-top: 5px;
    padding-bottom: 10px
}

.mini-cart-content .cart-product-info .times {
    color: #9c9b9b;
    display: inline-block;
    font-size: 10px;
    padding-right: 5px
}

.mini-cart-content .remove-product:hover i {
    color: #979797
}

.mini-cart-content .remove-product i {
    color: #4a4a4a;
    cursor: pointer
}

.mini-cart-content a.remove-product {
    margin: 0 7px;
    position: absolute;
    right: 0;
    top: -1px
}

.mini-cart-content .cart-product-info a:hover,.mini-cart-content .remove-product:hover i {
    color: #979797
}

.mini-cart-content .cart-price {
    border-top: 1px solid #515151;
    color: #4a4a4a;
    font-weight: 700;
    line-height: 18px;
    margin: 10px 20px 22px;
    overflow: hidden;
    padding: 7px 0
}

.mini-cart-content .total-price {
    float: right
}

.mini-cart-content .cart-buttons {
    background: #f6f6f6 none repeat scroll 0 0;
    margin: 0;
    overflow: hidden;
    padding: 20px
}

.mini-cart-content .cart-buttons span {
    background: #979797 none repeat scroll 0 0;
    border: 1px solid #979797;
    color: #fff;
    display: block;
    font-size: 1.1em;
    line-height: 17px;
    padding: 7px 0;
    text-align: center;
    text-shadow: 1px 1px rgba(0,0,0,.24);
    width: 100%
}

.mini-cart-content .cart-buttons span:hover {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #979797;
    color: #979797
}

.mini-cart-content .cart-buttons span i {
    color: #fff;
    font-size: 15px;
    margin-left: 5px;
    transition: all .3s ease 0s
}

.mini-cart-content .cart-buttons span:hover i {
    color: #979797
}

.slider-area {
    margin-bottom: 10px;
    clear: both
}

.preview-2 .nivo-controlNav {
    display: none
}

.banner-area {
    margin: 0 5px;
    overflow: hidden
}

.banner-area .col-md-6 {
    margin-bottom: 10px;
    padding: 0 5px
}

.white-hover {
    display: block;
    position: relative
}

.white-hover:before {
    background: hsla(0,0%,100%,.1) none repeat scroll 0 0;
    bottom: 15px;
    content: "";
    left: 15px;
    position: absolute;
    right: 15px;
    top: 15px;
    transform: scale(0);
    transition: all .3s ease 0s
}

.white-hover:hover:before {
    transform: scale(1)
}

.white-hover a img {
    width: 100%
}

.product-carousel-area {
    padding: 0 5px;
    margin-bottom: 30px
}

.product-carousel.owl-carousel .owl-item .single-product-item {
    padding: 0 5px
}

.single-product {
    background: #fff none repeat scroll 0 0;
    margin-bottom: 30px
}

.single-product,.single-product .item-top {
    overflow: hidden;
    position: relative
}

.single-product .item-top>a {
    display: block;
    position: relative
}

.single-product .item-top>a img {
    width: 100%
}

.single-product .item-top>a:before {
    background: hsla(0,0%,74.1%,.6) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s ease 0s
}

.single-product:hover .item-top a:before {
    opacity: 1
}

.single-product .button-container {
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transition: all .3s ease 0s
}

.single-product .button-container ul {
    display: inline-block;
    margin: 0
}

.single-product .button-container ul li {
    display: inline;
    float: left;
    margin: 0 3px
}

.single-product .button-container ul li a {
    background: transparent none repeat scroll 0 0;
    border: 1px dotted #fff;
    color: #fff;
    display: block;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px
}

.single-product .button-container ul li a:last-child {
    margin-bottom: 0
}

.single-product .button-container ul li a:hover {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #fff;
    color: #dc92a5
}

.single-product:hover .button-container {
    opacity: 1;
    top: 40%
}

.product-carousel .single-product .item-bottom {
    bottom: 15px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center
}

.product-carousel-area .single-product .item-bottom h5 {
    margin: 15px 0
}

.product-carousel .single-product .item-bottom h5 a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0;
    opacity: 0;
    transition: all .3s ease 0s
}

.product-carousel .single-product:hover .item-bottom h5 a {
    opacity: 1
}

.single-product .price-box span {
    color: #363636;
    font-size: 16px;
    font-weight: 500
}

.old-price {
    color: #aeaeae!important;
    font-weight: 300!important;
    font-size: 14px!important;
    text-decoration: line-through
}

.product-carousel .single-product:hover .item-bottom .old-price {
    color: #fff!important
}

.product-carousel-area .single-product .item-bottom .price-box {
    float: none
}

.carousel-style-one.owl-carousel.owl-theme {
    position: relative
}

.carousel-style-one:hover .owl-controls {
    opacity: 1
}

.carousel-style-one .owl-controls {
    margin-top: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all .2s ease 0s;
    width: 100%;
    opacity: 0
}

.carousel-style-one.owl-theme .owl-controls .owl-buttons div {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #363636;
    border-radius: 0;
    color: #363636;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    margin-top: -16px;
    opacity: 1;
    padding: 0;
    text-align: center;
    transition: all .3s ease 0s;
    width: 32px
}

.carousel-style-one .owl-controls .owl-prev {
    left: 0;
    position: absolute
}

.carousel-style-one .owl-controls .owl-next {
    right: 0;
    position: absolute
}

.carousel-style-one.owl-theme .owl-controls .owl-buttons div:hover {
    border: 2px solid #979797;
    color: #979797
}

.carousel-style-two.owl-theme .owl-controls {
    margin-top: 0;
    text-align: center
}

.carousel-style-two .owl-buttons {
    position: absolute;
    right: 12px;
    top: -80px;
    transition: all .3s ease 0s
}

.carousel-style-two.owl-theme .owl-controls .owl-buttons div {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #b3b3b3;
    border-radius: 0;
    color: #b3b3b3;
    display: inline-block;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin: 0 3px;
    opacity: 1;
    padding: 0;
    text-align: center;
    transition: all .3s ease 0s;
    width: 30px
}

.carousel-style-two.owl-theme .owl-controls .owl-buttons div:hover {
    border-color: #979797;
    color: #979797
}

.new-product-area {
    margin-bottom: 30px
}

.new-product-area-home-two .single-product-item,.new-product-area .single-product-item {
    padding: 0 15px
}

.new-product-area .col-md-6:first-child {
    padding: 0
}

.single-product .item-bottom h5 a {
    color: #383c45;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 700
}

.price-rating-container {
    overflow: hidden
}

.single-product .item-bottom .price-box {
    float: left
}

.single-product .rating-right {
    float: right;
    overflow: hidden
}

.single-product .rating-right .star-content {
    display: inline-block;
    line-height: 13px;
    position: relative;
    top: 3px
}

.star {
    cursor: pointer;
    float: left;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    top: -1px;
    width: 14px;
    display: block
}

div.star:after {
    color: #cbcbcb;
    content: "\F006";
    display: inline-block;
    font-family: FontAwesome
}

.single-product .item-bottom h5 a:hover {
    color: #92959b
}

.banner-small-area {
    margin-bottom: 60px
}

.featured-product-area .single-product-item.col-md-4 {
    width: 100%
}

.features-tab {
    margin-bottom: 33px;
    position: relative
}

.features-tab .nav.nav-tabs {
    border: 0;
    text-align: center
}

.features-tab .nav.nav-tabs>li a {
    border: 0;
    color: #a4a4a4;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    padding: 0;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    margin: 0
}

.features-tab li.active>a,.features-tab li a:hover {
    color: #979797!important;
    background: transparent!important
}

.features-tab .nav>li>a:focus,.nav>li>a:hover {
    background-color: initial
}

.features-tab .nav li {
    color: #a4a4a4;
    cursor: pointer;
    display: inline-block;
    float: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    padding: 0 20px;
    position: relative;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

.featured-product-area .tab-content {
    margin-bottom: 30px
}

.service-area {
    padding-bottom: 60px
}

.service-area .service-section {
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    padding: 60px 0;
    text-align: center;
    clear: both;
    overflow: hidden
}

.service-area .service-item {
    display: inline-block;
    padding-left: 60px;
    position: relative;
    text-align: left
}

.service-area .service-item i {
    font-size: 0;
    left: 0;
    position: absolute;
    top: 10px
}

.service-area .service-item i:before {
    font-size: 40px
}

.service-area .service-item h4 {
    color: #545454;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 12px
}

.service-area .service-item p {
    color: #afafaf;
    font-size: 11px
}

.blog-area {
    padding-bottom: 60px
}

.blog-area .blog-image a img,.blog-carousel .col-md-4 {
    width: 100%
}

.blog-area .post-title {
    margin-bottom: 15px
}

.blog-area .post-title a {
    color: #262b32;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase
}

.blog-area .post-title a:hover {
    color: #979797
}

.blog-area .post-date {
    color: #979797;
    font-weight: 300;
    margin-bottom: 15px
}

.blog-area .blog-description p {
    color: #7f7f7f;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0
}

.brand-area {
    padding-bottom: 60px
}

.brand-carousel .col-md-3 {
    width: 100%
}

.brand-section {
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    padding: 30px 0
}

.brand-item {
    text-align: center
}

.brand-item>a {
    display: inline-block
}

.newsletter-area {
    padding-bottom: 60px;
    text-align: center
}

.title h4 {
    color: #363636;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 16px;
    margin-bottom: 15px;
    margin-top: 0;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    text-transform: uppercase
}

.post-newsletter p {
    color: #868686;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 30px
}

.post-newsletter .form-group {
    margin-bottom: 0;
    overflow: hidden;
    padding: 2px
}

.post-newsletter #newsletter-input {
    box-shadow: none;
    color: #9c9b9b;
    display: block;
    float: left;
    font-weight: 300;
    height: 40px;
    outline: 2px dashed #a5a5a5;
    outline-offset: 0;
    padding: 0 15px;
    text-align: left;
    transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
    width: 70%
}

.post-newsletter #newsletter-input,.post-newsletter .btn {
    background: transparent none repeat scroll 0 0;
    border: none;
    font-size: 13px;
    line-height: 1.42857;
    vertical-align: middle
}

.post-newsletter .btn {
    font-weight: 700;
    text-shadow: 1px 1px rgba(0,0,0,.24);
    padding: 0;
    display: inline-block;
    margin-bottom: 0;
    text-align: center
}

.post-newsletter .btn span {
    border: 2px solid #282a40;
    color: #282a40;
    display: block;
    font-size: 14px;
    margin-top: -2px;
    padding: 10px 25px;
    text-shadow: 0 0 0;
    text-transform: uppercase
}

.post-newsletter .btn:hover span {
    background: #979797 none repeat scroll 0 0;
    border-color: #979797;
    color: #fff
}

.footer-widget-area {
    background: #000 none repeat scroll 0 0!important;
    padding-bottom: 40px;
    overflow: hidden
}

.single-footer-widget {
    margin-top: 45px
}

.single-footer-widget h4 {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 30px;
    text-transform: uppercase
}

.single-footer-widget.newsletter h4 {
    margin: 0 0 10px
}

.single-footer-widget.newsletter .footer-info .news-letter {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 25px;
    margin-bottom: 30px
}

.single-footer-widget.newsletter .footer-info .news-letter input {
    display: flex;
    border: 2px solid #636363;
    width: 80%;
    height: 100%;
    outline: none
}

.single-footer-widget.newsletter .footer-info .news-letter button {
    display: flex;
    width: 20%;
    height: 100%;
    padding: 5px;
    border: none;
    outline: none;
    background: #636363;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center
}

.single-footer-widget .footer-info p {
    color: #ddd;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px
}

.social-button {
    float: left
}

.social-button ul {
    margin: 0;
    overflow: hidden
}

.social-button li {
    display: inline;
    float: left;
    margin: 0 10px 0 0;
    padding: 11px 0
}

.social-button ul li a {
    border: 1px solid #ddd;
    border-radius: 100%;
    color: #4e4e4e;
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    transition: all .3s ease 0s
}

.social-button ul li a:hover {
    color: #979797;
    border: 1px solid #979797
}

.social-button ul li a i {
    color: #fff;
    transition: all .3s ease 0s
}

.social-button ul li a i:before {
    font-size: 12px
}

.single-footer-widget .footer-info ul li {
    color: #ddd;
    font-size: 12px;
    font-weight: 300;
    line-height: 35px;
    overflow: hidden
}

.single-footer-widget .footer-info ul li a {
    color: #fff;
    font-size: 12px;
    font-weight: 300
}

.single-footer-widget .footer-info a:hover,.social-button ul li a:hover i {
    color: #979797
}

.single-footer-widget .footer-info.contact ul li {
    margin-bottom: 10px;
    padding-left: 45px;
    position: relative
}

.single-footer-widget .footer-info.contact i {
    border: 2px solid #74797f;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    height: 35px;
    line-height: 31px;
    text-align: center;
    width: 35px;
    left: 0;
    position: absolute;
    top: 0
}

.single-footer-widget .footer-info.contact li p {
    line-height: 20px;
    margin: 0
}

#footer {
    border-top: 1px solid #3b3b3b;
    padding: 15px 0;
    background: #000
}

#footer img {
    float: right
}

#footer p {
    color: #ddd;
    font-size: 12px;
    font-weight: 300;
    line-height: 40px;
    margin: 0
}

#footer p a {
    color: #979797!important
}

#footer p a:hover {
    border-bottom: 1px solid #979797
}

.new-product-area-home-two {
    margin-bottom: 30px
}

.slider-banner-area {
    clear: both;
    overflow: hidden;
    margin-bottom: 60px
}

.slider-banner-area .col-md-5,.slider-banner-area .col-md-7 {
    padding: 0
}

.slider-banner-area .slider-area {
    margin-bottom: 0
}

.service-area.home-three-service .service-section {
    border-bottom: 1px dashed #ebebeb;
    border-top: 1px dashed #ebebeb
}

.home-four-header .logo,.home-three-header .logo {
    padding: 20px 0;
    text-align: center
}

.home-four-header .header-right-menu,.home-four-header .mainmenu,.home-three-header .header-right-menu,.home-three-header .mainmenu {
    padding: 0
}

.home-four-header .mainmenu>nav>ul#nav>li:hover ul.sub-menu,.home-four-header .mainmenu ul#nav li:hover .megamenu,.home-four-header ul.header-r-cart li:hover .mini-cart-content,.home-four-header ul.header-settings li:hover .settings-menu,.home-three-header .mainmenu>nav>ul#nav>li:hover ul.sub-menu,.home-three-header .mainmenu ul#nav li:hover .megamenu,.home-three-header ul.header-r-cart li:hover .mini-cart-content,.home-three-header ul.header-settings li:hover .settings-menu {
    top: 85px
}

.home-four-header .search,.home-four-header .settings,.home-three-header .search,.home-three-header .settings {
    top: 107px
}

.home-four-header .header-right-menu ul li,.home-four-header .mainmenu ul#nav>li>a,.home-three-header .header-right-menu ul li,.home-three-header .mainmenu ul#nav>li>a {
    line-height: 90px
}

.slider-area.home-three-slider {
    margin-bottom: 30px
}

.new-product-area-home-two .col-md-6:last-child {
    padding: 0
}

.home-three-banner-area {
    margin-bottom: 60px
}

.featured-product-carousel-area-three {
    padding-bottom: 30px;
    position: relative
}

.featured-product-carousel-three .single-product-item {
    padding: 0 15px
}

.home-three-section-title {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 30px;
    position: relative
}

.home-three-section-title h4 {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 0 0 20px;
    position: relative
}

.home-three-section-title h4:before {
    border-bottom: 1px solid #979797;
    bottom: -1px;
    content: "";
    left: 0;
    position: absolute;
    width: 100px
}

.home-three-section-title h4 span {
    color: #848484;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase
}

.service-area.home-three {
    padding-bottom: 60px
}

.featured-product-area.home-three-product .features-tab {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 30px
}

.featured-product-area.home-three-product .features-tab .nav li {
    float: left;
    line-height: 35px;
    margin: 0 28px 0 0;
    padding: 0 0 7px
}

.featured-product-area.home-three-product .features-tab .nav li.active:before {
    border-bottom: 1px solid #979797;
    bottom: -1px;
    content: "";
    left: 0;
    position: absolute;
    right: 0
}

.featured-product-area.home-three-product .features-tab .nav.nav-tabs>li a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 14px;
    padding-bottom: 11px
}

.featured-product-carousel-three .single-product .rating-right .star-content {
    display: inline-block;
    margin-bottom: 0
}

.service-area.home-three .service-section {
    padding: 40px 0
}

.brand-section.home-three-brand,.service-area.home-three .service-section {
    border-bottom: 1px dotted #ebebeb;
    border-top: 1px dotted #ebebeb
}

.testimonial-item {
    border: 1px solid #f4f4f4
}

.testimonial-text {
    padding: 30px 15px
}

.testimonial-text>p {
    color: #999;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: 30px
}

.testimonial-author {
    background: #f4f4f4 none repeat scroll 0 0;
    margin: 0;
    overflow: hidden;
    padding: 30px 60px;
    position: relative
}

.testimonial-author:before {
    background: #fff none repeat scroll 0 0;
    content: "";
    height: 20px;
    left: 80px;
    position: absolute;
    top: -10px;
    transform: rotate(45deg);
    width: 20px
}

.testimonial-author .author-img {
    float: left;
    margin-right: 10px;
    overflow: hidden
}

.testimonial-author .author-img img {
    border-radius: 100%;
    height: 60px;
    width: 60px
}

.testimonial-info {
    float: left;
    margin-right: 10px
}

.testimonial-info>span {
    color: #979797;
    font-size: 12px;
    line-height: 60px;
    text-transform: uppercase
}

.testimonial-info span.e-mail {
    color: #999;
    font-size: 10px;
    text-transform: lowercase
}

.carousel-style-two:hover .owl-controls {
    opacity: 1
}

.testimonial-carousel.carousel-style-two .owl-buttons {
    position: absolute;
    right: -3px;
    top: -71px;
    transition: all .3s ease 0s
}

.carousel-style-two .owl-pagination {
    bottom: 15px;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    right: 20px
}

.carousel-style-two .owl-pagination .owl-page>span {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    display: block;
    height: 10px;
    margin: 0 3px;
    opacity: 1;
    width: 10px
}

.carousel-style-two .owl-pagination .owl-page.active>span {
    background: #979797 none repeat scroll 0 0;
    border: 1px solid #979797
}

.blog-carousel-three .blog-description h2 {
    line-height: 20px;
    margin-bottom: 15px;
    margin-top: 0
}

.blog-carousel-three .read-more {
    border-bottom: 1px dotted #979797;
    color: #777;
    font-size: 10px;
    font-style: italic
}

.blog-carousel-three .read-more:hover {
    color: #979797
}

.testimonial-blog-area {
    padding-bottom: 60px
}

.testimonial-blog-area .blog-area {
    position: relative
}

.testimonial-blog-area .blog-area .carousel-style-two .owl-buttons {
    right: -3px;
    top: -71px
}

.brand-area-three {
    background: #f5f5f5 none repeat scroll 0 0;
    margin-bottom: 60px
}

.brand-area-four .brand-section,.brand-area-three .brand-section {
    border: 0
}

.newsletter-area.home-three .title h4 {
    color: #848484
}

header.home-four-header {
    background: transparent none repeat scroll 0 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999
}

.slider-area.home-four-slider {
    clear: both;
    margin-bottom: 60px
}

.featured-product-carousel-area-four {
    margin-bottom: 30px;
    position: relative
}

.featured-product-carousel-area-four .single-product .rating-right .star-content {
    margin-bottom: 5px
}

.home-four-section-title h4 {
    color: #363636;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 50px;
    margin-top: 0;
    padding: 0;
    position: relative;
    text-transform: uppercase
}

.home-four-section-title h4:before {
    border-top: 1px solid #e1e1e1;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%
}

.home-four-section-title h4:after {
    border-left: 3px solid #363636;
    content: "";
    height: 32px;
    left: 0;
    position: absolute;
    top: 0
}

.home-four-section-title h4 span {
    background: #fff none repeat scroll 0 0;
    padding: 0 15px;
    position: relative
}

.featured-product-carousel-area-four .carousel-style-two.owl-theme .owl-controls .owl-buttons div {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e9e9e9;
    color: #a7a7a7;
    height: 32px;
    line-height: 32px;
    margin: 0;
    width: 32px
}

.featured-product-carousel-area-four .carousel-style-two.owl-theme .owl-controls .owl-buttons {
    background: #fff none repeat scroll 0 0;
    right: 15px;
    top: -76px
}

.featured-product-carousel-area-four .carousel-style-two.owl-theme .owl-controls .owl-buttons .owl-prev {
    margin-right: 5px
}

.featured-product-carousel-area-four .single-product-item {
    padding: 0 15px
}

.home-four-banner-area {
    margin-bottom: 30px;
    overflow: hidden
}

.home-four-banner-area .col-md-6 {
    padding: 0 1px
}

.home-four-banner-area .row {
    margin: 0 -1px
}

.home-four-banner-area .img {
    margin-bottom: 2px;
    padding: 0
}

.service-area.home-four .service-section {
    border-bottom: 1px dashed #ebebeb;
    border-top: 0;
    padding: 30px 0
}

.brand-area-four {
    background: #f5f5f5 none repeat scroll 0 0;
    margin-bottom: 0
}

.fullwidth-banner-area {
    margin-bottom: 60px
}

.newsletter-area.home-four .title h4 {
    color: #848484;
    font-size: 16px
}

.breadcrumb-area {
    background: #000 none repeat scroll 0 0;
    margin-bottom: 30px;
    padding: 10px 0
}

.breadcrumb {
    background: transparent none repeat scroll 0 0;
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    padding: 0
}

.breadcrumb span.navigation {
    color: #fff;
    padding: 0 5px
}

.show-submenu.submenu-active,ul.l-sidebar>li:hover>a {
    color: #979797
}

ul.l-sidebar li a i.fa-caret-right {
    color: #6e6e6e;
    font-size: 22px;
    display: inline-block;
    float: right;
    padding-right: 5px
}

.rotate {
    transition: .3s
}

ul.l-sidebar>li>a.submenu-active {
    display: block;
    position: relative
}

ul.l-sidebar>li>a.submenu-active i.rotate {
    transform: rotate(90deg)
}

.submenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease-out
}

.submenu-active {
    display: block;
    color: #fff;
    max-height: 600px!important;
    transition: max-height .75s ease-in
}

ul.submenu {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

ul.submenu li {
    display: block
}

ul.submenu li a {
    color: #6a6a6a;
    display: block;
    padding: 12px 0 12px 30px!important
}

ul.submenu li:first-child a {
    padding-top: 18px
}

ul.submenu li:last-child a {
    margin-bottom: 18px
}

.sidebar-content-area .categories {
    margin-bottom: 30px
}

.title_block {
    border-bottom: 2px solid #363636;
    border-top: 2px solid #363636;
    color: #363636;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 10px 0;
    text-transform: uppercase
}

.submenu-active .fa-plus.plus {
    display: none
}

.submenu-active .fa-minus.minus {
    display: block
}

.fa-minus.minus {
    display: none
}

.sidebar-content-area .categories i.fa-minus.minus,.sidebar-content-area .categories i.fa.fa-plus {
    border: 1px solid #f6f6f6;
    border-radius: 50%;
    color: #c8c8c8;
    float: right;
    font-size: 10px!important;
    font-weight: 300;
    height: 20px;
    left: inherit;
    line-height: 20px;
    position: inherit;
    text-align: center;
    top: inherit;
    vertical-align: middle;
    width: 20px
}

.categories-content>ul {
    margin-bottom: 9px;
    margin-top: 0
}

.categories-content>ul li {
    position: relative
}

.categories-content ul li a {
    color: #383c45;
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px
}

.left-sub-navbar.submenu>li {
    padding-left: 15px
}

.left-sub-navbar.submenu>li a {
    color: #383c45;
    display: block;
    font-size: 13px;
    font-weight: 300;
    line-height: 30px;
    padding: 0 30px 0 0!important
}

.left-sub-navbar.submenu>li a:hover {
    color: #979797
}

.layered-sidebar {
    margin-bottom: 30px;
    overflow: hidden
}

.sub-categories,.sub-content {
    overflow: hidden
}

.sub-content {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    margin-top: 5px
}

.layered-subtitle-heading {
    border-bottom: 1px solid #ededed;
    margin-bottom: 15px;
    padding-bottom: 10px
}

.layered-subtitle {
    color: #000;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.layered-category {
    margin-bottom: 9px;
    max-height: 200px;
    overflow-x: auto;
    padding: 5px 0
}

.col-lg-12.layered-category {
    padding-left: 0
}

.layered-category li.col-lg-12 {
    padding: 2px 0
}

.layered-category .checker {
    cursor: pointer;
    margin-right: 5px;
    position: relative
}

.layered-category .checker,div.checker span {
    display: inline-block;
    text-align: center
}

div.checker,div.checker input,div.checker span {
    height: 15px;
    width: 15px
}

.layered-category .checker>span input {
    background: transparent none repeat scroll 0 0;
    border: 0;
    margin: 0;
    position: relative;
    top: 3px;
    vertical-align: middle
}

input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus {
    outline: thin dotted #333;
    outline-offset: -2px
}

.layered-category li label {
    color: #797979;
    cursor: pointer;
    font-size: 12px;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 5px
}

.layered-category li label a {
    color: #777
}

.sub-content-price {
    margin-bottom: 15px;
    overflow: hidden
}

.price_filter.col-md-12 {
    padding: 0
}

.price-title {
    margin-bottom: 5px;
    overflow: hidden
}

.price_filter label {
    color: #333;
    display: inline-block;
    float: left;
    font-weight: 700;
    margin-bottom: 5px
}

.price_slider_amount {
    float: right
}

.price_slider_amount>input {
    border: 0;
    font-size: 14px;
    line-height: 18px;
    margin-left: 3px;
    width: 174px
}

#slider-range {
    margin: 8px 10px
}

.page-heading {
    border-bottom: 1px solid #d6d4d4;
    color: #555454;
    font: 600 18px/32px Open Sans,sans-serif;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 0 0 17px;
    text-transform: uppercase
}

.page-heading.product-listing {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0 0 22px
}

.page-heading span.heading-counter {
    color: #333;
    float: right;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 10px;
    text-transform: none
}

.page-heading .cat-name {
    font-weight: 600
}

.shop-item-filter {
    border-bottom: 2px solid #e1e1e1;
    border-top: 2px solid #e1e1e1;
    margin-bottom: 40px;
    padding: 10px 0
}

.shop-tab ul {
    border: 0
}

.shop-tab ul.nav li {
    margin-left: 12px
}

.shop-tab ul.nav li:first-child {
    margin-left: 0
}

.shop-tab ul.nav li a {
    color: grey;
    cursor: pointer;
    font-size: 11px;
    line-height: 14px;
    margin: 0;
    padding: 0;
    border: 0
}

.shop-tab ul.nav li a i {
    border: 1px solid #ccc;
    color: #ccc;
    display: block;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 0;
    text-align: center;
    width: 30px
}

.shop-tab ul.nav li.active a i,.shop-tab ul.nav li a i:hover {
    border-color: #979797;
    color: #979797
}

.shop-tab .nav-tabs>li.active>a,.shop-tab .nav-tabs>li.active>a:focus,.shop-tab .nav-tabs>li.active>a:hover {
    border: none
}

.shop-tab-selectors {
    display: inline-block;
    float: right
}

.shop-tab .selector {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAesAAAAbCAIAAADTdDBbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzJGQUY2NzhDNTU4MTFFNTg3M0M5OTJDNTM1RDQyMDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzJGQUY2NzlDNTU4MTFFNTg3M0M5OTJDNTM1RDQyMDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMkZBRjY3NkM1NTgxMUU1ODczQzk5MkM1MzVENDIwOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMkZBRjY3N0M1NTgxMUU1ODczQzk5MkM1MzVENDIwOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk288qMAAAFWSURBVHja7Ny9asJQAIBR00YHU3Cpi0uR6qBSXCrUoT6zfQT7BlIRxEFcnZxcYrGBQgeLtmgxSTkHlQv5Ge7wcbkkBtPJpABADgVxHJsFgNyZz2ahWQC4pOVicR2e1d737fauXk8GCg5wUZvN5qHbPecOb+Px5+DKbALklIID5JVdFIAU7Ha70y4MgsAaHCD3FBxAwQG4LPvgAOl7HY3W6/Who4+9Xq1WswYHyKLbavXQoWKxWKlUrMEBsmLvWZRWq1UMw+l0undaqVR6HgzK5fLX+Z5FAcicRrPZbre/5zuKokOXKDhAFiP+Y74LdlEAshbx5He5XD71+8fzreAA6TjyTuZ9o5F8Cr94b9MuCkBeKTiAggOg4AAoOMB/5lkUgBSc/P/gCg6Q9vI5/IP8KjjARa1Wq5fh8Jw73ERRq9NJBkEcxyYUIHfms1mYfE0EQB59CDAALX5GcreZToMAAAAASUVORK5CYII=) no-repeat scroll right -1px;
    border: 1px solid #d6d4d4;
    float: right;
    height: 27px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 197px
}

.attribute-list .selector:hover,.shop-tab .selector:hover {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAesAAAAbCAIAAADTdDBbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjZCOEIzQjFDNjQyMTFFNTg3NEVGNTk1OTEzM0I1Q0IiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjZCOEIzQjJDNjQyMTFFNTg3NEVGNTk1OTEzM0I1Q0IiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2NkI4QjNBRkM2NDIxMUU1ODc0RUY1OTU5MTMzQjVDQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2NkI4QjNCMEM2NDIxMUU1ODc0RUY1OTU5MTMzQjVDQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqFJulQAAAFVSURBVHja7NxBSgJRAIBhp1xpO10n7hIJIc+QW/UOuQyX0QWk49gZpANIEgwuJJcewM0YJglBoRYazkx8HygPnjOLt/h5PB2Dl9EoA0AKBVEUWQWA1BmHYdYqABzT62Rymj2ovW+LRalcXg0UHOCo5vP5Za12yB2eh8P14MRqAqSUggOklVMUgBgsl8v9LgyCwB4cIPUUHEDBATgu5+AA8Xvo9abT6bbZm07nql63BwdIootKZdtULpc7L5U2Tik4QAyWXzVbrWa7vTHfd/f3hULh85MKDpA4jUbjW8TX+S4Wi9suUXCAJEb8x3xnfJMJkLSIr96fBoPbbnd3vhUcIB47nsm8/pD5xXObTlEA0krBARQcAAUHQMEB/jO/RQGIwd7/D67gAHFvn7N/kF8FBziq2Wz22O8fcoezfL5Sra4GQRRFFhQgdcZhmF29LARAGr0LMABVJF1uBIovmQAAAABJRU5ErkJggg==) no-repeat scroll right -1px
}

.item-page .selector {
    width: 59px
}

.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent none repeat scroll 0 0;
    border: 0;
    border-radius: 0;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    height: 27px;
    max-width: 197px;
    outline: 0 none;
    padding: 0 23px 0 5px;
    text-shadow: 0 1px 0 #fff
}

.item-page,.sort-form {
    display: inline-block;
    float: left;
    margin-right: 20px
}

.item-page label,.sort-form>label {
    color: #333;
    float: left;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
    padding: 3px 6px 0 0
}

.compare-form button {
    background: #737373 none repeat scroll 0 0;
    border: none;
    color: #fff;
    margin-left: 15px;
    padding: 0
}

.compare-form button span {
    color: #fff;
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    text-transform: uppercase
}

.compare-form button span i.right {
    margin-left: 9px;
    margin-right: 0
}

.compare-form button:hover {
    background: #979797
}

.sidebar-content-area .price-rating-container {
    border: 0
}

.sidebar-content-area .item-bottom h5 {
    margin: 9px 0 5px
}

.sidebar-content-area .single-product {
    margin-bottom: 55px
}

.sidebar-content-area .shop-product-list .price-rating-container {
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 10px;
    overflow: hidden;
    padding-bottom: 10px
}

.pagination-content {
    border: 0;
    margin: 0 0 30px;
    overflow: hidden;
    padding: 20px 0;
    position: relative
}

.pagination-content>p {
    margin: 10px 0
}

.pagination-button {
    float: right;
    margin-top: 4px
}

.pagination-button,.pagination-content>p {
    display: inline-block
}

.pagination-content .pagination {
    float: left;
    margin: 0;
    padding: 0
}

.pagination-content .pagination li a {
    background: #fff none repeat scroll 0 0;
    color: #777;
    font-weight: 600;
    margin: 1px;
    padding: 2px 8px
}

.pagination a i {
    color: #999;
    font-size: 12px;
    transition: all .3s ease 0s
}

.pagination-content .pagination .pagination-next a,.pagination-content .pagination .pagination-previous a {
    border: 0;
    font-weight: 300;
    padding: 3px 8px
}

.pagination-previous a i {
    margin-right: 4px
}

.pagination-next a i {
    margin-left: 4px
}

.pagination-content .pagination li a:hover,.pagination a:hover i {
    color: #979797
}

button.show-pagi {
    background: #282828 none repeat scroll 0 0;
    border: 0;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    line-height: normal;
    margin-left: 6px;
    padding: 3px 5px 4px
}

button.show-pagi:hover {
    background: #979797
}

.shop-product-list {
    margin: 0 0 30px
}

.product-flags .discount {
    color: #f13340;
    margin-bottom: 10px
}

.shop-product-text h5 a {
    color: #3a3939;
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 0
}

.shop-product-text h5 a:hover {
    color: #979797
}

.shop-product-text .price-box {
    float: left
}

.price-rating-container .price-box>span {
    color: #363636;
    display: inline-block;
    font-size: 16px;
    font-weight: 500
}

.shop-product-text .rating-right {
    float: right
}

.shop-product-text .product-desc {
    color: #757575;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 15px
}

.product-quantity-available #availability span,.shop-product-text .availability span {
    background-color: #55c65e;
    border: 1px solid #36943e;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 3px 8px 4px
}

.product-details-buttons a.cart-btn,.shop-product-text .shop-buttons a.cart-btn {
    background: #fff none repeat scroll 0 0;
    border: 1px dotted #8c8c8c;
    color: #8c8c8c;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-left: 0;
    padding: 0 15px;
    text-shadow: 0 0 0;
    text-transform: uppercase;
    width: auto
}

.product-details-buttons a.cart-btn i,.shop-product-text .shop-buttons a.cart-btn i {
    font-size: 16px;
    line-height: 35px;
    margin: 0 5px
}

.product-details-buttons a:hover,.shop-product-text .shop-buttons a:hover {
    background-color: #979797;
    border-color: #979797;
    color: #fff
}

.product-details-buttons a,.shop-product-text .shop-buttons a {
    border: 1px dotted #8c8c8c;
    color: #777;
    display: inline-block;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
    text-align: center;
    width: 40px
}

.product-center-column,.row.product-details {
    margin-bottom: 30px
}

.product-center-column>table {
    display: block;
    overflow: auto
}

.product-details-area .product-details .product-large .tab-content {
    border: 0;
    margin: 0;
    padding: 0
}

.product-small ul.nav {
    border: 0!important
}

.product-large {
    display: inline-block
}

.product-small .nav.nav-tabs>li a {
    background: #fbfbfb none repeat scroll 0 0;
    border: 0;
    box-sizing: border-box;
    display: block;
    margin-right: 3.5px;
    padding: 0;
    transition: all .3s ease 0s
}

.product-large img {
    width: 100%
}

.product-large a {
    display: block
}

.product-small .nav.nav-tabs>li:last-child a {
    margin-right: 0
}

.product-s-l {
    margin-bottom: 0
}

.bx-wrapper {
    margin: 0
}

.bx-wrapper .bx-pager a {
    border: none;
    display: block;
    margin: 0;
    padding: 0
}

.bx-wrapper .bx-pager a:hover {
    border: 0
}

.product-details .outside p {
    display: block;
    margin-bottom: 0
}

.outside span a {
    height: 20px;
    left: 0;
    margin-top: -10px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 50%;
    transition: all .3s ease 0s;
    width: 20px
}

.outside span a.bx-next {
    left: auto;
    right: 0
}

.outside p span a i {
    color: silver;
    display: inline-block;
    font-size: 20px;
    line-height: 22px
}

.outside p span a i:hover {
    color: #333!important
}

.bx-controls .bx-pager .bx-pager-item a {
    display: none
}

.p-d-cart {
    border-bottom: 1px solid #ccc;
    padding: 43px 0
}

a.p-d-btn:hover {
    background: #f55
}

.p-d-fav,.p-d-search {
    border: 1px solid #ccc;
    color: #303030;
    display: inline-block;
    font-size: 16px;
    margin-left: 38px;
    padding: 7px 21px
}

.p-d-fav:hover,.p-d-search:hover {
    border: 1px solid #f55;
    color: #f55
}

.product-details-area .share-post {
    border: 0;
    padding-top: 30px
}

.product-small {
    margin-top: 10px;
    position: relative
}

.product-small li {
    box-sizing: border-box;
    cursor: pointer;
    float: left;
    line-height: 0;
    margin-right: 8px;
    width: 86px!important
}

.product-small li a img {
    border: 1px solid #fff;
    height: 100%;
    width: 100%
}

.bx-wrapper .bx-viewport {
    box-shadow: none;
    left: 0
}

.product-details .single-image {
    height: 100px;
    width: 33%
}

.product-center-column h1 {
    color: #3f3f3f;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 15px
}

.product-center-column p#product-reference {
    margin-bottom: 6px
}

.product-center-column p#product-reference label {
    color: #666;
    display: inline-block;
    font-weight: 300;
    margin-bottom: 5px
}

.product-center-column p#product-reference span {
    color: #979797;
    font-weight: 300
}

p#product-condition {
    clear: both;
    margin-bottom: 10px
}

p#product-condition label {
    color: #666;
    display: inline-block;
    font-weight: 300;
    margin-bottom: 5px
}

p#product-condition span {
    color: #979797;
    font-weight: 300
}

.content-prices .price-display {
    color: #979797;
    font-size: 14px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 10px;
    clear: both
}

.content-prices .price-display span#price-display {
    color: #363636;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px
}

.product-details-area #short-description-block {
    border-top: 1px solid #383c45;
    color: #757575;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 40px;
    padding-top: 15px
}

.product-details-area #short-description-block p {
    line-height: 18px;
    margin-bottom: .5em
}

.product-quantity-available {
    clear: both;
    display: inline-block;
    margin-bottom: 10px
}

.product-quantity-available span {
    color: #333;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px
}

.product-quantity-available>p {
    float: left;
    line-height: 27px;
    margin-bottom: 0
}

.product-quantity-available>p#availability span {
    margin-bottom: 0!important;
    margin-left: 10px
}

.pb-center-column #form_buy,.product-center-column #form_buy {
    margin-top: 10px
}

.product-attributes>p {
    margin-bottom: 15px
}

#form_buy label {
    color: #666;
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 7px;
    text-align: left;
    width: 65px
}

#quantity-wanted-p input {
    border: 1px solid #d6d4d4;
    color: #232323;
    float: left;
    height: 27px;
    line-height: 27px;
    padding: 0 6px;
    width: 78px
}

.dec.qtybutton,.inc.qtybutton {
    background: #fff linear-gradient(180deg,#fff 0,#fbfbfb) repeat-x scroll 0 0;
    border: 1px solid #dad8d8;
    color: silver;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 20px;
    font-weight: 600;
    height: 25px;
    margin-left: 3px;
    padding: 4px 0 0;
    text-align: center;
    width: 25px
}

.attribute-list .selector {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAesAAAAbCAIAAADTdDBbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzJGQUY2NzhDNTU4MTFFNTg3M0M5OTJDNTM1RDQyMDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzJGQUY2NzlDNTU4MTFFNTg3M0M5OTJDNTM1RDQyMDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMkZBRjY3NkM1NTgxMUU1ODczQzk5MkM1MzVENDIwOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMkZBRjY3N0M1NTgxMUU1ODczQzk5MkM1MzVENDIwOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk288qMAAAFWSURBVHja7Ny9asJQAIBR00YHU3Cpi0uR6qBSXCrUoT6zfQT7BlIRxEFcnZxcYrGBQgeLtmgxSTkHlQv5Ge7wcbkkBtPJpABADgVxHJsFgNyZz2ahWQC4pOVicR2e1d737fauXk8GCg5wUZvN5qHbPecOb+Px5+DKbALklIID5JVdFIAU7Ha70y4MgsAaHCD3FBxAwQG4LPvgAOl7HY3W6/Who4+9Xq1WswYHyKLbavXQoWKxWKlUrMEBsmLvWZRWq1UMw+l0undaqVR6HgzK5fLX+Z5FAcicRrPZbre/5zuKokOXKDhAFiP+Y74LdlEAshbx5He5XD71+8fzreAA6TjyTuZ9o5F8Cr94b9MuCkBeKTiAggOg4AAoOMB/5lkUgBSc/P/gCg6Q9vI5/IP8KjjARa1Wq5fh8Jw73ERRq9NJBkEcxyYUIHfms1mYfE0EQB59CDAALX5GcreZToMAAAAASUVORK5CYII=) no-repeat scroll right -1px;
    border: 1px solid #d6d4d4;
    float: right;
    height: 27px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 224px
}

.attribute-list .selector select {
    background: #fff none repeat scroll 0 0;
    height: 26px;
    padding: 0 0 0 5px
}

#quantity-wanted-p,.attribute-fieldset {
    margin-bottom: 15px
}

.attribute-list {
    float: left;
    outline: medium none;
    overflow: hidden
}

.selector .form-control:focus {
    box-shadow: none;
    border: 0;
    outline: 0
}

.product-details-buttons {
    margin-bottom: 27px
}

.product-details-buttons a.cart-btn {
    padding: 0 21px
}

.product-details-buttons a.cart-btn i {
    font-size: 18px;
    margin-right: 12px
}

.form-control:focus {
    border: 1px solid #fff;
    box-shadow: 0;
    outline: 0 none
}

.btn-default {
    background-color: #fff;
    border-color: #ccc;
    border-radius: 0;
    color: #333;
    display: inline-block;
    font-size: 13px;
    line-height: 1.42857;
    padding: 6px 12px;
    margin-bottom: 3px
}

.btn-facebook:hover,.btn-google-plus:hover,.btn-pinterest:hover,.btn-twitter:hover {
    border-color: #fff
}

.btn-default i {
    margin-right: 6px
}

.btn-facebook i {
    color: #435f9f
}

.btn-facebook:hover {
    background-color: #435f9f;
    color: #fff
}

.btn-facebook:hover i {
    color: #fff
}

.btn-twitter i {
    color: #00aaf0
}

.btn-twitter:hover {
    background-color: #00aaf0;
    color: #fff
}

.btn-twitter:hover i {
    color: #fff
}

.btn-google-plus i {
    color: #e04b34
}

.btn-google-plus:hover {
    background-color: #e04b34;
    color: #fff
}

.btn-google-plus:hover i {
    color: #fff
}

.btn-pinterest i {
    color: #ce1f21
}

.btn-pinterest:hover {
    background-color: #ce1f21;
    color: #fff
}

.btn-pinterest:hover i {
    color: #fff
}

.sidebar-widget-title h4 {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -webkit-border-bottom-colors: none;
    -webkit-border-left-colors: none;
    -webkit-border-right-colors: none;
    -webkit-border-top-colors: none;
    border-image: none;
    border: #ebebeb;
    border-bottom: 1px solid #ebebeb;
    color: #363636;
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 30px;
    padding: 0;
    text-transform: uppercase
}

.sidebar-widget-title h4 span {
    color: #363636;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase
}

.sidebar-widget-title h4 span:before {
    border-bottom: 1px solid #979797;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0
}

.sidebar-widget-post .widget-item {
    margin-bottom: 30px;
    overflow: hidden
}

.widget-item-image {
    float: left;
    margin-right: 15px
}

.widget-item-image>a {
    display: block
}

.widget-item-text {
    overflow: hidden
}

.widget-item-text h5 {
    margin: 0 0 5px
}

.widget-item-text h5 a {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    margin-bottom: 0
}

.widget-item-text h5 a:hover {
    color: #979797
}

.sidebar-widget-post .price-box {
    margin-bottom: 5px
}

.sidebar-widget-post .price-box span {
    color: #363636;
    font-family: Poppins,sans-serif;
    font-size: 16px;
    font-weight: 500
}

#product-comments-block-extra {
    background: #fbfbfb none repeat scroll 0 0;
    border: 1px solid #d6d4d4;
    font-weight: 700;
    line-height: 18px;
    margin: 39px 0 22px;
    padding: 8px 10px 10px
}

.comments-advices {
    clear: both;
    padding-top: 2px
}

.comments-advices a,.comments-advices li {
    display: inline-block;
    line-height: 30px
}

.comments-advices a {
    color: #777;
    margin-right: 8px;
    padding: 0;
    position: relative;
    text-decoration: none
}

.comments-advices a:before {
    background: #929292 none repeat scroll 0 0;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-family: FontAwesome;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
    margin-right: 6px;
    text-align: center;
    width: 30px
}

.comments-advices a.open-comment-form:before {
    content: "\F040"
}

.p-details-tab {
    padding: 0
}

.p-details-tab ul {
    float: left;
    width: 100%;
    border: 0;
    margin-bottom: 10px
}

.p-details-tab ul li {
    display: inline;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative
}

.p-details-tab .nav.nav-tabs>li img {
    border: 0;
    position: relative;
    transition: all .3s ease 0s;
    max-width: 95px
}

.p-details-tab .nav.nav-tabs>li a {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 0 3px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 13px
}

.nav>li>a:hover,.p-details-tab .nav>li>a:focus {
    background-color: initial
}

.product-details-area .tab-content {
    color: #666;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    margin: 0 0 30px
}

.table-data-sheet {
    background: #fff none repeat scroll 0 0;
    border-bottom: 1px solid #d6d4d4;
    margin: 0 0 30px;
    width: 100%
}

.table-data-sheet tr {
    border-top: 1px solid #d6d4d4
}

.table-data-sheet tr td {
    padding: 10px 20px 11px
}

.table-data-sheet tr td:first-child {
    border-right: 1px solid #d6d4d4;
    color: #333;
    font-weight: 700;
    width: 30%
}

#product-comments-block-tab a {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: #6f6f6f none repeat scroll 0 0;
    border-image: none;
    border-radius: 0;
    border-color: #666 #5f5f5f #292929;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    text-shadow: 1px 1px rgba(0,0,0,.24);
    display: inline-block
}

#product-comments-block-tab a span {
    border: 1px solid #8b8a8a;
    display: block;
    padding: 3px 8px
}

#product-comments-block-tab a:hover {
    background: #575757;
    border: #444
}

.featured-product-area.product-details {
    margin-bottom: 60px
}

.cart-main-area {
    margin-bottom: 100px
}

.cart-title-area {
    padding-top: 30px
}

.car-header-title h2 {
    font-size: 20px;
    margin: 0;
    text-transform: uppercase
}

.cart-main-area thead,.wishlist-area thead {
    background: #fbfbfb none repeat scroll 0 0
}

.table-price {
    border-top: 1px solid #383c45;
    padding-top: 10px;
    margin: 0 0 30px
}

.table-price table {
    background: #fff none repeat scroll 0 0;
    width: 100%;
    text-align: left;
    width: auto!important
}

.table-price table th {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    vertical-align: middle;
    white-space: nowrap;
    line-height: 25px;
    padding: 3px 30px 3px 0
}

.table-price table td {
    border-top: none;
    vertical-align: middle;
    font-size: 13px;
    line-height: 25px;
    padding: 3px 15px 3px 0
}

.table-stock table {
    background: #fff none repeat scroll 0 0;
    width: -webkit-fit-content!important;
    width: -moz-fit-content!important;
    width: fit-content!important;
    text-align: center
}

.table-stock table th {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    white-space: nowrap
}

.table-stock table td,.table-stock table th {
    vertical-align: middle;
    line-height: 17px;
    padding: 7px 30px 7px 0;
    border-top: 1px solid #e9e9e9
}

.table-stock table td {
    font-size: 13px
}

.table-content table {
    background: #fff none repeat scroll 0 0;
    border-radius: 0;
    border-color: #e5e5e5;
    border-style: solid;
    border-width: 1px 0 0 1px;
    margin: 0 0 50px;
    text-align: center;
    width: 100%
}

.table-content table th {
    border-top: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 20px 10px;
    text-align: center;
    text-transform: capitalize;
    vertical-align: middle;
    white-space: nowrap
}

.table-content table td,.table-content table th {
    border-bottom: 1px solid #d6d4d4;
    border-right: 1px solid #d6d4d4
}

.table-content table td {
    border-top: none;
    padding: 20px 10px;
    vertical-align: middle;
    font-size: 13px
}

.table-content table td input {
    background: #e5e5e5 none repeat scroll 0 0;
    border: none;
    border-radius: 3px;
    color: #363636;
    font-size: 15px;
    font-weight: 400;
    height: 40px;
    padding: 0 5px 0 10px;
    width: 60px;
    outline: none
}

.table-content table td.product-subtotal {
    color: #363636;
    font-size: 16px;
    font-weight: 500;
    width: 120px
}

.table-content table td.product-name a,.wishlist-area .product-name>a {
    color: #3a3939;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px
}

.table-content table td.product-name {
    width: 270px
}

.table-content table td.product-thumbnail {
    width: 130px
}

.product-thumbnail img {
    border: 1px solid #d6d4d4
}

.table-content table td.product-remove i {
    color: #777;
    display: inline-block;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px
}

.table-content table .product-price .amount {
    color: #363636;
    font-size: 16px;
    font-weight: 500
}

.table-content table td.product-remove i:hover {
    color: #979797
}

.table-content table td.product-quantity {
    width: 180px
}

.table-content table td.product-remove {
    width: 150px
}

.table-content table td.product-price {
    width: 130px
}

.buttons-cart a:hover,.table-content table td.product-name a:hover,.wishlist-area .product-name>a:hover {
    color: #979797
}

.buttons-cart {
    margin-bottom: 30px;
    overflow: hidden
}

.buttons-cart a,.buttons-cart input,.coupon-info p.form-row input[type=submit],.coupon input[type=submit] {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #282a40;
    border-radius: 0;
    box-shadow: none;
    color: #282a40;
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    line-height: 39px;
    margin-right: 15px;
    padding: 0 15px;
    text-shadow: none;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    white-space: nowrap
}

.buttons-cart a:hover,.buttons-cart input:hover,.coupon input[type=submit]:hover {
    background: #979797;
    color: #fff;
    border: 2px solid #979797
}

.buttons-cart a {
    float: left;
    height: 40px;
    line-height: 39px
}

.coupon {
    margin-bottom: 40px;
    overflow: hidden;
    padding-bottom: 20px
}

.coupon h3 {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase
}

.coupon input[type=text] {
    border: 1px solid #e5e5e5;
    float: left;
    height: 40px;
    margin: 0 6px 20px 0;
    max-width: 100%;
    outline: medium none;
    padding: 0 0 0 10px;
    width: 170px
}

.cart_totals {
    float: left;
    text-align: right;
    width: 100%
}

.cart_totals h2 {
    border-bottom: 2px solid #333;
    color: #777;
    display: inline-block;
    font: 600 23px/32px Open Sans,sans-serif;
    margin: 0 0 35px;
    text-transform: uppercase
}

.cart_totals table {
    border: none;
    float: right;
    margin: 0;
    text-align: right
}

.cart_totals table th {
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px 12px 0;
    text-align: right;
    text-transform: uppercase;
    vertical-align: top
}

.cart_totals ul#shipping_method label {
    font-weight: 600
}

.cart_totals table td {
    border: none;
    padding: 0 0 12px;
    vertical-align: top
}

.cart_totals table td .amount {
    color: #979797;
    float: right;
    font-size: 13px;
    font-weight: 700;
    margin-left: 5px;
    text-align: right;
    text-transform: uppercase
}

.cart_totals table td ul#shipping_method {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

.cart_totals table td ul#shipping_method li {
    float: left;
    margin: 0 0 10px;
    padding: 0;
    text-indent: 0;
    width: 100%
}

.cart_totals table td ul#shipping_method li input {
    margin: 0;
    position: relative;
    top: 2px
}

a.shipping-calculator-button {
    font-weight: 700;
    color: #6f6f6f
}

a.shipping-calculator-button:hover {
    color: #83cbdc
}

.cart_totals table tr.order-total .amount,.cart_totals table tr.order-total th {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap
}

.wc-proceed-to-checkout a {
    background: #282828 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    height: 47px;
    line-height: 48px;
    margin-top: 20px;
    padding: 0 24px;
    text-transform: uppercase
}

.wc-proceed-to-checkout a:hover {
    color: #fff;
    background: #979797
}

.coupon-accordion h3 {
    background-color: #f7f6f7;
    border-top: 3px solid #979797;
    color: #515151;
    font-size: 12px;
    font-weight: 300;
    list-style: outside none none!important;
    margin: 0 0 2em!important;
    padding: 1em 2em 1em 3.5em!important;
    position: relative;
    width: auto
}

.coupon-accordion span {
    cursor: pointer;
    color: #6f6f6f
}

.coupon-accordion span:hover,p.lost-password a:hover {
    color: #979797
}

.coupon-content {
    border: 1px solid #e5e5e5;
    display: none;
    margin-bottom: 20px;
    padding: 20px
}

.coupon-info p.coupon-text {
    margin-bottom: 15px
}

.coupon-info p {
    margin-bottom: 0
}

.coupon-info p.form-row-first label,.coupon-info p.form-row-last label {
    display: block
}

.coupon-info p.form-row-first label span.required,.coupon-info p.form-row-last label span.required {
    color: red;
    font-weight: 700
}

.coupon-info p.form-row-first input,.coupon-info p.form-row-last input {
    background: #fbfbfb none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    height: 30px;
    margin: 0 0 14px;
    max-width: 100%;
    outline: 0 none;
    padding: 0 0 0 10px;
    width: 370px
}

.coupon-info p.form-row-first input:focus,.coupon-info p.form-row-last input:focus {
    border: 1px solid #fff;
    box-shadow: none;
    outline: 0 none
}

#checkout-login .form-row>input:hover,.coupon-info p.form-row input[type=submit]:hover,p.checkout-coupon input[type=submit]:hover {
    background: #979797 none repeat scroll 0 0
}

#checkout-login .form-row>input:hover {
    border: 2px solid #979797;
    color: #fff
}

.coupon-info p.form-row input[type=checkbox] {
    position: relative;
    top: 2px
}

.form-row>label {
    margin-top: 7px
}

p.lost-password {
    margin-top: 15px
}

p.lost-password a {
    color: #6f6f6f
}

p.checkout-coupon input[type=text] {
    height: 36px;
    padding-left: 10px;
    width: 170px
}

p.checkout-coupon input[type=submit] {
    background: #333 none repeat scroll 0 0;
    border: none;
    border-radius: 0;
    color: #fff;
    height: 36px;
    margin-left: 6px;
    padding: 5px 10px;
    transition: all .3s ease 0s
}

.coupon-checkout-content {
    margin-bottom: 30px;
    display: none
}

.checkout-area {
    padding-bottom: 70px
}

.checkbox-form h3 {
    border-bottom: 1px solid #e5e5e5;
    color: #3f3f3f;
    font-size: 32px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
    width: 100%
}

.country-select {
    margin-bottom: 30px;
    position: relative
}

.checkout-form-list label,.country-select label {
    color: #333;
    margin: 0 0 5px;
    display: block
}

.checkout-form-list label span.required,.country-select label span.required {
    color: red
}

.country-select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ddd;
    height: 32px;
    padding-left: 10px;
    width: 100%;
    outline: none
}

.country-select:before {
    content: "\F107";
    display: inline-block;
    font-family: fontawesome;
    font-size: 20px;
    position: absolute;
    right: 12px;
    top: 31px
}

.checkout-form-list {
    margin-bottom: 20px
}

.checkout-form-list label {
    color: #333
}

.country-select select {
    background: #fbfbfb none repeat scroll 0 0
}

.checkout-form-list input[type=email],.checkout-form-list input[type=password],.checkout-form-list input[type=text] {
    background: #fbfbfb none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    color: #777;
    font-size: 13px;
    font-weight: 300;
    height: 30px;
    padding: 0 0 0 10px;
    width: 100%;
    outline: none
}

.checkout-form-list>input:focus {
    border: 1px solid #fff;
    box-shadow: none
}

.checkout-form-list input[type=checkbox] {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 2px
}

.create-acc label {
    color: #333;
    display: inline-block
}

.create-account {
    display: none
}

.ship-different-title h3 label {
    color: #3f3f3f;
    display: inline-block;
    font-size: 21px;
    font-weight: 600;
    margin-right: 20px
}

.order-notes textarea {
    height: 90px;
    padding: 15px;
    width: 100%
}

#ship-box-info {
    display: none
}

.your-order {
    background: #fbfbfb none repeat scroll 0 0;
    padding: 30px 40px 45px
}

.your-order h3 {
    border-bottom: 1px solid #d8d8d8;
    color: #3f3f3f;
    font-size: 32px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
    width: 100%
}

.your-order-table table {
    background: transparent none repeat scroll 0 0;
    border: none;
    width: 100%
}

.shipping label {
    font-weight: 600
}

.your-order-table table td,.your-order-table table th {
    border-bottom: 1px solid #d8d8d8;
    border-right: none;
    font-size: 14px;
    padding: 15px 0;
    text-align: center
}

.your-order-table table th {
    border-top: none;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    width: 250px
}

.your-order-table table .shipping ul li input {
    position: relative;
    top: 2px
}

.your-order-table table .shipping th {
    vertical-align: top
}

.your-order-table table .order-total th {
    border-bottom: none;
    font-size: 18px
}

.your-order-table table .order-total td {
    border-bottom: none
}

.your-order-table table tr.cart_item:hover {
    background: #f9f9f9
}

.your-order-table table tr.order-total td span {
    color: #979797;
    font-size: 20px
}

.payment-method {
    margin-top: 40px
}

.payment-accordion h3 {
    border-bottom: 0;
    margin-bottom: 10px;
    padding-bottom: 0
}

.payment-accordion h3 a {
    color: #3f3f3f;
    font-size: 14px;
    padding-left: 25px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize
}

.payment-accordion h3 a:before,.payment-accordion h3.open a:after {
    content: "\F055";
    display: inline-block;
    font-family: fontawesome;
    font-size: 20px;
    left: 0;
    position: absolute;
    top: -2px
}

.payment-accordion h3.open a:after {
    content: "\F056"
}

#cbox_info>p,.payment-content p {
    font-size: 12px;
    font-weight: 300
}

.payment-accordion img {
    height: 60px;
    margin-left: 15px
}

.order-button-payment input {
    background: #282828 none repeat scroll 0 0;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    height: 47px;
    margin: 20px 0 0;
    padding: 0;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    width: 100%
}

.order-button-payment input:hover {
    background: #cf5c8b
}

.wishlist-table table {
    background: #fff none repeat scroll 0 0;
    border-radius: 0;
    border-color: #d6d4d4;
    border-style: solid;
    border-width: 1px 0 0 1px;
    margin: 0 0 90px;
    width: 100%
}

.wishlist-table table th {
    font-weight: 600
}

.wishlist-table table td,.wishlist-table table th {
    border-bottom: 1px solid #d6d4d4;
    border-right: 1px solid #d6d4d4;
    color: #333;
    font-size: 14px;
    padding: 20px 10px;
    text-align: center
}

.wishlist-table table .product-remove {
    padding: 0 15px;
    width: 20px
}

.wishlist-table table .product-remove>a {
    color: #777;
    font-size: 25px
}

.wishlist-table table .product-remove>a:hover {
    color: #979797
}

.wishlist-table table .product-thumbnail {
    width: 150px
}

.wishlist-table table td.product-price .amount {
    color: #363636;
    font-size: 16px;
    font-weight: 500
}

.wishlist-table table .wishlist-in-stock {
    color: #575757
}

.wishlist-table table .product-add-to-cart>a {
    background: #282828 none repeat scroll 0 0;
    color: #fff;
    display: block;
    font-weight: 700;
    padding: 10px 56px;
    text-transform: uppercase;
    width: 225px
}

.wishlist-table table .product-add-to-cart>a:hover {
    background: #979797
}

.wishlist-table table .product-add-to-cart {
    width: 240px
}

.wishlist-share {
    margin-bottom: 35px;
    margin-top: 20px
}

.wishlist-share ul li {
    display: inline-block;
    height: 21px;
    margin-left: 0;
    margin-right: 0
}

.wishlist-share ul li a {
    background-position: 0 0;
    border: none;
    display: inline-block;
    height: 21px;
    width: 21px
}

.wishlist-share ul li a.facebook {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAqCAMAAABr5eDcAAABlVBMVEU1U5Q3U5A1U5Q1U5RUVFRZWVlWVlZUVFQ2VZpVV1s6V5hWVlU1VJZSVFg3VJI3U5E3V5s2VZlWVlZVVVVXV1dVVVU3Vpk3U5FUVFRUVVZVVVU1U5RTU1NUVFRTU1NUVVY1U5RUVFQ1U5RUVFRVVVVUVFQ1U5RUVFQ1U5Q1U5RUVVZUVFSrudd0irvW3etUb6wmSpb9/f5Zc64wUZrFz+NBYaM2V57W3Opzibubq87n6/RJZ6exvtl+k8A3V546Wp9he7IvUZqisdJie7M2Vp7d3d2Li4t0dHS5ubliYmLPz89xcXHc3NyKior9/f2ottXZ3+3r6+u+vr5oaGiUlJTBy+GcrM4sTpmxsbEpTJifsNGgsNEtUJopTJemtNTJ0uXL0+bf39+3t7dEYqQuT5qFmMTMzMwwUpxjY2O1tbXT09PS0tKertCampqvr683WJ4vUJpvhrkuUJp8fHw6WZ+srKyHh4fDzeLNzc2wsLA2Vp1UVFQ4WJ40VZ04WJ8yU5xPT085WaD///81U5RVVVY5WZ9ZWloKjQ+GAAAAGHRSTlP+/P7+/qPL7Mi7rsbp8uL4s8jU6MXmxfQCCA4LAAABEklEQVR42oXQx1LDMBCAYXGg925sPQK999576L1D6KSRgAdLzo6i58ZHtKsZ/uM3OzvSsjqPVsXqC6S8x1oKNEOFoCr6EjM+VjHY0T4+LU2dSg33AEwkTM10j0Bn78CkqUFXPwwlx+ZNPdyCqLm4qTK5DaOztz56w/kB7B+Tl52dQC7+gzV1CjlJ9O4CrqjK+8vXQGDN+DKw3Ex8CKTkvmV5mscqilpxtTWsXLfhdDWr1DTOmizqWNX9o5xzRWcXl3fSLtJwYxNgj2P9hIWlFbRXra3CenYX7Q1vICqNNjjZa4gdPSq69yFU+L3hN3w55G88UleT2Sd4dsms8/byrohqpdR/N7Pft8Q6W1zajGts+AUMgHCiAbe5fAAAAABJRU5ErkJggg==) no-repeat scroll 0 0
}

.wishlist-share ul li a.twitter {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAqCAMAAABr5eDcAAABy1BMVEWHh4eLi4uGhoZEotBGqNiFi42JiIdAp9hCqdpBp9dBptaIiIiHh4eCiIpFpNNEotCIiIhBp9iHh4dEo9GFhYVApNOGhoZApNNApNOFhYWGhoaGhoaFhYWGhoWFhYWHjY94xuvB5fbP6/hYuOXF5/Zkvehtwenm9Puh1/H4/P7u+PxVt+Wa1PDp9vxpwOhWt+b9/v/N6vet3PPw+f10xOo5q+Go2vJcueb8/f+urq6ampqioqLa2trHx8f6+vrd3d2np6fDw8Pv7+/y8vLj4+P19fVCruLZ7/k1qeCmpqb+/v7h4eGKzu6srKz29vbMzMyFhYWGjI7u7u79/f3t7e3o6OiV0/Cd1vBBruLk5OT7/f6j2PHFxcXAwMCk2fGT0e+t3PJMtOP1+v6b1fDq9vw3quGMzu5HseNbuuc1quFBr+NBruPd8PpPteQ/reL8/Pzl5eXz8/O/v7/CwsL5+fmUlJTq6uo+reI9rOJGsePi8/uZmZk6q+FQteU7rOE/ruLT7PjOzs6dnZ25ubk9reLIyMhAruNGsONEr+NDr+OWlpaQkJBApNRCr+JAruKNjY1EsOOOjo5EsOSQj46Li4uFiov///9FsOOPj48+aF0+AAAAFnRSTlPhtuv7wtDc3sjg6dTo8uL429vm9P7+yk0RWwAAAV9JREFUeNqd0EVvwzAYgGGPmaVUPUxjZmZm1piZmVdmbtM42Tw3P3dNtdZp2sPWV0mkPAfbn0E6LZNGpwLaF1kakEXRvD8oSzT079Lbw1VlUPpY78au91akk7rOdv30PN45cN4QZZny5tauKYzxxbWDrKCoxrit269np/fekCoranGgk6PjoDoYxl5cE9DDc/Z3Baeqsk5bViWg8fIhtJu9saS0QcC7K6voZIqm+ha12rips4ZNwXQwLLulNUgmdrAul/Nfd0aU/owsBWTnFEhLSARZy9/SipJA4Zc/njxCyUDOR5Ybg3LCi2C4eiDiObhv46BIoXtpAckt+NHGQ6IcHJo1mdcxxhbKQ1ZAAxgvrvr1+dUNifZN4EBvpveQIoh6BgP6QgXX5fhhDdU7KuCTh+yGZvrHxwT8MCPRyZBmZG5lbXvPjcKmgBT0fySzCXEcF+OdUVEUgIzMfGnxcT/ejZ9wSFB5TwAAAABJRU5ErkJggg==) no-repeat scroll 0 0
}

.wishlist-share ul li a.pinterest {
    background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABBAAD/4QMraHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjgwMTNBNTkyQUZDNjExRTFCRTdDQUIzNkI1MDIxRkIyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjgwMTNBNTkzQUZDNjExRTFCRTdDQUIzNkI1MDIxRkIyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODAxM0E1OTBBRkM2MTFFMUJFN0NBQjM2QjUwMjFGQjIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODAxM0E1OTFBRkM2MTFFMUJFN0NBQjM2QjUwMjFGQjIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7/7gAOQWRvYmUAZMAAAAAB/9sAhAAFBAQEBAQFBAQFBwUEBQcJBwUFBwkKCAgJCAgKDQoLCwsLCg0MDAwNDAwMDw8REQ8PFxYWFhcZGRkZGRkZGRkZAQYGBgoJChQNDRQWEQ4RFhkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRn/wAARCAAqABUDAREAAhEBAxEB/8QAggABAAMBAQAAAAAAAAAAAAAABgEFBwIDAQEAAwEBAQAAAAAAAAAAAAAABAUGAwIHEAACAQIEBgECBwAAAAAAAAABAgMEBQARIRIxQTITFAYiFTVRYYGxMzSVEQACAgEBBQgDAAAAAAAAAAAAARECAyExURIEFPBBcYGhMhMGYpIW/9oADAMBAAIRAxEAPwAbabXc7/do7VbjnUzM7F5H7cUccYLySSOdFRFBZjikrV2cI+n5s1MOPjtsXaEIl9Jiru9S2H2KO6XmGnarjtrU1VSGpgjUsz0sk4CzfEFhoNw4Y6fFOxyyJ17rDyU4aNxMpw/yS2A5ZX8aRt7dacz+D44zoWMKS29eu8louVWqU3lpdKSqtcsAbtsVrkMQKsAcmVip4a8Me6Wh+OhG5nCslFrHC1b9dTWfYr/YPXvdpfYJ7ylbc/WbYLPb7HFBKsvmxwGFmeQqIRCGdmzDZ8stMSb2rW8zqlEFFy3L5c3L/GqRXJbjdpXtmfGdDDV3eNIc/n3EOf55OcQzTd5di0JHMJkr2jmR96MsRzVlOYIO/kcTOjtvM4/smBqHS3oRLaUnlknnuLSTSszyyNCSzOxzZid+pJw6O28V+yYEoVLR5ELZY+1Ivl/Deny7Zz4Ny3YdHbeh/S4Z9tvQWesWyjul2qPqIeSgoKSquFTTxHbJMlIhftKdct5yBI4DPFiY0cLY6Ktv9L6hcrZaYfqlsNdS1tsjkimonaF5kDu7t3lATJt/EHPTAGVj+u+oz3pry4NrgD3pZngr45EqHpQZNklRGSrLE52SdOvQTmOeAGPsHv71Nzu0lkoaSlWpRqGnuyxuKw29QERBmxRNyDqC7stMABwB47jLTegy/RsAXLdTfbOJwBH+ZgDsfxP9s6l/ZsAf/9k=) no-repeat scroll 0 0
}

.wishlist-share ul li a.googleplus {
    background: url(/static/media/googleplus.fc1c3712.jpg) no-repeat scroll 0 0
}

.wishlist-share ul li a.email {
    background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMraHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjMtYzAxMSA2Ni4xNDU2NjEsIDIwMTIvMDIvMDYtMTQ6NTY6MjcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRGMUM5MUM5RkUwRDExRTM4RjEwOEIxODIxQTAxNzYyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRGMUM5MUNBRkUwRDExRTM4RjEwOEIxODIxQTAxNzYyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEYxQzkxQzdGRTBEMTFFMzhGMTA4QjE4MjFBMDE3NjIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEYxQzkxQzhGRTBEMTFFMzhGMTA4QjE4MjFBMDE3NjIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7/7gAOQWRvYmUAZMAAAAAB/9sAhAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMDAQEBAQEBAQIBAQICAgECAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP/wAARCAAqABUDAREAAhEBAxEB/8QAmAAAAgIDAQAAAAAAAAAAAAAABQYABwMICQoBAQACAwEBAAAAAAAAAAAAAAAFBgQHCAkKEAAABAQEBQIDCQAAAAAAAAADBAUGAQIUBxITFRYAERcIGCIjITEkQUIzldVW1leXEQAABAUCBAUBBQkAAAAAAAABAgMEABESEwUUBiIVFgchMRcIGFZBQiPUlTPTJJTVllcJGf/aAAwDAQACEQMRAD8A9A9v7IOO4DaUniG4mKz2umrMjfnXH25ZG8QMrUxQE/OnlhaU574ZQyHP7kA5Z8fKSM0YTQl+VrtR7at391tnvO4KeX2xt7ZDPIFYi9zeRKwQVeCkVcW6Rraw3CJHTONwEymA4AkZQxVCk9Y93dz8NtLNo7cOzyuRzqzYXAIMWwuFCo1iQFDBUThE5TBw1CEpmAoCURavHET+8+3D/VS/6Vxevh+p/k/s9/c6f5WIH1lJ9Lbz/SzfvYUOiTs6sdHa9ubkwZ+p6iZ23R7X3hXajQVVLofr50+LF6cP28UD42b79ePj3qsP1hTXqdQpy+1y3m17UWLlrRcc7FVXDT9sWH1OwHQHqNae8lnTatl1Neq0lFu5TVf4f2kpeM42VsQkryr29mBEUM6dIo96VVSd6KmoM7vOONrCMJCIitqVoSQjItzLiiOBIHMNEIIlMHE3nAzF5Z4dj+2LBbnzftKVcbdI7c4zG9yHTnKs2zE+WWyGNNg2SBscGIJMHwvXCiJCCrbSZmT5hqG52hViaV7q5DFMO7xCZMUk3TnbKSbRZRcGhG7oHy5wc6sfFGwmU5jASoywG09tQFRKK62raQSXGOsJFmr1IqkrxnDb4jhYB5xt60iiZl5gK0sk5MQzcUIobjCQEUwVJCJhaMTGQfNhBw4o2y+0ZcJvRTcO3+3PczGZTIzKwHIbec5BhtZwoEyu5CgZXPESVkmio5asVMcgJngNcu+RbhExmt7DkMMTHZDcm2XLJuACuDd+Ru4yyZR4kpgcC44Tk8TkTVWK5UAEbrRuc4wP229/J3alUc6i7C0bU9aHrd4ePdNrG4M6qzNX+pq8Wb9/li9PGL0b3N+aXQeocesPSmj1OrPe5t0Hb1muruz1f8Tqa7svxJV8MZfOtseh/P7afR3Nr1uyWjSc/qs6eVMrX4dqVP3Z0+Mc5kruZTkKI0UQy+0eJnBURShgE+I+Viy86kXgc3LxzYcXPlzjy+fGx8H/AK1PdZtgyp9tbq23jzrAUFBbZPMICoBJ0gcUsWSqmo1NU5VDLzGK2/8Ac52kylIZPEZNzROm61ZKUzlOVboZTkE5ecggv5dHv3LdP85G/kvFh+APvW+vcX+t57+nRHfIXsd9POv5DH/mYC+SqVqmt5z41rFj1fMLapjyafHX69V4sj0c8fPB8Pl8OK5/zQ91HOupOqdtdRVVarmWX1M6aJ3+V3Z0cE6p08Pl4RJ/J/tNoeWcqyfLZStaVnalOqVvV0Sq4vLz8fOLS7Y7Q2TVe39XufcG3pe6D6V7yG7WshoLd0lu1KOrDkGSjOwJJR3EkExiMrwWK8xKVAUxAy56YGQuBPIanDkH94Y4CjG013toeLqPs9P7CTyYqIeoDOwy5u5+4zcSWMnow9OuKr2UlRvAgtlPRh4ZQ8TOESJiMhcOScwIGFOhCz0/7ePM3bmkGPHbaO/tP1J7Ydv+PHVGs1HJ3/o+rfVcsnUaL0ZOZ7XCEHu2q9FikOwixa+568oNJ4o93T11LfuUe38bkttMVlFlIzOAVhmtBQIllRbbxckbFJyHozEgjQ4A8wZiIMQuEIeS10rNRMSa33mOp0ppycmG8UtwdrkhuF0k4oV06RPu0rBOcBduLSpc0wJA0pGRjqTNhMEhQDQYY8qEUz1F7fPL/c+pu7x22lsCuoze7dq+P/SqmysOoZ1X9PUcqjJ9/wDE+PCEaO8IROEInCEf/9k=) no-repeat scroll 0 0
}

.wishlist-share ul li a:hover {
    background-position: 0 100%
}

.account-content-area {
    margin-bottom: 60px
}

.account-content-area #create-account-form,.account-content-area #login-form {
    background: #fbfbfb none repeat scroll 0 0;
    border: 1px solid #d6d4d4;
    line-height: 20px;
    margin: 0 0 30px;
    min-height: 319px;
    padding: 14px 18px 20px
}

.page-subheading {
    border-bottom: 1px solid #d6d4d4;
    color: #555454;
    font-family: Open Sans,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
    padding: 0 0 15px;
    text-transform: uppercase
}

.account-content-area #create-account-form p {
    margin-bottom: 8px
}

#create-account-form .form-group {
    margin: 0 0 20px
}

.account-content-area label {
    color: #333;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px;
    width: 100%
}

.account-content-area .account-input {
    background-color: #fff;
    border: 1px solid #d6d4d4;
    border-radius: 0;
    box-shadow: none;
    color: #9c9b9b;
    display: block;
    font-size: 13px;
    height: 27px;
    line-height: 1.42857;
    width: 271px;
    padding: 3px 5px;
    transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
    vertical-align: middle;
    outline: none
}

.account-content-area .account-input:focus {
    border: 1px solid #fff
}

#submitcreate {
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.42857;
    outline: medium none;
    padding: 2px;
    text-align: center;
    background-color: #9e9e9e;
    background-image: linear-gradient(180deg,#fdaa02,#fe9702);
    background-image: -moz-linear-gradient(center top,#fdaa02,#fe9702)
}

#submitcreate>span {
    color: #fff;
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    text-transform: uppercase
}

#submitcreate:hover {
    background: #979797;
    color: #fff
}

#submitcreate span i {
    display: inline-block;
    font-size: 24px;
    margin: -4px 10px 0 0;
    vertical-align: -2px
}

.lost-password.form-group a {
    color: #777;
    text-decoration: underline
}

.lost-password.form-group>a:hover {
    color: #979797
}

.form-content button#submitlogin {
    background: #282828 none repeat scroll 0 0;
    border: none;
    color: #fff;
    padding: 0
}

.form-content button#submitlogin span {
    color: #fff;
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    text-transform: uppercase
}

.form-content button#submitlogin span i {
    display: inline-block;
    font-size: 24px;
    margin: -4px 10px 0 0;
    vertical-align: -2px
}

.form-content button#submitlogin:hover {
    background: #979797;
    color: #fff
}

.contact-us-area {
    margin-bottom: 60px
}

.contact-form-box {
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJwAAAAHCAYAAAD9GSTNAAAAbklEQVRYw2M07j30n4E2oOlMkW09wyAETwUF6oBUI8PgBE3S7z8MaLiZ9B3GJUVxuDGNJrbRxEYkoEq4MY0mttHERq/ERosEN5rYyAw3IB72iY3aCW40sY0mNroluNHENprY6JbgRhPbaGIjGgAAACE3iU8iiiIAAAAASUVORK5CYII=) repeat-x scroll 0 0;
    box-shadow: 0 5px 13px rgba(0,0,0,.17);
    padding: 23px 0 0;
    margin: 0 0 30px
}

.contact-form-box fieldset {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABJIAAAFoCAMAAAA7AiH1AAAAHlBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbYEd3AAAACnRSTlMAAAECAwQFBgcIKUhPxAAAC3xJREFUeAHs2k1y2zoURGEYPyC1/w0/80lB0V2XTIsoK4l1zlyY6Ruwb7p91mv6+EjfGn0Q/eDm/x+p9k2jdLu31Jz+SJBEBEm5LretQRIqQRLRRPMeKUnrVkclSCK60IRHfd0SktbRgkqQRPRsVz1a1tGOpPVrSyvpW4MkIkgqbRF6HiStI1SCJKJLXfRI20iKQNpCJUgicnvWo/+LTEqK0QiVIInI7VmPRgpTOvAIlfwgicj3KCoiaTnu/DSAIInIm/uX45SkRUIlP0giuuCR9IWkCKHPUMkKkogsj0QX7UGSitSDhkolESTRE0FSqf3Ull2/SFKP4vjcDUn0ZJBUmkPL6E5SCBIq+UESkeORgdJGUgwSKvlBEpHlkYHSjqRuNlSKPncTJBEk5dqusbKRFP6ySV3aj3AESUTRvNalJoWqPEiKfmewhEpbkESkHnXJYCUmqY1QCZKI3HyPNCXJEMlQqZVE70sSUSrN8MgwKe3faF5//wgHSZReGOm8dpGUO0lHItVdsyoRJEESHqkpoUk7kuS3mqtSTgRJb0ISZccjg5QdSYFI9agmcRoASW9MEuXafY/CApMCkuppjHCQBEnkz2ueJwFJ3gOoBEmQRL5HPieDJF+kCyqVRD+MJEiictkjwyQlqUrlnq8SIxwkQdLbzGuGRwYnStKhSEVyPnejEiRBEnN/oJF0aNKSekxSkVBpJkiCJDzSYpJ6MkWaV6lmSKJ/kyTKdd4jwyQlSR/xVaocLEHSu5PE+VHVfEp+Q1Ix4jTgLEiCJOb+YhSTZIiESvOBBCThkWGST1IUpwGQBEnM/b5HLknHIuVdjHCQBEl2zGuGJGpSSJI8I6ESJEGSHR4ZjkQktZikHMdpACRBkhtzf46LSWpKkiOSpxKnAZAEScz9FiJHJOnD+TxGuOMgCZKY13xCBhXnJGUJlWaCJEjCI80jSV58sUoFkl4fJFF5rUeqh0VStuM0QIMkSGLud7pKkhEqSZAEScz9kyT5IqESJEGSHx7ZJg2S2n/s3UFq41AURFGjkP1vOaNMhK3IL45yzT+1ANPQcAiq4v05SXOV+tMAJCFJ3T/3aPxn0hmSvnF4SiWDJSQhyfxoT8iQpHu/NlDJNABJSFL3HwgyI+m2j2nAiSAJSer+Iz7mJN2H9qf0b5kgCUk+Z1/h0T6/Jen2KAZL+yAJSeZHp+mYk3QQ0wAkIUnd/8CjC0gKqNS8ZYIkJLk2MkFjQNIJAEwDkIQkdf+EjPMknf990wAkIUndP/diQNLpLKoSkpDEo7kVc5KKKh187kaSLP45O+BRgCTTACQhSd3fIck0AElIUvcHSAqotCFJkLR1PAqQtI9bJv9Lkqj7Ex4FSHq9SoMSDkmiXrt+flQmyTQASUhS97dIcssESUha4NpInaS1bpkgCUmujfRJMlhCEpLMj0okGSwhCUnmRw2SVrtlgiQkuTZSJmm9WyZIQpJrI2GS1rtlgiQkuTaSJ8lgCUlIMj9qkWQagCQkqftDJJkGIAlJ6v4QSaYBSEKSuj9EkmkAkpCk7g+RZBqAJCSp+0MkmQYgCUnq/jJJpgGQQFK67kdS/5YJkpDk2giSWtMAJCFJ3Y+kxDQASUhS9yMpoBKSkMQjJPWfOUESkjwugqTWYAlJSDI/QlJisIQkJJkfISkwDUASktT9SOrfMkESklwbQVJgsIQkJJkfISkwDUASktT9SOrfMkESklwbQVJgGoAkJKn7kRSYBiAJSep+JLVumSAJSa6NlEii0ucHkpD07OdsHl1AkmlAnCRR9yPJNCBEkqj7FyOJShuSkPQ4W8IjJLllUiFJXBtB0vurNC3hkISkQb12gUdIMg0IkYQkdT+S3DIJkYQk10aQ5JZJhSRxbQRJBkstkpBkfoQk04AYSUgyP0KSWyYtkpDk2giS3DJpkYQk10aQ5JZJiyQkuTaCJIOlFklIMj9CkmlAiyQkqfuRZBrQIglJ6n4kmQbESEKSuh9JpgGQiJGk7keSaUArou5HkmlAIKLuR1I4VBJ1P5LcMilFXBtBkmlAK6LuR5JpQC6i7kcSlYRH5SDJMyficREkIclgScyPkGSwRCXzo2qQZBog6v5mkOSWiXhcpB8kGSyJ+RGSxDSARz5nI8kzJ+JxkX6QZBog6n4kSW0aIOp+JIlbJjzyORtJVHrl526fs3mEJCop4dT9giTTAFH3I+lvQ6XR/4dsPELSm8UtE3U/j5BEJSXcpfWa+RGSsGQaoO4XJLllIq6NIEncMnFtRJBkGiDq/oMgSajEI0GSWybi2giSxC0T10aiQZK4ZeLaiCBJCUcl8yMkiWmAul+QRCUlnGsjSBLTgFbU/UgS0wB1fzlIEtMAdb8gyTRACafuR5KYBqj7a0GSeObE4yKCJCop4dT9SEKSaYC6vxwkCZV4JEiikmdOPC6CJCQZLJkfCZLEYCk4PxIkiWdOPC6CJCS5ZeLaiCBJDJbMjyZBkpgGqPsFSXL9LRPXRgRJYhqg7h8GSWIaoO4XJElfJddG+kGSuGXSvjYiSBLTAHW/IGkc0wB1vyCpFSptL/73RzwSJIlbJq6NfLFzx6gNxkAQRkE4uv+R00y5Nop+hmB4XxlSP4zGXiFpiEqFEa4zrxU8EpLkqwHmfiGpkFsm331tREiSWyaujQhJ3Yxw5n4h6Z+jUvqs0uzR5pGQVIhKab5lMl8b2TwqhiT5akD6OMJlXtvJ3F8NSXLLJEWlwaM95NpIMSTJ73PTT1SKR2/+ybzWD0miUnqtfD7iUTskiUpHLL39M4+EJJVHuNmlWSPzmpCk+giXjjHqz2tCkqg0xyMh6XlUKrH0MvcLSao8d6c7jgrP2UKSqJSONeJRPySJSmm2iEdCksrP3Q/zfCQkqf/cPVd+zhaSRKV0wRGPKiFJVErHHPGoHpJEpXSOEY+EJBVGuLmZIvOakKTih6XnLR4VQpKoxCMhqZ9Wi6XFIyFJJZXWFUc8EpJUUCmdc8QjIUltldINRjwSklRkKf3FofTbbh2mqBGEURSVtLbuf8XJj3wBeVIDgy/WwDmLuNxLC5KEKukRklSHHiFJe2GvHiFJoEdIEpuRIySJvegRksRm5AhJYjNyhCSxHTFCktiQFCFJgCQBSBJQIEkAkgRIEoAkAZIEIEkDkCQASQIkCUCSgAJJApAkQJIAJAmQJABJAiQJQJKAAkkCkCRAkgAkCZAkAEkCJAlAkoACSQKQJECSACQJkCQASQIkCUCSgAJJApAkQJIAJAmQJABJAiQJQJLeAJAkAEkCJAlAkgBJApAkQJIAJAkokCQASQIkCUCSAEkCkCRAkgAkCSiQJABJAiQJQJIASQKQJECSACQJKJAkAEkCJAlAkgBJApAkQJIAJAkokCQASQIkCUCSAEkCkCRAkgAk6T0ASQKQJECSACQJkCQASQIkCUCSgAJJApAkQJIAJAmQJABJAiQJQJKAAkkCkCRAkgAkCZAkAEkCJAlAkgBJOiSpDyTpkCTgRydJkxpAkRZJOiVpByBJ5zpJmtQDirRMkk36MDBJiyRpElDw63tJ0qQ+UKRvJEmUCkCQvk5SNkmUGkCQokhPSXq9SQAFq0mKJGkS8IEirZOkSUDXsU6STfo0MEmTJJu0CTBJk6RskigBHUcWaZ0kTQJqjq+TlE0SJaDhWBbpvNwzSZoE/JciRZLuk6Rskip1gB5FkSJJs0nRJF0C3uAI1zFF+puk500aB0DR9eUkTZKySaLUBYIURZokZZNEqQsEKYo0SZpNmiaJElB0zSLNJE2Sskmi1AWCFEWaJL1ukiwVgBwtijRJ+tekcQUou2WRnpM0TepHCRCkcUaSoknlKAGClEWaJGWT+lECBCmLdL88pknjVq0SoEcZpCnSY5IUTep1CVCjLNIkKZt03gDqzizSnyRlk/pVAvToVZEevwF7Ro5Kc09NYQAAAABJRU5ErkJggg==) no-repeat scroll bottom/contain;
    padding: 0 19px 21px
}

.contact-form-box .page-subheading {
    border: none;
    margin-bottom: 0;
    padding-left: 0
}

.contact-form-box .form-group {
    margin-bottom: 7px
}

.contact-form-box label {
    color: #333;
    display: inline-block;
    margin: 0 0 6px
}

.contact-form-box div.selector {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAesAAAAbCAIAAADTdDBbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzJGQUY2NzhDNTU4MTFFNTg3M0M5OTJDNTM1RDQyMDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzJGQUY2NzlDNTU4MTFFNTg3M0M5OTJDNTM1RDQyMDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMkZBRjY3NkM1NTgxMUU1ODczQzk5MkM1MzVENDIwOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMkZBRjY3N0M1NTgxMUU1ODczQzk5MkM1MzVENDIwOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk288qMAAAFWSURBVHja7Ny9asJQAIBR00YHU3Cpi0uR6qBSXCrUoT6zfQT7BlIRxEFcnZxcYrGBQgeLtmgxSTkHlQv5Ge7wcbkkBtPJpABADgVxHJsFgNyZz2ahWQC4pOVicR2e1d737fauXk8GCg5wUZvN5qHbPecOb+Px5+DKbALklIID5JVdFIAU7Ha70y4MgsAaHCD3FBxAwQG4LPvgAOl7HY3W6/Who4+9Xq1WswYHyKLbavXQoWKxWKlUrMEBsmLvWZRWq1UMw+l0undaqVR6HgzK5fLX+Z5FAcicRrPZbre/5zuKokOXKDhAFiP+Y74LdlEAshbx5He5XD71+8fzreAA6TjyTuZ9o5F8Cr94b9MuCkBeKTiAggOg4AAoOMB/5lkUgBSc/P/gCg6Q9vI5/IP8KjjARa1Wq5fh8Jw73ERRq9NJBkEcxyYUIHfms1mYfE0EQB59CDAALX5GcreZToMAAAAASUVORK5CYII=) no-repeat scroll right -1px;
    border: 1px solid #d6d4d4;
    font-size: 12px;
    height: 27px;
    line-height: 27px;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative
}

.selector #id-contact.form-control {
    border: 0
}

.contact-form-box .form-group .form-control:focus {
    border: 1px solid #fff;
    box-shadow: 0 0 0
}

.contact-form-box .selector:hover {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAesAAAAbCAIAAADTdDBbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjZCOEIzQjFDNjQyMTFFNTg3NEVGNTk1OTEzM0I1Q0IiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjZCOEIzQjJDNjQyMTFFNTg3NEVGNTk1OTEzM0I1Q0IiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2NkI4QjNBRkM2NDIxMUU1ODc0RUY1OTU5MTMzQjVDQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2NkI4QjNCMEM2NDIxMUU1ODc0RUY1OTU5MTMzQjVDQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqFJulQAAAFVSURBVHja7NxBSgJRAIBhp1xpO10n7hIJIc+QW/UOuQyX0QWk49gZpANIEgwuJJcewM0YJglBoRYazkx8HygPnjOLt/h5PB2Dl9EoA0AKBVEUWQWA1BmHYdYqABzT62Rymj2ovW+LRalcXg0UHOCo5vP5Za12yB2eh8P14MRqAqSUggOklVMUgBgsl8v9LgyCwB4cIPUUHEDBATgu5+AA8Xvo9abT6bbZm07nql63BwdIootKZdtULpc7L5U2Tik4QAyWXzVbrWa7vTHfd/f3hULh85MKDpA4jUbjW8TX+S4Wi9suUXCAJEb8x3xnfJMJkLSIr96fBoPbbnd3vhUcIB47nsm8/pD5xXObTlEA0krBARQcAAUHQMEB/jO/RQGIwd7/D67gAHFvn7N/kF8FBziq2Wz22O8fcoezfL5Sra4GQRRFFhQgdcZhmF29LARAGr0LMABVJF1uBIovmQAAAABJRU5ErkJggg==) no-repeat scroll right -1px
}

.contact-form-box .form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent none repeat scroll 0 0;
    border: 0;
    border-radius: 0;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    height: 27px;
    max-width: 270px;
    outline: 0 none;
    padding: 0 0 0 10px;
    text-shadow: 0 1px 0 #fff;
    width: 100%
}

.contact-form-box .form-group .form-control {
    width: 100%
}

.form-control.grey {
    background: #fbfbfb
}

.contact-form-box div.uploader {
    background: transparent none repeat scroll 0 0;
    cursor: pointer;
    height: 27px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.contact-form-box div.uploader input {
    background: transparent none repeat scroll 0 0;
    border: none;
    cursor: default;
    float: right;
    height: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

div.uploader span.filename {
    background: #fbfbfb none repeat scroll 0 0;
    border: 1px solid #d6d4d4;
    color: #777;
    cursor: default;
    display: block;
    margin-right: 2px;
    padding: 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 160px
}

div.uploader span.action,div.uploader span.filename {
    float: left;
    font-size: 13px;
    height: 27px;
    line-height: 27px;
    overflow: hidden
}

div.uploader span.action {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF4AAAAbCAIAAAB6Ja/mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MUZDQUJGQkNDNjlCMTFFNTg2RDVCNzk1OUQyMTUwQTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUZDQUJGQkRDNjlCMTFFNTg2RDVCNzk1OUQyMTUwQTYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxRkNBQkZCQUM2OUIxMUU1ODZENUI3OTU5RDIxNTBBNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxRkNBQkZCQkM2OUIxMUU1ODZENUI3OTU5RDIxNTBBNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po7eCvsAAACISURBVHja7JexCcAgEABNcAQrS/khzBpuG1eJWDqGGhBSGCxSBu4KtT5OH7cQgjFGwQudcz68R8TElZIep1IKOh6stfe6I2IFatZvzdhaa7igmq/VYGKlRnGhqIZqqIZqqIZqqIZq+EPxhwKqoRomFBOKaqjmH2pEBBezmlrrGSMiJpxzXYABAGxLLkNhZrRVAAAAAElFTkSuQmCC) repeat scroll 0 0;
    color: #fff;
    cursor: pointer;
    display: inline;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0,0,0,.1);
    width: 90px
}

.contact-form-box .form-group .form-control {
    border: 1px solid #d6d4d4;
    border-radius: 0;
    box-shadow: none;
    color: #777;
    cursor: unset;
    font-size: 13px;
    font-weight: 300;
    height: 27px;
    line-height: 1.42857;
    max-width: 100%;
    padding: 3px 5px
}

.contact-form-box .form-group .form-control,.contact-form-box textarea {
    display: block;
    transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
    vertical-align: middle
}

.contact-form-box textarea {
    height: 257px!important;
    padding: 3px 5px!important;
    resize: none;
    width: 100%!important
}

.contact-form-box .submit {
    margin-top: 13px
}

.contact-form-box .submit button {
    background: #282828 none repeat scroll 0 0;
    border: none;
    color: #fff;
    font-size: 13px;
    line-height: 1.42857;
    margin-bottom: 0;
    margin-left: 15px;
    padding: 0
}

.contact-form-box .submit span {
    color: #fff;
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    text-transform: uppercase
}

.contact-form-box .submit span i.right {
    margin-left: 9px;
    margin-right: 0
}

.contact-form-box .submit button:hover {
    background: #979797
}

.home-hello-info {
    color: #777;
    font-weight: 300;
    line-height: 22px;
    padding-bottom: 30px
}

.about-page-cntent h3 {
    background: transparent none repeat scroll 0 0;
    border: none;
    color: #333;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 20px;
    padding: 0;
    text-transform: uppercase
}

blockquote {
    background: #f7f7f7 none repeat scroll 0 0;
    border: none;
    font-size: 14px;
    font-style: italic;
    margin: 20px 0;
    padding: 30px 45px
}

.our-services-info {
    background: #f6f6f6 none repeat scroll 0 0;
    margin: 0 0 60px;
    padding: 60px 0
}

.f-title h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 60px;
    padding-bottom: 5px;
    position: relative
}

.f-title .title:before {
    background: #333 none repeat scroll 0 0;
    border-radius: 3px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    margin: 0 auto;
    padding: 0 30px;
    position: absolute;
    right: 0;
    width: 10%
}

.home-our-team .single-service i {
    background: #c2c2c2 none repeat scroll 0 0;
    border: 3px solid #f6f6f6;
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
    height: 45px;
    line-height: 41px;
    position: relative;
    text-align: center;
    transition: all .5s ease 0s;
    width: 45px
}

.home-our-team .single-service h4 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0 10px;
    text-transform: uppercase
}

.home-our-team .single-service p {
    color: #636363;
    font-weight: 400;
    margin: 0
}

.home-our-team .single-service {
    margin: 33px 0 0
}

.team-info .mask {
    background: rgba(207,92,124,.3) none repeat scroll 0 0;
    border-radius: 100%;
    height: 95%;
    left: 0;
    margin: auto;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 7px;
    transition: all .5s ease 0s;
    width: 95%
}

.team-info .mask .mask-inner {
    margin-top: -16px;
    position: absolute;
    top: 50%;
    width: 100%
}

.team-info .mask .mask-inner i {
    background: #fff none repeat scroll 0 0;
    border-radius: 100%;
    color: #979797;
    height: 33px;
    line-height: 33px;
    transition: all .5s ease 0s;
    width: 33px
}

.team-img img {
    border: 7px solid transparent;
    border-radius: 100%;
    height: 100%;
    max-width: 100%
}

.item-team:hover .team-img .mask {
    opacity: 1;
    transform: rotate(1turn)
}

.team-img {
    border: 1px solid transparent;
    border-radius: 100%;
    display: inline-block;
    height: auto;
    margin: 0 auto 10px;
    position: relative;
    transition: all .4s ease 0s;
    width: auto
}

.item-team:hover .team-img {
    border-color: #979797
}

.home-our-team {
    margin-bottom: 90px
}

.f-title h3.text-headss {
    margin: 0 0 10px
}

.item-team.text-center h4 {
    color: #232323;
    text-transform: capitalize
}

.item-team.text-center h5 {
    font-weight: 400;
    text-transform: capitalize
}

#blog-search {
    border: 1px solid #e5e5e5
}

.blog-sidebar {
    margin-bottom: 30px
}

#blog-search input {
    border: none;
    color: #5f5f5f;
    font-weight: 300;
    max-height: 30px;
    padding: 5px 10px;
    width: 80%;
    outline: none
}

#blog-search .submit {
    background: transparent none repeat scroll 0 0;
    border: 0;
    color: #5f5f5f;
    float: right;
    line-height: 30px;
    padding: 0 10px;
    text-align: right;
    width: 20%
}

.blog-sidebar ul li {
    color: #5f5f5f;
    font-size: 12px;
    line-height: 22px;
    overflow: hidden;
    padding: 3px 1px;
    text-transform: uppercase
}

.blog-sidebar ul li a {
    color: #5f5f5f;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize
}

.blog-sidebar ul li a:before {
    color: #9a9a9a;
    content: "\F138";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 1;
    margin-right: 10px
}

.blog-sidebar .post-thumb {
    float: left;
    margin-right: 10px;
    width: 80px
}

.blog-sidebar.post li {
    margin-bottom: 15px
}

.blog-sidebar.post ul li a:before {
    display: none
}

.blog-sidebar.post .post-info {
    display: inline-block
}

.blog-sidebar.post ul li .post-thumb a {
    display: inline-block;
    width: 80px
}

.blog-sidebar.post .post-info>a {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    margin-bottom: 5px
}

.blog-sidebar.post .post-info>span {
    color: #5f5f5f;
    display: block;
    font-weight: 400
}

.blog-sidebar.post .post-info>a:hover,.blog-sidebar a:hover {
    color: #979797
}

.blog-sidebar .tags-list {
    background: transparent none repeat scroll 0 0;
    border: 0;
    display: block;
    font-size: 12px
}

.blog-sidebar .tags-list li {
    display: inline-block!important;
    margin: 0 2px 10px 0
}

.blog-sidebar .actions a,.blog-sidebar .tags-list li a {
    border: 1px solid #e1e1e1;
    color: #9d9d9d;
    display: inline-block;
    font-size: 12px!important;
    line-height: 1;
    padding: 8px 17px;
    text-transform: capitalize
}

.blog-sidebar ul.tags-list li a:before {
    display: none
}

.blog-sidebar .actions a:hover,.blog-sidebar ul.tags-list li a:hover {
    background: #979797;
    color: #fff;
    border: 1px solid #979797
}

.blog-sidebar .actions a {
    margin: 15px 0 0
}

.single-blog {
    margin: 0 0 60px;
    width: 100%
}

.post-thumbnail {
    margin: 0 0 50px;
    width: 100%
}

.post-thumbnail>a {
    display: block
}

.postinfo-wrapper {
    padding-left: 100px;
    position: relative;
    width: 100%
}

.blog-page-area .post-date {
    background: #666 none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-weight: 700;
    left: 0;
    padding: 18px 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 70px
}

.blog-page-area .post-date .day {
    display: block;
    font-size: 20px
}

.blog-page-area .post-date span {
    text-transform: uppercase
}

.blog-post-title {
    font-size: 28px
}

.blog-post-title a {
    color: #545454
}

.blog-post-title>a:hover {
    color: #979797
}

.entry-meta {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    float: left;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 30px;
    padding: 10px 0;
    text-transform: uppercase;
    width: 100%
}

.entry-meta,.entry-meta span {
    color: #909295
}

.entry-meta a {
    color: #666
}

.entry-meta a:hover {
    color: #979797
}

.entry-summary {
    float: left;
    line-height: 30px;
    margin: 0 0 20px;
    width: 100%
}

.entry-summary p {
    font-weight: 300;
    line-height: 26px;
    margin: 0 0 15px
}

.blog-post-title {
    background: transparent none repeat scroll 0 0;
    border: none;
    color: #666;
    font-size: 25px;
    margin: 0 0 20px;
    position: relative;
    text-align: left
}

.postinfo-wrapper .post-info .readmore {
    background: #383838 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    padding: 0 28px;
    text-transform: uppercase
}

.postinfo-wrapper .post-info .readmore:hover {
    background: #979797;
    color: #fff
}

.blog-page-area {
    padding-bottom: 30px
}

.single-blog blockquote {
    background: #e0e0e0 none repeat scroll 0 0;
    border: none;
    font-size: 14px;
    font-style: italic;
    margin: 20px 0;
    padding: 30px 45px
}

.single-blog .shere-icon {
    clear: both;
    display: -moz-inline-box;
    margin: 30px 0 55px;
    overflow: hidden
}

.single-blog .share-icon h3 {
    color: #252525;
    float: left;
    font-size: 14px;
    line-height: 34px;
    margin: 0 20px 0 0;
    text-transform: uppercase
}

.single-blog .share-icon ul li {
    border-left: 1px solid #e5e5e5;
    float: left;
    line-height: 34px
}

.single-blog .share-icon ul li:first-child {
    border: none
}

.single-blog .share-icon ul li a {
    color: #666;
    display: inline-block;
    font-size: 22px;
    line-height: 34px;
    padding: 0 25px;
    text-align: center
}

.single-blog .share-icon {
    clear: both;
    display: -moz-inline-box;
    margin: 30px 0 55px;
    overflow: hidden
}

.single-blog .share-icon ul li a.facebook:hover {
    color: #3b579d
}

.single-blog .share-icon ul li a.twitter:hover {
    color: #3acaff
}

.single-blog .share-icon ul li a.pinterest:hover {
    color: #ce2027
}

.single-blog .share-icon ul li a.google-plus:hover {
    color: #d11717
}

.single-blog .share-icon ul li a.linkedin:hover {
    color: #0097bd
}

.author-info {
    float: left;
    margin: 0 0 30px;
    width: 100%
}

.author-avatar {
    float: left;
    width: 10%
}

.author-description {
    float: left;
    padding-left: 20px;
    width: 90%
}

.author-description h2 {
    color: #252525;
    font-size: 18px;
    margin: 0 0 10px
}

.author-description h2 a {
    color: #666;
    text-transform: capitalize
}

.author-description h2 a:hover {
    color: #979797
}

.author-description p {
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 300
}

.reply-comment-area {
    overflow: hidden;
    width: 100%
}

.reply-comment-area h3 {
    border-top: 1px solid #e5e5e5;
    color: #252525;
    font-size: 24px;
    margin: 0 0 50px;
    padding: 22px 0 0
}

.single-reply {
    margin: 0 0 20px;
    overflow: hidden
}

.user-comment {
    padding-left: 25px
}

.comment-author {
    float: left;
    width: 7%
}

.comment-author img {
    border-radius: 100%
}

.comment-info {
    border: 1px solid #ececec;
    border-radius: 3px;
    float: right;
    padding: 10px;
    position: relative;
    width: 91%
}

.comment-info:before {
    background: #fff none repeat scroll 0 0;
    border-bottom: 1px solid #ececec;
    border-left: 1px solid #ececec;
    content: "";
    display: block;
    height: 10px;
    left: -5px;
    position: absolute;
    top: 10px;
    transform: rotate(45deg);
    width: 10px
}

.comment-author-info {
    color: #9d9d9d;
    font-size: 12px;
    line-height: 1;
    margin: 0 0 15px
}

.comment-author-info a {
    color: #666
}

.comment-author-info a:hover {
    color: #979797
}

.comment-author-info span {
    margin-left: 10px;
    margin-right: 10px
}

.comment-info p {
    color: #6a6a6a;
    font-weight: 300
}

.user-comment-form-area {
    margin-bottom: 0;
    margin-top: 45px;
    overflow: hidden
}

.user-comment-form-area h3 {
    border-top: 1px solid #e5e5e5;
    color: #252525;
    font-size: 24px;
    margin: 0 0 50px;
    padding: 22px 0 0;
    text-transform: uppercase
}

.user-comment-form-area p {
    color: #9d9d9d;
    margin-bottom: 20px
}

.user-comment-form-area p span {
    color: #db3838
}

#com-submit {
    background: #383838 none repeat scroll 0 0;
    border: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    margin-top: 20px;
    padding: 8px 25px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap
}

#com-submit:hover {
    background: #979797 none repeat scroll 0 0
}

.form-list .fields {
    overflow: hidden;
    width: 100%
}

.form-list .fields .field {
    float: left;
    width: 33.33%
}

.form-list li {
    margin: 0 0 8px;
    overflow: hidden
}

.form-list label {
    color: #666;
    float: left;
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 5px;
    position: relative;
    z-index: 0
}

.form-list label em {
    color: #eb340a;
    float: right;
    font-style: normal;
    position: absolute;
    right: -8px;
    top: 0
}

.form-list .input-box {
    clear: both;
    display: block;
    width: 100%
}

.form-list .fields.fields-3 .field input {
    width: 97%
}

.form-list .input-text,.form-list select {
    background: #fbfbfb none repeat scroll 0 0;
    width: 97%;
    border: 1px solid #d6d4d4;
    border-radius: 0;
    box-shadow: none;
    color: #777;
    cursor: unset;
    display: block;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.42857;
    padding: 3px 5px;
    transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
    vertical-align: middle;
    outline: none
}

.form-list .fields .field .input-box textarea:focus,.form-list .input-text:focus,.form-list select {
    border: 1px solid #fff
}

.form-list .fields .field .input-box textarea {
    width: 99%
}

.form-list .fields .field.comment {
    width: 100%
}

.error-text-area {
    text-align: center;
    padding: 65px 0;
    position: relative
}

.error-text-area h1 {
    color: #363636;
    font-size: 35px;
    font-weight: 600;
    margin-top: 14px
}

.error-text {
    z-index: 9;
    position: relative
}

.error-text>a {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #282a40;
    color: #282a40;
    display: inline-block;
    font-size: 16px;
    margin-top: 25px;
    padding: 14px 18px;
    text-transform: uppercase;
    transition: background .3s ease 0s,color .2s ease 0s
}

.error-text>a:hover {
    background: #979797 none repeat scroll 0 0;
    border: 2px solid #979797;
    color: #fff
}

.modal {
    z-index: 13000
}

#productModal .modal-dialog {
    margin: 5% auto;
    max-width: 96%;
    min-height: 300px;
    padding: 20px;
    transition: all .5s ease 0s;
    width: 870px
}

#productModal .modal-header {
    border: 0;
    padding: 0;
    min-height: auto
}

#productModal button.close {
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all .3s ease 0s;
    z-index: 2;
    opacity: 1
}

#productModal button.close span {
    border: 1px solid #909295;
    border-radius: 60px;
    color: #909295;
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    padding-top: 1px
}

#quickview-wrapper .modal-content {
    border-radius: 0
}

.modal-product {
    overflow: hidden
}

a.see-all {
    color: #232323;
    display: inline-block;
    margin-bottom: 10px
}

.modal-product .product-images {
    float: left;
    width: 40%
}

.modal-product .product-images .quick-thumbnails {
    float: left;
    width: 100%
}

.modal-product .product-images .main-image {
    float: left;
    margin-bottom: 10px;
    width: 100%
}

.modal-product .product-images .main-image img {
    box-shadow: none
}

.modal-product .product-info {
    float: left;
    padding-left: 30px;
    width: 60%
}

.modal-product .product-info h1 {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 20px
}

.modal-product .product-info .price-box {
    float: left;
    margin: 0 0 12px;
    width: 100%
}

.modal-product .product-info .price-box p {
    margin: 0
}

.modal-product .product-info .price-box .special-price {
    color: #979797;
    font-size: 24px;
    font-weight: 400
}

.modal-product .product-info .see-all {
    color: #42414f;
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: underline
}

.numbers-row>input {
    float: left;
    height: 40px;
    text-align: center;
    width: 60px;
    border: 1px solid #ddd
}

.quick-add-to-cart .single_add_to_cart_button {
    background: #979797 none repeat scroll 0 0;
    border: none;
    color: #fff;
    float: left;
    font-weight: 700;
    height: 40px;
    margin-left: 15px;
    padding: 0 70px;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

.quick-add-to-cart .single_add_to_cart_button:hover {
    background: #282828 none repeat scroll 0 0
}

.modal-product .product-info .see-all:hover {
    color: #979797
}

h3.widget-title-modal {
    background: transparent none repeat scroll 0 0;
    color: #42414f;
    float: left;
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 5px;
    text-align: left;
    text-transform: none;
    width: 100%
}

.modal-product .product-info .quick-add-to-cart {
    border-bottom: 1px solid #e5e5e5;
    float: left;
    margin: 0 0 20px;
    padding: 0 0 38px;
    width: 100%
}

.modal-product .product-info .quick-desc {
    border-bottom: 1px solid #e5e5e5;
    color: #909295;
    float: left;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    margin: 0 0 25px;
    padding: 0 0 15px;
    width: 100%
}

.modal-product .widget {
    float: left;
    width: 100%
}

.modal-product .widget .widget-title {
    background: none;
    color: #909295;
    float: left;
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 5px;
    text-align: left;
    text-transform: none;
    width: 100%
}

.modal-product .widget .social-icons {
    float: left;
    margin: 0;
    padding: 0
}

.modal-product .widget .social-icons li {
    float: left;
    line-height: 30px;
    list-style: none;
    margin-right: 10px
}

.modal-product .widget .social-icons li .social-icon {
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    color: #909295;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    width: 40px
}

.modal-product .widget .social-icons li .social-icon:hover {
    color: #fff
}

.modal-product .widget .social-icons li .social-icon.facebook:hover {
    background: #3b579d;
    border: 1px solid #3b579d
}

.modal-product .widget .social-icons li .social-icon.twitter:hover {
    background: #3acaff;
    border: 1px solid #3acaff
}

.modal-product .widget .social-icons li .social-icon.pinterest:hover {
    background: #cb2027;
    border: 1px solid #cb2027
}

.modal-product .widget .social-icons li .social-icon.tumblr:hover {
    background: #304e6c;
    border: 1px solid #304e6c
}

.modal-product .widget .social-icons li .social-icon.gplus:hover {
    background: #d11717;
    border: 1px solid #d11717
}

.modal-product .widget .social-icons li .social-icon.linkedin:hover {
    background: #0097bd;
    border: 1px solid #0097bd
}

#scrollUp {
    background: #262b32 none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 100%;
    bottom: 30px;
    color: #fff;
    height: 35px;
    line-height: 35px;
    position: fixed;
    right: 30px;
    text-align: center;
    width: 35px;
    transition: all .3s ease 0s
}

#scrollUp:hover {
    background: #979797;
    color: #fff
}

.cartnumber {
    width: 50px;
    height: 37px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: none;
    padding: 5px;
    text-align: center
}

.hov {
    top: 7px
}

.hov,.note {
    position: absolute;
    z-index: 12
}

.note {
    width: 140px;
    margin-left: 10px;
    font-size: 12px;
    color: #111;
    background: #fff;
    opacity: 0;
    padding: 2px 5px
}

.hov:hover .note,.hovs:hover .note {
    opacity: 1;
    transition: 1s
}

.f12 {
    font-size: 12px
}

.wpdate {
    display: inline-block;
    font-size: 11px;
    width: 58px;
    line-height: 10px;
    height: 100%;
    position: relative;
    top: 10px;
    font-weight: 700
}

@media (max-width: 767px) {
    .home-four-header .header-right-menu ul li,.home-four-header .mainmenu ul#nav>li>a,.home-three-header .header-right-menu ul li,.home-three-header .mainmenu ul#nav>li>a {
        line-height:15px;
        padding: 12px 10px;
        position: inherit;
        text-align: left
    }

    .header-right-menu>ul>li:after {
        background: #ececec none repeat scroll 0 0;
        content: "";
        height: 24px;
        position: absolute;
        right: 0;
        top: 9px!important;
        width: 1px
    }

    .slider-area.home-three-slider {
        margin-bottom: 10px
    }

    .home-three-banner-area img {
        width: 100%
    }

    .home-three-banner-area {
        margin-bottom: 20px
    }

    .nivoSlider {
        margin-top: 20px
    }

    .home-four-header .search,.home-three-header .search {
        top: 49px
    }

    .hclient {
        font-size: 30px!important
    }

    .pas {
        font-family: monstrat-semibold;
        font-size: 30px;
        color: #111
    }

    .coverare,.modal-body,.stockflow {
        overflow: auto
    }

    .coverarea table td {
        padding: 2px .75rem
    }

    .dblocks {
        display: block!important
    }

    .your-order h3 {
        border-bottom: 1px solid #d8d8d8
    }

    .checkbox-form h3,.your-order h3 {
        color: #3f3f3f;
        font-size: 20px;
        margin: 0;
        padding-bottom: 10px;
        text-transform: uppercase;
        width: 100%
    }

    .checkbox-form h3 {
        border-bottom: 1px solid #e5e5e5
    }

    .page-heading {
        border-bottom: 1px solid #d6d4d4;
        color: #555454;
        font: 600 18px/32px Open Sans,sans-serif;
        margin-bottom: 13px;
        overflow: hidden;
        padding: 0 0 17px;
        text-transform: uppercase
    }

    .p-details-tab .nav.nav-tabs>li img {
        border: 0;
        position: relative;
        transition: all .3s ease 0s;
        max-width: 95px;
        width: 100%
    }

    .p-details-tab ul li {
        margin-right: 0;
        margin-bottom: 0;
        width: 25%
    }
}

@media (max-width: 480px) {
    #search-form input {
        background:transparent none repeat scroll 0 0;
        color: #9c9c9c;
        font-size: 13px;
        font-weight: 300;
        height: 24px;
        padding: 2px 18px 2px 13px;
        width: 100%
    }
}

@media print {
    .noprint {
        display: none!important
    }
}

@font-face {
    font-family: Pe-icon-7-stroke;
    src: url(/static/media/Pe-icon-7-stroke.71394c0c.eot);
    src: url(/static/media/Pe-icon-7-stroke.71394c0c.eot?#iefixd7yf1v) format("embedded-opentype"),url(/static/media/Pe-icon-7-stroke.b38ef310.woff) format("woff"),url(/static/media/Pe-icon-7-stroke.01798bc1.ttf) format("truetype"),url(/static/media/Pe-icon-7-stroke.c45f7de0.svg#Pe-icon-7-stroke) format("svg");
    font-weight: 400;
    font-style: normal
}

[class*=" pe-7s-"],[class^=pe-7s-] {
    font-family: Pe-icon-7-stroke;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.pe-7s-album:before {
    content: "\E6AA"
}

.pe-7s-arc:before {
    content: "\E6AB"
}

.pe-7s-back-2:before {
    content: "\E6AC"
}

.pe-7s-bandaid:before {
    content: "\E6AD"
}

.pe-7s-car:before {
    content: "\E6AE"
}

.pe-7s-diamond:before {
    content: "\E6AF"
}

.pe-7s-door-lock:before {
    content: "\E6B0"
}

.pe-7s-eyedropper:before {
    content: "\E6B1"
}

.pe-7s-female:before {
    content: "\E6B2"
}

.pe-7s-gym:before {
    content: "\E6B3"
}

.pe-7s-hammer:before {
    content: "\E6B4"
}

.pe-7s-headphones:before {
    content: "\E6B5"
}

.pe-7s-helm:before {
    content: "\E6B6"
}

.pe-7s-hourglass:before {
    content: "\E6B7"
}

.pe-7s-leaf:before {
    content: "\E6B8"
}

.pe-7s-magic-wand:before {
    content: "\E6B9"
}

.pe-7s-male:before {
    content: "\E6BA"
}

.pe-7s-map-2:before {
    content: "\E6BB"
}

.pe-7s-next-2:before {
    content: "\E6BC"
}

.pe-7s-paint-bucket:before {
    content: "\E6BD"
}

.pe-7s-pendrive:before {
    content: "\E6BE"
}

.pe-7s-photo:before {
    content: "\E6BF"
}

.pe-7s-piggy:before {
    content: "\E6C0"
}

.pe-7s-plugin:before {
    content: "\E6C1"
}

.pe-7s-refresh-2:before {
    content: "\E6C2"
}

.pe-7s-rocket:before {
    content: "\E6C3"
}

.pe-7s-settings:before {
    content: "\E6C4"
}

.pe-7s-shield:before {
    content: "\E6C5"
}

.pe-7s-smile:before {
    content: "\E6C6"
}

.pe-7s-usb:before {
    content: "\E6C7"
}

.pe-7s-vector:before {
    content: "\E6C8"
}

.pe-7s-wine:before {
    content: "\E6C9"
}

.pe-7s-cloud-upload:before {
    content: "\E68A"
}

.pe-7s-cash:before {
    content: "\E68C"
}

.pe-7s-close:before {
    content: "\E680"
}

.pe-7s-bluetooth:before {
    content: "\E68D"
}

.pe-7s-cloud-download:before {
    content: "\E68B"
}

.pe-7s-way:before {
    content: "\E68E"
}

.pe-7s-close-circle:before {
    content: "\E681"
}

.pe-7s-id:before {
    content: "\E68F"
}

.pe-7s-angle-up:before {
    content: "\E682"
}

.pe-7s-wristwatch:before {
    content: "\E690"
}

.pe-7s-angle-up-circle:before {
    content: "\E683"
}

.pe-7s-world:before {
    content: "\E691"
}

.pe-7s-angle-right:before {
    content: "\E684"
}

.pe-7s-volume:before {
    content: "\E692"
}

.pe-7s-angle-right-circle:before {
    content: "\E685"
}

.pe-7s-users:before {
    content: "\E693"
}

.pe-7s-angle-left:before {
    content: "\E686"
}

.pe-7s-user-female:before {
    content: "\E694"
}

.pe-7s-angle-left-circle:before {
    content: "\E687"
}

.pe-7s-up-arrow:before {
    content: "\E695"
}

.pe-7s-angle-down:before {
    content: "\E688"
}

.pe-7s-switch:before {
    content: "\E696"
}

.pe-7s-angle-down-circle:before {
    content: "\E689"
}

.pe-7s-scissors:before {
    content: "\E697"
}

.pe-7s-wallet:before {
    content: "\E600"
}

.pe-7s-safe:before {
    content: "\E698"
}

.pe-7s-volume2:before {
    content: "\E601"
}

.pe-7s-volume1:before {
    content: "\E602"
}

.pe-7s-voicemail:before {
    content: "\E603"
}

.pe-7s-video:before {
    content: "\E604"
}

.pe-7s-user:before {
    content: "\E605"
}

.pe-7s-upload:before {
    content: "\E606"
}

.pe-7s-unlock:before {
    content: "\E607"
}

.pe-7s-umbrella:before {
    content: "\E608"
}

.pe-7s-trash:before {
    content: "\E609"
}

.pe-7s-tools:before {
    content: "\E60A"
}

.pe-7s-timer:before {
    content: "\E60B"
}

.pe-7s-ticket:before {
    content: "\E60C"
}

.pe-7s-target:before {
    content: "\E60D"
}

.pe-7s-sun:before {
    content: "\E60E"
}

.pe-7s-study:before {
    content: "\E60F"
}

.pe-7s-stopwatch:before {
    content: "\E610"
}

.pe-7s-star:before {
    content: "\E611"
}

.pe-7s-speaker:before {
    content: "\E612"
}

.pe-7s-signal:before {
    content: "\E613"
}

.pe-7s-shuffle:before {
    content: "\E614"
}

.pe-7s-shopbag:before {
    content: "\E615"
}

.pe-7s-share:before {
    content: "\E616"
}

.pe-7s-server:before {
    content: "\E617"
}

.pe-7s-search:before {
    content: "\E618"
}

.pe-7s-film:before {
    content: "\E6A5"
}

.pe-7s-science:before {
    content: "\E619"
}

.pe-7s-disk:before {
    content: "\E6A6"
}

.pe-7s-ribbon:before {
    content: "\E61A"
}

.pe-7s-repeat:before {
    content: "\E61B"
}

.pe-7s-refresh:before {
    content: "\E61C"
}

.pe-7s-add-user:before {
    content: "\E6A9"
}

.pe-7s-refresh-cloud:before {
    content: "\E61D"
}

.pe-7s-paperclip:before {
    content: "\E69C"
}

.pe-7s-radio:before {
    content: "\E61E"
}

.pe-7s-note2:before {
    content: "\E69D"
}

.pe-7s-print:before {
    content: "\E61F"
}

.pe-7s-network:before {
    content: "\E69E"
}

.pe-7s-prev:before {
    content: "\E620"
}

.pe-7s-mute:before {
    content: "\E69F"
}

.pe-7s-power:before {
    content: "\E621"
}

.pe-7s-medal:before {
    content: "\E6A0"
}

.pe-7s-portfolio:before {
    content: "\E622"
}

.pe-7s-like2:before {
    content: "\E6A1"
}

.pe-7s-plus:before {
    content: "\E623"
}

.pe-7s-left-arrow:before {
    content: "\E6A2"
}

.pe-7s-play:before {
    content: "\E624"
}

.pe-7s-key:before {
    content: "\E6A3"
}

.pe-7s-plane:before {
    content: "\E625"
}

.pe-7s-joy:before {
    content: "\E6A4"
}

.pe-7s-photo-gallery:before {
    content: "\E626"
}

.pe-7s-pin:before {
    content: "\E69B"
}

.pe-7s-phone:before {
    content: "\E627"
}

.pe-7s-plug:before {
    content: "\E69A"
}

.pe-7s-pen:before {
    content: "\E628"
}

.pe-7s-right-arrow:before {
    content: "\E699"
}

.pe-7s-paper-plane:before {
    content: "\E629"
}

.pe-7s-delete-user:before {
    content: "\E6A7"
}

.pe-7s-paint:before {
    content: "\E62A"
}

.pe-7s-bottom-arrow:before {
    content: "\E6A8"
}

.pe-7s-notebook:before {
    content: "\E62B"
}

.pe-7s-note:before {
    content: "\E62C"
}

.pe-7s-next:before {
    content: "\E62D"
}

.pe-7s-news-paper:before {
    content: "\E62E"
}

.pe-7s-musiclist:before {
    content: "\E62F"
}

.pe-7s-music:before {
    content: "\E630"
}

.pe-7s-mouse:before {
    content: "\E631"
}

.pe-7s-more:before {
    content: "\E632"
}

.pe-7s-moon:before {
    content: "\E633"
}

.pe-7s-monitor:before {
    content: "\E634"
}

.pe-7s-micro:before {
    content: "\E635"
}

.pe-7s-menu:before {
    content: "\E636"
}

.pe-7s-map:before {
    content: "\E637"
}

.pe-7s-map-marker:before {
    content: "\E638"
}

.pe-7s-mail:before {
    content: "\E639"
}

.pe-7s-mail-open:before {
    content: "\E63A"
}

.pe-7s-mail-open-file:before {
    content: "\E63B"
}

.pe-7s-magnet:before {
    content: "\E63C"
}

.pe-7s-loop:before {
    content: "\E63D"
}

.pe-7s-look:before {
    content: "\E63E"
}

.pe-7s-lock:before {
    content: "\E63F"
}

.pe-7s-lintern:before {
    content: "\E640"
}

.pe-7s-link:before {
    content: "\E641"
}

.pe-7s-like:before {
    content: "\E642"
}

.pe-7s-light:before {
    content: "\E643"
}

.pe-7s-less:before {
    content: "\E644"
}

.pe-7s-keypad:before {
    content: "\E645"
}

.pe-7s-junk:before {
    content: "\E646"
}

.pe-7s-info:before {
    content: "\E647"
}

.pe-7s-home:before {
    content: "\E648"
}

.pe-7s-help2:before {
    content: "\E649"
}

.pe-7s-help1:before {
    content: "\E64A"
}

.pe-7s-graph3:before {
    content: "\E64B"
}

.pe-7s-graph2:before {
    content: "\E64C"
}

.pe-7s-graph1:before {
    content: "\E64D"
}

.pe-7s-graph:before {
    content: "\E64E"
}

.pe-7s-global:before {
    content: "\E64F"
}

.pe-7s-gleam:before {
    content: "\E650"
}

.pe-7s-glasses:before {
    content: "\E651"
}

.pe-7s-gift:before {
    content: "\E652"
}

.pe-7s-folder:before {
    content: "\E653"
}

.pe-7s-flag:before {
    content: "\E654"
}

.pe-7s-filter:before {
    content: "\E655"
}

.pe-7s-file:before {
    content: "\E656"
}

.pe-7s-expand1:before {
    content: "\E657"
}

.pe-7s-exapnd2:before {
    content: "\E658"
}

.pe-7s-edit:before {
    content: "\E659"
}

.pe-7s-drop:before {
    content: "\E65A"
}

.pe-7s-drawer:before {
    content: "\E65B"
}

.pe-7s-download:before {
    content: "\E65C"
}

.pe-7s-display2:before {
    content: "\E65D"
}

.pe-7s-display1:before {
    content: "\E65E"
}

.pe-7s-diskette:before {
    content: "\E65F"
}

.pe-7s-date:before {
    content: "\E660"
}

.pe-7s-cup:before {
    content: "\E661"
}

.pe-7s-culture:before {
    content: "\E662"
}

.pe-7s-crop:before {
    content: "\E663"
}

.pe-7s-credit:before {
    content: "\E664"
}

.pe-7s-copy-file:before {
    content: "\E665"
}

.pe-7s-config:before {
    content: "\E666"
}

.pe-7s-compass:before {
    content: "\E667"
}

.pe-7s-comment:before {
    content: "\E668"
}

.pe-7s-coffee:before {
    content: "\E669"
}

.pe-7s-cloud:before {
    content: "\E66A"
}

.pe-7s-clock:before {
    content: "\E66B"
}

.pe-7s-check:before {
    content: "\E66C"
}

.pe-7s-chat:before {
    content: "\E66D"
}

.pe-7s-cart:before {
    content: "\E66E"
}

.pe-7s-camera:before {
    content: "\E66F"
}

.pe-7s-call:before {
    content: "\E670"
}

.pe-7s-calculator:before {
    content: "\E671"
}

.pe-7s-browser:before {
    content: "\E672"
}

.pe-7s-box2:before {
    content: "\E673"
}

.pe-7s-box1:before {
    content: "\E674"
}

.pe-7s-bookmarks:before {
    content: "\E675"
}

.pe-7s-bicycle:before {
    content: "\E676"
}

.pe-7s-bell:before {
    content: "\E677"
}

.pe-7s-battery:before {
    content: "\E678"
}

.pe-7s-ball:before {
    content: "\E679"
}

.pe-7s-back:before {
    content: "\E67A"
}

.pe-7s-attention:before {
    content: "\E67B"
}

.pe-7s-anchor:before {
    content: "\E67C"
}

.pe-7s-albums:before {
    content: "\E67D"
}

.pe-7s-alarm:before {
    content: "\E67E"
}

.pe-7s-airplay:before {
    content: "\E67F"
}

/*! Modified from font-awesome helper CSS classes - PIXEDEN
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (CSS: MIT License)
 */
.pe-lg {
    font-size: 1.3333333333333333em;
    line-height: .75em;
    vertical-align: -15%
}

.pe-2x {
    font-size: 2em
}

.pe-3x {
    font-size: 3em
}

.pe-4x {
    font-size: 4em
}

.pe-5x {
    font-size: 5em
}

.pe-fw {
    width: 1.2857142857142858em;
    text-align: center
}

.pe-ul {
    padding-left: 0;
    margin-left: 2.142857142857143em;
    list-style-type: none
}

.pe-ul>li {
    position: relative
}

.pe-li {
    position: absolute;
    left: -2.142857142857143em;
    width: 2.142857142857143em;
    top: .14285714285714285em;
    text-align: center
}

.pe-li.pe-lg {
    left: -1.8571428571428572em
}

.pe-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.pe.pull-left {
    margin-right: .3em
}

.pe.pull-right {
    margin-left: .3em
}

.pe-spin {
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

.pe-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    transform: rotate(90deg)
}

.pe-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    transform: rotate(180deg)
}

.pe-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    transform: rotate(270deg)
}

.pe-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
    transform: scaleX(-1)
}

.pe-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
    transform: scaleY(-1)
}

.pe-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.pe-stack-1x,.pe-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.pe-stack-1x {
    line-height: inherit
}

.pe-stack-2x {
    font-size: 2em
}

.pe-inverse {
    color: #fff
}

.pe-va {
    vertical-align: middle
}

.pe-border {
    border: .08em solid #eaeaea
}

/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: FontAwesome;
    src: url(/static/media/fontawesome-webfont.32400f4e.eot);
    src: url(/static/media/fontawesome-webfont.32400f4e.eot?#iefix&v=4.5.0) format("embedded-opentype"),url(/static/media/fontawesome-webfont.db812d8a.woff2) format("woff2"),url(/static/media/fontawesome-webfont.a35720c2.woff) format("woff"),url(/static/media/fontawesome-webfont.a3de2170.ttf) format("truetype"),url(/static/media/fontawesome-webfont.f775f9cc.svg#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal
}

.fa,[class*=" pe-7s-"],[class^=pe-7s-] {
    display: inline-block
}

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s linear infinite
}

.fa-pulse {
    animation: fa-spin 1s steps(8) infinite
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
    transform: scaleX(-1)
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
    transform: scaleY(-1)
}

:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270 {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\F000"
}

.fa-music:before {
    content: "\F001"
}

.fa-search:before {
    content: "\F002"
}

.fa-envelope-o:before {
    content: "\F003"
}

.fa-heart:before {
    content: "\F004"
}

.fa-star:before {
    content: "\F005"
}

.fa-star-o:before {
    content: "\F006"
}

.fa-user:before {
    content: "\F007"
}

.fa-film:before {
    content: "\F008"
}

.fa-th-large:before {
    content: "\F009"
}

.fa-th:before {
    content: "\F00A"
}

.fa-th-list:before {
    content: "\F00B"
}

.fa-check:before {
    content: "\F00C"
}

.fa-close:before,.fa-remove:before,.fa-times:before {
    content: "\F00D"
}

.fa-search-plus:before {
    content: "\F00E"
}

.fa-search-minus:before {
    content: "\F010"
}

.fa-power-off:before {
    content: "\F011"
}

.fa-signal:before {
    content: "\F012"
}

.fa-cog:before,.fa-gear:before {
    content: "\F013"
}

.fa-trash-o:before {
    content: "\F014"
}

.fa-home:before {
    content: "\F015"
}

.fa-file-o:before {
    content: "\F016"
}

.fa-clock-o:before {
    content: "\F017"
}

.fa-road:before {
    content: "\F018"
}

.fa-download:before {
    content: "\F019"
}

.fa-arrow-circle-o-down:before {
    content: "\F01A"
}

.fa-arrow-circle-o-up:before {
    content: "\F01B"
}

.fa-inbox:before {
    content: "\F01C"
}

.fa-play-circle-o:before {
    content: "\F01D"
}

.fa-repeat:before,.fa-rotate-right:before {
    content: "\F01E"
}

.fa-refresh:before {
    content: "\F021"
}

.fa-list-alt:before {
    content: "\F022"
}

.fa-lock:before {
    content: "\F023"
}

.fa-flag:before {
    content: "\F024"
}

.fa-headphones:before {
    content: "\F025"
}

.fa-volume-off:before {
    content: "\F026"
}

.fa-volume-down:before {
    content: "\F027"
}

.fa-volume-up:before {
    content: "\F028"
}

.fa-qrcode:before {
    content: "\F029"
}

.fa-barcode:before {
    content: "\F02A"
}

.fa-tag:before {
    content: "\F02B"
}

.fa-tags:before {
    content: "\F02C"
}

.fa-book:before {
    content: "\F02D"
}

.fa-bookmark:before {
    content: "\F02E"
}

.fa-print:before {
    content: "\F02F"
}

.fa-camera:before {
    content: "\F030"
}

.fa-font:before {
    content: "\F031"
}

.fa-bold:before {
    content: "\F032"
}

.fa-italic:before {
    content: "\F033"
}

.fa-text-height:before {
    content: "\F034"
}

.fa-text-width:before {
    content: "\F035"
}

.fa-align-left:before {
    content: "\F036"
}

.fa-align-center:before {
    content: "\F037"
}

.fa-align-right:before {
    content: "\F038"
}

.fa-align-justify:before {
    content: "\F039"
}

.fa-list:before {
    content: "\F03A"
}

.fa-dedent:before,.fa-outdent:before {
    content: "\F03B"
}

.fa-indent:before {
    content: "\F03C"
}

.fa-video-camera:before {
    content: "\F03D"
}

.fa-image:before,.fa-photo:before,.fa-picture-o:before {
    content: "\F03E"
}

.fa-pencil:before {
    content: "\F040"
}

.fa-map-marker:before {
    content: "\F041"
}

.fa-adjust:before {
    content: "\F042"
}

.fa-tint:before {
    content: "\F043"
}

.fa-edit:before,.fa-pencil-square-o:before {
    content: "\F044"
}

.fa-share-square-o:before {
    content: "\F045"
}

.fa-check-square-o:before {
    content: "\F046"
}

.fa-arrows:before {
    content: "\F047"
}

.fa-step-backward:before {
    content: "\F048"
}

.fa-fast-backward:before {
    content: "\F049"
}

.fa-backward:before {
    content: "\F04A"
}

.fa-play:before {
    content: "\F04B"
}

.fa-pause:before {
    content: "\F04C"
}

.fa-stop:before {
    content: "\F04D"
}

.fa-forward:before {
    content: "\F04E"
}

.fa-fast-forward:before {
    content: "\F050"
}

.fa-step-forward:before {
    content: "\F051"
}

.fa-eject:before {
    content: "\F052"
}

.fa-chevron-left:before {
    content: "\F053"
}

.fa-chevron-right:before {
    content: "\F054"
}

.fa-plus-circle:before {
    content: "\F055"
}

.fa-minus-circle:before {
    content: "\F056"
}

.fa-times-circle:before {
    content: "\F057"
}

.fa-check-circle:before {
    content: "\F058"
}

.fa-question-circle:before {
    content: "\F059"
}

.fa-info-circle:before {
    content: "\F05A"
}

.fa-crosshairs:before {
    content: "\F05B"
}

.fa-times-circle-o:before {
    content: "\F05C"
}

.fa-check-circle-o:before {
    content: "\F05D"
}

.fa-ban:before {
    content: "\F05E"
}

.fa-arrow-left:before {
    content: "\F060"
}

.fa-arrow-right:before {
    content: "\F061"
}

.fa-arrow-up:before {
    content: "\F062"
}

.fa-arrow-down:before {
    content: "\F063"
}

.fa-mail-forward:before,.fa-share:before {
    content: "\F064"
}

.fa-expand:before {
    content: "\F065"
}

.fa-compress:before {
    content: "\F066"
}

.fa-plus:before {
    content: "\F067"
}

.fa-minus:before {
    content: "\F068"
}

.fa-asterisk:before {
    content: "\F069"
}

.fa-exclamation-circle:before {
    content: "\F06A"
}

.fa-gift:before {
    content: "\F06B"
}

.fa-leaf:before {
    content: "\F06C"
}

.fa-fire:before {
    content: "\F06D"
}

.fa-eye:before {
    content: "\F06E"
}

.fa-eye-slash:before {
    content: "\F070"
}

.fa-exclamation-triangle:before,.fa-warning:before {
    content: "\F071"
}

.fa-plane:before {
    content: "\F072"
}

.fa-calendar:before {
    content: "\F073"
}

.fa-random:before {
    content: "\F074"
}

.fa-comment:before {
    content: "\F075"
}

.fa-magnet:before {
    content: "\F076"
}

.fa-chevron-up:before {
    content: "\F077"
}

.fa-chevron-down:before {
    content: "\F078"
}

.fa-retweet:before {
    content: "\F079"
}

.fa-shopping-cart:before {
    content: "\F07A"
}

.fa-folder:before {
    content: "\F07B"
}

.fa-folder-open:before {
    content: "\F07C"
}

.fa-arrows-v:before {
    content: "\F07D"
}

.fa-arrows-h:before {
    content: "\F07E"
}

.fa-bar-chart-o:before,.fa-bar-chart:before {
    content: "\F080"
}

.fa-twitter-square:before {
    content: "\F081"
}

.fa-facebook-square:before {
    content: "\F082"
}

.fa-camera-retro:before {
    content: "\F083"
}

.fa-key:before {
    content: "\F084"
}

.fa-cogs:before,.fa-gears:before {
    content: "\F085"
}

.fa-comments:before {
    content: "\F086"
}

.fa-thumbs-o-up:before {
    content: "\F087"
}

.fa-thumbs-o-down:before {
    content: "\F088"
}

.fa-star-half:before {
    content: "\F089"
}

.fa-heart-o:before {
    content: "\F08A"
}

.fa-sign-out:before {
    content: "\F08B"
}

.fa-linkedin-square:before {
    content: "\F08C"
}

.fa-thumb-tack:before {
    content: "\F08D"
}

.fa-external-link:before {
    content: "\F08E"
}

.fa-sign-in:before {
    content: "\F090"
}

.fa-trophy:before {
    content: "\F091"
}

.fa-github-square:before {
    content: "\F092"
}

.fa-upload:before {
    content: "\F093"
}

.fa-lemon-o:before {
    content: "\F094"
}

.fa-phone:before {
    content: "\F095"
}

.fa-square-o:before {
    content: "\F096"
}

.fa-bookmark-o:before {
    content: "\F097"
}

.fa-phone-square:before {
    content: "\F098"
}

.fa-twitter:before {
    content: "\F099"
}

.fa-facebook-f:before,.fa-facebook:before {
    content: "\F09A"
}

.fa-github:before {
    content: "\F09B"
}

.fa-unlock:before {
    content: "\F09C"
}

.fa-credit-card:before {
    content: "\F09D"
}

.fa-feed:before,.fa-rss:before {
    content: "\F09E"
}

.fa-hdd-o:before {
    content: "\F0A0"
}

.fa-bullhorn:before {
    content: "\F0A1"
}

.fa-bell:before {
    content: "\F0F3"
}

.fa-certificate:before {
    content: "\F0A3"
}

.fa-hand-o-right:before {
    content: "\F0A4"
}

.fa-hand-o-left:before {
    content: "\F0A5"
}

.fa-hand-o-up:before {
    content: "\F0A6"
}

.fa-hand-o-down:before {
    content: "\F0A7"
}

.fa-arrow-circle-left:before {
    content: "\F0A8"
}

.fa-arrow-circle-right:before {
    content: "\F0A9"
}

.fa-arrow-circle-up:before {
    content: "\F0AA"
}

.fa-arrow-circle-down:before {
    content: "\F0AB"
}

.fa-globe:before {
    content: "\F0AC"
}

.fa-wrench:before {
    content: "\F0AD"
}

.fa-tasks:before {
    content: "\F0AE"
}

.fa-filter:before {
    content: "\F0B0"
}

.fa-briefcase:before {
    content: "\F0B1"
}

.fa-arrows-alt:before {
    content: "\F0B2"
}

.fa-group:before,.fa-users:before {
    content: "\F0C0"
}

.fa-chain:before,.fa-link:before {
    content: "\F0C1"
}

.fa-cloud:before {
    content: "\F0C2"
}

.fa-flask:before {
    content: "\F0C3"
}

.fa-cut:before,.fa-scissors:before {
    content: "\F0C4"
}

.fa-copy:before,.fa-files-o:before {
    content: "\F0C5"
}

.fa-paperclip:before {
    content: "\F0C6"
}

.fa-floppy-o:before,.fa-save:before {
    content: "\F0C7"
}

.fa-square:before {
    content: "\F0C8"
}

.fa-bars:before,.fa-navicon:before,.fa-reorder:before {
    content: "\F0C9"
}

.fa-list-ul:before {
    content: "\F0CA"
}

.fa-list-ol:before {
    content: "\F0CB"
}

.fa-strikethrough:before {
    content: "\F0CC"
}

.fa-underline:before {
    content: "\F0CD"
}

.fa-table:before {
    content: "\F0CE"
}

.fa-magic:before {
    content: "\F0D0"
}

.fa-truck:before {
    content: "\F0D1"
}

.fa-pinterest:before {
    content: "\F0D2"
}

.fa-pinterest-square:before {
    content: "\F0D3"
}

.fa-google-plus-square:before {
    content: "\F0D4"
}

.fa-google-plus:before {
    content: "\F0D5"
}

.fa-money:before {
    content: "\F0D6"
}

.fa-caret-down:before {
    content: "\F0D7"
}

.fa-caret-up:before {
    content: "\F0D8"
}

.fa-caret-left:before {
    content: "\F0D9"
}

.fa-caret-right:before {
    content: "\F0DA"
}

.fa-columns:before {
    content: "\F0DB"
}

.fa-sort:before,.fa-unsorted:before {
    content: "\F0DC"
}

.fa-sort-desc:before,.fa-sort-down:before {
    content: "\F0DD"
}

.fa-sort-asc:before,.fa-sort-up:before {
    content: "\F0DE"
}

.fa-envelope:before {
    content: "\F0E0"
}

.fa-linkedin:before {
    content: "\F0E1"
}

.fa-rotate-left:before,.fa-undo:before {
    content: "\F0E2"
}

.fa-gavel:before,.fa-legal:before {
    content: "\F0E3"
}

.fa-dashboard:before,.fa-tachometer:before {
    content: "\F0E4"
}

.fa-comment-o:before {
    content: "\F0E5"
}

.fa-comments-o:before {
    content: "\F0E6"
}

.fa-bolt:before,.fa-flash:before {
    content: "\F0E7"
}

.fa-sitemap:before {
    content: "\F0E8"
}

.fa-umbrella:before {
    content: "\F0E9"
}

.fa-clipboard:before,.fa-paste:before {
    content: "\F0EA"
}

.fa-lightbulb-o:before {
    content: "\F0EB"
}

.fa-exchange:before {
    content: "\F0EC"
}

.fa-cloud-download:before {
    content: "\F0ED"
}

.fa-cloud-upload:before {
    content: "\F0EE"
}

.fa-user-md:before {
    content: "\F0F0"
}

.fa-stethoscope:before {
    content: "\F0F1"
}

.fa-suitcase:before {
    content: "\F0F2"
}

.fa-bell-o:before {
    content: "\F0A2"
}

.fa-coffee:before {
    content: "\F0F4"
}

.fa-cutlery:before {
    content: "\F0F5"
}

.fa-file-text-o:before {
    content: "\F0F6"
}

.fa-building-o:before {
    content: "\F0F7"
}

.fa-hospital-o:before {
    content: "\F0F8"
}

.fa-ambulance:before {
    content: "\F0F9"
}

.fa-medkit:before {
    content: "\F0FA"
}

.fa-fighter-jet:before {
    content: "\F0FB"
}

.fa-beer:before {
    content: "\F0FC"
}

.fa-h-square:before {
    content: "\F0FD"
}

.fa-plus-square:before {
    content: "\F0FE"
}

.fa-angle-double-left:before {
    content: "\F100"
}

.fa-angle-double-right:before {
    content: "\F101"
}

.fa-angle-double-up:before {
    content: "\F102"
}

.fa-angle-double-down:before {
    content: "\F103"
}

.fa-angle-left:before {
    content: "\F104"
}

.fa-angle-right:before {
    content: "\F105"
}

.fa-angle-up:before {
    content: "\F106"
}

.fa-angle-down:before {
    content: "\F107"
}

.fa-desktop:before {
    content: "\F108"
}

.fa-laptop:before {
    content: "\F109"
}

.fa-tablet:before {
    content: "\F10A"
}

.fa-mobile-phone:before,.fa-mobile:before {
    content: "\F10B"
}

.fa-circle-o:before {
    content: "\F10C"
}

.fa-quote-left:before {
    content: "\F10D"
}

.fa-quote-right:before {
    content: "\F10E"
}

.fa-spinner:before {
    content: "\F110"
}

.fa-circle:before {
    content: "\F111"
}

.fa-mail-reply:before,.fa-reply:before {
    content: "\F112"
}

.fa-github-alt:before {
    content: "\F113"
}

.fa-folder-o:before {
    content: "\F114"
}

.fa-folder-open-o:before {
    content: "\F115"
}

.fa-smile-o:before {
    content: "\F118"
}

.fa-frown-o:before {
    content: "\F119"
}

.fa-meh-o:before {
    content: "\F11A"
}

.fa-gamepad:before {
    content: "\F11B"
}

.fa-keyboard-o:before {
    content: "\F11C"
}

.fa-flag-o:before {
    content: "\F11D"
}

.fa-flag-checkered:before {
    content: "\F11E"
}

.fa-terminal:before {
    content: "\F120"
}

.fa-code:before {
    content: "\F121"
}

.fa-mail-reply-all:before,.fa-reply-all:before {
    content: "\F122"
}

.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
    content: "\F123"
}

.fa-location-arrow:before {
    content: "\F124"
}

.fa-crop:before {
    content: "\F125"
}

.fa-code-fork:before {
    content: "\F126"
}

.fa-chain-broken:before,.fa-unlink:before {
    content: "\F127"
}

.fa-question:before {
    content: "\F128"
}

.fa-info:before {
    content: "\F129"
}

.fa-exclamation:before {
    content: "\F12A"
}

.fa-superscript:before {
    content: "\F12B"
}

.fa-subscript:before {
    content: "\F12C"
}

.fa-eraser:before {
    content: "\F12D"
}

.fa-puzzle-piece:before {
    content: "\F12E"
}

.fa-microphone:before {
    content: "\F130"
}

.fa-microphone-slash:before {
    content: "\F131"
}

.fa-shield:before {
    content: "\F132"
}

.fa-calendar-o:before {
    content: "\F133"
}

.fa-fire-extinguisher:before {
    content: "\F134"
}

.fa-rocket:before {
    content: "\F135"
}

.fa-maxcdn:before {
    content: "\F136"
}

.fa-chevron-circle-left:before {
    content: "\F137"
}

.fa-chevron-circle-right:before {
    content: "\F138"
}

.fa-chevron-circle-up:before {
    content: "\F139"
}

.fa-chevron-circle-down:before {
    content: "\F13A"
}

.fa-html5:before {
    content: "\F13B"
}

.fa-css3:before {
    content: "\F13C"
}

.fa-anchor:before {
    content: "\F13D"
}

.fa-unlock-alt:before {
    content: "\F13E"
}

.fa-bullseye:before {
    content: "\F140"
}

.fa-ellipsis-h:before {
    content: "\F141"
}

.fa-ellipsis-v:before {
    content: "\F142"
}

.fa-rss-square:before {
    content: "\F143"
}

.fa-play-circle:before {
    content: "\F144"
}

.fa-ticket:before {
    content: "\F145"
}

.fa-minus-square:before {
    content: "\F146"
}

.fa-minus-square-o:before {
    content: "\F147"
}

.fa-level-up:before {
    content: "\F148"
}

.fa-level-down:before {
    content: "\F149"
}

.fa-check-square:before {
    content: "\F14A"
}

.fa-pencil-square:before {
    content: "\F14B"
}

.fa-external-link-square:before {
    content: "\F14C"
}

.fa-share-square:before {
    content: "\F14D"
}

.fa-compass:before {
    content: "\F14E"
}

.fa-caret-square-o-down:before,.fa-toggle-down:before {
    content: "\F150"
}

.fa-caret-square-o-up:before,.fa-toggle-up:before {
    content: "\F151"
}

.fa-caret-square-o-right:before,.fa-toggle-right:before {
    content: "\F152"
}

.fa-eur:before,.fa-euro:before {
    content: "\F153"
}

.fa-gbp:before {
    content: "\F154"
}

.fa-dollar:before,.fa-usd:before {
    content: "\F155"
}

.fa-inr:before,.fa-rupee:before {
    content: "\F156"
}

.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before {
    content: "\F157"
}

.fa-rouble:before,.fa-rub:before,.fa-ruble:before {
    content: "\F158"
}

.fa-krw:before,.fa-won:before {
    content: "\F159"
}

.fa-bitcoin:before,.fa-btc:before {
    content: "\F15A"
}

.fa-file:before {
    content: "\F15B"
}

.fa-file-text:before {
    content: "\F15C"
}

.fa-sort-alpha-asc:before {
    content: "\F15D"
}

.fa-sort-alpha-desc:before {
    content: "\F15E"
}

.fa-sort-amount-asc:before {
    content: "\F160"
}

.fa-sort-amount-desc:before {
    content: "\F161"
}

.fa-sort-numeric-asc:before {
    content: "\F162"
}

.fa-sort-numeric-desc:before {
    content: "\F163"
}

.fa-thumbs-up:before {
    content: "\F164"
}

.fa-thumbs-down:before {
    content: "\F165"
}

.fa-youtube-square:before {
    content: "\F166"
}

.fa-youtube:before {
    content: "\F167"
}

.fa-xing:before {
    content: "\F168"
}

.fa-xing-square:before {
    content: "\F169"
}

.fa-youtube-play:before {
    content: "\F16A"
}

.fa-dropbox:before {
    content: "\F16B"
}

.fa-stack-overflow:before {
    content: "\F16C"
}

.fa-instagram:before {
    content: "\F16D"
}

.fa-flickr:before {
    content: "\F16E"
}

.fa-adn:before {
    content: "\F170"
}

.fa-bitbucket:before {
    content: "\F171"
}

.fa-bitbucket-square:before {
    content: "\F172"
}

.fa-tumblr:before {
    content: "\F173"
}

.fa-tumblr-square:before {
    content: "\F174"
}

.fa-long-arrow-down:before {
    content: "\F175"
}

.fa-long-arrow-up:before {
    content: "\F176"
}

.fa-long-arrow-left:before {
    content: "\F177"
}

.fa-long-arrow-right:before {
    content: "\F178"
}

.fa-apple:before {
    content: "\F179"
}

.fa-windows:before {
    content: "\F17A"
}

.fa-android:before {
    content: "\F17B"
}

.fa-linux:before {
    content: "\F17C"
}

.fa-dribbble:before {
    content: "\F17D"
}

.fa-skype:before {
    content: "\F17E"
}

.fa-foursquare:before {
    content: "\F180"
}

.fa-trello:before {
    content: "\F181"
}

.fa-female:before {
    content: "\F182"
}

.fa-male:before {
    content: "\F183"
}

.fa-gittip:before,.fa-gratipay:before {
    content: "\F184"
}

.fa-sun-o:before {
    content: "\F185"
}

.fa-moon-o:before {
    content: "\F186"
}

.fa-archive:before {
    content: "\F187"
}

.fa-bug:before {
    content: "\F188"
}

.fa-vk:before {
    content: "\F189"
}

.fa-weibo:before {
    content: "\F18A"
}

.fa-renren:before {
    content: "\F18B"
}

.fa-pagelines:before {
    content: "\F18C"
}

.fa-stack-exchange:before {
    content: "\F18D"
}

.fa-arrow-circle-o-right:before {
    content: "\F18E"
}

.fa-arrow-circle-o-left:before {
    content: "\F190"
}

.fa-caret-square-o-left:before,.fa-toggle-left:before {
    content: "\F191"
}

.fa-dot-circle-o:before {
    content: "\F192"
}

.fa-wheelchair:before {
    content: "\F193"
}

.fa-vimeo-square:before {
    content: "\F194"
}

.fa-try:before,.fa-turkish-lira:before {
    content: "\F195"
}

.fa-plus-square-o:before {
    content: "\F196"
}

.fa-space-shuttle:before {
    content: "\F197"
}

.fa-slack:before {
    content: "\F198"
}

.fa-envelope-square:before {
    content: "\F199"
}

.fa-wordpress:before {
    content: "\F19A"
}

.fa-openid:before {
    content: "\F19B"
}

.fa-bank:before,.fa-institution:before,.fa-university:before {
    content: "\F19C"
}

.fa-graduation-cap:before,.fa-mortar-board:before {
    content: "\F19D"
}

.fa-yahoo:before {
    content: "\F19E"
}

.fa-google:before {
    content: "\F1A0"
}

.fa-reddit:before {
    content: "\F1A1"
}

.fa-reddit-square:before {
    content: "\F1A2"
}

.fa-stumbleupon-circle:before {
    content: "\F1A3"
}

.fa-stumbleupon:before {
    content: "\F1A4"
}

.fa-delicious:before {
    content: "\F1A5"
}

.fa-digg:before {
    content: "\F1A6"
}

.fa-pied-piper:before {
    content: "\F1A7"
}

.fa-pied-piper-alt:before {
    content: "\F1A8"
}

.fa-drupal:before {
    content: "\F1A9"
}

.fa-joomla:before {
    content: "\F1AA"
}

.fa-language:before {
    content: "\F1AB"
}

.fa-fax:before {
    content: "\F1AC"
}

.fa-building:before {
    content: "\F1AD"
}

.fa-child:before {
    content: "\F1AE"
}

.fa-paw:before {
    content: "\F1B0"
}

.fa-spoon:before {
    content: "\F1B1"
}

.fa-cube:before {
    content: "\F1B2"
}

.fa-cubes:before {
    content: "\F1B3"
}

.fa-behance:before {
    content: "\F1B4"
}

.fa-behance-square:before {
    content: "\F1B5"
}

.fa-steam:before {
    content: "\F1B6"
}

.fa-steam-square:before {
    content: "\F1B7"
}

.fa-recycle:before {
    content: "\F1B8"
}

.fa-automobile:before,.fa-car:before {
    content: "\F1B9"
}

.fa-cab:before,.fa-taxi:before {
    content: "\F1BA"
}

.fa-tree:before {
    content: "\F1BB"
}

.fa-spotify:before {
    content: "\F1BC"
}

.fa-deviantart:before {
    content: "\F1BD"
}

.fa-soundcloud:before {
    content: "\F1BE"
}

.fa-database:before {
    content: "\F1C0"
}

.fa-file-pdf-o:before {
    content: "\F1C1"
}

.fa-file-word-o:before {
    content: "\F1C2"
}

.fa-file-excel-o:before {
    content: "\F1C3"
}

.fa-file-powerpoint-o:before {
    content: "\F1C4"
}

.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before {
    content: "\F1C5"
}

.fa-file-archive-o:before,.fa-file-zip-o:before {
    content: "\F1C6"
}

.fa-file-audio-o:before,.fa-file-sound-o:before {
    content: "\F1C7"
}

.fa-file-movie-o:before,.fa-file-video-o:before {
    content: "\F1C8"
}

.fa-file-code-o:before {
    content: "\F1C9"
}

.fa-vine:before {
    content: "\F1CA"
}

.fa-codepen:before {
    content: "\F1CB"
}

.fa-jsfiddle:before {
    content: "\F1CC"
}

.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before {
    content: "\F1CD"
}

.fa-circle-o-notch:before {
    content: "\F1CE"
}

.fa-ra:before,.fa-rebel:before {
    content: "\F1D0"
}

.fa-empire:before,.fa-ge:before {
    content: "\F1D1"
}

.fa-git-square:before {
    content: "\F1D2"
}

.fa-git:before {
    content: "\F1D3"
}

.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before {
    content: "\F1D4"
}

.fa-tencent-weibo:before {
    content: "\F1D5"
}

.fa-qq:before {
    content: "\F1D6"
}

.fa-wechat:before,.fa-weixin:before {
    content: "\F1D7"
}

.fa-paper-plane:before,.fa-send:before {
    content: "\F1D8"
}

.fa-paper-plane-o:before,.fa-send-o:before {
    content: "\F1D9"
}

.fa-history:before {
    content: "\F1DA"
}

.fa-circle-thin:before {
    content: "\F1DB"
}

.fa-header:before {
    content: "\F1DC"
}

.fa-paragraph:before {
    content: "\F1DD"
}

.fa-sliders:before {
    content: "\F1DE"
}

.fa-share-alt:before {
    content: "\F1E0"
}

.fa-share-alt-square:before {
    content: "\F1E1"
}

.fa-bomb:before {
    content: "\F1E2"
}

.fa-futbol-o:before,.fa-soccer-ball-o:before {
    content: "\F1E3"
}

.fa-tty:before {
    content: "\F1E4"
}

.fa-binoculars:before {
    content: "\F1E5"
}

.fa-plug:before {
    content: "\F1E6"
}

.fa-slideshare:before {
    content: "\F1E7"
}

.fa-twitch:before {
    content: "\F1E8"
}

.fa-yelp:before {
    content: "\F1E9"
}

.fa-newspaper-o:before {
    content: "\F1EA"
}

.fa-wifi:before {
    content: "\F1EB"
}

.fa-calculator:before {
    content: "\F1EC"
}

.fa-paypal:before {
    content: "\F1ED"
}

.fa-google-wallet:before {
    content: "\F1EE"
}

.fa-cc-visa:before {
    content: "\F1F0"
}

.fa-cc-mastercard:before {
    content: "\F1F1"
}

.fa-cc-discover:before {
    content: "\F1F2"
}

.fa-cc-amex:before {
    content: "\F1F3"
}

.fa-cc-paypal:before {
    content: "\F1F4"
}

.fa-cc-stripe:before {
    content: "\F1F5"
}

.fa-bell-slash:before {
    content: "\F1F6"
}

.fa-bell-slash-o:before {
    content: "\F1F7"
}

.fa-trash:before {
    content: "\F1F8"
}

.fa-copyright:before {
    content: "\F1F9"
}

.fa-at:before {
    content: "\F1FA"
}

.fa-eyedropper:before {
    content: "\F1FB"
}

.fa-paint-brush:before {
    content: "\F1FC"
}

.fa-birthday-cake:before {
    content: "\F1FD"
}

.fa-area-chart:before {
    content: "\F1FE"
}

.fa-pie-chart:before {
    content: "\F200"
}

.fa-line-chart:before {
    content: "\F201"
}

.fa-lastfm:before {
    content: "\F202"
}

.fa-lastfm-square:before {
    content: "\F203"
}

.fa-toggle-off:before {
    content: "\F204"
}

.fa-toggle-on:before {
    content: "\F205"
}

.fa-bicycle:before {
    content: "\F206"
}

.fa-bus:before {
    content: "\F207"
}

.fa-ioxhost:before {
    content: "\F208"
}

.fa-angellist:before {
    content: "\F209"
}

.fa-cc:before {
    content: "\F20A"
}

.fa-ils:before,.fa-shekel:before,.fa-sheqel:before {
    content: "\F20B"
}

.fa-meanpath:before {
    content: "\F20C"
}

.fa-buysellads:before {
    content: "\F20D"
}

.fa-connectdevelop:before {
    content: "\F20E"
}

.fa-dashcube:before {
    content: "\F210"
}

.fa-forumbee:before {
    content: "\F211"
}

.fa-leanpub:before {
    content: "\F212"
}

.fa-sellsy:before {
    content: "\F213"
}

.fa-shirtsinbulk:before {
    content: "\F214"
}

.fa-simplybuilt:before {
    content: "\F215"
}

.fa-skyatlas:before {
    content: "\F216"
}

.fa-cart-plus:before {
    content: "\F217"
}

.fa-cart-arrow-down:before {
    content: "\F218"
}

.fa-diamond:before {
    content: "\F219"
}

.fa-ship:before {
    content: "\F21A"
}

.fa-user-secret:before {
    content: "\F21B"
}

.fa-motorcycle:before {
    content: "\F21C"
}

.fa-street-view:before {
    content: "\F21D"
}

.fa-heartbeat:before {
    content: "\F21E"
}

.fa-venus:before {
    content: "\F221"
}

.fa-mars:before {
    content: "\F222"
}

.fa-mercury:before {
    content: "\F223"
}

.fa-intersex:before,.fa-transgender:before {
    content: "\F224"
}

.fa-transgender-alt:before {
    content: "\F225"
}

.fa-venus-double:before {
    content: "\F226"
}

.fa-mars-double:before {
    content: "\F227"
}

.fa-venus-mars:before {
    content: "\F228"
}

.fa-mars-stroke:before {
    content: "\F229"
}

.fa-mars-stroke-v:before {
    content: "\F22A"
}

.fa-mars-stroke-h:before {
    content: "\F22B"
}

.fa-neuter:before {
    content: "\F22C"
}

.fa-genderless:before {
    content: "\F22D"
}

.fa-facebook-official:before {
    content: "\F230"
}

.fa-pinterest-p:before {
    content: "\F231"
}

.fa-whatsapp:before {
    content: "\F232"
}

.fa-server:before {
    content: "\F233"
}

.fa-user-plus:before {
    content: "\F234"
}

.fa-user-times:before {
    content: "\F235"
}

.fa-bed:before,.fa-hotel:before {
    content: "\F236"
}

.fa-viacoin:before {
    content: "\F237"
}

.fa-train:before {
    content: "\F238"
}

.fa-subway:before {
    content: "\F239"
}

.fa-medium:before {
    content: "\F23A"
}

.fa-y-combinator:before,.fa-yc:before {
    content: "\F23B"
}

.fa-optin-monster:before {
    content: "\F23C"
}

.fa-opencart:before {
    content: "\F23D"
}

.fa-expeditedssl:before {
    content: "\F23E"
}

.fa-battery-4:before,.fa-battery-full:before {
    content: "\F240"
}

.fa-battery-3:before,.fa-battery-three-quarters:before {
    content: "\F241"
}

.fa-battery-2:before,.fa-battery-half:before {
    content: "\F242"
}

.fa-battery-1:before,.fa-battery-quarter:before {
    content: "\F243"
}

.fa-battery-0:before,.fa-battery-empty:before {
    content: "\F244"
}

.fa-mouse-pointer:before {
    content: "\F245"
}

.fa-i-cursor:before {
    content: "\F246"
}

.fa-object-group:before {
    content: "\F247"
}

.fa-object-ungroup:before {
    content: "\F248"
}

.fa-sticky-note:before {
    content: "\F249"
}

.fa-sticky-note-o:before {
    content: "\F24A"
}

.fa-cc-jcb:before {
    content: "\F24B"
}

.fa-cc-diners-club:before {
    content: "\F24C"
}

.fa-clone:before {
    content: "\F24D"
}

.fa-balance-scale:before {
    content: "\F24E"
}

.fa-hourglass-o:before {
    content: "\F250"
}

.fa-hourglass-1:before,.fa-hourglass-start:before {
    content: "\F251"
}

.fa-hourglass-2:before,.fa-hourglass-half:before {
    content: "\F252"
}

.fa-hourglass-3:before,.fa-hourglass-end:before {
    content: "\F253"
}

.fa-hourglass:before {
    content: "\F254"
}

.fa-hand-grab-o:before,.fa-hand-rock-o:before {
    content: "\F255"
}

.fa-hand-paper-o:before,.fa-hand-stop-o:before {
    content: "\F256"
}

.fa-hand-scissors-o:before {
    content: "\F257"
}

.fa-hand-lizard-o:before {
    content: "\F258"
}

.fa-hand-spock-o:before {
    content: "\F259"
}

.fa-hand-pointer-o:before {
    content: "\F25A"
}

.fa-hand-peace-o:before {
    content: "\F25B"
}

.fa-trademark:before {
    content: "\F25C"
}

.fa-registered:before {
    content: "\F25D"
}

.fa-creative-commons:before {
    content: "\F25E"
}

.fa-gg:before {
    content: "\F260"
}

.fa-gg-circle:before {
    content: "\F261"
}

.fa-tripadvisor:before {
    content: "\F262"
}

.fa-odnoklassniki:before {
    content: "\F263"
}

.fa-odnoklassniki-square:before {
    content: "\F264"
}

.fa-get-pocket:before {
    content: "\F265"
}

.fa-wikipedia-w:before {
    content: "\F266"
}

.fa-safari:before {
    content: "\F267"
}

.fa-chrome:before {
    content: "\F268"
}

.fa-firefox:before {
    content: "\F269"
}

.fa-opera:before {
    content: "\F26A"
}

.fa-internet-explorer:before {
    content: "\F26B"
}

.fa-television:before,.fa-tv:before {
    content: "\F26C"
}

.fa-contao:before {
    content: "\F26D"
}

.fa-500px:before {
    content: "\F26E"
}

.fa-amazon:before {
    content: "\F270"
}

.fa-calendar-plus-o:before {
    content: "\F271"
}

.fa-calendar-minus-o:before {
    content: "\F272"
}

.fa-calendar-times-o:before {
    content: "\F273"
}

.fa-calendar-check-o:before {
    content: "\F274"
}

.fa-industry:before {
    content: "\F275"
}

.fa-map-pin:before {
    content: "\F276"
}

.fa-map-signs:before {
    content: "\F277"
}

.fa-map-o:before {
    content: "\F278"
}

.fa-map:before {
    content: "\F279"
}

.fa-commenting:before {
    content: "\F27A"
}

.fa-commenting-o:before {
    content: "\F27B"
}

.fa-houzz:before {
    content: "\F27C"
}

.fa-vimeo:before {
    content: "\F27D"
}

.fa-black-tie:before {
    content: "\F27E"
}

.fa-fonticons:before {
    content: "\F280"
}

.fa-reddit-alien:before {
    content: "\F281"
}

.fa-edge:before {
    content: "\F282"
}

.fa-credit-card-alt:before {
    content: "\F283"
}

.fa-codiepie:before {
    content: "\F284"
}

.fa-modx:before {
    content: "\F285"
}

.fa-fort-awesome:before {
    content: "\F286"
}

.fa-usb:before {
    content: "\F287"
}

.fa-product-hunt:before {
    content: "\F288"
}

.fa-mixcloud:before {
    content: "\F289"
}

.fa-scribd:before {
    content: "\F28A"
}

.fa-pause-circle:before {
    content: "\F28B"
}

.fa-pause-circle-o:before {
    content: "\F28C"
}

.fa-stop-circle:before {
    content: "\F28D"
}

.fa-stop-circle-o:before {
    content: "\F28E"
}

.fa-shopping-bag:before {
    content: "\F290"
}

.fa-shopping-basket:before {
    content: "\F291"
}

.fa-hashtag:before {
    content: "\F292"
}

.fa-bluetooth:before {
    content: "\F293"
}

.fa-bluetooth-b:before {
    content: "\F294"
}

.fa-percent:before {
    content: "\F295"
}

@media (min-width: 992px) and (max-width:1169px) {
    .mainmenu ul#nav>li>a {
        padding:0 14px
    }

    .mainmenu ul#nav li .megamenu {
        left: -318px
    }

    .header-right-menu>ul>li {
        padding: 0 9px
    }

    .post-newsletter #newsletter-input {
        width: 68%
    }

    .post-newsletter .btn {
        float: right
    }

    div.uploader span.filename {
        width: 120px
    }

    div.uploader span.action {
        width: 81px
    }

    .shop-product-text .availability span,.shop-product-text .product-desc {
        margin-bottom: 10px
    }

    .sidebar-content-area .shop-product-list .price-rating-container {
        border: 0;
        margin-bottom: 0
    }

    .socialsharing-product .btn-default {
        padding: 6px 10px
    }

    .product-small li {
        margin-right: 0;
        width: 100px!important
    }

    .mainmenu ul#nav li .megamenu {
        width: 864px
    }

    .mainmenu ul#nav li .megamenu span:nth-child(4) {
        width: 216px
    }

    .blog-sidebar .actions a,.blog-sidebar .tags-list li a {
        padding: 8px
    }

    .team-img img {
        width: 100%
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .mainmenu ul#nav>li>a {
        padding:0 14px
    }

    .mainmenu ul#nav li .megamenu span:nth-child(4) {
        display: none
    }

    .mainmenu ul#nav li .megamenu {
        left: -70px;
        width: 630px
    }

    .header-right-menu,.mainmenu {
        padding: 0
    }

    .search {
        top: 220px
    }

    .slider-banner-area .banner-img {
        float: left;
        margin-top: 20px;
        width: 50%
    }

    .post-newsletter #newsletter-input {
        width: 80%
    }

    .post-newsletter .btn {
        float: right
    }

    .testimonial-author {
        padding: 30px 18px
    }

    .testimonial-info {
        float: left;
        margin-right: 0
    }

    header.home-four-header {
        background: #fff none repeat scroll 0 0;
        position: inherit
    }

    .home-four-header .search,.home-three-header .search {
        top: 216px
    }

    .wishlist-table table .product-add-to-cart>a {
        padding: 10px;
        width: 120px
    }

    .wishlist-table table .product-add-to-cart {
        width: 141px
    }

    .table-content table td.product-name a,.wishlist-area .product-name>a {
        font-size: 14px;
        margin-left: 0
    }

    .product-small li {
        margin-right: 0;
        width: 95px!important
    }

    .team-img img {
        width: 100%
    }
}

@media (max-width: 767px) {
    .home-four-header .logo,.home-three-header .logo,.logo {
        margin:20px 0;
        padding: 0
    }

    .mobile-menu-area {
        display: flex
    }

    .mainmenu {
        display: none
    }

    .header-right-menu,.home-four-header .header-right-menu,.home-three-header .header-right-menu {
        float: none;
        padding: 0!important
    }

    .settings-menu {
        left: -78px;
        width: 263px
    }

    ul.header-r-cart .mini-cart-content {
        left: -154px;
        width: 250px
    }

    ul.header-r-cart li:hover .mini-cart-content,ul.header-settings li:hover .settings-menu {
        top: 77px!important
    }

    .search {
        top: 198px
    }

    .search-form {
        float: none;
        margin: 0 auto;
        padding: 0 10px;
        width: 258px
    }

    .preview-2 .nivo-directionNav a.nivo-nextNav:before,.preview-2 .nivo-directionNav a.nivo-prevNav:before {
        font: 400 25px/35px FontAwesome;
        height: 35px;
        top: 0;
        width: 35px
    }

    .nivo-directionNav a {
        top: 38%!important
    }

    .banner-small-area .col-md-4 {
        margin-bottom: 15px
    }

    .banner-small-area .col-md-4:last-child {
        margin-bottom: 0
    }

    .features-tab .nav li {
        padding: 0 5px
    }

    .post-newsletter #newsletter-input {
        width: 100%
    }

    .post-newsletter .btn {
        margin-top: 20px
    }

    .brand-item {
        text-align: center
    }

    #footer p {
        line-height: 30px;
        margin-bottom: 10px
    }

    #footer img {
        float: left
    }

    .modal-product .product-images {
        width: 100%
    }

    .modal-product .product-info {
        margin: 0;
        padding: 0;
        width: 100%
    }

    .quick-add-to-cart .single_add_to_cart_button {
        font-size: 13px;
        padding: 0 18px
    }

    .modal-product .widget .social-icons li .social-icon {
        height: 34px;
        line-height: 34px;
        width: 34px
    }

    .modal-product .widget .social-icons li {
        margin-right: 6px
    }

    .modal-product .product-info .quick-desc {
        font-size: 12px;
        font-weight: 400;
        margin: 0 0 10px;
        padding: 0 0 10px
    }

    .modal-product .product-info .quick-add-to-cart {
        border-bottom: 1px solid #e5e5e5;
        float: left;
        margin: 0 0 10px;
        padding: 0 0 16px;
        width: 100%
    }

    .slider-banner-area .banner-img {
        margin-top: 10px
    }

    .home-four-header .search,.home-three-header .search {
        top: 49px
    }

    .home-three-banner-area .col-md-4 {
        margin-bottom: 10px
    }

    .home-three-banner-area .col-md-4:last-child {
        margin-bottom: 0
    }

    .featured-product-area.home-three-product .features-tab .nav li {
        margin: 0 8px 0 0
    }

    .featured-product-area.home-three-product .features-tab .nav.nav-tabs>li a {
        font-size: 13px
    }

    .testimonial-author {
        padding: 10px 13px
    }

    .testimonial-info {
        margin-bottom: 10px;
        margin-right: 0
    }

    .testimonial-carousel {
        margin-bottom: 20px
    }

    .testimonial-blog-area {
        padding-bottom: 0
    }

    header.home-four-header {
        background: #fff none repeat scroll 0 0;
        position: inherit
    }

    .home-four-banner-area .img {
        margin-bottom: 5px;
        padding: 0
    }

    .error-text-area h1 {
        font-size: 31px;
        margin-bottom: 5px
    }

    .account-content-area .account-input {
        width: 230px
    }

    .cart-main-area {
        margin-bottom: 60px
    }

    .cart-main-area .buttons-cart a {
        margin-top: 13px
    }

    .coupon-accordion h3 {
        padding: 1em 2em 1em 1.5em!important
    }

    .your-order {
        padding: 20px 0
    }

    .your-order-table table th {
        width: 109px
    }

    .wishlist-table table {
        margin: 0
    }

    .wishlist-table table .product-add-to-cart>a {
        padding: 10px 5px;
        width: 110px
    }

    .wishlist-table table .product-add-to-cart {
        width: 100%
    }

    div.uploader span.filename {
        width: 139px
    }

    .shop-tab ul.nav li {
        margin: 0 8px 12px 0
    }

    .item-page,.sort-form {
        display: block;
        margin-bottom: 12px;
        margin-right: 0
    }

    .compare-form button {
        margin-left: 0
    }

    .sidebar-content-area .single-product {
        margin-bottom: 30px
    }

    .shop-product-text .shop-buttons a.cart-btn {
        padding: 0 6px
    }

    .pagination-button {
        display: block;
        float: inherit
    }

    .pagination-content .pagination .pagination-previous a {
        padding-left: 0
    }

    .product-details-buttons a.cart-btn {
        padding: 0 3px
    }

    #product-comments-block-extra {
        margin: 24px 0 22px
    }

    .widget-items .widget-item:last-child {
        margin-bottom: 0
    }

    .p-details-tab ul li {
        margin-right: 0
    }

    .product-details-area .tab-content {
        margin: 0 0 50px;
        padding: 13px
    }

    .wishlist-area {
        margin-bottom: 30px
    }

    blockquote {
        padding: 18px 30px
    }

    .blog-page-area .post-date {
        display: block;
        padding: 6px 0;
        position: inherit
    }

    .postinfo-wrapper {
        padding-left: 0
    }

    .post-info {
        display: block;
        padding-top: 55px
    }

    .blog-post-title,.post-thumbnail {
        margin: 0 0 20px
    }

    .single-blog {
        margin: 0 0 35px
    }

    .entry-summary {
        line-height: 28px;
        margin: 0
    }

    .blog-post-title {
        font-size: 21px;
        margin: 5px 0 20px
    }

    .blog-sidebar.post .post-info {
        padding-top: 0
    }

    .single-blog blockquote {
        margin: 20px 0;
        padding: 17px 21px
    }

    .form-list .fields .field {
        width: 100%
    }

    .single-blog .share-icon h3 {
        margin: 0 10px 0 0
    }

    .single-blog .share-icon ul li a {
        padding: 0 6px;
        font-size: 17px
    }

    .single-blog .share-icon {
        margin: 5px 0 35px
    }

    .form-list .input-text,.form-list select {
        width: 100%
    }

    .menu-title li {
        padding: 1px 0!important
    }
}

@media only screen and (min-width: 480px) and (max-width:767px) {
    .menu-title li {
        padding:1px 0!important
    }

    .container {
        width: 100%
    }

    .header-right-menu,.home-four-header .header-right-menu,.home-three-header .header-right-menu {
        padding: 0 100px
    }

    .header-right-menu ul {
        padding: 0 10px
    }

    .header-right-menu>ul>li:after {
        right: -12px;
        top: 31px
    }

    .mobile-menu-area {
        display: flex
    }

    .header-right-menu,.mainmenu {
        display: none
    }

    .post-newsletter #newsletter-input {
        width: 69%
    }

    .post-newsletter .btn span {
        padding: 10px 14px
    }

    .banner-small-area .col-md-4 a,.banner-small-area .col-md-4 a img {
        width: 100%
    }

    .post-newsletter .btn {
        float: right;
        margin-top: 0
    }

    .home-three-banner-area .col-md-4 a,.home-three-banner-area .col-md-4 a img {
        width: 100%
    }

    .cart-main-area .buttons-cart a {
        margin-top: 0
    }

    .your-order {
        padding: 20px
    }

    .product-small li {
        margin-right: 7.5px;
        width: 100px!important
    }

    .single-footer-widget .footer-info.contact li p {
        line-height: inherit;
        margin: auto
    }

    .shop-item-filter .selector {
        display: block;
        margin-right: 10px
    }

    .compare-form.pull-right {
        float: left!important
    }

    .breadcrumb-area {
        background: #fff none repeat scroll 0 0;
        margin-bottom: 10px;
        padding: 10px 0
    }

    .breadcrumb {
        background: transparent none repeat scroll 0 0;
        border-radius: 0;
        color: #111;
        font-size: 12px;
        font-weight: 300;
        margin: 0;
        padding: 0
    }

    .breadcrumb a {
        color: #111
    }

    .breadcrumb span.navigation {
        color: #111;
        padding: 0 5px
    }

    .breadcrumb a:hover {
        color: #111
    }
}

@media (max-width: 480px) {
    .table-stock table {
        width:100%!important
    }

    .table-stock table th {
        color: #333;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        text-transform: capitalize;
        vertical-align: middle;
        white-space: nowrap;
        line-height: 17px;
        padding: 7px 0;
        border-top: 1px solid #e9e9e9;
        min-width: 38px
    }

    .input-color {
        width: 30px!important;
        display: block
    }

    .breadcrumb-area {
        background: #fff none repeat scroll 0 0;
        margin-bottom: 10px;
        padding: 10px 0
    }

    .breadcrumb {
        background: transparent none repeat scroll 0 0;
        border-radius: 0;
        color: #111;
        font-size: 12px;
        font-weight: 300;
        margin: 0;
        padding: 0
    }

    .breadcrumb a {
        color: #111
    }

    .breadcrumb span.navigation {
        color: #111;
        padding: 0 5px
    }

    .breadcrumb a:hover {
        color: #111
    }

    .table-stock table td {
        font-size: 11px;
        line-height: 15px;
        padding: 7px 0
    }

    .product-details-area .tab-content {
        margin: 0 0 50px;
        padding: 0
    }

    .item-bottom h5 {
        color: #383c45;
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0;
        font-weight: 700
    }

    .single-footer-widget {
        margin-top: 10px
    }

    .single-footer-widget h4 {
        color: #919191;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        text-transform: uppercase
    }

    .mb10 {
        margin-bottom: 5px!important
    }

    .mini li {
        line-height: 25px!important;
        display: inline-block;
        padding-right: 12px
    }

    .single-footer-widget .footer-info p {
        color: #ddd;
        font-size: 12px;
        font-weight: 300;
        line-height: 24px
    }

    .orderh2 {
        font-size: 18px!important;
        font-weight: 700
    }

    .right-content-edit .btn {
        font-size: 12px
    }
}

.nivoSlider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden
}

.nivoSlider img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none
}

.nivo-caption {
    bottom: 0;
    padding: 5px 10px;
    opacity: .8;
    overflow: hidden;
    display: none;
    -moz-opacity: .8;
    filter: alpha(opacity=8);
    box-sizing: border-box
}

.nivo-caption p {
    padding: 5px;
    margin: 0
}

.nivo-caption a {
    display: inline!important
}

.nivo-html-caption {
    display: none
}

.nivo-directionNav a {
    position: absolute;
    top: 45%;
    z-index: 9;
    cursor: pointer
}

.nivo-prevNav {
    left: 0
}

.nivo-nextNav {
    right: 0
}

.nivo-controlNav {
    text-align: center;
    padding: 15px 0
}

.nivo-controlNav a {
    cursor: pointer
}

.nivo-controlNav a.active {
    font-weight: 700
}

.slider-direction {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: none;
    color: #fff;
    font-size: 16px;
    z-index: 999;
    display: block
}

.nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    display: none;
    background: #fff;
    filter: alpha(opacity=0);
    opacity: 0
}

.nivo-box img {
    display: block
}

.nivo-caption {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    z-index: 8
}

.nivo-main-image {
    display: block!important;
    position: relative!important;
    width: 100%!important
}

.nivo-slice {
    height: 100%;
    top: 0
}

.nivo-box,.nivo-slice {
    display: block;
    position: absolute;
    z-index: 5
}

.nivo-box {
    overflow: hidden
}

@keyframes myfirst {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

.slider-progress.pos_hover {
    animation-play-state: paused
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    background-color: hsla(0,0%,100%,.7);
    height: 5px;
    animation: myfirst 5s ease-in-out
}

.s-tb {
    display: table;
    height: 100%;
    width: 100%;
    float: left
}

.s-tb-c {
    display: table-cell;
    vertical-align: middle
}

.t-cn {
    text-align: center
}

.t-lft {
    text-align: left
}

.t-lfr {
    text-align: right
}

.home1 .slider-1 h1 {
    animation: bounceInUp 1s ease-in-out
}

.home1 .slider-1 h2 {
    animation: fadeInRight 1.5s ease-in-out
}

.home1 .slider-2 h1 {
    animation: fadeInLeft .5s ease-in-out
}

.home1 .slider-2 h3 {
    animation: fadeInLeft 1.5s ease-in-out
}

.home2 .slider-2 h1 {
    animation: fadeInLeft .5s ease-in-out
}

.home2 .layer-1,.home2 .slider-2 h3 {
    animation: fadeInLeft 1.5s ease-in-out
}

.home2 .layer-2 {
    animation: bounceInUp 1s ease-in-out
}

.home2 .layer-1-1,.home2 .layer-3 {
    animation: fadeInRight 1.5s ease-in-out
}

.home3 .slider-1 h1 {
    animation: fadeInLeft .5s ease-in-out
}

.home3 .slider-1 h3 {
    animation: fadeInLeft 1.5s ease-in-out
}

.home3 .slider-2 h1 {
    animation: bounceInUp 1s ease-in-out
}

.home3 .slider-2 h3 {
    animation: fadeInLeft 1.5s ease-in-out
}

.home3 .slider-3 h1 {
    animation: fadeInRight .5s ease-in-out
}

.home3 .slider-3 h3 {
    animation: fadeInRight 1.5s ease-in-out
}

.preview-1 .nivoSlider {
    position: relative;
    background: url(data:image/gif;base64,R0lGODlhEAAQAPYAAP///wAAANTU1JSUlGBgYEBAQERERG5ubqKiotzc3KSkpCQkJCgoKDAwMDY2Nj4+Pmpqarq6uhwcHHJycuzs7O7u7sLCwoqKilBQUF5eXr6+vtDQ0Do6OhYWFoyMjKqqqlxcXHx8fOLi4oaGhg4ODmhoaJycnGZmZra2tkZGRgoKCrCwsJaWlhgYGAYGBujo6PT09Hh4eISEhPb29oKCgqioqPr6+vz8/MDAwMrKyvj4+NbW1q6urvDw8NLS0uTk5N7e3s7OzsbGxry8vODg4NjY2PLy8tra2np6erS0tLKyskxMTFJSUlpaWmJiYkJCQjw8PMTExHZ2djIyMurq6ioqKo6OjlhYWCwsLB4eHqCgoE5OThISEoiIiGRkZDQ0NMjIyMzMzObm5ri4uH5+fpKSkp6enlZWVpCQkEpKSkhISCIiIqamphAQEAwMDKysrAQEBJqamiYmJhQUFDg4OHR0dC4uLggICHBwcCAgIFRUVGxsbICAgAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAAHjYAAgoOEhYUbIykthoUIHCQqLoI2OjeFCgsdJSsvgjcwPTaDAgYSHoY2FBSWAAMLE4wAPT89ggQMEbEzQD+CBQ0UsQA7RYIGDhWxN0E+ggcPFrEUQjuCCAYXsT5DRIIJEBgfhjsrFkaDERkgJhswMwk4CDzdhBohJwcxNB4sPAmMIlCwkOGhRo5gwhIGAgAh+QQJCgAAACwAAAAAEAAQAAAHjIAAgoOEhYU7A1dYDFtdG4YAPBhVC1ktXCRfJoVKT1NIERRUSl4qXIRHBFCbhTKFCgYjkII3g0hLUbMAOjaCBEw9ukZGgidNxLMUFYIXTkGzOmLLAEkQCLNUQMEAPxdSGoYvAkS9gjkyNEkJOjovRWAb04NBJlYsWh9KQ2FUkFQ5SWqsEJIAhq6DAAIBACH5BAkKAAAALAAAAAAQABAAAAeJgACCg4SFhQkKE2kGXiwChgBDB0sGDw4NDGpshTheZ2hRFRVDUmsMCIMiZE48hmgtUBuCYxBmkAAQbV2CLBM+t0puaoIySDC3VC4tgh40M7eFNRdH0IRgZUO3NjqDFB9mv4U6Pc+DRzUfQVQ3NzAULxU2hUBDKENCQTtAL9yGRgkbcvggEq9atUAAIfkECQoAAAAsAAAAABAAEAAAB4+AAIKDhIWFPygeEE4hbEeGADkXBycZZ1tqTkqFQSNIbBtGPUJdD088g1QmMjiGZl9MO4I5ViiQAEgMA4JKLAm3EWtXgmxmOrcUElWCb2zHkFQdcoIWPGK3Sm1LgkcoPrdOKiOCRmA4IpBwDUGDL2A5IjCCN/QAcYUURQIJIlQ9MzZu6aAgRgwFGAFvKRwUCAAh+QQJCgAAACwAAAAAEAAQAAAHjIAAgoOEhYUUYW9lHiYRP4YACStxZRc0SBMyFoVEPAoWQDMzAgolEBqDRjg8O4ZKIBNAgkBjG5AAZVtsgj44VLdCanWCYUI3txUPS7xBx5AVDgazAjC3Q3ZeghUJv5B1cgOCNmI/1YUeWSkCgzNUFDODKydzCwqFNkYwOoIubnQIt244MzDC1q2DggIBACH5BAkKAAAALAAAAAAQABAAAAeJgACCg4SFhTBAOSgrEUEUhgBUQThjSh8IcQo+hRUbYEdUNjoiGlZWQYM2QD4vhkI0ZWKCPQmtkG9SEYJURDOQAD4HaLuyv0ZeB4IVj8ZNJ4IwRje/QkxkgjYz05BdamyDN9uFJg9OR4YEK1RUYzFTT0qGdnduXC1Zchg8kEEjaQsMzpTZ8avgoEAAIfkECQoAAAAsAAAAABAAEAAAB4iAAIKDhIWFNz0/Oz47IjCGADpURAkCQUI4USKFNhUvFTMANxU7KElAhDA9OoZHH0oVgjczrJBRZkGyNpCCRCw8vIUzHmXBhDM0HoIGLsCQAjEmgjIqXrxaBxGCGw5cF4Y8TnybglprLXhjFBUWVnpeOIUIT3lydg4PantDz2UZDwYOIEhgzFggACH5BAkKAAAALAAAAAAQABAAAAeLgACCg4SFhjc6RhUVRjaGgzYzRhRiREQ9hSaGOhRFOxSDQQ0uj1RBPjOCIypOjwAJFkSCSyQrrhRDOYILXFSuNkpjggwtvo86H7YAZ1korkRaEYJlC3WuESxBggJLWHGGFhcIxgBvUHQyUT1GQWwhFxuFKyBPakxNXgceYY9HCDEZTlxA8cOVwUGBAAA7AAAAAAAAAAAA) no-repeat 50% 50%
}

.preview-1 .nivoSlider img {
    position: absolute;
    top: 0;
    left: 0;
    display: none
}

.preview-1 .nivoSlider a {
    border: 0;
    display: block
}

.preview-1 .nivo-controlNav {
    text-align: center;
    padding: 20px 0
}

.preview-1 .nivo-controlNav a {
    width: 22px;
    height: 22px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAoCAYAAAD6xArmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAASHSURBVHjatFdNSGNXFP7ue3n5cWInjGMXEqQGpbu2jgtFphibhYKBgD/goosGCy5mERetSEuXilAQhWy6kFEozaq4eHV+SBDBBK0/jWgliJpGhEaJQtIXqOPkvdvNfXJ9vmQcpnPg8N7j3vvdc0++890TQinF+zAB78ks5QYIIYT/ZK4bZQ7KHVlfQik1B+ZABYPrpulOCNGMG1SMGIDI3AJAYk/CIn0NoMSe+kaVc8yiFRioFUBVPB7/Ip/P/6Bp2mw+n/8+Ho97ATjYuAhAMKSu7I9HWIS2TCbzlaIoQb/f75EkiQQCgUZJkr4+Ojr6EoCdO8lNo5TecDbJCuB+JBL5fHNzUxZFUQZw7U6nUz44OJCnpqaaAVSz+YTHrBSx6PV6O2dmZqCq6o3BYrGIcDiMvr6+TpYK8lY8ttlszlwuZzpWKBQgSVKVaRreAKwdHx/v9vT0mA52d3cjnU7vMkbQu+ZYAlBdW1tbVyqV5P7+/hs5DoVCciaTGQPwIYB7bP6NHBOjVnB0kwDYFhcXH7W0tPiy2eyn6+vr6OjogMPhiC8sLLwcGRn5C8ArxmeNq8ayEetROwDcB1A7Ozvbur29PTg9Pf0ZgIcAPjDQrXLEXNR8oVhMSroEQNUjpZTSN2oFN0llx1PLiJCpTlTUCn2yLjKV5ryVbN5l8Z312KAj72TvjFTuQJb/YVN6l8XE5J3cAfT2NVUGqJwbwW455aqMfwpcYQiGb2LCYcrffzy4xeQmFrmKE7lvgQPWWNGo3LtekZQQQozAOoBF9729vd76+voBPrGqqiqhUOib+fn5PCtt/iQEAOXzxwNKAKzFYvHnra0tzM3NqYlEQs1ms9rjx49Fn88nDg8Pi7lc7qXH43kK4IptcK0fxJACiQP9ZWtrCx0dHZdmdPD7/WIkErEeHh4+bW5ufs7A9bZAAwdqZaL9YH9//8nKykpUF/bJycm9k5MTpVgsvl5aWvq7qakpCkAOBoMvFEWJAag1kdFrYBu7cR8qihIbHBx8DkCemJj4kxrs6OjoH7vdvghAPj09jYXD4UcAXEy/JQCCYMIKAQASiYQKAENDQx5jGjweT3V/f38NAKytrdHe3t5eo9gLxkLxer1WADg/PwcAuFwuq1mO6+rq7ACQy+U0h8PxUblb+rpylpeXXwFAe3u7CACrq6u37v9SqaTJsnwOAK2trUIqlfrVqBmCSe1rlNLLrq4uAQCCweBuOp1W9AlXV1fq2NjYTiqV+rezs1NsaGgg7e3tCUNpw8iKKgCu0dHRjxVFiQUCgWcAZLvdvjgwMLAaCoX+0BnhdDp/SyaTsWw2+yOAGvbD24ysELhbuRpATTqd/lZRlFgwGHzB9xQAZJ/P92xnZydWLBajjGouFpTefd5qsEW++pLJZFdjY2Pw8vKSbGxsqGdnZ7StrU10u90oFAq/u93uaa5PLnH6cSsdEiP5PUb4BwBqx8fHP8lkMt9dXFz8FI1Gu1gHVMMidXK9st4mEDMNFgwnECrIpmqQTc0om9TQjPCLSZk/N5qBCTeaw/8GANoRNx1/Nr/GAAAAAElFTkSuQmCC) no-repeat;
    border: 0;
    margin: 0 2px
}

.preview-1 .nivo-controlNav a.active {
    background-position: 0 -22px
}

.preview-1 .nivo-directionNav a {
    display: block;
    width: 30px;
    height: 30px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAeCAYAAABwmH1PAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAK+SURBVHja1Jmvc+JAFMc/ZJghLq5xOFCH67m6OHB1lefuv6q7unPg4loFDlTPxQWHSxUVvMykuWz27WZzM/dmMjAh5O13d7/f92Mn1+sVpcXAHTDv+O0CnIGScSwV30nHb4X4rjQvmiqeWQLf5NNmF+AIHLQDsEzwPbAyAG3bu/gt+h6a9KxwCmSGFbVZJc5fPcE+CNjY478FkJt2mwnwdwE71Ergt6y8xhLgUSZ7qOXAXgN4I9solFXAi4LfKfDkuaomOwLb5o2o9UAWGGzNxScLD5MRwCJYMhPgpWzlMSyWrWqyxxHANum5bAOOgbUHP11Dy4NBoNKRfa/rCa0BuypiLpertf0kcs9HkHLHHXZfA44dnW671M/VcYNjvlt53xYkzWRHwELptAKeRfmGCknXd18VflYmOTGwqAFrOPNCmNQxEc6mygwq5NgWkUIwQoKt7U6uUKYdYzq1zPKxhydn4JdCmTPDKvcJkm3g5x7K9SVOydQiCrmF08UIcbMc+N6tjK0zp4h6qp43/l97M+XvUY+w/AyUxP9rS2XsiWs9XOfAO6k1tfxs2sxjwBnwoUg8SkPtvu4Ls1Phy9ySA2874u/Ms1bGwlHNrpoZ4vvG5jdShptNoPq4qbLngO/LFGABygg4OVQdmwBVzbuoaGWgimuqunGo8k6RYxhYBahbD4bvvnX2yoFGZa3SLr2nFPjhqeBFa3ILz5jrM4bXZlgqHLdX4snpXHlPw9nEkUZFOw7v0Dfb8ARbGjKrfES/F8H2V+JRceswViM4PVpq6H2AstOU/n7B1NW1TCX2JoGc7h1WMCNcX+0iYL/sKlNfuu5xLQfO7s4j9FizJSVnd127dWI5W5pza7LNHYEeGHbcUreCXHtthaixUfknysO0lNv5Uor5MK0E/sgVSgdi6cgsejokhfg+abLGzwEA5nq5vbenPB4AAAAASUVORK5CYII=) no-repeat;
    text-indent: -9999px;
    border: 0;
    opacity: 0;
    transition: all .2s ease-in-out
}

.preview-1:hover .nivo-directionNav a {
    opacity: 1
}

.preview-1 a.nivo-nextNav {
    background-position: -30px 0;
    right: 15px
}

.preview-1 a.nivo-prevNav {
    left: 15px
}

.preview-1 .nivo-caption {
    font-family: Helvetica,Arial,sans-serif
}

.preview-1 .nivo-caption a {
    color: #fff;
    border-bottom: 1px dotted #fff
}

.preview-1 .nivo-caption a:hover {
    color: #fff
}

.preview-1 .nivo-controlNav.nivo-thumbs-enabled {
    width: 100%
}

.preview-1 .nivo-controlNav.nivo-thumbs-enabled a {
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 5px
}

.preview-1 .nivo-controlNav.nivo-thumbs-enabled img {
    display: block;
    width: 120px;
    height: auto
}

.preview-1 .nivo-controlNav {
    position: relative;
    z-index: 99999;
    bottom: 68px
}

.preview-1 .nivo-controlNav a {
    border: 5px solid #fff;
    display: inline-block;
    height: 18px;
    margin: 0 5px;
    text-indent: -9999px;
    width: 18px;
    line-height: 8px;
    background: #3c3c3c;
    cursor: pointer;
    position: relative;
    z-index: 9;
    border-radius: 100%;
    opacity: 0;
    z-index: -999
}

.preview-1:hover .nivo-controlNav a {
    opacity: 1;
    z-index: 999999
}

.preview-1 .nivo-controlNav a.active,.preview-1 .nivo-controlNav a:hover {
    background: #000;
    cursor: pointer
}

.preview-2 .nivoSlider:hover .nivo-directionNav a.nivo-prevNav {
    left: 15px
}

.preview-2 .nivoSlider:hover .nivo-directionNav a.nivo-nextNav {
    right: 65px
}

.preview-2 .nivoSlider .nivo-directionNav a.nivo-prevNav {
    left: -60px;
    font-size: 0
}

.preview-2 .nivoSlider .nivo-directionNav a.nivo-nextNav {
    right: -60px;
    font-size: 0
}

.preview-2 .nivo-directionNav a.nivo-prevNav:before {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
    content: "\F0D9";
    font: normal normal normal 14px/1 FontAwesome;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    margin: 0;
    position: absolute;
    text-align: center;
    top: 45%;
    transition: all .3s ease-in 0s;
    width: 50px;
    z-index: 9
}

.preview-2 .nivo-directionNav a.nivo-nextNav:hover:before,.preview-2 .nivo-directionNav a.nivo-prevNav:hover:before {
    border-color: #979797;
    color: #979797
}

.preview-2 .nivo-directionNav a.nivo-nextNav:before {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
    content: "\F0DA";
    font: normal normal normal 14px/1 FontAwesome;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    margin: 0;
    position: absolute;
    text-align: center;
    top: 45%;
    transition: all .3s ease-in 0s;
    width: 50px;
    z-index: 9
}

.preview-2 .nivo-controlNav {
    position: relative;
    z-index: 99999;
    bottom: 68px
}

.preview-2 .nivo-controlNav a {
    border: 5px solid #fff;
    display: inline-block;
    height: 18px;
    margin: 0 5px;
    text-indent: -9999px;
    width: 18px;
    line-height: 8px;
    background: #3c3c3c;
    cursor: pointer;
    position: relative;
    z-index: 9;
    border-radius: 100%;
    opacity: 0;
    z-index: -999
}

.preview-2:hover .nivo-controlNav a {
    opacity: 1;
    z-index: 999999
}

.preview-2 .nivo-controlNav a.active,.preview-2 .nivo-controlNav a:hover {
    border-color: #979797!important;
    color: #979797;
    cursor: pointer
}

.slider-banner-area .preview-2 {
    position: relative
}

.slider-banner-area .nivo-directionNav {
    bottom: 78px;
    display: inline-block;
    position: absolute;
    right: 69px!important;
    z-index: 99
}

.slider-banner-area .preview-2 .nivo-directionNav a.nivo-nextNav:before,.slider-banner-area .preview-2 .nivo-directionNav a.nivo-prevNav:before {
    border: 1px solid #fff
}

.slider-banner-area .preview-2 .nivo-directionNav a.nivo-nextNav:hover:before,.slider-banner-area .preview-2 .nivo-directionNav a.nivo-prevNav:hover:before {
    border: 1px solid #979797!important;
    color: #979797
}

.slider-banner-area .preview-2 .nivoSlider .nivo-directionNav a.nivo-prevNav {
    font-size: 0;
    left: -60px
}

.slider-banner-area .preview-2 .nivoSlider:hover .nivo-directionNav a.nivo-prevNav {
    left: -60px
}

.slider-banner-area .preview-2 .nivoSlider .nivo-directionNav a.nivo-nextNav {
    font-size: 0;
    right: 0
}

.slider-banner-area .preview-2 .nivoSlider:hover .nivo-directionNav a.nivo-nextNav {
    right: 0
}

.cttx-input {
    border: transparent!important;
    border-bottom: 1px solid #000!important;
    background-color: #fff!important;
    color: #000!important;
    border-radius: 0!important
}

@font-face {
    font-family: monstrat-semibold;
    src: url(/static/media/Montserrat-SemiBold.cbdf3ab9.otf)
}

@font-face {
    font-family: monstrat-bold;
    src: url(/static/media/Montserrat-Bold.d3085f68.ttf)
}

@font-face {
    font-family: monstrat-reg;
    src: url(/static/media/Montserrat-Regular.07689d4e.ttf)
}

@font-face {
    font-family: monstrat-medium;
    src: url(/static/media/Montserrat-Medium.d815b0a2.otf)
}

@font-face {
    font-family: raleway-regular;
    src: url(/static/media/Raleway-Regular.6e4a9679.ttf)
}

@font-face {
    font-family: raleway-bold;
    src: url(/static/media/Raleway-Bold.3b1a9a7b.ttf)
}

@font-face {
    font-family: raleway-medium;
    src: url(/static/media/Raleway-Medium.fa56e8c1.ttf)
}

@font-face {
    font-family: raleway-extra;
    src: url(/static/media/Raleway-ExtraBold.a26b54e7.ttf)
}

@font-face {
    font-family: gotham;
    src: url(/static/media/Gotham-Medium.27a90e87.otf)
}

@font-face {
    font-family: arialregular;
    src: url(/static/media/arial.fa3228aa.ttf)
}

@font-face {
    font-family: arialbold;
    src: url(/static/media/arialbd.858f5a50.ttf)
}

@font-face {
    font-family: opensans;
    src: url(/static/media/OpenSans-Regular.629a55a7.ttf)
}

@font-face {
    font-family: opensansbold;
    src: url(/static/media/OpenSans-Bold.50145685.ttf)
}

@font-face {
    font-family: mark-pro;
    src: url(/static/media/Mark\ Pro.6f9a7442.woff2);
    font-weight: 400
}

@font-face {
    font-family: MarkPro;
    src: url(/static/media/Mark\ Pro.6f9a7442.woff2);
    font-weight: 400
}

@font-face {
    font-family: mark-pro;
    src: url(/static/media/MarkPro-Bold.666115d9.eot);
    src: url(/static/media/MarkPro-Bold.666115d9.eot) format("embedded-opentype"),url(/static/media/MarkPro-Bold.01d27320.ttf) format("truetype"),url(/static/media/MarkPro-Bold.51550598.woff) format("woff"),url(/static/media/MarkPro-Bold.3cecbd83.woff2) format("woff2");
    font-weight: 700
}

@font-face {
    font-family: MarkPro;
    src: url(/static/media/MarkPro-Bold.666115d9.eot);
    src: url(/static/media/MarkPro-Bold.666115d9.eot) format("embedded-opentype"),url(/static/media/MarkPro-Bold.01d27320.ttf) format("truetype"),url(/static/media/MarkPro-Bold.51550598.woff) format("woff"),url(/static/media/MarkPro-Bold.3cecbd83.woff2) format("woff2");
    font-weight: 700
}

@font-face {
    font-family: proxima-nova;
    src: url("/static/media/Proxima Nova SemiBold.f14eee64.otf");
    font-weight: 400
}

@font-face {
    font-family: ProximaNova;
    src: url("/static/media/Proxima Nova SemiBold.f14eee64.otf");
    font-weight: 400
}

@font-face {
    font-family: proxima-nova;
    src: url(/static/media/ProximaNova-Bold.5ba97be1.eot);
    src: url(/static/media/ProximaNova-Bold.5ba97be1.eot) format("embedded-opentype"),url(/static/media/ProximaNova-Bold.76f7b12c.woff2) format("woff2"),url(/static/media/ProximaNova-Bold.72b6f2c9.ttf) format("truetype");
    font-weight: 700
}

@font-face {
    font-family: ProximaNova;
    src: url(/static/media/ProximaNova-Bold.5ba97be1.eot);
    src: url(/static/media/ProximaNova-Bold.5ba97be1.eot) format("embedded-opentype"),url(/static/media/ProximaNova-Bold.76f7b12c.woff2) format("woff2"),url(/static/media/ProximaNova-Bold.72b6f2c9.ttf) format("truetype");
    font-weight: 700
}

@font-face {
    font-family: AvalonB;
    src: url(/static/media/Avalon_Bold.659063c8.ttf);
    font-weight: 400
}

@font-face {
    font-family: Lato;
    src: url(/static/media/Lato-Regular.2d36b1a9.ttf);
    font-weight: 400
}

@font-face {
    font-family: Lato;
    src: url(/static/media/Lato-Bold.85d339d9.ttf);
    font-weight: 700
}

@font-face {
    font-family: DM Sans;
    src: url(/static/media/DMSans-Regular.3e7f038b.ttf);
    font-weight: 400
}

@font-face {
    font-family: DM Sans;
    src: url(/static/media/DMSans-Regular.3e7f038b.ttf);
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: DM Sans;
    src: url(/static/media/DMSans-Medium.fbbc5a51.ttf);
    font-weight: medium
}

@font-face {
    font-family: DM Sans;
    src: url(/static/media/DMSans-MediumItalic.a2a143d6.ttf);
    font-weight: medium;
    font-style: italic
}

@font-face {
    font-family: DM Sans;
    src: url(/static/media/DMSans-Bold.07185303.ttf);
    font-weight: 700
}

@font-face {
    font-family: DM Sans;
    src: url(/static/media/DMSans-BoldItalic.a300c772.ttf);
    font-weight: 700;
    font-style: italic
}

@font-face {
    font-family: Anton;
    src: url(/static/media/Anton-Regular.7777f7f3.ttf);
    font-weight: 400
}

@font-face {
    font-family: BebasNeue;
    src: url(/static/media/BebasNeue-Regular.efe36cb1.otf);
    font-weight: 400
}

@font-face {
    font-family: CondProBold;
    src: url(/static/media/CondPro-Bold.9ae3709d.ttf);
    font-weight: 700
}

@font-face {
    font-family: CondProReguler;
    src: url(/static/media/CondPro-Regular.ac54ae3f.ttf);
    font-weight: 400
}

@font-face {
    font-family: InfraExtraBold;
    src: url(/static/media/InfraExtraBold.eaa46bb1.otf);
    font-weight: 700
}

@font-face {
    font-family: InfraRegular;
    src: url(/static/media/InfraRegular.1ab5b6f0.otf);
    font-weight: 400
}

@font-face {
    font-family: InfraBold;
    src: url(/static/media/InfraBold.d1cac95a.otf);
    font-weight: 700
}

.mean-nav {
    background: #343a40!important
}

.meanmenu-reveal.meanclose:hover {
    color: #fff!important
}

.mean-container a.meanmenu-reveal:hover span {
    background: #fff
}

.cari {
    position: absolute;
    right: 0;
    font-size: 22px
}

.pointer {
    cursor: pointer
}

.closebtn {
    position: absolute;
    right: -30px;
    top: -19px;
    color: #fff;
    font-size: 30px
}

.f-12 {
    font-size: 12px!important
}

.f-20 {
    font-size: 20px!important
}

.uldetail {
    list-style-type: disc;
    font-size: 14px;
    line-height: 25px;
    padding-left: 15px
}

.p5 td {
    padding: 5px!important
}

#short-description-block table {
    width: 60%
}

.buttonSlideLeft:hover,.buttonSlideRight:hover {
    color: #000
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

@media (max-width: 991px) {
    #short-description-block table {
        width:100%
    }
}

@media (max-width: 576px) {
    .product-center-column {
        margin-bottom:5px
    }

    .row.product-details {
        margin-bottom: 0
    }
}

@media (max-width: 450px) {
    .mh138 {
        min-height:138px
    }
}

@media (max-width: 320px) {
    .mh138 {
        min-height:148px
    }
}
