/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

@keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-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)
    }
}

@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 {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

@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;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-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)
    }
}

@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 {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    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: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    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: translateZ(0)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%,11.1%,to {
        transform: translateZ(0)
    }

    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)
    }
}

@keyframes jello {
    0%,11.1%,to {
        transform: translateZ(0)
    }

    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 {
    -webkit-animation-name: jello;
    animation-name: jello;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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 {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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: translateZ(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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)
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        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 {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-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)
    }
}

@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 {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-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)
    }
}

@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 {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-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)
    }
}

@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 {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        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;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        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;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(80deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(60deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(80deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(60deg);
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        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;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        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;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-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
    }
}

@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 {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-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
    }
}

@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 {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        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;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        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;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

    .animated.delay-1s {
        -webkit-animation-delay: 1s;
        animation-delay: 1s
    }

    .animated.delay-2s {
        -webkit-animation-delay: 2s;
        animation-delay: 2s
    }

    .animated.delay-3s {
        -webkit-animation-delay: 3s;
        animation-delay: 3s
    }

    .animated.delay-4s {
        -webkit-animation-delay: 4s;
        animation-delay: 4s
    }

    .animated.delay-5s {
        -webkit-animation-delay: 5s;
        animation-delay: 5s
    }

    .animated.fast {
        -webkit-animation-duration: .8s;
        animation-duration: .8s
    }

    .animated.faster {
        -webkit-animation-duration: .5s;
        animation-duration: .5s
    }

    .animated.slow {
        -webkit-animation-duration: 2s;
        animation-duration: 2s
    }

    .animated.slower {
        -webkit-animation-duration: 3s;
        animation-duration: 3s
    }

@media (prefers-reduced-motion:reduce),(print) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__year-read-view--down-arrow {
    margin-left: -8px;
    position: absolute
}

    .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-read-view--down-arrow:before, .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow:before, .react-datepicker__year-read-view--down-arrow, .react-datepicker__year-read-view--down-arrow:before {
        box-sizing: content-box;
        position: absolute;
        border: 8px solid transparent;
        height: 0;
        width: 1px
    }

        .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before, .react-datepicker__month-read-view--down-arrow:before, .react-datepicker__month-year-read-view--down-arrow:before, .react-datepicker__year-read-view--down-arrow:before {
            content: "";
            z-index: -1;
            border-width: 8px;
            left: -8px;
            border-bottom-color: #aeaeae
        }

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
    top: 0;
    margin-top: -8px
}

    .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before {
        border-top: none;
        border-bottom-color: #f0f0f0
    }

        .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before {
            top: -1px;
            border-bottom-color: #aeaeae
        }

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__year-read-view--down-arrow {
    bottom: 0;
    margin-bottom: -8px
}

    .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-read-view--down-arrow:before, .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow:before, .react-datepicker__year-read-view--down-arrow, .react-datepicker__year-read-view--down-arrow:before {
        border-bottom: none;
        border-top-color: #fff
    }

        .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before, .react-datepicker__month-read-view--down-arrow:before, .react-datepicker__month-year-read-view--down-arrow:before, .react-datepicker__year-read-view--down-arrow:before {
            bottom: -1px;
            border-top-color: #aeaeae
        }

.react-datepicker, .react-datepicker-wrapper {
    display: inline-block
}

.react-datepicker {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: .8rem;
    background-color: #fff;
    color: #000;
    border: 1px solid #aeaeae;
    border-radius: .3rem;
    position: relative
}

.react-datepicker--time-only .react-datepicker__triangle {
    left: 35px
}

.react-datepicker--time-only .react-datepicker__time-container {
    border-left: 0
}

.react-datepicker--time-only .react-datepicker__time, .react-datepicker--time-only .react-datepicker__time-box {
    border-radius: .3rem
}

.react-datepicker__triangle {
    position: absolute;
    left: 50px
}

.react-datepicker-popper {
    z-index: 1
}

    .react-datepicker-popper[data-placement^=bottom] {
        margin-top: 10px
    }

    .react-datepicker-popper[data-placement^=top] {
        margin-bottom: 10px
    }

    .react-datepicker-popper[data-placement^=right] {
        margin-left: 8px
    }

        .react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
            left: auto;
            right: 42px
        }

    .react-datepicker-popper[data-placement^=left] {
        margin-right: 8px
    }

        .react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
            left: 42px;
            right: auto
        }

.react-datepicker__header {
    text-align: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #aeaeae;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    padding-top: 8px;
    position: relative
}

.react-datepicker__header--time {
    padding-bottom: 8px;
    padding-left: 5px;
    padding-right: 5px
}

.react-datepicker__month-dropdown-container--scroll, .react-datepicker__month-dropdown-container--select, .react-datepicker__month-year-dropdown-container--scroll, .react-datepicker__month-year-dropdown-container--select, .react-datepicker__year-dropdown-container--scroll, .react-datepicker__year-dropdown-container--select {
    display: inline-block;
    margin: 0 2px
}

.react-datepicker-time__header, .react-datepicker__current-month {
    margin-top: 0;
    color: #000;
    font-weight: 700;
    font-size: .944rem
}

.react-datepicker-time__header {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.react-datepicker__navigation {
    background: none;
    line-height: 1.7rem;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    width: 0;
    padding: 0;
    border: .45rem solid transparent;
    z-index: 1;
    height: 10px;
    width: 10px;
    text-indent: -999em;
    overflow: hidden
}

.react-datepicker__navigation--previous {
    left: 10px;
    border-right-color: #ccc
}

    .react-datepicker__navigation--previous:hover {
        border-right-color: #b3b3b3
    }

.react-datepicker__navigation--previous--disabled, .react-datepicker__navigation--previous--disabled:hover {
    border-right-color: #e6e6e6;
    cursor: default
}

.react-datepicker__navigation--next {
    right: 10px;
    border-left-color: #ccc
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
    right: 80px
}

.react-datepicker__navigation--next:hover {
    border-left-color: #b3b3b3
}

.react-datepicker__navigation--next--disabled, .react-datepicker__navigation--next--disabled:hover {
    border-left-color: #e6e6e6;
    cursor: default
}

.react-datepicker__navigation--years {
    position: relative;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.react-datepicker__navigation--years-previous {
    top: 4px;
    border-top-color: #ccc
}

    .react-datepicker__navigation--years-previous:hover {
        border-top-color: #b3b3b3
    }

.react-datepicker__navigation--years-upcoming {
    top: -4px;
    border-bottom-color: #ccc
}

    .react-datepicker__navigation--years-upcoming:hover {
        border-bottom-color: #b3b3b3
    }

.react-datepicker__month-container {
    float: left
}

.react-datepicker__month {
    margin: .4rem;
    text-align: center
}

.react-datepicker__time-container {
    float: right;
    border-left: 1px solid #aeaeae;
    width: 70px
}

.react-datepicker__time-container--with-today-button {
    display: inline;
    border: 1px solid #aeaeae;
    border-radius: .3rem;
    position: absolute;
    right: -72px;
    top: 0
}

.react-datepicker__time-container .react-datepicker__time {
    position: relative;
    background: #fff
}

    .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
        width: 70px;
        overflow-x: hidden;
        margin: 0 auto;
        text-align: center
    }

        .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
            list-style: none;
            margin: 0;
            height: calc(195px + .85rem);
            overflow-y: scroll;
            padding-right: 0;
            padding-left: 0;
            width: 100%;
            box-sizing: content-box
        }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
                height: 30px;
                padding: 5px 10px
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
                    cursor: pointer;
                    background-color: #f0f0f0
                }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
                background-color: #216ba5;
                color: #fff;
                font-weight: 700
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
                    background-color: #216ba5
                }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
                color: #ccc
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
                    cursor: default;
                    background-color: transparent
                }

.react-datepicker__week-number {
    color: #ccc;
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: .166rem
}

    .react-datepicker__week-number.react-datepicker__week-number--clickable {
        cursor: pointer
    }

        .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
            border-radius: .3rem;
            background-color: #f0f0f0
        }

.react-datepicker__day-names, .react-datepicker__week {
    white-space: nowrap
}

.react-datepicker__day, .react-datepicker__day-name, .react-datepicker__time-name {
    color: #000;
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: .166rem
}

.react-datepicker__day {
    cursor: pointer
}

    .react-datepicker__day:hover {
        border-radius: .3rem;
        background-color: #f0f0f0
    }

.react-datepicker__day--today {
    font-weight: 700
}

.react-datepicker__day--highlighted {
    border-radius: .3rem;
    background-color: #3dcc4a;
    color: #fff
}

    .react-datepicker__day--highlighted:hover {
        background-color: #32be3f
    }

.react-datepicker__day--highlighted-custom-1 {
    color: #f0f
}

.react-datepicker__day--highlighted-custom-2 {
    color: green
}

.react-datepicker__day--in-range, .react-datepicker__day--in-selecting-range, .react-datepicker__day--selected {
    border-radius: .3rem;
    background-color: #216ba5;
    color: #fff
}

    .react-datepicker__day--in-range:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--selected:hover {
        background-color: #1d5d90
    }

.react-datepicker__day--keyboard-selected {
    border-radius: .3rem;
    background-color: #2a87d0;
    color: #fff
}

    .react-datepicker__day--keyboard-selected:hover {
        background-color: #1d5d90
    }

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range) {
    background-color: rgba(33,107,165,.5)
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range) {
    background-color: #f0f0f0;
    color: #000
}

.react-datepicker__day--disabled {
    cursor: default;
    color: #ccc
}

    .react-datepicker__day--disabled:hover {
        background-color: transparent
    }

.react-datepicker__input-container {
    position: relative;
    display: inline-block
}

.react-datepicker__month-read-view, .react-datepicker__month-year-read-view, .react-datepicker__year-read-view {
    border: 1px solid transparent;
    border-radius: .3rem
}

    .react-datepicker__month-read-view:hover, .react-datepicker__month-year-read-view:hover, .react-datepicker__year-read-view:hover {
        cursor: pointer
    }

        .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow, .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow, .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow, .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow {
            border-top-color: #b3b3b3
        }

.react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__year-read-view--down-arrow {
    border-top-color: #ccc;
    float: right;
    margin-left: 20px;
    top: 8px;
    position: relative;
    border-width: .45rem
}

.react-datepicker__month-dropdown, .react-datepicker__month-year-dropdown, .react-datepicker__year-dropdown {
    background-color: #f0f0f0;
    position: absolute;
    width: 50%;
    left: 25%;
    top: 30px;
    z-index: 1;
    text-align: center;
    border-radius: .3rem;
    border: 1px solid #aeaeae
}

    .react-datepicker__month-dropdown:hover, .react-datepicker__month-year-dropdown:hover, .react-datepicker__year-dropdown:hover {
        cursor: pointer
    }

.react-datepicker__month-dropdown--scrollable, .react-datepicker__month-year-dropdown--scrollable, .react-datepicker__year-dropdown--scrollable {
    height: 150px;
    overflow-y: scroll
}

.react-datepicker__month-option, .react-datepicker__month-year-option, .react-datepicker__year-option {
    line-height: 20px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto
}

    .react-datepicker__month-option:first-of-type, .react-datepicker__month-year-option:first-of-type, .react-datepicker__year-option:first-of-type {
        border-top-left-radius: .3rem;
        border-top-right-radius: .3rem
    }

    .react-datepicker__month-option:last-of-type, .react-datepicker__month-year-option:last-of-type, .react-datepicker__year-option:last-of-type {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-bottom-left-radius: .3rem;
        border-bottom-right-radius: .3rem
    }

    .react-datepicker__month-option:hover, .react-datepicker__month-year-option:hover, .react-datepicker__year-option:hover {
        background-color: #ccc
    }

        .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming, .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming, .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming {
            border-bottom-color: #b3b3b3
        }

        .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous, .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous, .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous {
            border-top-color: #b3b3b3
        }

.react-datepicker__month-option--selected, .react-datepicker__month-year-option--selected, .react-datepicker__year-option--selected {
    position: absolute;
    left: 15px
}

.react-datepicker__close-icon {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: 0;
    padding: 0;
    vertical-align: middle;
    position: absolute;
    height: 16px;
    width: 16px;
    top: 25%;
    right: 7px
}

    .react-datepicker__close-icon:after {
        background-color: #216ba5;
        border-radius: 50%;
        bottom: 0;
        box-sizing: border-box;
        color: #fff;
        content: "\D7";
        cursor: pointer;
        font-size: 12px;
        height: 16px;
        width: 16px;
        line-height: 1;
        margin: -8px auto 0;
        padding: 2px;
        position: absolute;
        right: 0;
        text-align: center
    }

.react-datepicker__today-button {
    background: #f0f0f0;
    border-top: 1px solid #aeaeae;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    padding: 5px 0;
    clear: left
}

.react-datepicker__portal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 2147483647
}

    .react-datepicker__portal .react-datepicker__day, .react-datepicker__portal .react-datepicker__day-name, .react-datepicker__portal .react-datepicker__time-name {
        width: 3rem;
        line-height: 3rem
    }

@media (max-height:550px),(max-width:400px) {
    .react-datepicker__portal .react-datepicker__day, .react-datepicker__portal .react-datepicker__day-name, .react-datepicker__portal .react-datepicker__time-name {
        width: 2rem;
        line-height: 2rem
    }
}

.react-datepicker__portal .react-datepicker-time__header, .react-datepicker__portal .react-datepicker__current-month {
    font-size: 1.44rem
}

.react-datepicker__portal .react-datepicker__navigation {
    border: .81rem solid transparent
}

.react-datepicker__portal .react-datepicker__navigation--previous {
    border-right-color: #ccc
}

    .react-datepicker__portal .react-datepicker__navigation--previous:hover {
        border-right-color: #b3b3b3
    }

.react-datepicker__portal .react-datepicker__navigation--previous--disabled, .react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
    border-right-color: #e6e6e6;
    cursor: default
}

.react-datepicker__portal .react-datepicker__navigation--next {
    border-left-color: #ccc
}

    .react-datepicker__portal .react-datepicker__navigation--next:hover {
        border-left-color: #b3b3b3
    }

.react-datepicker__portal .react-datepicker__navigation--next--disabled, .react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
    border-left-color: #e6e6e6;
    cursor: default
}

.jq-toast-wrap, .jq-toast-wrap * {
    margin: 0;
    padding: 0
}

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 250px;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9000 !important
}

    .jq-toast-wrap.bottom-left {
        bottom: 20px;
        left: 20px
    }

    .jq-toast-wrap.bottom-right {
        bottom: 20px;
        right: 40px
    }

    .jq-toast-wrap.top-left {
        top: 20px;
        left: 20px
    }

    .jq-toast-wrap.top-right {
        top: 20px;
        right: 40px
    }

.jq-toast-single {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 5px;
    border-radius: 4px;
    font-size: 12px;
    font-family: arial,sans-serif;
    line-height: 17px;
    position: relative;
    pointer-events: all !important;
    background-color: #444;
    color: #fff
}

    .jq-toast-single h2 {
        font-family: arial,sans-serif;
        font-size: 14px;
        margin: 0 0 7px;
        background: 0 0;
        color: inherit;
        line-height: inherit;
        letter-spacing: normal
    }

    .jq-toast-single a {
        color: #eee;
        text-decoration: none;
        font-weight: 700;
        border-bottom: 1px solid #fff;
        padding-bottom: 3px;
        font-size: 12px
    }

    .jq-toast-single ul {
        margin: 0 0 0 15px;
        background: 0 0;
        padding: 0
    }

        .jq-toast-single ul li {
            list-style-type: disc !important;
            line-height: 17px;
            background: 0 0;
            margin: 0;
            padding: 0;
            letter-spacing: normal
        }

.close-jq-toast-single {
    position: absolute;
    top: 3px;
    right: 7px;
    font-size: 14px;
    cursor: pointer
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: -2px;
    height: 5px;
    width: 0;
    left: 0;
    border-radius: 5px;
    background: red
}

.jq-toast-loaded {
    width: 100%
}

.jq-has-icon {
    padding: 10px 10px 10px 50px;
    background-repeat: no-repeat;
    background-position: 10px
}

.jq-icon-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=);
    background-color: #31708f;
    color: #d9edf7;
    border-color: #bce8f1
}

.jq-icon-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=);
    background-color: #8a6d3b;
    color: #fcf8e3;
    border-color: #faebcc
}

.jq-icon-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=);
    background-color: #a94442;
    color: #f2dede;
    border-color: #ebccd1
}

.jq-icon-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==);
    color: #dff0d8;
    background-color: #3c763d;
    border-color: #d6e9c6
}

@-webkit-keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__container {
    position: relative;
    box-sizing: border-box
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform
}

.splide.is-active .splide__list {
    display: flex
}

.splide__pagination {
    display: inline-flex;
    align-items: center;
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0
}

    .splide__pagination li {
        list-style-type: none;
        display: inline-block;
        line-height: 1;
        margin: 0
    }

.splide {
    visibility: hidden
}

.splide, .splide__slide {
    position: relative;
    outline: none
}

.splide__slide {
    box-sizing: border-box;
    list-style-type: none !important;
    margin: 0;
    flex-shrink: 0
}

    .splide__slide img {
        vertical-align: bottom
    }

.splide__slider {
    position: relative
}

.splide__spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    -webkit-animation: splide-loading 1s linear infinite;
    animation: splide-loading 1s linear infinite
}

.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splide--fade > .splide__track > .splide__list {
    display: block
}

    .splide--fade > .splide__track > .splide__list > .splide__slide {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0
    }

        .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
            position: relative;
            z-index: 1;
            opacity: 1
        }

.splide--rtl {
    direction: rtl
}

.splide--ttb > .splide__track > .splide__list {
    display: block
}

.splide--ttb > .splide__pagination {
    width: auto
}

.splide__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 0;
    background: transparent
}

    .splide__arrow svg {
        width: 2.5em;
        height: 2.5em;
        fill: #00bfff;
        transition: fill .2s linear
    }

    .splide__arrow:hover {
        cursor: pointer
    }

        .splide__arrow:hover svg {
            fill: #66d9ff
        }

    .splide__arrow:focus {
        outline: none
    }

.splide__arrow--prev {
    left: 1em
}

    .splide__arrow--prev svg {
        transform: scaleX(-1)
    }

.splide__arrow--next {
    right: 1em
}

.splide__pagination {
    position: absolute;
    z-index: 1;
    bottom: .5em;
    left: 50%;
    transform: translateX(-50%);
    padding: 0
}

.splide__pagination__page {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 3px;
    padding: 0;
    transition: all .2s linear;
    border: none
}

    .splide__pagination__page.is-active {
        transform: scale(1.4);
        background: #00bfff
    }

    .splide__pagination__page:hover {
        cursor: pointer;
        background: #66d9ff
    }

    .splide__pagination__page:focus {
        outline: none
    }

.splide__progress__bar {
    width: 0;
    height: 3px;
    background: #00bfff
}

.splide__spinner {
    border: 2px solid #00bfff;
    border-left-color: transparent
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
    border: 3px solid transparent;
    cursor: pointer;
    opacity: .7
}

    .splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
        border-color: #00bfff;
        opacity: 1
    }

    .splide--nav > .splide__track > .splide__list > .splide__slide:focus {
        outline: none
    }

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
    right: 1em;
    left: auto
}

    .splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
        transform: scaleX(1)
    }

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
    left: 1em;
    right: auto
}

    .splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
        transform: scaleX(-1)
    }

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
    top: 1em
}

    .splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
        transform: rotate(-90deg)
    }

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
    top: auto;
    bottom: 1em
}

    .splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
        transform: rotate(90deg)
    }

.splide--ttb > .splide__pagination {
    display: flex;
    flex-direction: column;
    bottom: 50%;
    left: auto;
    right: .5em;
    transform: translateY(50%)
}

.mCustomScrollbar {
    touch-action: pinch-zoom
}

    .mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
        touch-action: auto
    }

.mCustomScrollBox {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr
}

.mCSB_container {
    overflow: hidden;
    width: auto;
    height: auto
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
    margin-left: 30px
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
    margin-right: 0;
    margin-left: 30px
}

    .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
        margin-left: 0
    }

.mCSB_scrollTools {
    position: absolute;
    width: 5px;
    height: auto;
    left: 0;
    top: 0;
    right: auto;
    bottom: 0;
    background-color: #dfdfdf
}

.mCSB_outside + .mCSB_scrollTools {
    right: -26px
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, .mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    right: auto;
    left: 0
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -26px
}

.mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 5px;
    height: 100%;
    margin: 0 auto
}

.mCSB_scrollTools .mCSB_dragger {
    cursor: pointer;
    width: 100%;
    height: 50px;
    z-index: 1
}

    .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        position: relative;
        width: 5px;
        height: 100%;
        margin: 0 auto;
        text-align: center
    }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px
}

.mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonUp {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-right: 0;
    margin-bottom: 30px
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
    min-height: 100%
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0
}

.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
    margin: 0 20px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    height: 100%;
    left: 0
}

    .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
        width: 100%;
        height: 4px;
        margin: 6px auto
    }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    margin: 2px auto
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    margin: 4px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft, .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0
}

.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px
}

    .mCSB_container_wrapper > .mCSB_container {
        padding-right: 30px;
        padding-bottom: 30px;
        box-sizing: border-box
    }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
    margin-right: 0;
    margin-left: 30px
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
    padding-right: 0
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
    padding-bottom: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
    margin-left: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0
}

.mCSB_scrollTools, .mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight, .mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    transition: opacity .2s ease-in-out,background-color .2s ease-in-out
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
    transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out
}

.mCSB_scrollTools {
    opacity: 1
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools, .mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)"
}

.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools, .mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools, .mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag, .mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag, .mCustomScrollBox:hover > .mCSB_scrollTools, .mCustomScrollBox:hover ~ .mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #dfdfdf
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #004e99
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #004e99;
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

.mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight, .mCSB_scrollTools .mCSB_buttonUp {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACQCAYAAACPtWCAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxMURDMzE5NzIzQkNFMTExOTY0QkYwNzFDNzkwNTlDNCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDOTMwRUZENEMxMUUxMUUzOUYxQkJGN0E1MDMzNTg1MCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDOTMwRUZEM0MxMUUxMUUzOUYxQkJGN0E1MDMzNTg1MCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1MGJlMjMyZC1hNzgzLTI1NGQtOTI4Yy02NDI0YmQxNTg0YWEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTFEQzMxOTcyM0JDRTExMTk2NEJGMDcxQzc5MDU5QzQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5ZvSKsAAAH5ElEQVR42uyd3Y3jNhRGpZSQ7SJA3lyACtg+psEUoAL2zZjtIgtMBYqcWBsvh5e8/Cel8wECPLZ5JZMHpHj5UTNv2zYh1EozACIARACIUI8AHh/Oja6v9fnTKnee/73+vY7nK54/FUDzg7kRfNOIEB6N//PHVIag9flTAZSonBvBNxSEZuPXhqD1+VMB9N0UzhEgzRngq3X+Io0fA0HMENr6/KkAbkZDb5bX2gaNGUK1M6JS588G36PRXhvQ/KzEEOqDr/T5cwI4K//OPYTmArDJEG72GL6/cw+huQCsOYSXmAXbesotAoLYHiznEF59FmrrKUN7z5QeLOcQ3gJAF2ijDeHVAXSBNtoQ3hrAOUO8ywIofT8k3lUBLJmKGS4Z3TIRPHoeEAABEAABEAARAkAEgAgBIAJAhAAQASBCAIjODyCJ6JTKJRENgAAIgAAIgNUAxI6VACB2rHwA2spgSA0AAENq/BCMJT9hCL66JZ9NSRmBY1NSPIBHY7EtM/LGn22Z8UMwG9Mzzj5TepErbkxvOoR1dP4iEPJojrBJCA8nyggBDyeqNwsuASGPZxvw/DkARAgAEQAiBIAIABECQASACFUDsGQuLkfsrq+vZC4uR+zW16dNRJdo4Byxu76+GBtVzdg9XJ92Ka53+HJfY3LskeDLfY0hsTVmhBHgc9ZHhtjzmeFzVkbgOWyxQwEMnZXMHcOXcn1RMUIaN7SBa8OXcn0ACIDDAsgQzBDcdAhmEsIkpPkkhDQMaZjmaRizIUhEJzQEieh4ABEqJgBEAIgAECEARACIULcAnj5lUvL6zpAyKREjBsCUBrpsYvssiePcMUKH4J4bOcfSXNHHgfQMYY6luagnekXcA7aGsGsjQu8Q9mREkAAsaXfKAeFl7Vg5ILy6HxAAAZAhmCG47yGYSQiTkC4nIaRhSMM0TcOQiM7QwCSi0+8BEcoHPgAiAEQAiBAAIgBEqDWAt/34uh/Lfvz5fO++H+t+/LUf3zwxU8uPXaHz7Pz9e31/K1l+OD0AfDne9uN9k/X+/M4kHKnlhz52ve3H+/RfPtF2PD57K1V+yDoz4PnY/PoQIEotfwb4PhzwHMeHDaLU8qMDeBN6ruNzW092e/n85un5fOVHh+9m67lePrf1ZDdfeU9PeIr6++05Ej/uOf4wb0eE19Pzu19f/raVP8rZlmXM8uIdwhRuv2qhT7//dTnKsjSlqr9HOWFZS1V/j6WxUPtVbR0ALg74pPcW4bUGYKmMCZ/tdY9aJPgc7znrzwOwt/5ewesZwmMW/Pd+/O6AxQbGj/348nz9Wt4V47UiXsu7vjcp4rae+f78/V7/2/8w/Ni/+8Us74phgPSzvOd7ky9uDz1gzh5odgyhmgrYHEP4MEnL2B7oFRJzCFX564zvm/F6BfCuuO8y378Lr7UA3wNA7v3/Bd99912W9531pwD4rgW55/8XfAC4RpRdhddagFcHeHPA+z0oW/0FALxK4En3oD0PwY8Viu8B5b4/y0yZyo8u6i/DSgiJaBLRTVdCWIpjKa76gRkh/+wXM0JEHhAhAEQAiBAAIgBECADRNQEkDZNSoaRhwkQimkQ0e0JYiksuz54Q9oSwJyTznhCXtHtCtOVHF/UXKWlPiEaL8Frr55POqfUT9qRs9Rfg51uESYzWT9jVLNi2J2RzvH5I2hNis9Db3pP2hNgs/CWfrJpj5vtpT8ijsaXXx++37QmxWegFW711T4jNwl/yyaq5esBJ6LFiGj11T0fqnpJesgtRlvjUPR2pe0paAXhXQqLd07B5ytrKTB7QeobvroFEuydEGkK19afcFtoVgGsEQKvw2vZ9W7w1oCfsvedbIwBy1p9iU9JaogduBaBtT4ILIO2eBmnioN3TME9jDLuffr8HIFX9OSYOqvrrdSOStBJCIppENHtCWIpjTwhmhLSUDGaEiDwgQgCIABAhAEQAWGIycanJSe7JxGknJ5XSKZdKz+ROp5w5PTNVSChfKkGdO6F89gS1+UaqM1obT4qZ6pQ2Yw/ljNbGc8RMckqbsWs6og/5npZvyufMdT09Pyae826igzsa59Pyc9WfI2Z0/bUyq5oALg5QpAtcHPEXD3xbYDwNfC0X3xcJFEcDB9WfIuaSAl9t84I5C059Wr4p19PzpQZxxesZvuSn5bviBQAtxusNPlsPiFBTAF3OaPNG2FZmcsTT9lb3wN/Q079xEJ3Rh7fP87R8Z10oe6ug+mv9bxxMANcIYFZH/DViyFxjRr9OIFwjgAmqP0XM4PprCaEJoM8ZbcrnzHU5pWPiaSFsJaczOlf9OWJG118z5zSJaBLRva2EsBTHUlxTR/QhzAhpKRnMCBF5QIQAEAEgQzBDcLNZMJMQJiH4AUnD4Acs5QeUYsX6AZt6AGv7AR2xovyAUwMPYKgf0LXaEOsHlFYuTucH9Kw2RNefsHJxOj+grXFnZRnpM99a8JKwBNcawsXXuBZwgupPsRYcVH+tzQi1/YAacEL9gFqwa8x8i/oBleAE+QEDwK7SAyLUdAg2/YA2/5/Z24T4ATXD5j3id/Tiiv7FDyj4/6ZYP6By2Ayuv5auaJ8fUAPM6oi/RtyzrYPCJ167B5ig+lPcs62jwGcDUPLvScDE+gEl+E7nB/TMNKPrL+XJqQGz6iYrISSiSUTjB2QpDj8gZoS0lAxmhIg8IEJV9Y8AAwCuz3H3j+GlGwAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    opacity: .4;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px
}

    .mCSB_scrollTools .mCSB_buttonDown:hover, .mCSB_scrollTools .mCSB_buttonLeft:hover, .mCSB_scrollTools .mCSB_buttonRight:hover, .mCSB_scrollTools .mCSB_buttonUp:hover {
        opacity: .75;
        filter: "alpha(opacity=75)";
        -ms-filter: "alpha(opacity=75)"
    }

    .mCSB_scrollTools .mCSB_buttonDown:active, .mCSB_scrollTools .mCSB_buttonLeft:active, .mCSB_scrollTools .mCSB_buttonRight:active, .mCSB_scrollTools .mCSB_buttonUp:active {
        opacity: .9;
        filter: "alpha(opacity=90)";
        -ms-filter: "alpha(opacity=90)"
    }

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.85)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.9)
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
    width: 5px;
    background-color: #fff;
    background-color: hsla(0,0%,100%,.1);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 5px;
    background-color: #fff;
    background-color: hsla(0,0%,100%,.75);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px auto
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85)
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9)
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: hsla(0,0%,100%,.1);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #fff;
    background-color: hsla(0,0%,100%,.75);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85)
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9)
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px
}

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.1)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.15)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, .mCS-rounded.mCSB_scrollTools .mCSB_dragger {
    height: 14px
}

    .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 14px;
        margin: 0 1px
    }

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px
}

    .mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
        height: 14px;
        margin: 1px 0
    }

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 16px;
    height: 16px;
    margin: -1px 0
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    width: 16px;
    margin: 0 -1px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px
}

.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: 50%
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
    background-repeat: repeat-y;
    opacity: .3;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)"
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    background-repeat: repeat-x
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=")
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-y;
    background-image: linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,0))
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-x;
    background-image: linear-gradient(180deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,0))
}

.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger, .mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px
}

.mCS-3d-dark.mCSB_scrollTools, .mCS-3d.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)"
}

    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
        border-radius: 16px
    }

    .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
        width: 8px;
        background-color: #000;
        background-color: rgba(0,0,0,.2);
        box-shadow: inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px hsla(0,0%,100%,.2)
    }

    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
        background-color: #555
    }

    .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 8px
    }

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 8px;
    margin: 4px 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px hsla(0,0%,100%,.2)
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 8px;
    margin: 4px auto
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    box-shadow: inset 1px 0 1px rgba(0,0,0,.1)
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1)
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-3d-thick-dark.mCSB_scrollTools, .mCS-3d-thick.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)"
}

    .mCS-3d-thick-dark.mCSB_scrollTools, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer, .mCS-3d-thick.mCSB_scrollTools, .mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
        border-radius: 7px
    }

        .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
            border-radius: 5px
        }

.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical, .mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical {
    right: 1px
}

.mCS-3d-thick-dark.mCSB_scrollTools_vertical, .mCS-3d-thick.mCSB_scrollTools_vertical {
    box-shadow: inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal, .mCS-3d-thick.mCSB_scrollTools_horizontal {
    bottom: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 hsla(0,0%,100%,.4);
    width: 12px;
    margin: 2px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 hsla(0,0%,100%,.4)
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #555
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    width: auto
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0,0,0,.05);
    box-shadow: inset 1px 1px 16px rgba(0,0,0,.1)
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-3d-thick-dark.mCSB_scrollTools {
    box-shadow: inset 0 0 14px rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 hsla(0,0%,100%,.4),inset -1px 0 0 rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 hsla(0,0%,100%,.4),inset 0 -1px 0 rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #777
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0,0,0,.05);
    box-shadow: inset 1px 1px 16px rgba(0,0,0,.1)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
    right: 0;
    margin: 12px 0
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px
}

.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
    left: 0;
    right: auto
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger, .mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px
}

.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)"
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)"
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)"
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)"
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: #000;
    background-color: rgba(0,0,0,.2)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px
}

.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 6px;
    margin: 5px 0
}

.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px
}

.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0,0,0,.2)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border: 1px solid hsla(0,0%,100%,.2);
    box-sizing: border-box
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0,0,0,.2)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.6)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.6)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #004e99
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9)
}

#detail_tab .product-show-tabs .tab-content iframe {
    max-width: 100%
}

#branch-business #branch-filter #branch-filter-clear, #branch-business #branch-filter #branch-filter-send, #siblings-link #siblings-link-wrap .link a {
    color: #000;
    font-size: 1.1875em;
    background: #fff;
    border: 1px solid #000;
    border-radius: 0;
    padding: 7px 2em;
    cursor: pointer;
    white-space: nowrap
}

    #branch-business #branch-filter #branch-filter-clear:hover, #branch-business #branch-filter #branch-filter-send:hover, #siblings-link #siblings-link-wrap .link a:hover {
        color: #000;
        box-shadow: 1px 1px 3px #ccc;
        text-decoration: none
    }

    #branch-business #branch-filter [disabled]#branch-filter-clear, #branch-business #branch-filter [disabled]#branch-filter-send, #siblings-link #siblings-link-wrap .link a[disabled] {
        color: #acacac;
        border-color: #acacac;
        box-shadow: none
    }

@media (max-width:767px) {
    #branch-business #branch-filter #branch-filter-clear, #branch-business #branch-filter #branch-filter-send, #siblings-link #siblings-link-wrap .link a {
        font-size: 1em
    }
}

.jq-toast-wrap {
    font-size: 1rem
}

    .jq-toast-wrap .jq-toast-single {
        font-size: .875em;
        font-weight: 400
    }

        .jq-toast-wrap .jq-toast-single .jq-toast-heading {
            font-size: 1.1428571429em
        }

.react-select {
    min-width: 200px
}

.address_tw_split_view > * {
    width: 100% !important
}

.address_tw_split_view + * {
    margin-top: 15px
}

.pointer {
    cursor: pointer
}

.btn {
    white-space: nowrap
}

.thumb {
    position: relative;
    display: block;
    height: auto !important
}

    .thumb:after {
        content: "";
        display: inline-block;
        width: 0;
        padding-top: 100%;
        vertical-align: middle
    }

    .thumb img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        max-height: 100%;
        margin: auto
    }

.animate-linear-fast {
    transition: all .25s linear
}

.animate-in-fast {
    transition: all .25s ease-in
}

.animate-out-fast {
    transition: all .25s ease-out
}

.animate-both-fast, .animate-fast {
    transition: all .25s ease-in-out
}

.animate-linear-common {
    transition: all .5s linear
}

.animate-in-common {
    transition: all .5s ease-in
}

.animate-out-common {
    transition: all .5s ease-out
}

.animate-both-common, .animate-common {
    transition: all .5s ease-in-out
}

.animate-linear-slow {
    transition: all 1s linear
}

.animate-in-slow {
    transition: all 1s ease-in
}

.animate-out-slow {
    transition: all 1s ease-out
}

.animate-both-slow, .animate-slow {
    transition: all 1s ease-in-out
}

.animate {
    transition: all .5s ease-in-out
}

.toggle_btn .toggle_wrap.toggle_left:before, .toggle_btn .toggle_wrap.toggle_right:before {
    content: "";
    position: absolute;
    top: 0;
    width: calc(100% - 36.5px);
    height: 100%;
    z-index: 10
}

.toggle_btn {
    display: inline-block
}

    .toggle_btn .toggle_wrap {
        position: relative;
        border-radius: .25rem;
        overflow: hidden
    }

        .toggle_btn .toggle_wrap.toggle_right:before {
            left: 0
        }

        .toggle_btn .toggle_wrap.toggle_left:before {
            right: 0
        }

        .toggle_btn .toggle_wrap button.toggle_item {
            box-shadow: inset 1px 1px 3px rgba(0,0,0,.8)
        }

    .toggle_btn .toggle_touch {
        z-index: 5;
        border-color: transparent #333
    }

.quick_notice {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    top: 0;
    padding: .5em 2em .8em;
    border-radius: 0 0 .25em .25em;
    box-shadow: 1px 1px 3px rgba(0,0,0,.5)
}

    .quick_notice.hidden {
        transform: translate(-50%,-110%)
    }

    .quick_notice span {
        font-size: 1em;
        vertical-align: middle
    }

    .quick_notice small {
        display: inline-block;
        vertical-align: middle;
        padding: .2em;
        cursor: pointer
    }

#cookies-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 10000000;
    font-size: .875rem
}

    #cookies-consent #cookies-consent-content {
        position: relative;
        padding: 1em;
        background-color: rgba(0,0,0,.85);
        box-shadow: 0 -3px 5px rgba(0,0,0,.5),0 3px 5px rgba(0,0,0,.5)
    }

        #cookies-consent #cookies-consent-content button {
            color: #fff;
            background-color: transparent;
            border-color: #fff;
            border-width: 1px;
            border-radius: 0;
            font-size: .9375em;
            padding: .8em;
            min-width: 13em
        }

            #cookies-consent #cookies-consent-content button + button {
                margin-left: 1em;
                color: #777;
                border: 1px solid #777
            }

            #cookies-consent #cookies-consent-content button:hover {
                background-color: #000
            }

@media (max-width:575px) {
    #cookies-consent #cookies-consent-content button {
        min-width: 0;
        padding: .5em;
        width: calc(50% - 1em)
    }
}

#cookies-consent #cookies-consent-content #consent-query {
    position: relative;
    text-align: center;
    z-index: 2
}

    #cookies-consent #cookies-consent-content #consent-query a {
        color: #ddd;
        text-decoration: underline
    }

        #cookies-consent #cookies-consent-content #consent-query a:hover {
            color: #fff;
            text-decoration: none
        }

#cookies-consent #cookies-consent-content #disallow-query {
    display: none;
    position: relative;
    z-index: 2
}

    #cookies-consent #cookies-consent-content #disallow-query button {
        min-width: 13em;
        margin-left: auto
    }

@media (max-width:575px) {
    #cookies-consent #cookies-consent-content #disallow-query button {
        min-width: 0;
        margin: 0;
        width: 100%
    }
}

#cookies-consent.hidden #cookies-consent-content {
    transform: translateY(120%)
}

#cookies-consent.false {
    position: relative;
    margin-bottom: 1em
}

    #cookies-consent.false #consent-query {
        display: none !important
    }

    #cookies-consent.false #disallow-query {
        display: flex !important
    }

#popup {
    z-index: 9999999
}

.react-range-component {
    position: relative;
    padding: 9px;
    margin: 10px 0
}

    .react-range-component .react-range-component-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 1;
        width: 100%
    }

        .react-range-component .react-range-component-wrapper .react-range-component-scroll-bar {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 100%;
            height: 3px;
            background-color: #ccc;
            z-index: 1
        }

        .react-range-component .react-range-component-wrapper .react-range-component-scroll-bar-inner {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #000;
            z-index: 2
        }

        .react-range-component .react-range-component-wrapper .react-range-component-point {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            pointer-events: none;
            outline: none;
            top: -1.5px;
            left: 0;
            width: 100%;
            height: 0;
            z-index: 3;
            -webkit-appearance: none;
            -webkit-tap-highlight-color: transparent
        }

            .react-range-component .react-range-component-wrapper .react-range-component-point::-webkit-slider-thumb {
                background-color: #f1f5f7;
                border: none;
                border-radius: 50%;
                box-shadow: 0 0 1px 1px #ced4da;
                cursor: ew-resize;
                height: 18px;
                width: 18px;
                margin-top: 4px;
                pointer-events: all;
                position: relative;
                -webkit-appearance: none
            }

            .react-range-component .react-range-component-wrapper .react-range-component-point::-moz-range-thumb {
                background-color: #f1f5f7;
                border: none;
                border-radius: 50%;
                box-shadow: 0 0 1px 1px #ced4da;
                cursor: ew-resize;
                height: 18px;
                width: 18px;
                margin-top: 4px;
                pointer-events: all;
                position: relative;
                -moz-appearance: none
            }

            .react-range-component .react-range-component-wrapper .react-range-component-point.react-range-component-max-point {
                z-index: 4
            }

#add_follow_btn, #btn_back, #change_password #change_password_btn, #change_password #change_password_cancel, #change_password #login_btn, #contactus #contactus_btn, #error_page .error_content .error_btn_back, #error_page .error_content .error_btn_tohome, #inner_btnarea #btn_more, #inquiry #inquiry_btn, #member #member_dashboard button.formBtn, #member #member_edit > .row + hr + .row #login_btn, #member #member_edit > .row + hr + .row #register_btn, #member #member_edit > .row + hr + .row #register_cancel, #member #member_edit button.formBtn, #member_forget #forget_btn, #member_forget #forget_cancel, #member_forget #login_btn, #member_login #login_btn, #member_register #login_btn, #member_register #register_btn, #member_register #register_cancel, .cart_btn, .custom_form .custom_form_btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    background-image: linear-gradient(180deg,#fff 0,#e0e0e0);
    background-repeat: repeat-x;
    color: #333
}

    #add_follow_btn:hover, #btn_back:hover, #change_password #change_password_btn:hover, #change_password #change_password_cancel:hover, #change_password #login_btn:hover, #contactus #contactus_btn:hover, #error_page .error_content .error_btn_back:hover, #error_page .error_content .error_btn_tohome:hover, #inner_btnarea #btn_more:hover, #inquiry #inquiry_btn:hover, #member #member_dashboard button.formBtn:hover, #member #member_edit > .row + hr + .row #login_btn:hover, #member #member_edit > .row + hr + .row #register_btn:hover, #member #member_edit > .row + hr + .row #register_cancel:hover, #member #member_edit button.formBtn:hover, #member_forget #forget_btn, #member_forget #forget_cancel:hover, #member_forget #login_btn:hover, #member_login #login_btn:hover, #member_register #login_btn:hover, #member_register #register_btn:hover, #member_register #register_cancel:hover, .cart_btn:hover, .custom_form .custom_form_btn:hover {
        background-color: #e0e0e0;
        background-position: 0 -15px;
        box-shadow: none
    }

#banner #banner_block .splide__slide video {
    width: 100%
}

#banner .banner-image {
    width: 100%;
    height: auto
}

#banner .splide__slide {
    outline: none
}

#banner .splide__pagination__page {
    margin-left: 10px
}

    #banner .splide__pagination__page:hover {
        background: #999
    }

    #banner .splide__pagination__page.is-active {
        background: #333
    }

#banner .banner_summary {
    background: linear-gradient(90deg,rgba(0,0,0,.8) 50%,rgba(0,0,0,.025));
    padding: 20px 70px 20px 35px;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 18px
}

    #banner .banner_summary p {
        margin-bottom: 0
    }

@media (max-width:767px) {
    #banner .banner_summary {
        position: static
    }
}

#language_textlist {
    max-width: 60%;
    text-align: justify
}

    #language_textlist span.separate_line {
        color: #d4d4d4;
        margin-right: 10px;
        margin-left: 10px
    }

    #language_textlist > div > span:first-child .separate_line {
        display: none
    }

#language_icondropdown .fa-globe {
    font-size: 1.3em !important;
    margin-right: 7px
}

#language_icondropdown .dropdown-menu.show {
    transform: translate3d(-50%,25px,0) !important;
    top: 10px !important;
    left: 50% !important;
    text-align: center;
    z-index: 10000
}

    #language_icondropdown .dropdown-menu.show:before {
        border-top: 0;
        border-left: 8px solid transparent;
        border-bottom: 8px solid #faf0ef;
        border-right: 8px solid transparent;
        border-top-width: 8px;
        content: "";
        display: block;
        position: absolute;
        top: -10px;
        left: 45%
    }

#language_icondropdown .dropdown a:hover {
    color: #f68980
}

#language_icondropdown .dropdown > a {
    display: flex;
    align-items: center
}

#language_icondropdown .dropdown .dropdown_flag {
    width: 20px;
    margin-right: 5px
}

#language_icondropdown.only_icon {
    display: flex;
    align-items: center
}

    #language_icondropdown.only_icon .fa-globe {
        font-size: 1.5em !important;
        margin: 0
    }

    #language_icondropdown.only_icon .dropdown-menu.show {
        top: 15px !important;
        left: -70px !important;
        transform: translate3d(0,25px,0) !important
    }

    #language_icondropdown.only_icon #lang_text, #language_icondropdown.only_text .dropdown i, #language_icondropdown.only_text .dropdown img {
        display: none
    }

#menu_bottom > ul {
    padding: 0;
    margin: 0;
    list-style: none
}

    #menu_bottom > ul li {
        vertical-align: middle;
        display: inline-block;
        margin: 0
    }

        #menu_bottom > ul li + li:before {
            vertical-align: middle;
            display: inline-block;
            content: "/";
            margin: 0 15px;
            color: #fff
        }

#copyright {
    text-align: right
}

.hot_product {
    position: absolute;
    font-size: 25px;
    margin-top: -30px;
    right: 10px;
    background-color: transparent;
    border: 0;
    line-height: 1
}

    .hot_product:focus {
        outline: none
    }

.follow {
    color: grey
}

    .follow:hover {
        color: red;
        transition: color .4s
    }

.followed {
    color: red
}

.product_follow {
    text-align: right
}

    .product_follow .hot_top_product {
        position: absolute;
        font-size: 32px;
        margin: -50px 0 0 -60px;
        background-color: transparent;
        border: 0;
        line-height: 1
    }

        .product_follow .hot_top_product:focus {
            outline: none
        }

.product_item_heart {
    position: absolute;
    font-size: 30px;
    margin: -35px 0 0 50px;
    background-color: transparent;
    border: 0;
    line-height: 1
}

    .product_item_heart:focus {
        outline: none
    }

@media (max-width:767px) and (min-width:541px) {
    .hot_product {
        position: absolute;
        font-size: 25px;
        margin-top: -40px;
        right: 20%;
        background-color: transparent;
        border: 0;
        line-height: 1
    }

        .hot_product:focus {
            outline: none
        }
}

@media (max-width:540px) {
    .hot_product {
        position: absolute;
        font-size: 25px;
        margin-top: -35px;
        right: 15%;
        background-color: transparent;
        border: 0;
        line-height: 1
    }

        .hot_product:focus {
            outline: none
        }
}

@media (max-width:540px) and (min-width:415px) {
    .product_item_heart {
        position: absolute;
        font-size: 30px;
        margin-top: -80px;
        right: 20%;
        background-color: transparent;
        border: 0;
        line-height: 1
    }

        .product_item_heart:focus {
            outline: none
        }
}

.sales_rank_title {
    padding-bottom: 1.5em
}

.sales_rank_list {
    padding: 0;
    margin: 0;
    list-style-type: none
}

    .sales_rank_list > li {
        padding: 0 0 2em
    }

        .sales_rank_list > li .sales_rank_link {
            text-decoration: none;
            cursor: pointer
        }

            .sales_rank_list > li .sales_rank_link:hover, .sales_rank_list > li .sales_rank_link:hover .sales_rank_item .sales_rank_info .sales_rank_name, .sales_rank_list > li .sales_rank_link:hover .sales_rank_item .sales_rank_info .sales_rank_summary {
                color: #ec651f
            }

                .sales_rank_list > li .sales_rank_link:hover .sales_rank_item .sales_rank_image div img {
                    transform: scale(1.1)
                }

            .sales_rank_list > li .sales_rank_link .sales_rank_item {
                padding: 0 0 0 .7em;
                margin: 0;
                width: 100%
            }

                .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_info {
                    width: 60%;
                    display: inline-block
                }

                    .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_info .sales_rank_index {
                        font-family: Arial,Helvetica,sans-serif;
                        font-size: 1.75em;
                        font-style: italic;
                        font-weight: 900;
                        color: #ec651f;
                        letter-spacing: .15em
                    }

                    .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_info .sales_rank_name {
                        font-size: 1.1em;
                        font-weight: 700;
                        color: #000;
                        padding: .5em .2em 0 .4em;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        overflow: hidden
                    }

                    .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_info .sales_rank_summary {
                        font-size: 1em;
                        color: #000;
                        padding: .5em .2em 0 .4em
                    }

                .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_image {
                    width: 40%;
                    vertical-align: top;
                    display: inline-block
                }

                    .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_image > div {
                        border: 2px solid #f5f5f5;
                        padding: 1px;
                        overflow: hidden
                    }

                        .sales_rank_list > li .sales_rank_link .sales_rank_item .sales_rank_image > div img {
                            transition: all .3s
                        }

ul.sociallink {
    text-align: right;
    list-style: none;
    padding: 0
}

    ul.sociallink li {
        margin-bottom: 10px;
        display: inline-block;
        text-align: left
    }

        ul.sociallink li .svg-inline--fa {
            font-size: 1.25em
        }

        ul.sociallink li a {
            color: #7d7d7d;
            color: #fff
        }

            ul.sociallink li a:hover {
                color: #df0000
            }

    ul.sociallink.showName span {
        display: inline-block !important
    }

    ul.sociallink.icon_color .svg-inline--fa {
        font-size: 16px;
        width: 2em;
        height: 2em;
        padding: 7px;
        border-radius: 5px;
        transition: .2s
    }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=facebook-f] {
            background: #156cb4
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=twitter] {
            background: #41abe1
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=youtube] {
            background: #e62117
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=bold] {
            background: #e91616
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=instagram] {
            background: #c53687
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=line] {
            background: #1bb71f
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=skype] {
            background: #00b7e5
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=weixin] {
            background: #00ba2e
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=pinterest] {
            background: #dd0038
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=linkedin-in] {
            background: #0079af
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=whatsapp] {
            background: #00cf51
        }

        ul.sociallink.icon_color .svg-inline--fa[data-icon=qq] {
            background: #009fbf
        }

    ul.sociallink.icon_color a, ul.sociallink.icon_color a:hover {
        color: #fff
    }

        ul.sociallink.icon_color a:hover .svg-inline--fa {
            transform: scale(1.1)
        }

    ul.sociallink.icon_circle .svg-inline--fa {
        font-size: 16px;
        width: 2em;
        height: 2em;
        padding: 7px;
        border-radius: 50%;
        transition: .2s;
        background: #000
    }

    ul.sociallink.icon_circle a, ul.sociallink.icon_circle a:hover {
        color: #fff
    }

        ul.sociallink.icon_circle a:hover .svg-inline--fa {
            transform: scale(1.1)
        }

@media (max-width:767px) {
    #branch-business #branch-aside-toggle {
        display: none
    }
}

#branch-business #branch-list {
    position: relative;
    height: 500px;
    border: 1px solid #eee
}

@media (max-width:767px) {
    #branch-business #branch-list {
        height: auto
    }
}

#branch-business #branch-list.grid {
    height: auto
}

#branch-business #branch-list #branch-items {
    width: 40%;
    overflow-y: scroll
}

    #branch-business #branch-list #branch-items.aside-hide {
        width: 30%
    }

@media (max-width:991px) {
    #branch-business #branch-list #branch-items.aside-hide {
        width: 50%
    }
}

@media (max-width:767px) {
    #branch-business #branch-list #branch-items.aside-hide {
        width: 100%
    }
}

@media (max-width:991px) {
    #branch-business #branch-list #branch-items {
        width: 50%
    }
}

@media (max-width:767px) {
    #branch-business #branch-list #branch-items {
        width: 100%;
        min-height: 100px;
        max-height: 300px
    }
}

#branch-business #branch-list #branch-items.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding: 15px 15px 0;
    overflow: visible !important
}

@media (max-width:767px) {
    #branch-business #branch-list #branch-items.grid {
        min-height: 100px;
        max-height: none
    }
}

#branch-business #branch-list #branch-items.grid .branch-info {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column-reverse !important;
    justify-content: flex-end !important;
    padding: 15px;
    border: 1px solid #ddd;
    margin: 0 7.5px 15px
}

@media (min-width:992px) {
    #branch-business #branch-list #branch-items.grid .branch-info {
        width: calc(33.33333% - 10px)
    }

        #branch-business #branch-list #branch-items.grid .branch-info:nth-child(3n+1) {
            margin-left: 0
        }

        #branch-business #branch-list #branch-items.grid .branch-info:nth-child(3n+3) {
            margin-right: 0
        }
}

@media (max-width:991px) {
    #branch-business #branch-list #branch-items.grid .branch-info {
        width: calc(50% - 7.5px)
    }

        #branch-business #branch-list #branch-items.grid .branch-info:nth-child(odd) {
            margin-left: 0
        }

        #branch-business #branch-list #branch-items.grid .branch-info:nth-child(2n+2) {
            margin-right: 0
        }
}

@media (max-width:767px) {
    #branch-business #branch-list #branch-items.grid .branch-info {
        width: 100%;
        margin-right: 0;
        margin-left: 0
    }
}

#branch-business #branch-list #branch-items.grid .branch-info .image-line {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    display: block;
    top: 172.5px;
    height: 1px;
    width: 100%;
    background-color: #ddd
}

#branch-business #branch-list #branch-items.grid .branch-info .branch-info-image {
    width: 100%;
    height: 150px;
    text-align: center;
    margin-bottom: 15px
}

    #branch-business #branch-list #branch-items.grid .branch-info .branch-info-image img {
        display: inline-block;
        max-width: 100%;
        max-height: 100%
    }

#branch-business #branch-list #branch-items.grid dt {
    font-weight: 700;
    margin-bottom: .5em
}

#branch-business #branch-list #branch-items.grid dd .marker-icon {
    display: inline-block;
    text-align: center;
    width: 20px;
    margin-right: .5em;
    vertical-align: top
}

    #branch-business #branch-list #branch-items.grid dd .marker-icon + span {
        width: calc(100% - 20px - .5em);
        display: inline-block;
        word-wrap: break-word
    }

#branch-business #branch-list #branch-items.grid dd.open-at ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0
}

#branch-business #branch-list #branch-items .branch-item {
    padding: .5em;
    border: 1px #ddd;
    border-bottom: 1px solid #ddd;
    cursor: pointer
}

    #branch-business #branch-list #branch-items .branch-item:nth-child(2n) {
        background-color: #eee
    }

    #branch-business #branch-list #branch-items .branch-item dl {
        margin: 0
    }

        #branch-business #branch-list #branch-items .branch-item dl dt {
            font-size: 15px;
            font-weight: 700;
            color: #555;
            margin-bottom: 1em
        }

        #branch-business #branch-list #branch-items .branch-item dl dd {
            font-size: 14px;
            font-weight: 400;
            color: grey;
            margin-bottom: .5em
        }

#branch-business #branch-list #branch-map {
    width: 60%;
    height: 100%
}

    #branch-business #branch-list #branch-map.aside-hide {
        width: 70%
    }

@media (max-width:991px) {
    #branch-business #branch-list #branch-map.aside-hide {
        width: 50%
    }
}

@media (max-width:767px) {
    #branch-business #branch-list #branch-map.aside-hide {
        width: 100%
    }
}

@media (max-width:991px) {
    #branch-business #branch-list #branch-map {
        width: 50%
    }
}

@media (max-width:767px) {
    #branch-business #branch-list #branch-map {
        width: 100%;
        height: 300px
    }
}

#branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info {
    display: flex;
    flex-wrap: nowrap
}

    #branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info dl dt {
        font-size: 1.5em;
        font-weight: 600;
        margin-bottom: .5em
    }

    #branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info dl dd {
        display: flex;
        flex-wrap: nowrap
    }

        #branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info dl dd + dd {
            margin-top: .5em
        }

        #branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info dl dd .marker-icon {
            display: inline-block;
            text-align: center;
            width: 15px;
            margin-right: .5em
        }

        #branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info dl dd.open-at ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
            margin-top: -.25em
        }

        #branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info dl dd span + span {
            word-wrap: break-word;
            margin-top: -.15em
        }

#branch-business #branch-list #branch-map #google-map-wrapper .google-map-marker .branch-info-image {
    margin-left: 20px
}

#branch-business #branch-paginate {
    margin-top: 20px
}

#branch-business #branch-filter {
    position: relative;
    padding: 15px;
    margin-bottom: 1em;
    border: 1px solid #eee
}

    #branch-business #branch-filter #branch-filter-toggle {
        display: flex;
        justify-content: flex-end;
        align-items: center
    }

        #branch-business #branch-filter #branch-filter-toggle.has-expanded {
            display: block;
            position: absolute;
            right: 10px;
            top: 10px;
            z-index: 2
        }

            #branch-business #branch-filter #branch-filter-toggle.has-expanded span {
                display: none
            }

        #branch-business #branch-filter #branch-filter-toggle span {
            margin-right: 1em
        }

    #branch-business #branch-filter #branch-attributes dl dt {
        width: 8em;
        margin-right: 1em
    }

@media (max-width:767px) {
    #branch-business #branch-filter #branch-attributes dl dt {
        width: auto;
        margin-right: 0
    }
}

#branch-business #branch-filter #branch-attributes dl dd {
    margin-bottom: 0
}

    #branch-business #branch-filter #branch-attributes dl dd + dd {
        margin-left: 1em
    }

@media (max-width:767px) {
    #branch-business #branch-filter #branch-attributes dl dd + dd {
        margin-left: 0
    }
}

#branch-business #branch-filter dl#branch-location-filter dt {
    width: 8em;
    margin-right: 1em
}

@media (max-width:767px) {
    #branch-business #branch-filter dl#branch-location-filter dt {
        width: auto;
        margin-right: 0
    }
}

#branch-business #branch-filter dl#branch-location-filter dd {
    margin-bottom: 0
}

    #branch-business #branch-filter dl#branch-location-filter dd + dd {
        margin-left: 1em
    }

@media (max-width:767px) {
    #branch-business #branch-filter dl#branch-location-filter dd + dd {
        margin-left: 0;
        margin-top: .5em
    }
}

.label-show-wrapper {
    margin-bottom: 1em
}

    .label-show-wrapper dl, .label-show-wrapper dl > * {
        margin-bottom: 0
    }

        .label-show-wrapper dl dt {
            font-weight: 400;
            margin-bottom: .25em
        }

        .label-show-wrapper dl dd {
            position: relative;
            display: inline-block
        }

            .label-show-wrapper dl dd:before {
                content: "";
                display: block;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                width: calc(100% - .25em);
                height: calc(100% - .25em);
                background-color: rgba(0,0,0,.1);
                z-index: 1
            }

            .label-show-wrapper dl dd a {
                display: block;
                position: relative;
                padding: .5em;
                color: #666;
                z-index: 2
            }

                .label-show-wrapper dl dd a:hover {
                    color: #333
                }

#aboutus_show_page > .container, #download_list_page > .container, #finance_show_page > .container, #forgetMessage.container, #message_cate_page > .container, #message_show_page > .container, #news_show_page > .container, #passCertify.container, #product-show-page > .container, #product_cate_page > .container, #product_list_page > .container, #singleton_show_page > .container {
    padding: 0
}

#btn_back, #cart .btn, #change_password #change_password_btn, #change_password #change_password_cancel, #change_password #login_btn, #contactus #contactus_btn, #error_page .error_content .error_btn_back, #error_page .error_content .error_btn_tohome, #inquiry #inquiry_btn, #member #member_dashboard button.formBtn, #member #member_edit > .row + hr + .row #login_btn, #member #member_edit > .row + hr + .row #register_btn, #member #member_edit button.formBtn, #member_edit > .row + hr + .row #register_cancel, #member_forget #forget_btn, #member_forget #forget_cancel, #member_forget #login_btn, #member_login #login_btn, #member_register #login_btn, #member_register #register_btn, #member_register #register_cancel, .btn, .custom_form .custom_form_btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-shadow: 0 1px 0 #fff;
    background-image: linear-gradient(180deg,#fff 0,#e0e0e0);
    background-repeat: repeat-x;
    color: #333;
    background-color: #e0e0e0
}

    #btn_back:hover, #cart .btn:hover, #change_password #change_password_btn:hover, #change_password #change_password_cancel:hover, #change_password #login_btn:hover, #contactus #contactus_btn:hover, #error_page .error_content .error_btn_back:hover, #error_page .error_content .error_btn_tohome:hover, #inquiry #inquiry_btn:hover, #member #member_dashboard button.formBtn:hover, #member #member_edit > .row + hr + .row #login_btn:hover, #member #member_edit > .row + hr + .row #register_btn:hover, #member #member_edit > .row + hr + .row #register_cancel:hover, #member #member_edit button.formBtn:hover, #member_forget #forget_btn, #member_forget #forget_cancel:hover, #member_forget #login_btn:hover, #member_login #login_btn:hover, #member_register #login_btn:hover, #member_register #register_btn:hover, #member_register #register_cancel:hover, .add-to-cart:focus, .add-to-cart:hover, .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .btn:focus, .btn:hover, .custom_form .custom_form_btn:hover, .show > .btn-light.dropdown-toggle {
        background-color: #e0e0e0;
        background-position: 0 -15px;
        box-shadow: none
    }

#btn_back {
    padding: 5px 10px
}

body {
    font-family: Microsoft JhengHei,Helvetica,Arial,sans-serif
}

a, a:hover {
    color: #212529
}

#main_title {
    font-size: 25px
}

#smartMenusBt4 .navbar-header {
    background-color: #333
}

    #smartMenusBt4 .navbar-header .navbar-toggle {
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        border: 0
    }

        #smartMenusBt4 .navbar-header .navbar-toggle .icon-bar {
            background-color: #fff;
            width: 30px;
            height: 2px;
            margin-bottom: 10px;
            display: block
        }

            #smartMenusBt4 .navbar-header .navbar-toggle .icon-bar:last-child {
                margin-bottom: 0
            }

#smartMenusBt4 .FooterlangList {
    display: none
}

#smartMenusBt4 .collapse:not(.show) {
    display: block
}

@media (min-width:768px) {
    #smartMenusBt4 .collapse:not(.show) {
        display: block
    }
}

@media (max-width:767px) {
    #smartMenusBt4 .navbar-header #openBtn .icon-bar {
        background-color: #000;
        width: 30px;
        height: 2px;
        margin: 10px 0
    }

    #smartMenusBt4 .navbar-collapse {
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 100%;
        left: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
        overflow-y: auto;
        z-index: 999;
        border-top: none
    }

        #smartMenusBt4 .navbar-collapse #main-menu li a {
            padding: 13px 10px
        }

    #smartMenusBt4 .mobileLeft {
        width: 20%;
        height: 100%;
        float: left
    }

    #smartMenusBt4 .collapseBox {
        width: 80%;
        float: left;
        height: auto;
        min-height: 100% !important;
        background-color: #f4f4f4;
        padding: 15px
    }

        #smartMenusBt4 .collapseBox .sm-clean a .sub-arrow {
            background-color: transparent
        }

        #smartMenusBt4 .collapseBox #search_area {
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0,0,0,.05)
        }

            #smartMenusBt4 .collapseBox #search_area .smartMenusBt4search {
                background-color: #fff;
                width: calc(100% - 50px);
                border: 0;
                padding-left: 10px;
                border-radius: 0
            }

            #smartMenusBt4 .collapseBox #search_area .input-group-append .btn {
                border-radius: 0;
                background-color: #fff
            }

        #smartMenusBt4 .collapseBox #inquiry_shopping_member {
            text-align: center;
            border-bottom: 1px solid rgba(0,0,0,.05)
        }

            #smartMenusBt4 .collapseBox #inquiry_shopping_member a {
                padding-top: 15px;
                padding-bottom: 15px;
                color: #000;
                font-size: 1.5rem
            }

                #smartMenusBt4 .collapseBox #inquiry_shopping_member a i {
                    margin-bottom: 5px;
                    font-size: 1.5rem
                }

                #smartMenusBt4 .collapseBox #inquiry_shopping_member a .mobile_cart_area, #smartMenusBt4 .collapseBox #inquiry_shopping_member a .mobile_inquiry {
                    position: relative;
                    display: inline-block
                }

                    #smartMenusBt4 .collapseBox #inquiry_shopping_member a .mobile_cart_area .badge-danger, #smartMenusBt4 .collapseBox #inquiry_shopping_member a .mobile_inquiry .badge-danger {
                        position: absolute;
                        top: -7px;
                        right: -7px
                    }

        #smartMenusBt4 .collapseBox #main-menu {
            border-bottom: 1px solid rgba(0,0,0,.05)
        }

        #smartMenusBt4 .collapseBox .FooterlangList {
            display: block;
            text-align: center;
            margin-top: 20px
        }

            #smartMenusBt4 .collapseBox .FooterlangList #language_textlist a {
                font-size: 1.5rem;
                color: #7d7d7d
            }

    #smartMenusBt4 #closeBtn {
        display: block;
        width: 50px;
        height: 50px;
        float: left;
        margin-left: -70px;
        margin-top: -15px;
        background-repeat: no-repeat;
        background-position: 50%;
        background-color: #f4f4f4
    }

        #smartMenusBt4 #closeBtn .icon-bar {
            width: 30px;
            height: 2px;
            background-color: #000;
            display: block;
            margin-left: 10px
        }

            #smartMenusBt4 #closeBtn .icon-bar:first-child {
                transform: translateY(27px) rotate(-45deg)
            }

            #smartMenusBt4 #closeBtn .icon-bar:nth-child(2) {
                transform: translateY(25px) rotate(45deg)
            }

    .lockPage {
        position: fixed;
        overflow-y: auto;
        width: 100%
    }

    #smartmenu_v2_overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.5);
        z-index: 2;
        cursor: pointer
    }
}

#search_area.common {
    border: 1px solid #ddd;
    border-radius: 68px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    width: 25%;
    margin-top: 10px;
    margin-right: 15px
}

    #search_area.common > ul {
        margin: 0;
        padding-left: 15px
    }

    #search_area.common .form-control {
        border: none;
        padding-left: 0;
        height: 100%
    }

    #search_area.common button.btn-primary {
        background: inherit;
        color: #000;
        border: none
    }

    #search_area.common .input-group-append .fa-search {
        font-size: 1.2em;
        color: #7c7c7c
    }

@media (max-width:767px) {
    #search_area.common {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: 15px;
        margin-right: 15px;
        border-bottom: 1px solid #727272
    }

        #search_area.common > ul {
            padding: 0;
            margin: 0
        }

            #search_area.common > ul .form-control {
                border: none
            }

            #search_area.common > ul button.btn-primary {
                background: #fff;
                color: #000;
                border: none;
                border-radius: 0;
                transition: all .3s
            }

                #search_area.common > ul button.btn-primary:hover {
                    background: #df0000;
                    color: #fff
                }
}

#siblings-link {
    margin-top: 1.5em;
    margin-bottom: 1.5em
}

    #siblings-link #siblings-link-wrap {
        display: flex;
        justify-content: flex-end
    }

        #siblings-link #siblings-link-wrap .link {
            text-align: center;
            margin-left: .5em
        }

            #siblings-link #siblings-link-wrap .link a {
                font-size: .875em;
                border-radius: 10px;
                border-color: #999
            }

                #siblings-link #siblings-link-wrap .link a:hover {
                    background-color: #333;
                    color: #fff
                }

            #siblings-link #siblings-link-wrap .link i {
                margin-right: .5em
            }

            #siblings-link #siblings-link-wrap .link:last-child i {
                margin-left: .5em
            }

#product-filter {
    margin-bottom: 1em
}

    #product-filter .navbar {
        padding: 1em
    }

        #product-filter .navbar #navbar-response-collapse button.nav-item {
            border-color: #ccc;
            border-radius: 0;
            outline: none;
            color: #000
        }

            #product-filter .navbar #navbar-response-collapse button.nav-item.active, #product-filter .navbar #navbar-response-collapse button.nav-item:hover {
                background-color: #333;
                color: #fff
            }

            #product-filter .navbar #navbar-response-collapse button.nav-item + button.nav-item {
                margin-left: 1em
            }

@media (max-width:1199px) {
    #product-filter .navbar #navbar-response-collapse button.nav-item + button.nav-item {
        margin-left: 0
    }
}

@media (max-width:1199px) {
    #product-filter .navbar #navbar-response-collapse button.nav-item {
        text-align: left;
        margin-top: 1em;
        padding: .5em 1em
    }
}

#product-filter .navbar #navbar-response-collapse #product-filter-range-form {
    margin-left: 1em
}

@media (max-width:1199px) {
    #product-filter .navbar #navbar-response-collapse #product-filter-range-form {
        margin-left: 0;
        margin-top: 1em
    }
}

#product-filter .navbar #navbar-response-collapse #product-filter-range-form button, #product-filter .navbar #navbar-response-collapse #product-filter-range-form input {
    border-radius: 0
}

@font-face {
    font-family: winho;
    src: url(/dist/fonts/winho.eot?3f09d3c2e1e732cbd0ccb212aa3ab2d2);
    src: url(/dist/fonts/winho.eot?3f09d3c2e1e732cbd0ccb212aa3ab2d2) format("embedded-opentype"),url(/dist/fonts/winho.woff2?94e71e04822ab7270c813c087d68b41f) format("woff2"),url(/dist/fonts/winho.woff?5faf53c20cac732f48eef6f8f9220c08) format("woff"),url(/dist/fonts/winho.ttf?87275962aa11fc29150ecf4a4f047cf2) format("truetype"),url(/dist/fonts/winho.svg?091349a196cb9d7de7407b3d254dcd5e) format("svg");
    font-weight: 400;
    font-style: normal
}

.wb {
    display: inline-block;
    font: normal normal normal 1em/1 winho;
    color: inherit;
    flex-shrink: 0;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wb-sm {
    font-size: .8em
}

.wb-lg {
    font-size: 1.2em
}

.wb-16 {
    font-size: 16px
}

.wb-32 {
    font-size: 32px
}

.wb-is-spinning {
    -webkit-animation: wb-spin 1s linear infinite;
    animation: wb-spin 1s linear infinite
}

@-webkit-keyframes wb-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes wb-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.wb-rotate-90 {
    transform: rotate(90deg)
}

.wb-rotate-180 {
    transform: rotate(180deg)
}

.wb-rotate-270 {
    transform: rotate(270deg)
}

.wb-flip-y {
    transform: scaleY(-1)
}

.wb-flip-x {
    transform: scaleX(-1)
}

.w-ban:before {
    content: "\EA01"
}

.w-box-open:before {
    content: "\EA02"
}

.w-cart-plus:before {
    content: "\EA03"
}

.w-clipboard-list:before {
    content: "\EA04"
}

.w-envelope:before {
    content: "\EA05"
}

.w-fax:before {
    content: "\EA06"
}

.w-globe:before {
    content: "\EA07"
}

.w-heart:before {
    content: "\EA08"
}

.w-home:before {
    content: "\EA09"
}

.w-map-market-alt:before {
    content: "\EA0A"
}

.w-paper-plane:before {
    content: "\EA0B"
}

.w-phone:before {
    content: "\EA0C"
}

.w-search:before {
    content: "\EA0D"
}

.w-shopping-cart:before {
    content: "\EA0E"
}

.w-user:before {
    content: "\EA0F"
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

body {
  
    font-family: Almarai,Microsoft JhengHei;
    color: #3c3c3c
}

    body:lang(en) {
        line-height: normal;
        letter-spacing: 0
    }

svg {
    shape-rendering: geometricPrecision
}

img {
    max-width: 100%
}

.collapseBox::-webkit-scrollbar {
    display: none
}

.form-control:focus {
    color: #333;
    border-color: #333
}

.btn.focus, .btn:focus, .form-control:focus, .page-link:focus, button:focus, input:focus {
    outline: none;
    box-shadow: none
}

.sm-clean ul a.highlighted, .sm-clean ul a:active, .sm-clean ul a:focus, .sm-clean ul a:hover {
    background: transparent
}

.sm-clean a, .sm-clean a:active, .sm-clean a:focus, .sm-clean a:hover {
    font-family: Almarai,Microsoft JhengHei
}

ol, ul {
    margin-left: 20px
}

label, li, p, ul {
    padding: 0;
    margin: 0
}

#product-show-page label, #product-show-page li, #product-show-page p, #product-show-page ul {
    margin: 0 0 1rem
}

#footer .footer-wrap .pd-menu-wrap .pd-menu-list, #header .menu_wrap_top .default-component, .contactus_information_area ul, .sociallink {
    list-style: none
}

li.product-show-tabs, ul.product-show-tabs {
    list-style: inherit
}

a {
    text-transform: capitalize;
    text-decoration: none;
    color: #3c3c3c;
    outline: none;
    cursor: pointer;
    transition: all .3s ease
}

    a:focus {
        box-shadow: none
    }

    a:hover {
        text-decoration: none;
        color: #3c3c3c
    }

.single-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.multiline-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

    .multiline-ellipsis.single {
        -webkit-line-clamp: 1
    }

    .multiline-ellipsis.two {
        -webkit-line-clamp: 2
    }

    .multiline-ellipsis.four {
        -webkit-line-clamp: 4
    }

.wow {
    visibility: visible !important
}

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

#btn_back {
    background-color: transparent;
    border: 1px solid #333;
    padding: 10px;
    text-shadow: none;
    transition: all .3s ease
}

    #btn_back:hover {
        border: 1px solid #3c3c3c;
        background-color: #3c3c3c;
        color: #fff
    }

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

.empty {
    display: none !important
}

.custom-btn {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center
}

    .custom-btn .arrow-icon-block {
        position: relative
    }

        .custom-btn .arrow-icon-block svg#arrow-svg {
            width: 4.6875vw;
            height: 4.6875vw;
            border-radius: 50%
        }

@media (max-width:991px) {
    .custom-btn .arrow-icon-block svg#arrow-svg {
        width: 50px;
        height: 50px
    }
}

.custom-btn .arrow-icon-block svg#arrow-svg .arrowCircle {
    stroke-dashoffset: 440;
    stroke-dasharray: 220
}

.custom-btn .arrow-icon-block .arrow-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(140deg);
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    -webkit-mask: url(/images/project/286/arrow-left.svg) no-repeat 50% 50%;
    mask: url(/images/project/286/arrow-left.svg) no-repeat 50% 50%
}

@media (max-width:991px) {
    .custom-btn .arrow-icon-block .arrow-icon {
        width: 16px;
        height: 16px
    }
}

.custom-btn .text {
    font-size: 18px;
    letter-spacing: .9px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 20px
}

@media (max-width:1680px) {
    .custom-btn .text {
        font-size: 16px
    }
}

.custom-btn:hover .arrowCircle {
    -webkit-animation: arrowStroke .8s cubic-bezier(.445,.05,.55,.95) forwards,arrowStrokeFillBlack .6s cubic-bezier(.445,.05,.55,.95) .6s forwards;
    animation: arrowStroke .8s cubic-bezier(.445,.05,.55,.95) forwards,arrowStrokeFillBlack .6s cubic-bezier(.445,.05,.55,.95) .6s forwards
}

@-webkit-keyframes height {
    0% {
        height: 0
    }

    to {
        height: 189px
    }
}

@keyframes height {
    0% {
        height: 0
    }

    to {
        height: 189px
    }
}

@-webkit-keyframes headerScrollShow {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes headerScrollShow {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

@-webkit-keyframes toggle {
    to {
        transform: translateY(-30px) rotate(-45deg)
    }
}

@keyframes toggle {
    to {
        transform: translateY(-30px) rotate(-45deg)
    }
}

@-webkit-keyframes sliderScale {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

@keyframes sliderScale {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

@-webkit-keyframes shake {
    10%,90% {
        transform: translate3d(-1px,0,0)
    }

    20%,80% {
        transform: translate3d(2px,0,0)
    }

    30%,50%,70% {
        transform: translate3d(-4px,0,0)
    }

    40%,60% {
        transform: translate3d(4px,0,0)
    }
}

@keyframes shake {
    10%,90% {
        transform: translate3d(-1px,0,0)
    }

    20%,80% {
        transform: translate3d(2px,0,0)
    }

    30%,50%,70% {
        transform: translate3d(-4px,0,0)
    }

    40%,60% {
        transform: translate3d(4px,0,0)
    }
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes opacity {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes featuresicon {
    50% {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes featuresicon {
    50% {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

@-webkit-keyframes jumpDown {
    0% {
        transform: translateY(10px)
    }

    50% {
        transform: translateY(20px)
    }

    to {
        transform: translateY(10px)
    }
}

@keyframes jumpDown {
    0% {
        transform: translateY(10px)
    }

    50% {
        transform: translateY(20px)
    }

    to {
        transform: translateY(10px)
    }
}

@-webkit-keyframes jumpUp {
    0% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(-20px)
    }

    to {
        transform: translateY(-10px)
    }
}

@keyframes jumpUp {
    0% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(-20px)
    }

    to {
        transform: translateY(-10px)
    }
}

@-webkit-keyframes leftToRight {
    0% {
        transform: rotate(-45deg) translateY(-50%) scale(1.3)
    }

    50% {
        transform: rotate(-45deg) translate(5px,-50%) scale(1.3)
    }

    to {
        transform: rotate(-45deg) translateY(-50%) scale(1.3)
    }
}

@keyframes leftToRight {
    0% {
        transform: rotate(-45deg) translateY(-50%) scale(1.3)
    }

    50% {
        transform: rotate(-45deg) translate(5px,-50%) scale(1.3)
    }

    to {
        transform: rotate(-45deg) translateY(-50%) scale(1.3)
    }
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

@-webkit-keyframes arrowStroke {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes arrowStroke {
    to {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes arrowStrokeFillBlack {
    to {
        stroke: #000;
        fill: #000
    }
}

@keyframes arrowStrokeFillBlack {
    to {
        stroke: #000;
        fill: #000
    }
}

@-webkit-keyframes arrowStrokeFillWhite {
    to {
        stroke: #fff;
        fill: #fff
    }
}

@keyframes arrowStrokeFillWhite {
    to {
        stroke: #fff;
        fill: #fff
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-30%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-30%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(30%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(30%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,20%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,20%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-duration {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards
}

.fadeLeftRight-cus-animate {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.fadeInUp-cus-animate {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.animate-delay {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.animate-delay06s {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.imagHovereScale {
    overflow: hidden
}

    .imagHovereScale, .imagHovereScale img {
        transition: transform .65s ease;
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

@media (max-width:991px) {
    .imagHovereScale {
        transform: scale3d(.95,.95,1)
    }

        .imagHovereScale img {
            transform: scaleX(1)
        }
}

.imagHovereScale:hover {
    transform: scale3d(.95,.95,1)
}

    .imagHovereScale:hover img {
        transform: scale3d(1.15,1.15,1)
    }

.imgFlipRightIn {
    position: relative
}

    .imgFlipRightIn:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #e8e8e8;
        display: block;
        transition: width .8s;
        z-index: 2
    }

    .imgFlipRightIn.show:after {
        width: 0
    }

.textMoveUp {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s,transform .8s
}

    .textMoveUp.show {
        opacity: 1;
        transform: translateY(0)
    }

.textMoveRight {
    opacity: 0;
    transform: translate3d(30%,0,0);
    transition: opacity 1.5s,transform 1.5s
}

    .textMoveRight.show {
        opacity: 1;
        transform: translateZ(0)
    }

.textMoveLeft {
    opacity: 0;
    transform: translate3d(-30%,0,0);
    transition: opacity 1.5s,transform 1.5s
}

    .textMoveLeft.show {
        opacity: 1;
        transform: translateZ(0)
    }

@-webkit-keyframes btn-circle-in {
    0% {
        transform: translate(-25%,50%)
    }

    to {
        transform: translate(-25%)
    }
}

@keyframes btn-circle-in {
    0% {
        transform: translate(-25%,50%)
    }

    to {
        transform: translate(-25%)
    }
}

#smartMenusBt4 {
    padding: 0
}

    #smartMenusBt4 #main-menu {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        z-index: 1000;
        background: transparent;
        padding: 0
    }

@media (max-width:1365px) {
    #smartMenusBt4 #main-menu {
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px 0
    }
}

@media (max-width:1560px) {
    #smartMenusBt4 #main-menu:lang(de), #smartMenusBt4 #main-menu:lang(es) {
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px 0
    }
}

#smartMenusBt4 #main-menu > li {
    display: flex;
    align-items: center;
    transition: all .3s ease
}

    #smartMenusBt4 #main-menu > li + li {
        margin-left: 2.3438vw
    }

@media (max-width:1680px) {
    #smartMenusBt4 #main-menu > li + li {
        margin-left: 30px
    }
}

@media (max-width:1440px) {
    #smartMenusBt4 #main-menu > li + li {
        margin-left: 20px
    }
}

@media (max-width:1365px) {
    #smartMenusBt4 #main-menu > li + li {
        margin-left: 30px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu > li + li {
        margin-left: 0
    }
}

@media (max-width:1800px) {
    #smartMenusBt4 #main-menu > li + li:lang(de), #smartMenusBt4 #main-menu > li + li:lang(es) {
        margin-left: 20px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu > li + li:lang(de), #smartMenusBt4 #main-menu > li + li:lang(es) {
        margin-left: 0
    }
}

@media (max-width:1280px) {
    #smartMenusBt4 #main-menu > li + li:lang(ja) {
        margin-left: 20px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu > li + li:lang(ja) {
        margin-left: 0
    }
}

#smartMenusBt4 #main-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3c3c3c;
    text-transform: uppercase;
    padding: 0;
    transition: all .3s ease-in
}

    #smartMenusBt4 #main-menu > li > a:lang(de), #smartMenusBt4 #main-menu > li > a:lang(es) {
        letter-spacing: .3px
    }

@media (max-width:1680px) {
    #smartMenusBt4 #main-menu > li > a:lang(de), #smartMenusBt4 #main-menu > li > a:lang(es) {
        font-size: 15px
    }
}

@media (max-width:1580px) {
    #smartMenusBt4 #main-menu > li > a:lang(de), #smartMenusBt4 #main-menu > li > a:lang(es) {
        font-size: 14px
    }
}

#smartMenusBt4 #main-menu > li > a.has-submenu {
    padding: 0 12px 0 0
}

#smartMenusBt4 #main-menu > li > a .sub-arrow {
    width: 0;
    height: 0;
    border-color: #3c3c3c transparent transparent;
    border-style: solid;
    border-width: 9px 5px 0;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    transform: translateY(-50%);
    transition: all .3s ease
}

@media (max-width:1680px) {
    #smartMenusBt4 #main-menu > li > a .sub-arrow {
        border-width: 6px 4px 0
    }
}

#smartMenusBt4 #main-menu > li > a .sub-arrow:before {
    content: none
}

#smartMenusBt4 #main-menu > li > a.highlighted, #smartMenusBt4 #main-menu > li > a:hover {
    color: #004e99
}

    #smartMenusBt4 #main-menu > li > a.highlighted .sub-arrow, #smartMenusBt4 #main-menu > li > a:hover .sub-arrow {
        border-color: #004e99 transparent transparent
    }

#smartMenusBt4 #main-menu li > ul[role=group] > li + li {
    border-top: none
}

#smartMenusBt4 #main-menu li > ul[role=group] > li > a {
    position: relative;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .8px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: #666;
    padding: 13px 28px 13px 13px
}

    #smartMenusBt4 #main-menu li > ul[role=group] > li > a .sub-arrow {
        width: 7px;
        height: 7px;
        display: inline-block;
        border: solid #3c3c3c;
        border-width: 0 1px 1px 0;
        transform: rotate(45deg) translateY(-50%);
        transform: rotate(-45deg) translateY(-50%);
        transform-origin: unset;
        right: 15px;
        top: 50%;
        margin-top: 0
    }

    #smartMenusBt4 #main-menu li > ul[role=group] > li > a:hover {
        color: #fff;
        background: #004e99
    }

        #smartMenusBt4 #main-menu li > ul[role=group] > li > a:hover .sub-arrow {
            border: solid #fff;
            border-width: 0 1px 1px 0
        }

@media (min-width:768px) {
    #smartMenusBt4 .sociallink {
        display: none
    }
}

#smartMenusBt4 .sm-clean ul {
    padding: 0;
    border: 0;
    border-radius: 0 !important;
    top: 100% !important;
    left: 0 !important;
    opacity: 1;
    box-shadow: none;
    background-color: #fff;
    margin-top: 15px !important
}

@media (max-width:991px) {
    #smartMenusBt4 .sm-clean ul {
        background-color: transparent
    }
}

#smartMenusBt4 .sm-clean ul a {
    font-family: Almarai,Microsoft JhengHei !important
}

#smartMenusBt4 .sm-clean ul ul {
    top: 0 !important;
    margin-top: 0 !important
}

#smartMenusBt4 .sm-clean a.has-submenu {
    padding-right: 16px
}

#smartMenusBt4 .sm-clean .sm-nowrap > li > :not(ul) a, #smartMenusBt4 .sm-clean .sm-nowrap > li > a {
    white-space: pre
}

#smartMenusBt4 .sm-clean > li > ul:after, #smartMenusBt4 .sm-clean > li > ul:before {
    display: none
}

@media (min-width:1200px) {
    #smartMenusBt4 .language {
        display: none
    }
}

#smartMenusBt4 .cart.mobile {
    display: none
}

@media (max-width:991px) {
    #header {
        padding: 0;
        position: fixed;
        z-index: 99;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transform: none;
        height: 98px;
        background-color: #fff
    }
}

@media (max-width:991px) and (max-width:575px) {
    #header {
        height: 60px
    }
}

@media (max-width:991px) {
    #header #header-content {
        padding: 0
    }
}

@media (max-width:991px) {
    #header #header-content .funch, #header #header-content .logo_wrap, .sideFixBox {
        display: none
    }
}

@media (max-width:991px) {
    #smartMenusBt4 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 111;
        background-color: transparent;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 96px;
        overflow: hidden
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 {
        height: 60px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu > li > ul {
        border-top: 0
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-collapse.show {
        left: 0 !important;
        background: #f2f2f2
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-collapse {
        transition: all .3s;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 100%;
        left: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
        overflow-y: auto;
        z-index: 999;
        border-top: none
    }
}

@media (max-width:991px) {
    #search_area {
        padding: 20px 0
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .sociallink {
        display: flex;
        justify-content: center;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto
    }

        #header #smartMenusBt4 .sociallink li + li {
            margin-left: 30px
        }

        #header #smartMenusBt4 .sociallink a {
            position: relative;
            color: #222;
            display: block;
            font-size: 22px;
            text-align: center
        }
}

@media (max-width:991px) and (min-width:576px) and (max-width:1280px) {
    #header #smartMenusBt4 .sociallink a {
        font-size: 22px
    }
}

@media (max-width:991px) and (min-width:320px) and (max-width:575px) {
    #header #smartMenusBt4 .sociallink a {
        margin-right: 0 !important
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .sociallink a i {
        position: relative;
        line-height: inherit
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 #main-menu > li > a:after {
        content: none
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .sm-clean a {
        color: #000;
        background-color: transparent
    }

        #header #smartMenusBt4 .sm-clean a .sub-arrow:before {
            display: none
        }

        #header #smartMenusBt4 .sm-clean a.highlighted .sub-arrow:before {
            content: "-";
            font-family: icomoon !important;
            font-size: 22px
        }

        #header #smartMenusBt4 .sm-clean a.highlighted .sub-arrow .menu_icon_arrow {
            display: none
        }

        #header #smartMenusBt4 .sm-clean a.highlighted .sub-arrow:after {
            content: none
        }

        #header #smartMenusBt4 .sm-clean a:hover {
            color: #004e99
        }

    #header #smartMenusBt4 .sm-clean ul ul {
        background-color: transparent;
        padding-left: 0
    }

        #header #smartMenusBt4 .sm-clean ul ul > li a {
            padding: 20px 50px 20px 45px
        }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .navbar-header {
        position: fixed;
        top: 0;
        z-index: 9999;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        background-color: #fff;
        padding: 0 0 0 10px
    }
}

@media (max-width:991px) and (max-width:991px) {
    #header #smartMenusBt4 .navbar-header {
        height: 96px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #header #smartMenusBt4 .navbar-header {
        height: 60px
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .navbar-header .navbar-toggle {
        background-color: #004e99;
        padding: 35px 32px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #header #smartMenusBt4 .navbar-header .navbar-toggle {
        padding: 17px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .mobileLeft {
        background-color: #000;
        opacity: .5;
        margin-top: 60px;
        width: 0 !important;
        height: 100%;
        float: left
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-header a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 90px;
        line-height: 90px;
        padding: 0;
        margin-left: 30px;
        max-width: 180px;
        width: 100%
    }
}

@media (max-width:991px) and (max-width:991px) {
    #smartMenusBt4 .navbar-header a {
        max-width: 107px;
        margin-left: 20px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .navbar-header a {
        max-width: 75px;
        height: 60px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-header a img {
        width: 100%;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        -ms-interpolation-mode: nearest-neighbor
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #search_area .input-group {
        width: 100%
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapse_wrap {
        padding: 30px 15px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .social_wrap {
        flex: auto
    }

        #smartMenusBt4 .collapseBox .social_wrap .item {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin: 0 55px 25px
        }

        #smartMenusBt4 .collapseBox .social_wrap ul {
            display: flex;
            align-items: stretch;
            justify-content: center;
            padding: 10px 0;
            margin-right: -35px;
            list-style: none
        }

            #smartMenusBt4 .collapseBox .social_wrap ul li a {
                color: #000;
                font-size: 20px;
                padding: 0 10px;
                margin: 0 !important
            }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .FooterlangList {
        margin: 0
    }

        #smartMenusBt4 .collapseBox .FooterlangList #language_textlist {
            padding: 0
        }

            #smartMenusBt4 .collapseBox .FooterlangList #language_textlist > div {
                display: flex;
                align-items: stretch;
                justify-content: center
            }

                #smartMenusBt4 .collapseBox .FooterlangList #language_textlist > div a {
                    font-size: 12px
                }
}

@media (max-width:991px) {
    .sm-clean a .sub-arrow {
        border: none
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .sm-clean li ul {
        transform: none !important;
        margin: 0 !important;
        box-shadow: none
    }

    #header #smartMenusBt4 .collapseBox .FooterlangList #language_textlist {
        padding: 15px 0;
        margin: auto
    }

        #header #smartMenusBt4 .collapseBox .FooterlangList #language_textlist > div > span:first-child .separate_line {
            display: none
        }

        #header #smartMenusBt4 .collapseBox .FooterlangList #language_textlist span {
            display: flex;
            align-items: center
        }

            #header #smartMenusBt4 .collapseBox .FooterlangList #language_textlist span.separate_line {
                color: #fff
            }

            #header #smartMenusBt4 .collapseBox .FooterlangList #language_textlist span a {
                font-size: 12px;
                color: #fff;
                white-space: nowrap
            }

                #header #smartMenusBt4 .collapseBox .FooterlangList #language_textlist span a.active {
                    font-weight: 600
                }

    #header #smartMenusBt4 .collapseBox .SocialList {
        margin-top: 10px;
        padding: 0 15px
    }

        #header #smartMenusBt4 .collapseBox .SocialList .sociallink {
            text-align: center
        }

            #header #smartMenusBt4 .collapseBox .SocialList .sociallink.icon_color a {
                font-size: 15px;
                width: 35px;
                height: 35px;
                margin: 5px !important
            }

                #header #smartMenusBt4 .collapseBox .SocialList .sociallink.icon_color a i:after {
                    width: 35px;
                    height: 35px
                }

    #header #smartMenusBt4 .collapseBox #main-menu {
        border-bottom: none;
        border-radius: 0;
        background: transparent;
        flex-direction: column;
        padding: 0;
        align-items: center;
        height: auto;
        margin: 30px auto
    }
}

@media (max-width:991px) and (max-width:575px) {
    #header #smartMenusBt4 .collapseBox #main-menu {
        margin: 20px auto 30px
    }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .collapseBox #language_textlist {
        text-align: center;
        max-width: 100%
    }

        #header #smartMenusBt4 .collapseBox #language_textlist span.separate_line {
            color: #333
        }

        #header #smartMenusBt4 .collapseBox #language_textlist a:hover {
            color: #3c3c3c
        }
}

@media (max-width:991px) {
    #header #smartMenusBt4 .collapseBox #language_textlist, #header #smartMenusBt4 .collapseBox i.fa-globe {
        display: inline-block
    }
}

@media (max-width:991px) {
    .sm-clean ul {
        position: unset
    }

    #smartMenusBt4 .search-wrap {
        display: none;
        margin-right: 82px;
        padding-right: 12px;
        font-size: 26px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .search-wrap {
        margin-right: 60px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #search_area {
        display: block !important
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 #search_area {
        padding: 0;
        line-height: 60px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .fixed-bottom.mobile-bottom {
        display: none;
        background: #333;
        padding: 10px 0
    }

        #smartMenusBt4 .fixed-bottom.mobile-bottom #language_icondropdown .dropdown-menu.show {
            position: static;
            transform: none !important
        }

            #smartMenusBt4 .fixed-bottom.mobile-bottom #language_icondropdown .dropdown-menu.show:before {
                content: none
            }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-header #openBtn .icon-bar {
        background-color: #fff;
        width: 25px;
        height: 2px;
        margin: 5px 0
    }

        #smartMenusBt4 .navbar-header #openBtn .icon-bar:first-child {
            width: 32px
        }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-header #closeBtn {
        position: fixed;
        top: 0;
        margin: 0;
        right: 0;
        display: none;
        width: 96px;
        height: 96px;
        float: left;
        background-color: #3c3c3c;
        background-repeat: no-repeat;
        background-position: 50%;
        cursor: pointer
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .navbar-header #closeBtn {
        width: 60px;
        height: 60px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-header #closeBtn .close-icon {
        position: relative;
        width: 38px;
        height: 38px;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) rotate(45deg);
        width: 45px;
        height: 45px;
        background: transparent
    }

        #smartMenusBt4 .navbar-header #closeBtn .close-icon:after, #smartMenusBt4 .navbar-header #closeBtn .close-icon:before {
            position: absolute;
            content: "";
            height: 37px;
            width: 2px;
            background-color: #fff;
            top: 50%;
            left: 50%
        }

        #smartMenusBt4 .navbar-header #closeBtn .close-icon:before {
            transform: translate(-50%,-50%) rotate(0deg)
        }

        #smartMenusBt4 .navbar-header #closeBtn .close-icon:after {
            transform: translate(-50%,-50%) rotate(90deg)
        }

        #smartMenusBt4 .navbar-header #closeBtn .close-icon:after, #smartMenusBt4 .navbar-header #closeBtn .close-icon:before {
            height: 36px
        }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-collapse {
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 100%;
        left: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
        overflow-y: auto;
        z-index: 999;
        border-top: none;
        flex: 1;
        overflow-y: hidden
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-collapse #main-menu li {
        border-bottom: none;
        border-top: none;
        display: block;
        width: 100%;
        height: auto
    }

        #smartMenusBt4 .navbar-collapse #main-menu li:first-child {
            border-top: none
        }

        #smartMenusBt4 .navbar-collapse #main-menu li:last-child {
            border-bottom: none
        }
}

@media (max-width:991px) {
    #smartMenusBt4 .navbar-collapse #main-menu li a {
        font-size: 20px !important;
        font-weight: 700;
        padding: 20px 50px 20px 15px;
        border-radius: 0 !important;
        height: auto;
        color: #444;
        border-bottom: 1px solid #ddd
    }

        #smartMenusBt4 .navbar-collapse #main-menu li a.highlighted {
            background-color: #004e99;
            color: #fff
        }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .navbar-collapse #main-menu li a {
        font-size: 16px !important;
        padding: 18px 50px 18px 15px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu li > ul[role=group] > li > a {
        border-left: 0;
        padding: 20px 50px 20px 30px;
        font-size: 18px !important;
        letter-spacing: .36px;
        color: #666;
        text-transform: capitalize;
        border-bottom: 1px solid #ddd !important
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 #main-menu li > ul[role=group] > li > a {
        padding: 18px 50px 18px 30px;
        font-size: 16px !important
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu li > ul[role=group] > li > a:hover {
        color: #004e99;
        background: transparent
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu li > ul[role=group] > li > a.has-submenu.highlighted {
        background-color: transparent;
        color: #004e99
    }

        #smartMenusBt4 #main-menu li > ul[role=group] > li > a.has-submenu.highlighted .sub-arrow {
            border: solid #004e99 !important;
            border-width: 0 2px 2px 0 !important
        }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu li > ul[role=group] ul li > a {
        font-size: 16px !important;
        padding: 20px 45px 20px 40px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu li > ul[role=group] ul ul li > a {
        padding: 20px 30px 20px 60px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu > li > a .sub-arrow {
        position: absolute;
        left: auto;
        right: 25px;
        top: 50%;
        margin-top: -2px;
        background-color: transparent;
        opacity: 1;
        margin-left: 19px;
        border-radius: 0;
        width: 10px;
        height: 10px;
        display: inline-block;
        border: solid #3c3c3c;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg) translateY(-50%);
        transform: rotate(-45deg) translateY(-50%)
    }

    #smartMenusBt4 #main-menu > li > a:hover .sub-arrow {
        border: solid #004e99;
        border-width: 0 2px 2px 0
    }

    #smartMenusBt4 #main-menu > li > a.has-submenu.highlighted .sub-arrow {
        right: 30px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg) translateY(-50%)
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #main-menu li > ul[role=group] > li a .sub-arrow {
        margin-top: 0;
        position: absolute;
        top: 50%;
        right: 25px;
        margin-left: 19px;
        border-radius: 0;
        width: 10px;
        height: 10px;
        display: inline-block;
        border: solid #3c3c3c;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg) translateY(-50%);
        transform: rotate(-45deg) translateY(-50%)
    }

    #smartMenusBt4 #main-menu li > ul[role=group] > li a:hover .sub-arrow {
        border: solid #004e99;
        border-width: 0 2px 2px 0
    }

    #smartMenusBt4 #main-menu li > ul[role=group] > li a.has-submenu.highlighted .sub-arrow {
        right: 30px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg) translateY(-50%)
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .sm-clean ul ul li a {
        font-size: 18px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .sm-clean ul li a.highlighted, #smartMenusBt4 .sm-clean ul ul li a.highlighted {
        color: #f3f3f3;
        background-color: transparent
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .sm-clean li ul li {
        border-top: 1px solid transparent;
        background-color: #fff
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .sm-clean li ul li a {
        color: #f3f3f3;
        font-size: 18px
    }

        #smartMenusBt4 .sm-clean li ul li a:hover {
            background-color: transparent;
            color: #fff
        }
}

@media (max-width:991px) {
    #smartMenusBt4 .mobileLeft {
        width: 20%;
        height: 100%;
        float: left
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .sm-clean a .sub-arrow {
        background-color: transparent
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        background-color: #fff;
        width: 100%;
        height: 100%;
        float: left;
        min-height: 100% !important;
        padding: 0
    }

        #smartMenusBt4 .collapseBox .flex-top {
            overflow-y: auto;
            flex: 1;
            padding: 96px 30px 30px
        }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox .flex-top {
        padding: 60px 30px 30px
    }
}

@media (max-width:991px) and (max-width:413px) {
    #smartMenusBt4 .collapseBox .flex-top {
        padding: 60px 20px 30px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .flex-bottom {
        height: 70px
    }

        #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile {
            display: block;
            width: 100%;
            height: 70px
        }

            #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area a {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 98px;
                background-color: #444;
                color: #fff;
                font-family: Almarai,Microsoft JhengHei;
                font-size: 18px;
                line-height: 1;
                letter-spacing: normal;
                font-weight: 700;
                padding: 0 18px
            }
}

@media (max-width:991px) and (max-width:1680px) {
    #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area a {
        font-size: 16px;
        height: 70px;
        padding: 0 15px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area i {
        position: relative
    }

        #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area i .inquiry-number {
            position: absolute;
            top: -6px;
            right: -16px;
            font-size: 16px;
            text-align: center;
            color: #3c3c3c;
            background: #c8b591;
            width: 22px;
            height: 22px;
            line-height: 18px;
            border-radius: 50%
        }
}

@media (max-width:991px) and (max-width:1680px) {
    #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area i .inquiry-number {
        top: -2px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area .inquiry-text {
        text-transform: uppercase;
        margin: 0 14px
    }
}

@media (max-width:991px) and (max-width:1680px) {
    #smartMenusBt4 .collapseBox .flex-bottom .cart.mobile #cart_area .inquiry-text {
        margin: 0 10px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #language_icondropdown {
        border: none
    }

        #smartMenusBt4 #language_icondropdown .dropdown > a {
            max-width: 180px;
            margin: 0 auto
        }

            #smartMenusBt4 #language_icondropdown .dropdown > a .arrow-wrap {
                position: absolute;
                display: inline-block;
                background: #000;
                width: 30px;
                text-align: center;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                border: 1px solid #000
            }

                #smartMenusBt4 #language_icondropdown .dropdown > a .arrow-wrap .arrow {
                    width: 9px;
                    height: 9px;
                    display: inline-block;
                    border: solid #fff;
                    border-width: 0 2px 2px 0;
                    transform: rotate(45deg) translateY(-50%)
                }

        #smartMenusBt4 #language_icondropdown .dropdown-menu.show {
            background-color: transparent;
            border: 0;
            border-radius: 0;
            padding: 0;
            top: 48% !important;
            width: 90%;
            left: 50% !important
        }

            #smartMenusBt4 #language_icondropdown .dropdown-menu.show a {
                color: #000;
                background-color: #eee;
                display: block;
                padding: 15px
            }

            #smartMenusBt4 #language_icondropdown .dropdown-menu.show:before {
                left: 50%;
                transform: translateX(-50%)
            }

        #smartMenusBt4 #language_icondropdown .lang-wrap {
            background-color: transparent;
            color: #3c3c3c;
            border-radius: 0;
            flex: auto;
            text-align: center;
            vertical-align: middle
        }

            #smartMenusBt4 #language_icondropdown .lang-wrap i {
                font-size: 24px;
                vertical-align: revert;
                margin-right: 8px
            }
}

@media (max-width:991px) and (max-width:767px) {
    #smartMenusBt4 #language_icondropdown .lang-wrap i {
        font-size: 20px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 #language_icondropdown .lang-wrap i {
        font-size: 18px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 #language_icondropdown .sub-arrow {
        position: relative;
        width: 15px;
        height: 15px;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) rotate(45deg);
        position: absolute;
        left: auto;
        right: 0;
        transform: translate(-50%,-50%) rotate(0deg);
        width: 12px;
        height: auto;
        position: static;
        transform: none
    }

        #smartMenusBt4 #language_icondropdown .sub-arrow:after, #smartMenusBt4 #language_icondropdown .sub-arrow:before {
            position: absolute;
            content: "";
            height: 15px;
            width: 1px;
            background-color: #3c3c3c;
            top: 50%;
            left: 50%
        }

        #smartMenusBt4 #language_icondropdown .sub-arrow:before {
            transform: translate(-50%,-50%) rotate(0deg)
        }

        #smartMenusBt4 #language_icondropdown .sub-arrow:after {
            transform: translate(-50%,-50%) rotate(90deg)
        }

        #smartMenusBt4 #language_icondropdown .sub-arrow:after, #smartMenusBt4 #language_icondropdown .sub-arrow:before {
            background-color: #fff;
            width: 2px;
            display: none
        }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #search_area {
        margin: 31px 0;
        padding: 0
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox #search_area {
        margin: 31px 0 0
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #search_area .input-group {
        border-radius: 0;
        border: 1px solid #666;
        overflow: hidden
    }

        #smartMenusBt4 .collapseBox #search_area .input-group ::-moz-placeholder {
            color: #666;
            opacity: 1;
            font-size: 18px;
            letter-spacing: 1.8px
        }

        #smartMenusBt4 .collapseBox #search_area .input-group :-ms-input-placeholder {
            color: #666;
            opacity: 1;
            font-size: 18px;
            letter-spacing: 1.8px
        }

        #smartMenusBt4 .collapseBox #search_area .input-group ::placeholder {
            color: #666;
            opacity: 1;
            font-size: 18px;
            letter-spacing: 1.8px
        }

        #smartMenusBt4 .collapseBox #search_area .input-group ::-moz-placeholder:lang(en) {
            letter-spacing: 0
        }

        #smartMenusBt4 .collapseBox #search_area .input-group :-ms-input-placeholder:lang(en) {
            letter-spacing: 0
        }

        #smartMenusBt4 .collapseBox #search_area .input-group ::placeholder:lang(en) {
            letter-spacing: 0
        }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #search_area .input-group-append {
        margin: 0
    }

        #smartMenusBt4 .collapseBox #search_area .input-group-append .btn {
            background-image: none;
            background-color: #fff;
            width: 60px;
            border: none;
            border-radius: 0
        }

            #smartMenusBt4 .collapseBox #search_area .input-group-append .btn .fas {
                color: #3c3c3c;
                font-size: 21px
            }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #search_area .smartMenusBt4search {
        background-color: transparent;
        color: #495057;
        width: calc(100% - 60px);
        border: 0;
        padding: 15px;
        border-radius: 0;
        font-family: Almarai,Microsoft JhengHei;
        font-size: 16px;
        line-height: 1;
        letter-spacing: .8px;
        font-weight: 700
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox #search_area .smartMenusBt4search {
        font-size: 16px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .flex-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: auto
    }

        #smartMenusBt4 .collapseBox .flex-block .language {
            display: block;
            width: 100%;
            text-align: center
        }

        #smartMenusBt4 .collapseBox .flex-block .social_wrap .item {
            margin: 0;
            justify-content: center
        }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox .flex-block .social_wrap .item {
        justify-content: center
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .flex-block .social_wrap .item .txt {
        display: none
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .flex-block .social_wrap .sociallink {
        display: flex;
        flex-wrap: wrap;
        margin-right: 0;
        margin-bottom: 0
    }

        #smartMenusBt4 .collapseBox .flex-block .social_wrap .sociallink li + li {
            margin-left: 15px
        }

        #smartMenusBt4 .collapseBox .flex-block .social_wrap .sociallink a {
            margin-right: 0 !important;
            margin-left: 10px;
            color: #fff;
            display: inherit;
            width: 45px;
            height: 45px;
            line-height: 45px;
            background: transparent;
            text-align: center;
            border-radius: 50%;
            font-size: 24px
        }
}

@media (max-width:991px) and (min-width:320px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox .flex-block .social_wrap .sociallink a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member {
        text-align: center;
        margin: 15px 60px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member {
        margin: 15px 45px !important
    }
}

@media (max-width:991px) and (max-width:413px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member {
        margin: 15px 30px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member > .row {
        justify-content: space-around;
        flex-wrap: nowrap
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a {
        margin: 0 auto !important;
        padding: 15px;
        color: #333;
        background-color: transparent;
        border: 1px solid #333;
        font-size: 18px;
        letter-spacing: normal
    }

        #smartMenusBt4 .collapseBox #inquiry_shopping_member a:lang(en) {
            letter-spacing: 0
        }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a {
        font-size: 16px;
        margin: 0 15px
    }
}

@media (max-width:991px) and (max-width:413px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a {
        font-size: 16px;
        margin: 0
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a + a {
        margin-left: 15px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a:lang(en) {
        letter-spacing: 0
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a i {
        font-size: 20px;
        margin-bottom: 0;
        margin-right: 10px
    }
}

@media (max-width:991px) and (max-width:575px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member a i {
        font-size: 17px;
        margin-bottom: 5px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox #inquiry_shopping_member #inquiry_shopping_member .cart-number, #smartMenusBt4 .collapseBox #inquiry_shopping_member #inquiry_shopping_member .inquiry-number {
        display: contents;
        background-color: transparent;
        font-size: 18px !important;
        letter-spacing: 1.35px;
        color: #fff;
        padding: 0;
        vertical-align: bottom
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .FooterlangList {
        display: block;
        text-align: center;
        margin-top: 20px
    }
}

@media (max-width:991px) {
    #smartMenusBt4 .collapseBox .FooterlangList #language_textlist a {
        font-size: 1.5rem;
        color: #7d7d7d
    }
}

@media (max-width:991px) {
    .lockPage {
        position: fixed;
        overflow-y: auto;
        width: 100%
    }
}

@media (max-width:991px) {
    #smartmenu_v2_overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.5);
        z-index: 2;
        cursor: pointer
    }
}

@media (max-width:480px) {
    #header #smartMenusBt4 #main-menu {
        padding: 0
    }
}

.logo_wrap > a {
    display: block
}

.logo_wrap .logo_img {
    width: 100%
}

.component-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    padding-left: 0;
    padding-right: 0
}

@media (max-width:1680px) {
    .component-col {
        height: 70px
    }
}

@media (max-width:1365px) {
    .component-col {
        position: absolute;
        right: 0;
        top: 0;
        flex: 0 0 40%;
        max-width: 40%
    }
}

@media (max-width:991px) {
    .component-col {
        display: none
    }
}

@media (max-width:1560px) {
    .component-col:lang(de), .component-col:lang(es) {
        position: absolute;
        right: 0;
        top: 0;
        flex: 0 0 40%;
        max-width: 40%
    }
}

.component-col i {
    font-size: 1.25vw
}

@media (max-width:1680px) {
    .component-col i {
        font-size: 19px
    }
}

@media (max-width:1440px) {
    .component-col i {
        font-size: 17px
    }
}

#search_area {
    font-size: 24px;
    padding: 0 1.3542vw
}

@media (max-width:1680px) {
    #search_area {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #search_area {
        font-size: 16px
    }
}

@media (max-width:1365px) {
    #search_area {
        padding: 0 20px
    }
}

@media (max-width:1680px) {
    #search_area:lang(de), #search_area:lang(es) {
        padding: 0 14px
    }
}

@media (max-width:1560px) {
    #search_area:lang(de), #search_area:lang(es) {
        padding: 0 20px
    }
}

#language_icondropdown .dropdown > a {
    color: #3c3c3c;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700
}

@media (max-width:1680px) {
    #language_icondropdown .dropdown > a {
        font-size: 16px
    }
}

#language_icondropdown .dropdown > a:hover {
    color: #004e99
}

    #language_icondropdown .dropdown > a:hover .sub-arrow {
        border-color: #004e99 transparent transparent
    }

#language_icondropdown .dropdown > a #lang_text, #language_icondropdown .dropdown > a .sub-arrow {
    display: none
}

#language_icondropdown .dropdown > a #lang_text {
    font-size: 20px;
    padding: 0 5px
}

@media (max-width:1680px) {
    #language_icondropdown .dropdown > a #lang_text {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #language_icondropdown .dropdown > a #lang_text {
        font-size: 16px
    }
}

@media (max-width:1365px) {
    #language_icondropdown .dropdown > a #lang_text {
        padding: 0 5px;
        font-size: 20px
    }
}

@media (max-width:991px) {
    #language_icondropdown .dropdown > a #lang_text {
        padding: 0
    }
}

@media (max-width:767px) {
    #language_icondropdown .dropdown > a #lang_text {
        font-size: 18px
    }
}

@media (max-width:1560px) {
    #language_icondropdown .dropdown > a #lang_text:lang(es) {
        padding: 0 5px;
        font-size: 20px
    }
}

#language_icondropdown .dropdown-menu {
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0
}

    #language_icondropdown .dropdown-menu a {
        display: block;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: normal;
        color: #3c3c3c;
        background-color: #fff;
        padding: 10px 0
    }

@media (max-width:1680px) {
    #language_icondropdown .dropdown-menu a {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #language_icondropdown .dropdown-menu a {
        font-size: 16px
    }
}

#language_icondropdown .dropdown-menu a:hover {
    color: #fff;
    background-color: #004e99
}

#language_icondropdown .dropdown-menu.show {
    top: 100% !important
}

    #language_icondropdown .dropdown-menu.show:before {
        border-bottom-color: #004e99
    }

#language_icondropdown .sub-arrow {
    width: 0;
    height: 0;
    border-color: #3c3c3c transparent transparent;
    border-style: solid;
    border-width: 9px 5px 0;
    margin-top: 0
}

.cart.desktop #cart_area a {
    display: flex;
    align-items: center;
    height: 80px;
    background-color: #004e99;
    color: #fff;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    padding: 0 18px
}

@media (max-width:1680px) {
    .cart.desktop #cart_area a {
        font-size: 16px;
        height: 70px;
        padding: 0 15px
    }
}

.cart.desktop #cart_area i {
    position: relative
}

    .cart.desktop #cart_area i .inquiry-number {
        position: absolute;
        top: -6px;
        right: -16px;
        font-size: 16px;
        text-align: center;
        color: #3c3c3c;
        background: #c8b591;
        width: 22px;
        height: 22px;
        line-height: 18px;
        border-radius: 50%
    }

@media (max-width:1680px) {
    .cart.desktop #cart_area i .inquiry-number {
        top: -2px
    }
}

.cart.desktop #cart_area .inquiry-text {
    text-transform: uppercase;
    margin: 0 14px
}

@media (max-width:1680px) {
    .cart.desktop #cart_area .inquiry-text {
        margin: 0 10px
    }
}

@media (max-width:991px) {
    .sociallink {
        margin-bottom: 5px;
        text-align: center
    }
}

.sociallink li {
    margin-bottom: 0 !important
}

@media (max-width:991px) {
    .sociallink li + li {
        margin-left: 1.5625vw
    }
}

@media (max-width:575px) {
    .sociallink li + li {
        margin-left: 10px
    }
}

.sociallink li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #004e99;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 21px;
    margin-right: 10px !important
}

@media (max-width:1365px) {
    .sociallink li a {
        width: 35px;
        height: 35px;
        font-size: 18px
    }
}

@media (max-width:991px) {
    .sociallink li a {
        margin: 0 !important
    }
}

@media (max-width:1560px) {
    .sociallink li a:lang(es) {
        width: 35px;
        height: 35px;
        font-size: 18px
    }
}

.sociallink li a:hover {
    color: #fff !important;
    opacity: .9
}

.sociallink li i {
    font-size: 18px
}

.top-container {
    position: relative
}

    .top-container #header {
        position: fixed;
        top: 0;
        display: flex;
        width: 100%;
        z-index: 999;
        transition: all .6s ease;
        background-color: #fff
    }

        .top-container #header.scroll {
            position: fixed;
            top: 0;
            opacity: 1;
            -webkit-animation: headerScrollShow .5s;
            animation: headerScrollShow .5s
        }

@media (max-width:991px) {
    .top-container #header.scroll {
        -webkit-animation: none;
        animation: none
    }
}

@media (max-width:991px) {
    .top-container #header {
        height: 96px
    }
}

@media (max-width:575px) {
    .top-container #header {
        height: 60px
    }
}

.top-container #header-wrap {
    align-items: center
}

    .top-container #header-wrap .logo-col {
        padding-left: 30px;
        padding-right: 0
    }

@media (max-width:1365px) {
    .top-container #header-wrap .logo-col {
        padding-left: 15px;
        padding-right: 15px;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (max-width:991px) {
    .top-container #header-wrap .logo-col {
        display: none
    }
}

@media (max-width:1560px) {
    .top-container #header-wrap .logo-col:lang(de), .top-container #header-wrap .logo-col:lang(es) {
        padding-left: 15px;
        padding-right: 15px;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.top-container #header-wrap .logo-col a {
    display: flex;
    align-items: center;
    max-width: 107px;
    width: 100%;
    background: transparent
}

@media (max-width:1365px) {
    .top-container #header-wrap .logo-col a {
        margin: 12px auto
    }
}

@media (max-width:1560px) {
    .top-container #header-wrap .logo-col a:lang(de), .top-container #header-wrap .logo-col a:lang(es) {
        margin: 12px auto
    }
}

.top-container #header-wrap .menu-col {
    padding-left: clamp(15px,2vw,38px)
}

@media (max-width:1680px) {
    .top-container #header-wrap .menu-col {
        padding-left: 50px
    }
}

@media (max-width:1365px) {
    .top-container #header-wrap .menu-col {
        padding-left: 15px;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.top-container #header-wrap .menu-col:lang(de), .top-container #header-wrap .menu-col:lang(es) {
    padding-left: 3vw
}

@media (max-width:1560px) {
    .top-container #header-wrap .menu-col:lang(de), .top-container #header-wrap .menu-col:lang(es) {
        padding-left: 15px;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.banner-wrap {
    position: relative;
    margin-top: 80px
}

@media (max-width:1680px) {
    .banner-wrap {
        margin-top: 70px
    }
}

@media (max-width:1365px) {
    .banner-wrap {
        margin-top: 141px
    }
}

@media (max-width:991px) {
    .banner-wrap {
        margin-top: 96px
    }
}

@media (max-width:576px) {
    .banner-wrap {
        margin-top: 60px
    }
}

@media (max-width:1560px) {
    .banner-wrap:lang(de), .banner-wrap:lang(es) {
        margin-top: 141px
    }
}

@media (max-width:991px) {
    .banner-wrap:lang(de), .banner-wrap:lang(es) {
        margin-top: 96px
    }
}

@media (max-width:576px) {
    .banner-wrap:lang(de), .banner-wrap:lang(es) {
        margin-top: 60px
    }
}

.banner-wrap .custom-gutters {
    padding-left: 0;
    padding-right: 0
}

    .banner-wrap .custom-gutters .row {
        margin-left: 0;
        margin-right: 0
    }

    .banner-wrap .custom-gutters [class*=col-] {
        padding-left: 0;
        padding-right: 0
    }

.banner-wrap #banner {
    padding: 0
}

    .banner-wrap #banner .banner_summary {
        background: none;
        padding: 10px 15px;
        font-size: 3.2813vw;
        font-weight: 700;
        text-shadow: 1px 1px 8px rgba(0,0,0,.30196078431372547);
        letter-spacing: 6.3px;
        text-align: center;
        color: #3c3c3c;
        text-transform: uppercase;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%,-50%)
    }

        .banner-wrap #banner .banner_summary:lang(en) {
            letter-spacing: 0
        }

    .banner-wrap #banner .splide__arrows {
        text-align: center;
        margin-top: 2.2917vw
    }

@media (max-width:1680px) {
    .banner-wrap #banner .splide__arrows {
        margin-left: 4%
    }
}

@media (max-width:1580px) {
    .banner-wrap #banner .splide__arrows {
        margin-left: 5%
    }
}

@media (max-width:991px) {
    .banner-wrap #banner .splide__arrows {
        display: none
    }
}

.banner-wrap #banner .splide__arrow {
    position: static;
    top: 0;
    transform: none
}

    .banner-wrap #banner .splide__arrow.splide__arrow--next {
        margin-right: 6vw
    }

    .banner-wrap #banner .splide__arrow i.arrow-icon {
        display: inline-block;
        width: 23px;
        height: 16px;
        background-image: url(/images/project/286/arrow-left.svg)
    }

        .banner-wrap #banner .splide__arrow i.arrow-icon.right {
            transform: rotate(-180deg)
        }

    .banner-wrap #banner .splide__arrow .arrow-text {
        font-size: 18px;
        letter-spacing: .9px;
        color: #000;
        padding: 0 15px
    }

@media (max-width:1680px) {
    .banner-wrap #banner .splide__arrow .arrow-text {
        font-size: 16px
    }
}

.banner-wrap #banner .splide__pagination {
    position: absolute;
    justify-content: left;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px
}

@media (max-width:767px) {
    .banner-wrap #banner .splide__pagination {
        justify-content: center !important;
        bottom: 8px
    }
}

.banner-wrap #banner .splide__pagination li + li {
    margin-left: 19px
}

.banner-wrap #banner .splide__pagination__page {
    position: relative;
    background: #fff;
    width: 15px;
    height: 15px;
    margin: 0;
    overflow: hidden
}

@media (max-width:1680px) {
    .banner-wrap #banner .splide__pagination__page {
        width: 12px;
        height: 12px;
        margin-right: 8px
    }
}

.banner-wrap #banner .splide__pagination__page.is-active, .banner-wrap #banner .splide__pagination__page:hover {
    background: #004e99 !important
}

.banner-wrap.inside-banner #main_title {
    text-transform: capitalize;
    text-shadow: 0 6px 20px #3c3c3c;
    margin-bottom: 1vw
}

@media (max-width:767px) {
    .banner-wrap.inside-banner #main_title {
        font-size: 24px
    }
}

.banner-wrap.inside-banner #bread_area {
    position: static;
    bottom: 0;
    width: auto;
    letter-spacing: 1.5px;
    margin-top: 0
}

    .banner-wrap.inside-banner #bread_area:lang(en) {
        letter-spacing: 0
    }

    .banner-wrap.inside-banner #bread_area .breadcrumb {
        justify-content: center;
        text-transform: capitalize;
        text-shadow: 0 6px 20px #375d50;
        background: transparent;
        border-radius: 0;
        padding: 0;
        margin-bottom: 0;
        margin-left: 0;
        line-height: 1.5
    }

    .banner-wrap.inside-banner #bread_area .breadcrumb-item i.fa-home {
        display: none
    }

    .banner-wrap.inside-banner #bread_area .breadcrumb-item.active, .banner-wrap.inside-banner #bread_area .breadcrumb-item > a, .banner-wrap.inside-banner #bread_area .breadcrumb-item > a:hover {
        color: #fff
    }

    .banner-wrap.inside-banner #bread_area .breadcrumb-item + .breadcrumb-item {
        padding-left: 5px
    }

        .banner-wrap.inside-banner #bread_area .breadcrumb-item + .breadcrumb-item:before {
            content: ">";
            padding-right: 5px;
            color: #fff
        }

@media (max-width:767px) {
    .banner-wrap.inside-banner #bread_area .breadcrumb-item {
        font-size: 13px
    }
}

#lightbox_search.modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: auto
}

    #lightbox_search.modal #search_area {
        padding: 0
    }

    #lightbox_search.modal .container {
        max-width: 99%
    }

    #lightbox_search.modal .modal-dialog {
        max-width: 700px
    }

    #lightbox_search.modal .modal-content {
        padding: 1.3021vw
    }

@media (max-width:991px) {
    #lightbox_search.modal .modal-content {
        padding: 20px
    }
}

@media (max-width:376px) {
    #lightbox_search.modal .modal-content {
        padding: 20px 10px
    }
}

#lightbox_search.modal .modal-content .search-title {
    font-size: 20px;
    font-weight: 700;
    align-items: center
}

@media (max-width:376px) {
    #lightbox_search.modal .modal-content .search-title {
        font-size: 17px
    }
}

#lightbox_search.modal .modal-content .search_input_group .btn-primary {
    background-color: #3c3c3c;
    text-shadow: none;
    color: #fff;
    background-image: none;
    border-color: #3c3c3c
}

#lightbox_search.modal .modal-content #search_area form {
    width: 100%
}

#lightbox_search.modal input.form-control {
    border: 1px solid #3c3c3c
}

#lightbox_search.modal button.i-close {
    font-size: 32px
}

.btn-more.st {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all .3s ease;
    overflow: hidden;
    justify-content: center;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: 40px;
    background-color: #004e99;
    color: #fff;
    border: 1px solid #004e99;
    border-radius: 100px;
    padding: 0 15px;
    margin-right: clamp(14px,1.3542vw,26px)
}

    .btn-more.st:before {
        z-index: 1;
        width: 100%;
        height: 100%;
        border-radius: 0;
        background-color: transparent
    }

    .btn-more.st:after, .btn-more.st:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        will-change: transform
    }

    .btn-more.st:after {
        z-index: 2;
        width: 200%;
        height: 200%;
        transform: translate(-25%,-100%);
        border-radius: 200px;
        background-color: #fff;
        transition: all .4s cubic-bezier(1,0,0,1);
        transition-timing-function: cubic-bezier(1,0,0,1)
    }

    .btn-more.st .arrow, .btn-more.st .name {
        position: relative;
        z-index: 3
    }

    .btn-more.st .name {
        font-family: Almarai,Microsoft JhengHei;
        font-size: 20px;
        line-height: 1;
        letter-spacing: 1px;
        font-weight: 700;
        text-transform: capitalize;
        color: #fff;
        margin-right: 5px;
        transition: all .3s ease
    }

@media (max-width:1680px) {
    .btn-more.st .name {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .btn-more.st .name {
        font-size: 16px
    }
}

.btn-more.st .arrow i {
    color: #fff
}

.btn-more.st:hover {
    background-color: #fff
}

    .btn-more.st:hover .name {
        color: #004e99
    }

    .btn-more.st:hover:after {
        transform: translate(-25%);
        border-radius: 50px;
        -webkit-animation: btn-circle-in .4s cubic-bezier(.19,1,.22,1) 0s;
        animation: btn-circle-in .4s cubic-bezier(.19,1,.22,1) 0s
    }

    .btn-more.st:hover i {
        color: #004e99
    }

.btn-more.st .name {
    margin-right: 0;
    font-size: 16px
}

@media (max-width:1680px) {
    .btn-more.st {
        max-width: -webkit-fit-content !important;
        max-width: -moz-fit-content !important;
        max-width: fit-content !important
    }
}

@media (max-width:991px) {
    .btn-more.st {
        display: none
    }
}

.btn-more.st:lang(es), .btn-more.st:lang(ja) {
    max-width: -webkit-fit-content !important;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important
}

#footer {
    background-repeat: no-repeat;
    background-size: cover
}

    #footer .footer-top {
        position: relative;
        border-bottom: 1px solid #aaa
    }

        #footer .footer-top .logo-col {
            position: relative
        }

            #footer .footer-top .logo-col:after {
                content: "";
                position: absolute;
                display: block;
                width: 1px;
                height: 100%;
                background-color: #aaa;
                right: 0;
                top: 0
            }

@media (max-width:991px) {
    #footer .footer-top .logo-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
        padding-right: 30px
    }

        #footer .footer-top .logo-col:after {
            content: none
        }

        #footer .footer-top .logo-col:before {
            content: "";
            position: absolute;
            width: 94%;
            height: 1px;
            display: block;
            background-color: #aaa;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%)
        }
}

#footer .footer-top .logo-col .sociallink {
    display: none
}

@media (max-width:767px) {
    #footer .footer-top .logo-col .sociallink {
        display: block;
        text-align: center
    }
}

@media (max-width:1680px) {
    #footer .footer-top .logo-col, #footer .footer-top .menu-col {
        margin-left: 4.333333%;
        padding-left: 0
    }
}

@media (max-width:1199px) {
    #footer .footer-top .logo-col, #footer .footer-top .menu-col {
        margin-left: 0;
        padding-left: 30px
    }
}

@media (max-width:1199px) {
    #footer .footer-top .menu-col {
        flex: 0 0 25%;
        max-width: 25%
    }
}

@media (max-width:991px) {
    #footer .footer-top .menu-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 30px
    }

        #footer .footer-top .menu-col:before {
            content: "";
            position: absolute;
            width: 94%;
            height: 1px;
            display: block;
            background-color: #aaa;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%)
        }
}

@media (max-width:1680px) {
    #footer .footer-top .pd-menu-col {
        flex: 0 0 25%;
        max-width: 25%
    }
}

@media (max-width:991px) {
    #footer .footer-top .pd-menu-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px
    }
}

#footer .footer-top .logo-col, #footer .footer-top .menu-col, #footer .footer-top .pd-menu-col {
    padding-top: 5.2604vw;
    padding-bottom: 5.2604vw
}

@media (max-width:1680px) {
    #footer .footer-top .logo-col, #footer .footer-top .menu-col, #footer .footer-top .pd-menu-col {
        padding-top: 3.2604vw;
        padding-bottom: 3.2604vw
    }
}

@media (max-width:991px) {
    #footer .footer-top .logo-col, #footer .footer-top .menu-col, #footer .footer-top .pd-menu-col {
        padding-top: 30px;
        padding-bottom: 30px
    }
}

#footer .footer-top .footer-logo {
    max-width: 7.0833vw
}

@media (max-width:991px) {
    #footer .footer-top .footer-logo {
        margin: 0 auto;
        max-width: 12.0833vw
    }
}

@media (max-width:575px) {
    #footer .footer-top .footer-logo {
        max-width: 75px
    }
}

#footer .footer-top .footer-logo a {
    display: block
}

#footer .footer-top .footer-logo img {
    width: 100%
}

#footer .footer-top .company_name {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 1.7708vw
}

@media (max-width:1680px) {
    #footer .footer-top .company_name {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #footer .footer-top .company_name {
        font-size: 16px
    }
}

@media (max-width:991px) {
    #footer .footer-top .company_name {
        text-align: center;
        margin-bottom: 30px
    }
}

#footer .footer-top .contact-info .info {
    display: flex;
    align-items: flex-start;
    color: #3c3c3c
}

@media (max-width:575px) {
    #footer .footer-top .contact-info .info {
        flex-direction: column;
        align-items: center
    }
}

#footer .footer-top .contact-info .info a, #footer .footer-top .contact-info .info label, #footer .footer-top .contact-info .info span {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .8px;
    font-weight: 700;
    line-height: 2
}

@media (max-width:575px) {
    #footer .footer-top .contact-info .info a, #footer .footer-top .contact-info .info label, #footer .footer-top .contact-info .info span {
        text-align: center
    }
}

#footer .footer-top .contact-info .info label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    width: 60px;
    margin-right: 12px
}

@media (max-width:575px) {
    #footer .footer-top .contact-info .info label {
        width: 100%;
        text-align: center;
        margin-right: 0
    }
}

#footer .footer-top .contact-info .info.email a {
    text-transform: lowercase
}

#footer .footer-top .contact-info .info:hover a {
    color: #004e99
}

#footer .footer-menu, #footer .footer-pd-menu {
    flex-shrink: 0;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800
}

@media (max-width:1680px) {
    #footer .footer-menu, #footer .footer-pd-menu {
        font-size: 16px
    }
}

#footer .footer-menu a, #footer .footer-pd-menu a {
    text-transform: uppercase
}

#footer .footer-pd-menu .title {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 2.78 !important
}

@media (max-width:1680px) {
    #footer .footer-pd-menu .title {
        line-height: 2.3 !important
    }
}

@media (max-width:991px) {
    #footer .footer-pd-menu .title {
        text-align: left
    }
}

@media (max-width:576px) {
    #footer .footer-pd-menu .title {
        text-align: center
    }
}

#footer .footer-pd-menu .menu {
    line-height: 2.78;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal
}

@media (max-width:1680px) {
    #footer .footer-pd-menu .menu {
        font-size: 16px;
        line-height: 2.3
    }
}

@media (max-width:991px) {
    #footer .footer-pd-menu .menu {
        display: flex;
        flex-wrap: wrap
    }
}

#footer .footer-pd-menu .menu a {
    display: block;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .8px;
    font-weight: 700;
    line-height: 2.5
}

@media (max-width:991px) {
    #footer .footer-pd-menu .menu a {
        width: 50%
    }
}

@media (max-width:575px) {
    #footer .footer-pd-menu .menu a {
        width: 100%;
        text-align: center
    }
}

#footer .footer-pd-menu .menu a:hover {
    color: #004e99
}

#footer .footer-menu .base-link-wrap #menu_bottom ul {
    line-height: 2.78
}

@media (max-width:1680px) {
    #footer .footer-menu .base-link-wrap #menu_bottom ul {
        line-height: 2.3
    }
}

@media (max-width:991px) {
    #footer .footer-menu .base-link-wrap #menu_bottom ul {
        display: flex;
        flex-wrap: wrap
    }

        #footer .footer-menu .base-link-wrap #menu_bottom ul li {
            width: 33.333%;
            padding-right: 15px
        }
}

@media (max-width:767px) {
    #footer .footer-menu .base-link-wrap #menu_bottom ul li {
        width: 50%
    }
}

@media (max-width:575px) {
    #footer .footer-menu .base-link-wrap #menu_bottom ul li {
        width: 100%;
        text-align: center;
        padding-right: 0
    }
}

#footer .footer-menu .base-link-wrap #menu_bottom > ul li {
    display: block
}

    #footer .footer-menu .base-link-wrap #menu_bottom > ul li + li:before {
        content: none
    }

#footer .footer-menu .base-link-wrap a {
    display: block;
    width: 100%
}

    #footer .footer-menu .base-link-wrap a:hover {
        color: #004e99
    }

@media (max-width:991px) {
    #footer .sociallink {
        margin-bottom: 5px;
        text-align: center
    }
}

#footer .sociallink li {
    margin-bottom: 0
}

@media (max-width:991px) {
    #footer .sociallink li {
        margin-bottom: 10px
    }
}

@media (max-width:991px) {
    #footer .sociallink li + li {
        margin-left: 1.5625vw
    }
}

@media (max-width:575px) {
    #footer .sociallink li + li {
        margin-left: 10px
    }
}

#footer .sociallink li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #004e99;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 21px
}

@media (min-width:1921px) {
    #footer .sociallink li a {
        font-size: 22px
    }
}

@media (max-width:1199px) {
    #footer .sociallink li a {
        width: 35px;
        height: 35px;
        font-size: 18px
    }
}

@media (max-width:991px) {
    #footer .sociallink li a {
        margin: 0 !important
    }
}

#footer .sociallink li a:hover {
    color: #fff;
    opacity: .9
}

#footer .copyright-row {
    padding: 1.5625vw 0
}

@media (max-width:991px) {
    #footer .copyright-row {
        padding: 30px 0
    }
}

@media (max-width:1680px) {
    #footer .copyright-col {
        flex: 0 0 100%;
        max-width: 93%
    }
}

@media (max-width:1199px) {
    #footer .copyright-col {
        max-width: 98%
    }
}

@media (max-width:991px) {
    #footer .copyright-col {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px
    }
}

#footer .copyright-col .flex-block {
    justify-content: space-between
}

@media (max-width:991px) {
    #footer .copyright-col .flex-block {
        flex-direction: column;
        justify-content: center
    }
}

#footer .copyright-wrap #copyright {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 14px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    letter-spacing: .7px;
    color: #3c3c3c
}

@media (max-width:991px) {
    #footer .copyright-wrap #copyright {
        text-align: center
    }
}

#footer .copyright-wrap #copyright a {
    color: #004e99
}

    #footer .copyright-wrap #copyright a:hover {
        color: #fff
    }

@media (max-width:767px) {
    #footer .copyright-wrap #copyright .winho {
        display: block
    }
}

#gotop_animate {
    position: fixed;
    right: 18px;
    bottom: 30px;
    transform: translateY(-50%);
    z-index: 99;
    text-transform: uppercase;
    text-align: center
}

@media (max-width:991px) {
    #gotop_animate {
        right: 8px
    }
}

#gotop_animate span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #aaa;
    border-radius: 50%;
    background-color: transparent;
    color: #aaa
}

@media (max-width:575px) {
    #gotop_animate span:first-child {
        width: 40px;
        height: 40px
    }
}

#gotop_animate span:last-child {
    font-family: Arial,sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .8px
}

#gotop_animate span {
    position: relative;
    display: block;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
    transition: all .3s ease
}

#gotop_animate:hover span {
    color: #004e99
}

    #gotop_animate:hover span:first-child {
        background-color: #004e99;
        border: 1px solid #004e99;
        color: #fff
    }

#yt-menu {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #004e99;
    color: #fff;
    z-index: 99;
    font-size: 23px;
    transition: all .3s ease
}

    #yt-menu:hover {
        transform: translateY(-55%)
    }

.fixed-inquiry {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    border-right: 0
}

    .fixed-inquiry #cart_area a {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #3c3c3c;
        color: #fff;
        font-family: Almarai,Microsoft JhengHei;
        font-size: 1.6667vw;
        line-height: 1;
        letter-spacing: normal;
        font-weight: 700;
        padding: 15px;
        width: 70px;
        height: 70px
    }

@media (max-width:1680px) {
    .fixed-inquiry #cart_area a {
        font-size: 24px;
        line-height: normal
    }
}

@media (max-width:1440px) {
    .fixed-inquiry #cart_area a {
        font-size: 22px
    }
}

@media (max-width:576px) {
    .fixed-inquiry #cart_area a {
        font-size: 20px
    }
}

@media (max-width:413px) {
    .fixed-inquiry #cart_area a {
        font-size: 18px
    }
}

@media (max-width:1680px) {
    .fixed-inquiry #cart_area a {
        width: 60px;
        height: 60px;
        font-size: 28px
    }
}

@media (max-width:576px) {
    .fixed-inquiry #cart_area a {
        width: 52px;
        height: 50px;
        font-size: 24px
    }
}

.fixed-inquiry #cart_area i {
    position: relative
}

    .fixed-inquiry #cart_area i .inquiry-number {
        position: absolute;
        top: -6px;
        right: -16px;
        font-size: 16px;
        text-align: center;
        color: #fff;
        background: #004e99;
        width: 24px;
        height: 24px;
        line-height: 23px;
        border-radius: 50%
    }

@media (max-width:1680px) {
    .fixed-inquiry #cart_area i .inquiry-number {
        top: -2px
    }
}

@media (max-width:576px) {
    .fixed-inquiry #cart_area i .inquiry-number {
        top: -6px;
        right: -14px;
        font-size: 12px;
        width: 21px;
        height: 21px;
        line-height: 20px
    }
}

.fixed-inquiry #cart_area .inquiry-text {
    display: none;
    text-transform: uppercase;
    margin: 0 14px
}

@media (max-width:1680px) {
    .fixed-inquiry #cart_area .inquiry-text {
        margin: 0 10px
    }
}

@media (max-width:991px) {
    .fixed-inquiry #cart_area .inquiry-text {
        display: none
    }
}

@media (max-width:1680px) {
    #content .col-xl-10 {
        flex: 0 0 91.33333333%;
        max-width: 91.33333333%
    }

    #content.aboutPage .col-lg-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }
}

@media (max-width:1199px) {
    #content.aboutPage .col-lg-10 {
        flex: 0 0 91.33333333%;
        max-width: 91.33333333%
    }
}

@media (max-width:576px) {
    section.quality .gutter576-30 {
        padding-left: 35px;
        padding-right: 35px
    }

    #content.aboutPage .col-lg-10, #content .col-xl-10 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .gutter576-30 {
        padding-left: 30px;
        padding-right: 30px
    }
}

#content_wrap {
    overflow: hidden
}

    #content_wrap p {
        margin-top: 0;
        margin-bottom: 1rem
    }

    #content_wrap #aboutus_show_page #inner_btnarea {
        display: none
    }

    #content_wrap #btn_back {
        background-color: #3c3c3c;
        border: 1px solid #3c3c3c !important;
        background-image: none;
        color: #fff;
        text-shadow: none;
        border-radius: 0 !important
    }

        #content_wrap #btn_back i.fa-home {
            margin-right: 5px
        }

        #content_wrap #btn_back:hover {
            background-color: #004e99;
            border: 1px solid #004e99;
            color: #fff
        }

    #content_wrap #inner_btnarea {
        text-align: center;
        margin: 20px auto
    }

    #content_wrap #bread_area {
        margin: 2.5521vw 0
    }

@media (max-width:991px) {
    #content_wrap #bread_area {
        margin: 30px 0
    }
}

#content_wrap #bread_area .breadcrumb {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    justify-content: flex-end;
    text-align: right
}

@media (max-width:76px) {
    #content_wrap #bread_area .breadcrumb {
        justify-content: flex-start;
        margin-top: 10px
    }
}

#content_wrap #bread_area .breadcrumb-item {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 14px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    line-height: 1.2
}

    #content_wrap #bread_area .breadcrumb-item i.fa-home {
        display: none
    }

    #content_wrap #bread_area .breadcrumb-item > a {
        color: #666
    }

        #content_wrap #bread_area .breadcrumb-item.active, #content_wrap #bread_area .breadcrumb-item > a:hover {
            color: #004e99
        }

    #content_wrap #bread_area .breadcrumb-item + .breadcrumb-item {
        padding-left: 5px
    }

        #content_wrap #bread_area .breadcrumb-item + .breadcrumb-item:before {
            content: ">";
            padding-right: 5px;
            color: #3c3c3c;
            float: none
        }

@media (max-width:767px) {
    #content_wrap #bread_area .breadcrumb-item {
        font-size: 13px
    }
}

#content.inside-page {
    padding-bottom: 40px
}

    #content.inside-page.aboutPage {
        padding-bottom: 0
    }

    #content.inside-page #main_title {
        display: block;
        text-align: center;
        font-family: Almarai,Microsoft JhengHei;
        font-size: 2.5vw;
        line-height: 1;
        letter-spacing: normal;
        font-weight: 800;
        color: #004e99;
        letter-spacing: 2.4px;
        margin-bottom: 3.125vw;
        text-transform: uppercase
    }

@media (max-width:991px) {
    #content.inside-page #main_title {
        font-size: 24px
    }
}

@media (max-width:767px) {
    #content.inside-page #main_title {
        font-size: 22px
    }
}

@media (max-width:991px) {
    #content.inside-page #main_title {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 10px
    }
}

#content.inside-page #news_cate_page #main_title {
    text-align: left
}

#content.inside-page .container-fluid.hasSideMenu .side-col {
    padding-right: 2.3438vw
}

@media (max-width:1199px) {
    #content.inside-page .container-fluid.hasSideMenu .side-col {
        padding-right: 15px
    }
}

@media (max-width:991px) {
    #content.inside-page .container-fluid.hasSideMenu .content-col {
        flex: 0 0 100%;
        max-width: 100%
    }
}

#content.inside-page .container-fluid.hasSideMenu.download_page .side-col {
    display: none
}

#content.inside-page .container-fluid.hasSideMenu.download_page .content-col {
    flex: 0 0 100%;
    max-width: 100%
}

#aside_menu {
    width: 100%
}

@media (max-width:991px) {
    #aside_menu {
        display: none
    }
}

#aside_menu #aside_title {
    background: #004e99;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.25vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    padding: 20px
}

@media (max-width:1680px) {
    #aside_menu #aside_title {
        font-size: 21px
    }
}

@media (max-width:1440px) {
    #aside_menu #aside_title {
        font-size: 20px
    }
}

@media (max-width:1280px) {
    #aside_menu #aside_title {
        font-size: 18px
    }
}

#aside_menu #aside_title .aside_title_text {
    display: block
}

#aside_menu #aside_menu_main_ul {
    list-style: none;
    padding: 0;
    margin: 0
}

    #aside_menu #aside_menu_main_ul li {
        position: relative;
        background: #fff;
        border-left: none;
        border-right: none;
        border-bottom: none
    }

@media (max-width:991px) {
    #aside_menu #aside_menu_main_ul li {
        border-left: 0;
        border-right: 0;
        border-bottom: 0
    }
}

#aside_menu #aside_menu_main_ul li + li {
    border-top: 1px solid #999
}

@media (max-width:991px) {
    #aside_menu #aside_menu_main_ul li + li {
        border-top: 0
    }
}

#aside_menu #aside_menu_main_ul li .aside_title {
    width: 100%;
    background-color: transparent;
    transition: all .3s ease;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666
}

@media (max-width:991px) {
    #aside_menu #aside_menu_main_ul li .aside_title {
        border-left: none;
        border-right: none;
        border-bottom: none
    }
}

#aside_menu #aside_menu_main_ul li .aside_title:hover {
    color: #333;
    background: #f7f7f7
}

#aside_menu #aside_menu_main_ul li .aside_title > a.d-table-cell {
    position: relative;
    width: 100%;
    letter-spacing: 1.6px;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 700;
    color: #666;
    padding: 20px;
    text-transform: uppercase;
    transition: all .3s ease
}

@media (max-width:1680px) {
    #aside_menu #aside_menu_main_ul li .aside_title > a.d-table-cell {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #aside_menu #aside_menu_main_ul li .aside_title > a.d-table-cell {
        font-size: 16px
    }
}

#aside_menu #aside_menu_main_ul li .aside_title > a.d-table-cell:lang(en) {
    letter-spacing: 0
}

#aside_menu #aside_menu_main_ul li .aside_title > a.d-table-cell span {
    display: inline-flex
}

#aside_menu #aside_menu_main_ul li .aside_title a#icon_open {
    display: none !important;
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-block;
    top: 10px;
    right: 9px;
    cursor: pointer
}

    #aside_menu #aside_menu_main_ul li .aside_title a#icon_open:after, #aside_menu #aside_menu_main_ul li .aside_title a#icon_open:before, #aside_menu #aside_menu_main_ul li .aside_title a#icon_open[aria-expanded=false]:after, #aside_menu #aside_menu_main_ul li .aside_title a#icon_open[aria-expanded=false]:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 1px;
        background-color: #333;
        top: 50%;
        left: 50%
    }

    #aside_menu #aside_menu_main_ul li .aside_title a#icon_open:before, #aside_menu #aside_menu_main_ul li .aside_title a#icon_open[aria-expanded=false]:before {
        transform: translate(-50%,-50%) rotate(0deg)
    }

    #aside_menu #aside_menu_main_ul li .aside_title a#icon_open:after, #aside_menu #aside_menu_main_ul li .aside_title a#icon_open[aria-expanded=false]:after {
        transform: translate(-50%,-50%) rotate(90deg)
    }

#aside_menu #aside_menu_main_ul li .aside_title.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    background-color: #f7f7f7
}

    #aside_menu #aside_menu_main_ul li .aside_title.active > a span {
        color: #004e99
    }

    #aside_menu #aside_menu_main_ul li .aside_title.active a#icon_open:before {
        display: none
    }

    #aside_menu #aside_menu_main_ul li .aside_title.active a#icon_open[data-show=show]:before {
        content: none
    }

#aside_menu #aside_menu_main_ul li .aside_title:hover a, #aside_menu #aside_menu_main_ul li .aside_title:hover a span {
    color: #333
}

#aside_menu #aside_menu_main_ul li .aside_title:hover .children_items ul#aside_menu_main_ul li a {
    background-color: transparent;
    color: #000 !important
}

#aside_menu #aside_menu_main_ul li .children_items {
    display: block;
    list-style: none
}

    #aside_menu #aside_menu_main_ul li .children_items #aside_menu_main_ul:last-child {
        border-bottom: none
    }

    #aside_menu #aside_menu_main_ul li .children_items.collapse {
        display: block !important;
        background-color: #fff
    }

        #aside_menu #aside_menu_main_ul li .children_items.collapse.show .children_items.collapse.show li {
            background-color: #f7f7f7
        }

            #aside_menu #aside_menu_main_ul li .children_items.collapse.show .children_items.collapse.show li a {
                color: #777
            }

                #aside_menu #aside_menu_main_ul li .children_items.collapse.show .children_items.collapse.show li a:hover {
                    background-color: #d7d6d6
                }

                    #aside_menu #aside_menu_main_ul li .children_items.collapse.show .children_items.collapse.show li a:hover span {
                        color: #777
                    }

        #aside_menu #aside_menu_main_ul li .children_items.collapse:not(.show) {
            display: none !important
        }

    #aside_menu #aside_menu_main_ul li .children_items .aside_title {
        border-left: 1px solid #999;
        border-right: 1px solid #999;
        border-bottom: 1px solid #999
    }

        #aside_menu #aside_menu_main_ul li .children_items .aside_title .d-table-cell {
            background-color: transparent;
            font-size: 16px;
            letter-spacing: 1.6px;
            color: #333;
            padding: 10px
        }

            #aside_menu #aside_menu_main_ul li .children_items .aside_title .d-table-cell:lang(en) {
                letter-spacing: 0
            }

            #aside_menu #aside_menu_main_ul li .children_items .aside_title .d-table-cell span {
                margin-left: 0
            }

        #aside_menu #aside_menu_main_ul li .children_items .aside_title:hover .d-table-cell {
            color: #000
        }

    #aside_menu #aside_menu_main_ul li .children_items .children_items .d-table-cell {
        padding: 10px
    }

#content_wrap #aside_menu #aside_menu_main_ul .children_items {
    display: none !important
}

.pagination {
    margin-bottom: 15px
}

    .pagination .page-link {
        color: #004e99;
        text-align: center;
        background-color: transparent;
        padding: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border: none;
        border-radius: 50%;
        margin-left: 0
    }

@media (max-width:575px) {
    .pagination .page-link {
        width: 35px;
        height: 35px;
        line-height: 35px
    }
}

.pagination .page-link:hover {
    background-color: #004e99;
    color: #fff
}

.pagination .page-item + .page-item {
    margin-left: 10px
}

.pagination .page-item.active .page-link {
    background-color: #004e99;
    border-color: #004e99;
    color: #fff;
    border-radius: 50%
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    border-radius: 50%
}

#content .btn-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 250px;
    text-transform: uppercase;
    padding: 19px 15px;
    border: 1px solid #fff;
    border-radius: 0;
    transition: all .3s ease;
    overflow: hidden;
    margin: 0 auto;
    justify-content: center
}

    #content .btn-more:before {
        z-index: 1;
        width: 100%;
        height: 100%;
        border-radius: 0;
        background-color: transparent
    }

    #content .btn-more:after, #content .btn-more:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        will-change: transform
    }

    #content .btn-more:after {
        z-index: 2;
        width: 200%;
        height: 200%;
        transform: translate(-25%,-100%);
        border-radius: 200px;
        background-color: #004e99;
        transition: all .4s cubic-bezier(1,0,0,1);
        transition-timing-function: cubic-bezier(1,0,0,1)
    }

    #content .btn-more .arrow, #content .btn-more .name {
        position: relative;
        z-index: 3
    }

    #content .btn-more .name {
        font-weight: 700;
        text-transform: capitalize;
        color: #fff;
        margin-right: 5px;
        transition: all .3s ease
    }

    #content .btn-more .arrow i {
        color: #fff
    }

    #content .btn-more:hover {
        background-color: #004e99
    }

        #content .btn-more:hover .name {
            color: #fff
        }

        #content .btn-more:hover:after {
            transform: translate(-25%);
            border-radius: 50px;
            -webkit-animation: btn-circle-in .4s cubic-bezier(.19,1,.22,1) 0s;
            animation: btn-circle-in .4s cubic-bezier(.19,1,.22,1) 0s
        }

        #content .btn-more:hover i {
            color: #fff
        }

    #content .btn-more .name {
        font-family: Almarai,Microsoft JhengHei;
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 1px
    }

@media (max-width:1680px) {
    #content .btn-more .name {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #content .btn-more .name {
        font-size: 16px
    }
}

@media (max-width:1680px) {
    #content .btn-more {
        max-width: 200px;
        padding: 16px 15px
    }
}

@media (max-width:991px) {
    #content .btn-more {
        max-width: 165px
    }
}

#aboutPage .btn-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 250px;
    text-transform: uppercase;
    padding: 19px 15px;
    border: 1px solid #004e99;
    border-radius: 0;
    transition: all .3s ease;
    overflow: hidden;
    margin: 0 auto;
    justify-content: center
}

    #aboutPage .btn-more:before {
        z-index: 1;
        width: 100%;
        height: 100%;
        border-radius: 0;
        background-color: #004e99
    }

    #aboutPage .btn-more:after, #aboutPage .btn-more:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        will-change: transform
    }

    #aboutPage .btn-more:after {
        z-index: 2;
        width: 200%;
        height: 200%;
        transform: translate(-25%,-100%);
        border-radius: 200px;
        background-color: #fff;
        transition: all .4s cubic-bezier(1,0,0,1);
        transition-timing-function: cubic-bezier(1,0,0,1)
    }

    #aboutPage .btn-more .arrow, #aboutPage .btn-more .name {
        position: relative;
        z-index: 3
    }

    #aboutPage .btn-more .name {
        font-family: Almarai,Microsoft JhengHei;
        font-size: 20px;
        line-height: 1;
        letter-spacing: 1px;
        font-weight: 700;
        text-transform: capitalize;
        color: #fff;
        margin-right: 5px;
        transition: all .3s ease
    }

@media (max-width:1680px) {
    #aboutPage .btn-more .name {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #aboutPage .btn-more .name {
        font-size: 16px
    }
}

#aboutPage .btn-more .arrow i {
    color: #fff
}

#aboutPage .btn-more:hover {
    background-color: #fff
}

    #aboutPage .btn-more:hover .name {
        color: #004e99
    }

    #aboutPage .btn-more:hover:after {
        transform: translate(-25%);
        border-radius: 50px;
        -webkit-animation: btn-circle-in .4s cubic-bezier(.19,1,.22,1) 0s;
        animation: btn-circle-in .4s cubic-bezier(.19,1,.22,1) 0s
    }

    #aboutPage .btn-more:hover i {
        color: #004e99
    }

.modal-header {
    align-items: center
}

    .modal-header #lightbox_title {
        font-weight: 700
    }

    .modal-header button.i-close {
        font-size: 38px
    }

.modal-body {
    padding: 30px
}

@media (max-width:576px) {
    #aboutPage .content-col {
        padding-left: 30px;
        padding-right: 30px
    }
}

#aboutus_show_page .container {
    max-width: 83.33333333%
}

@media (max-width:1680px) {
    #aboutus_show_page .container {
        flex: 0 0 91.66666667%;
        max-width: 91.33333333%
    }
}

@media (max-width:576px) {
    #aboutus_show_page .container {
        flex: 0 0 100%;
        max-width: 100%
    }
}

#aboutus_show_page br {
    display: none
}

.custom-about #aboutPage .content-col {
    padding-left: 0;
    padding-right: 0
}

.custom-about #aboutus_show_page .container {
    max-width: 100%
}

.custom-about img {
    width: 100%;
    height: 100%
}

#aboutPage section.intro {
    position: relative
}

    #aboutPage section.intro:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #f3f3f3;
        z-index: -1
    }

@media (max-width:1199px) {
    #aboutPage section.intro:after {
        height: 65%
    }
}

@media (max-width:991px) {
    #aboutPage section.intro:after {
        height: 80%
    }
}

@media (max-width:413px) {
    #aboutPage section.intro:after {
        content: none
    }
}

#aboutPage section.intro .content-wrap {
    display: flex;
    align-items: center;
    padding: 3.8542vw 0 5.625vw
}

@media (max-width:765px) {
    #aboutPage section.intro .content-wrap {
        flex-direction: column;
        padding: 30px 0 35px
    }
}

#aboutPage section.intro .content-wrap .title {
    flex: 0 0 31%;
    padding-right: 2.0833vw;
    letter-spacing: 1.4px
}

@media (max-width:767px) {
    #aboutPage section.intro .content-wrap .title {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px
    }
}

#aboutPage section.intro .content-wrap .summary {
    flex: 0 1 auto;
    padding-left: 1.7vw
}

@media (max-width:767px) {
    #aboutPage section.intro .content-wrap .summary {
        padding-left: 0
    }
}

#aboutPage section.feature > .row {
    align-items: stretch
}

@media (max-width:767px) {
    #aboutPage section.feature:nth-child(2n) .text-col {
        order: 2
    }
}

#aboutPage section.feature .text-wrap {
    padding: 3vw 5vw
}

@media (max-width:1680px) {
    #aboutPage section.feature .text-wrap {
        padding: 4vw
    }
}

@media (max-width:767px) {
    #aboutPage section.feature .text-wrap {
        padding: 30px 45px
    }
}

@media (max-width:575px) {
    #aboutPage section.feature .text-wrap {
        padding: 30px
    }
}

#aboutPage section.feature .title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.6667vw;
    line-height: 1;
    letter-spacing: normal;
    margin-bottom: 1.0313vw;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-transform: capitalize
}

@media (max-width:1680px) {
    #aboutPage section.feature .title {
        font-size: 24px;
        line-height: normal
    }
}

@media (max-width:1440px) {
    #aboutPage section.feature .title {
        font-size: 22px
    }
}

@media (max-width:576px) {
    #aboutPage section.feature .title {
        font-size: 20px
    }
}

@media (max-width:413px) {
    #aboutPage section.feature .title {
        font-size: 18px
    }
}

#aboutPage section.feature .img-wrap {
    width: 100%;
    height: 100%
}

    #aboutPage section.feature .img-wrap img {
        -o-object-fit: cover;
        object-fit: cover
    }

.inside-page.about .title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.4583vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #004e99;
    text-transform: uppercase
}

@media (max-width:1440px) {
    .inside-page.about .title {
        font-size: 20px
    }
}

.inside-page.about .summary {
    font-family: Arial,sans-serif;
    font-size: 20px;
    line-height: 2;
    letter-spacing: .4px;
    color: #000
}

@media (max-width:1680px) {
    .inside-page.about .summary {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .inside-page.about .summary {
        font-size: 16px
    }
}

.inside-page.about section.quality {
    position: relative;
    padding-top: 16vw;
    padding-bottom: 7vw
}

@media (max-width:767px) {
    .inside-page.about section.quality {
        padding-top: 70px;
        padding-bottom: 70px
    }
}

.inside-page.about section.quality:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/121308.jpg);
    height: 0;
    padding-bottom: 31.25%;
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width:991px) {
    .inside-page.about section.quality:before {
        padding-bottom: 38.25%
    }
}

@media (max-width:767px) {
    .inside-page.about section.quality:before {
        padding-bottom: 0;
        height: 100%;
        left: 50%;
        transform: translateX(-50%)
    }
}

.inside-page.about section.quality .quality-block br {
    display: block !important
}

.inside-page.about section.quality .main-title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 2.1875vw;
    line-height: 1;
    letter-spacing: normal;
    color: #fff;
    font-weight: 800;
    line-height: 1.48;
    letter-spacing: 2.1px;
    margin-bottom: 3.0208vw;
    text-transform: uppercase
}

@media (max-width:991px) {
    .inside-page.about section.quality .main-title {
        font-size: 24px
    }
}

@media (max-width:767px) {
    .inside-page.about section.quality .main-title {
        font-size: 23px
    }
}

@media (max-width:576px) {
    .inside-page.about section.quality .main-title {
        font-size: 22px
    }
}

@media (max-width:480px) {
    .inside-page.about section.quality .main-title {
        font-size: 20px
    }
}

@media (max-width:414px) {
    .inside-page.about section.quality .main-title {
        font-size: 18px
    }
}

@media (max-width:767px) {
    .inside-page.about section.quality .main-title {
        text-align: center;
        margin-bottom: 30px
    }
}

.inside-page.about section.quality .quality-policy {
    background-color: #fff;
    padding: 4.1667vw 8.8542vw
}

@media (max-width:767px) {
    .inside-page.about section.quality .quality-policy {
        padding: 30px
    }
}

@media (max-width:576px) {
    .inside-page.about section.quality .quality-policy {
        padding: 30px 20px
    }
}

.inside-page.about section.quality .quality-policy .sub-title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.6667vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #004e99;
    text-align: center;
    margin-bottom: 2.0833vw;
    text-transform: uppercase
}

@media (max-width:1680px) {
    .inside-page.about section.quality .quality-policy .sub-title {
        font-size: 24px;
        line-height: normal
    }
}

@media (max-width:1440px) {
    .inside-page.about section.quality .quality-policy .sub-title {
        font-size: 22px
    }
}

@media (max-width:576px) {
    .inside-page.about section.quality .quality-policy .sub-title {
        font-size: 20px
    }
}

@media (max-width:413px) {
    .inside-page.about section.quality .quality-policy .sub-title {
        font-size: 18px
    }
}

@media (max-width:767px) {
    .inside-page.about section.quality .quality-policy .sub-title {
        margin-bottom: 15px
    }
}

.inside-page.about section.organization {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 46.25vw
}

@media (max-width:991px) {
    .inside-page.about section.organization {
        height: auto
    }
}

.inside-page.about section.organization .content-wrap {
    background-color: #f3f3f3;
    opacity: .8;
    border-radius: 10px;
    padding: 3.3333vw;
    margin: 3vw 0
}

@media (max-width:991px) {
    .inside-page.about section.organization .content-wrap {
        margin: 70px 0
    }
}

@media (max-width:576px) {
    .inside-page.about section.organization .content-wrap {
        margin: 50px 0
    }
}

.inside-page.about section.organization .img-wrap {
    max-width: 46.0312vw;
    margin: 0 auto
}

@media (max-width:1199px) {
    .inside-page.about section.organization .img-wrap {
        max-width: 53.0312vw
    }
}

@media (max-width:991px) {
    .inside-page.about section.organization .img-wrap {
        max-width: 100%
    }
}

.inside-page.about section.organization .title {
    text-align: center;
    margin-bottom: 3.3333vw
}

@media (max-width:767px) {
    .inside-page.about section.organization .title {
        margin-bottom: 30px
    }
}

.inside-page.history .range, .inside-page.history .year {
    color: #004e99
}

.inside-page.history .year {
    font-family: Arial,sans-serif;
    font-size: 1.25vw;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 5px
}

@media (max-width:1440px) {
    .inside-page.history .year {
        font-size: 18px
    }
}

@media (max-width:767px) {
    .inside-page.history .year {
        font-size: 24px
    }
}

@media (max-width:575px) {
    .inside-page.history .year {
        font-size: 20px
    }
}

.inside-page.history .range {
    font-family: Arial,sans-serif;
    font-size: 2.9167vw;
    font-weight: 700;
    letter-spacing: 2.8px
}

@media (max-width:767px) {
    .inside-page.history .range {
        font-size: 21px
    }
}

.inside-page.history .gray-bg-row {
    margin-bottom: 7.8125vw;
    padding-bottom: 10.1667vw;
    background: #f3f3f3
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row {
        padding-bottom: 70px;
        margin-bottom: 0
    }
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row:first-child .img-col {
        margin: 30px auto
    }
}

.inside-page.history .gray-bg-row:last-child {
    margin-bottom: 0
}

@media (max-width:1680px) {
    .inside-page.history .gray-bg-row:nth-child(odd) .title-col {
        margin-left: 4.333333%
    }

    .inside-page.history .gray-bg-row:nth-child(odd) .img-col {
        flex: 0 0 45.666667%;
        max-width: 45.666667%
    }
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row:nth-child(odd) {
        background: #fff
    }

        .inside-page.history .gray-bg-row:nth-child(odd) .title-col {
            order: 2
        }
}

.inside-page.history .gray-bg-row:nth-child(2n) .title-col {
    order: 1;
    margin-left: 4%
}

    .inside-page.history .gray-bg-row:nth-child(2n) .title-col .year-title:before {
        left: -50%;
        right: auto
    }

.inside-page.history .gray-bg-row:nth-child(2n) .img-col {
    padding-right: 15px;
    padding-left: 0
}

.inside-page.history .gray-bg-row .title-col {
    position: relative;
    padding-left: 0
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row .title-col {
        margin-left: auto !important;
        padding-left: 30px;
        padding-right: 30px
    }
}

.inside-page.history .gray-bg-row .title-col .year-title {
    position: relative;
    margin-bottom: 2vw
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row .title-col .year-title {
        text-align: center
    }
}

.inside-page.history .gray-bg-row .title-col .year-title:before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    width: 100vw;
    height: 130%;
    background: #fff;
    z-index: 0
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row .title-col .year-title:before {
        content: none
    }
}

.inside-page.history .gray-bg-row .title-col .year-title .range, .inside-page.history .gray-bg-row .title-col .year-title .year {
    position: relative
}

.inside-page.history .gray-bg-row .img-col {
    padding-right: 0
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row .img-col {
        flex: 0 0 75% !important;
        max-width: 100% !important;
        margin: 70px auto 30px;
        padding-left: 15px !important;
        padding-right: 15px !important
    }
}

@media (max-width:767px) {
    .inside-page.history .gray-bg-row .img-col {
        flex: 0 0 96% !important
    }
}

@media (max-width:576px) {
    .inside-page.history .gray-bg-row .img-col {
        margin: 50px auto 30px
    }
}

.inside-page.history .gray-bg-row .event-container {
    margin-top: 5.1667vw;
    height: 100%
}

@media (max-width:991px) {
    .inside-page.history .gray-bg-row .event-container {
        margin-top: 30px
    }
}

.inside-page.history .gray-bg-row .event-container .event-row {
    max-height: 490px;
    overflow-y: auto;
    height: 100%
}

.inside-page.history .event-block {
    display: flex;
    color: #000
}

@media (max-width:480px) {
    .inside-page.history .event-block {
        flex-direction: column;
        margin-bottom: 20px
    }
}

.inside-page.history .event-block + .event-block {
    margin-top: 1.6vw
}

@media (max-width:1680px) {
    .inside-page.history .event-block + .event-block {
        margin-top: 18px
    }
}

.inside-page.history .event-block .event-year {
    font-family: Arial,sans-serif;
    font-size: 1.4583vw;
    letter-spacing: 1.4px;
    line-height: 1.5;
    margin-right: 2.6vw
}

@media (max-width:1440px) {
    .inside-page.history .event-block .event-year {
        font-size: 20px
    }
}

@media (max-width:480px) {
    .inside-page.history .event-block .event-year {
        font-size: 18px
    }
}

@media (max-width:991px) {
    .inside-page.history .event-block .event-year {
        margin-right: 25px
    }
}

@media (max-width:480px) {
    .inside-page.history .event-block .event-year {
        margin-right: 0;
        font-weight: 700
    }
}

.inside-page.history .event-block .event-show {
    font-family: Arial,sans-serif;
    font-size: 20px;
    letter-spacing: .9px
}

@media (max-width:1680px) {
    .inside-page.history .event-block .event-show {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .inside-page.history .event-block .event-show {
        font-size: 16px
    }
}

.inside-page.history .event-block .event-show ul {
    margin-left: 20px;
    line-height: 2
}

.inside-page.history .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y {
    margin-left: 0
}

.inside-page.location .location-row {
    position: relative;
    padding-bottom: 5.2083vw
}

@media (max-width:991px) {
    .inside-page.location .location-row {
        padding-bottom: 70px
    }
}

@media (max-width:575px) {
    .inside-page.location .location-row {
        padding-bottom: 50px
    }
}

.inside-page.location .location-row:before {
    content: "";
    position: absolute;
    background-color: #f3f3f3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 28%
}

@media (max-width:767px) {
    .inside-page.location .location-row:before {
        content: none
    }
}

@media (max-width:767px) {
    .inside-page.location .location-row .col-md-6:first-child {
        margin-bottom: 30px
    }
}

.inside-page.location .img-wrap {
    position: relative;
    margin-bottom: 5.2083vw
}

@media (max-width:991px) {
    .inside-page.location .img-wrap {
        position: relative;
        height: 0;
        padding-bottom: 70%;
        margin-bottom: 40px
    }

        .inside-page.location .img-wrap img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            transition: all .3s ease
        }
}

.inside-page.location .img-wrap .mask-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.875vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 3.6px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    width: 91%
}

@media (max-width:1199px) {
    .inside-page.location .img-wrap .mask-text {
        font-size: 22px
    }
}

@media (max-width:480px) {
    .inside-page.location .img-wrap .mask-text {
        font-size: 21px
    }
}

@media (max-width:413px) {
    .inside-page.location .img-wrap .mask-text {
        font-size: 18px
    }
}

.inside-page.location .global {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.4583vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    color: #004e99;
    letter-spacing: 1.4px;
    margin-bottom: 3.125vw
}

@media (max-width:1440px) {
    .inside-page.location .global {
        font-size: 20px
    }
}

@media (max-width:1680px) {
    .inside-page.location .global {
        margin-bottom: 15px
    }
}

@media (max-width:767px) {
    .inside-page.location .global {
        text-align: center
    }
}

.inside-page.location .area {
    list-style: none;
    font-family: Arial,sans-serif;
    font-size: 1.25vw;
    line-height: 2;
    letter-spacing: 1.2px
}

@media (max-width:1440px) {
    .inside-page.location .area {
        font-size: 18px
    }
}

@media (max-width:767px) {
    .inside-page.location .area {
        font-size: 24px
    }
}

@media (max-width:575px) {
    .inside-page.location .area {
        font-size: 20px
    }
}

@media (max-width:767px) {
    .inside-page.location .area {
        display: flex;
        flex-wrap: wrap
    }

        .inside-page.location .area li {
            width: 50%;
            font-size: 18px
        }
}

@media (max-width:413px) {
    .inside-page.location .area li {
        width: 100%
    }
}

.inside-page.location .area li:before {
    content: "\2022";
    color: #004e99;
    font-weight: 700;
    display: inline-block;
    width: 6px;
    margin-right: 20px
}

.inside-page.responsibility .title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.4583vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #004e99;
    text-transform: uppercase
}

@media (max-width:1440px) {
    .inside-page.responsibility .title {
        font-size: 20px
    }
}

.inside-page.responsibility .summary {
    font-family: Arial,sans-serif;
    font-size: 20px;
    line-height: 2;
    letter-spacing: .4px;
    color: #000
}

@media (max-width:1680px) {
    .inside-page.responsibility .summary {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .inside-page.responsibility .summary {
        font-size: 16px
    }
}

.inside-page.responsibility section.workplace > .container-fluid:first-child {
    padding-left: 0;
    padding-right: 0
}

.inside-page.responsibility section.workplace .mask-text {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 3.125vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 3.6px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    height: 0;
    padding-bottom: 31.25%;
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width:991px) {
    .inside-page.responsibility section.workplace .mask-text {
        font-size: 24px
    }
}

@media (max-width:767px) {
    .inside-page.responsibility section.workplace .mask-text {
        font-size: 22px
    }
}

@media (max-width:576px) {
    .inside-page.responsibility section.workplace .mask-text {
        font-size: 20px
    }
}

@media (max-width:991px) {
    .inside-page.responsibility section.workplace .mask-text {
        padding-bottom: 51.25%
    }
}

@media (max-width:480px) {
    .inside-page.responsibility section.workplace .mask-text {
        padding-bottom: 64.25%
    }
}

.inside-page.responsibility section.workplace .mask-text:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #004e99;
    opacity: .5;
    z-index: 0
}

.inside-page.responsibility section.workplace .mask-text .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 91%;
    text-align: center
}

.inside-page.responsibility section.workplace .content-row {
    margin-top: 5.2083vw
}

@media (max-width:767px) {
    .inside-page.responsibility section.workplace .content-row {
        margin-top: 50px;
        margin-bottom: 40px
    }
}

.inside-page.responsibility section.workplace .title {
    margin-bottom: 1.5625vw;
    text-transform: capitalize
}

.inside-page.responsibility section.workplace .summary-col {
    margin-bottom: 4.1667vw;
    padding-right: 3.0833vw
}

    .inside-page.responsibility section.workplace .summary-col:nth-child(2n) {
        padding-left: 3.0833vw;
        padding-right: 0
    }

.inside-page.responsibility section.contact {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6.1979vw 0
}

@media (max-width:991px) {
    .inside-page.responsibility section.contact {
        padding: 70px 0
    }
}

@media (max-width:575px) {
    .inside-page.responsibility section.contact {
        padding: 50px 0
    }
}

.inside-page.responsibility section.contact .container-fluid:first-child {
    padding-left: 0;
    padding-right: 0
}

.inside-page.responsibility section.contact .content {
    text-align: center
}

    .inside-page.responsibility section.contact .content .summary {
        margin: 2.0833vw 0
    }

@media (max-width:991px) {
    .inside-page.responsibility section.contact .content .summary {
        margin: 30px 0
    }
}

@media (max-width:576px) {
    .inside-page.responsibility section.contact .content .summary {
        padding: 0 15px
    }
}

#pd-type-main .inside-gutter {
    max-width: 89%;
    margin: 0 auto
}

@media (max-width:1680px) {
    #pd-type-main .inside-gutter {
        max-width: 100%;
        margin-left: auto !important;
        margin-right: auto !important
    }
}

@media (max-width:991px) {
    #pd-type-main > .row.gutter-10 {
        margin-left: -10px;
        margin-right: -10px
    }

        #pd-type-main > .row.gutter-10 [class*=col-] {
            padding-left: 10px;
            padding-right: 10px
        }
}

#pd-type-main .grid_v2_item {
    margin-bottom: 32px
}

@media (max-width:991px) {
    #pd-type-main .grid_v2_item {
        margin-bottom: 20px
    }
}

#pd-type-main .grid_v2_content .grid_v2_info .btn-more:hover {
    background-color: transparent
}

#pd-type-main .grid_v2_content .grid_v2_info .btn-more:after {
    content: none
}

#pd-type-main .grid_v2_content .grid_v2_img {
    position: relative
}

    #pd-type-main .grid_v2_content .grid_v2_img .img-wrap {
        position: relative;
        height: 0;
        padding-bottom: 63.3%
    }

        #pd-type-main .grid_v2_content .grid_v2_img .img-wrap img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            transition: all .3s ease
        }

        #pd-type-main .grid_v2_content .grid_v2_img .img-wrap:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: -webkit-linear-gradient(90deg,#6b6b6b 1%,#cdcdcd);
            opacity: .55;
            z-index: 1;
            transition: all .3s ease
        }

@media (max-width:1680px) {
    #pd-type-main .grid_v2_content .grid_v2_img .img-wrap {
        padding-bottom: 55.3%
    }
}

@media (max-width:991px) {
    #pd-type-main .grid_v2_content .grid_v2_img .img-wrap {
        padding-bottom: 71.3%
    }
}

#pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    max-width: 91%;
    width: 100%;
    margin-top: 0
}

    #pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info .grid_v2_title {
        font-family: Almarai,Microsoft JhengHei;
        font-size: 1.6667vw;
        line-height: 1;
        letter-spacing: normal;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1.6px;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 1.875vw
    }

@media (max-width:1680px) {
    #pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info .grid_v2_title {
        font-size: 24px;
        line-height: normal
    }
}

@media (max-width:1440px) {
    #pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info .grid_v2_title {
        font-size: 22px
    }
}

@media (max-width:576px) {
    #pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info .grid_v2_title {
        font-size: 20px
    }
}

@media (max-width:413px) {
    #pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info .grid_v2_title {
        font-size: 18px
    }
}

@media (max-width:991px) {
    #pd-type-main .grid_v2_content .grid_v2_img .grid_v2_info .grid_v2_title {
        margin-bottom: 15px
    }
}

#pd-type-main .grid_v2_content:hover .grid_v2_img .img-wrap:before {
    opacity: .65;
    background-image: linear-gradient(0deg,#004e99,#7aa4d7)
}

.grid_v2_content .thumb {
    height: 0 !important;
    padding-bottom: 70%
}

    .grid_v2_content .thumb img {
        -o-object-fit: contain;
        object-fit: contain;
        padding: 15px
    }

.grid_v2_content .grid_v2_info {
    text-align: center;
    margin-top: 15px
}

    .grid_v2_content .grid_v2_info .grid_v2_title {
        margin-bottom: 8px
    }

    .grid_v2_content .grid_v2_info .grid_v2_summary {
        display: none
    }

#product_list_page .grid_v2_datas {
    margin-top: 15px
}

#list_grid_v2 .grid_v2_item {
    transition: all .3s ease
}

    #list_grid_v2 .grid_v2_item:hover {
        transform: translateY(-10px)
    }

#list_grid_v2 .grid_v2_content {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700
}

@media (max-width:1680px) {
    #list_grid_v2 .grid_v2_content {
        font-size: 16px
    }
}
#list_grid_v2 .xunjia  {
   text-align:center;
}
#list_grid_v2 .xunjia .add-to-cart {
    background-image: none;
    color: #004e99;
    background-color: #fff;
    border: 1px solid #004e99 !important;
    border-radius: 0;
    text-shadow: none;
    transition: all .3s ease
}

#list_grid_v2 .xunjia:hover .add-to-cart {
    background-color: #004e99;
    color: #fff
}

@media (max-width:767px) {
    #product-show-page .pro_detail > .row {
        align-items: flex-start
    }
}

#product-show-page .big-img-block img, #product-show-page .small-img-block img {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
    max-width: 100%;
    max-height: 100%
}

#product-show-page .big-img-block:after, #product-show-page .small-img-block:after {
    width: 100%;
    height: 100%;
    border: none
}

#product-show-page .big-img-block:not(.small-img-block), #product-show-page .small-img-block:not(.small-img-block) {
    height: 0;
    padding-bottom: 67%
}

#product-show-page .big-img-block:not(.big-img-block), #product-show-page .small-img-block:not(.big-img-block) {
    max-height: 105px
}

#product-show-page .main-carousel .carousel-arrow {
    border: none;
    color: #004e99;
    padding: 0;
    width: 45px;
    height: 45px;
    background: transparent;
    text-align: center;
    line-height: 37px;
    opacity: 0;
    transition: all .3s ease
}

    #product-show-page .main-carousel .carousel-arrow:hover {
        background-color: inherit;
        border-color: inherit;
        color: inherit
    }

    #product-show-page .main-carousel .carousel-arrow i {
        display: none
    }

    #product-show-page .main-carousel .carousel-arrow:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        display: inline-block;
        border: solid #004e99;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg) translateY(-50%);
        transform: rotate(135deg) translateY(-50%);
        transform-origin: center
    }

    #product-show-page .main-carousel .carousel-arrow.carousel-prev {
        left: 0
    }

        #product-show-page .main-carousel .carousel-arrow.carousel-prev:before {
            left: 10px;
            top: 5px
        }

    #product-show-page .main-carousel .carousel-arrow.carousel-next {
        right: 0
    }

        #product-show-page .main-carousel .carousel-arrow.carousel-next:before {
            transform: rotate(135deg) translateY(-50%) scale(-1);
            left: 0;
            top: 6px
        }

#product-show-page .main-carousel:hover .carousel-arrow {
    opacity: 1
}

#product-show-page .sub-carousel {
    margin-top: 20px
}

    #product-show-page .sub-carousel .slick-slide {
        margin: 0 7px
    }

    #product-show-page .sub-carousel .slick-list {
        margin: 0 -7px
    }

    #product-show-page .sub-carousel .slick-current.slick-active .small-img-block:after {
        background: rgba(0,78,153,.4);
        z-index: 2
    }

#product-show-page .product-show-detail .pd-detail-block {
    background-color: #f3f3f3;
    height: 100%;
    padding: 3.375vw 3.125vw
}

@media (max-width:1680px) {
    #product-show-page .product-show-detail .pd-detail-block {
        padding: 2.375vw 2.125vw
    }
}

@media (max-width:1280px) {
    #product-show-page .product-show-detail .pd-detail-block {
        padding: 30px
    }
}

@media (max-width:767px) {
    #product-show-page .product-show-detail .pd-detail-block {
        margin-top: 50px;
        padding: 20px
    }
}

#product-show-page .product-show-detail .pd-detail-block .content-title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.875vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #004e99;
    margin-bottom: 0
}

@media (max-width:1199px) {
    #product-show-page .product-show-detail .pd-detail-block .content-title {
        font-size: 22px
    }
}

@media (max-width:480px) {
    #product-show-page .product-show-detail .pd-detail-block .content-title {
        font-size: 21px
    }
}

@media (max-width:413px) {
    #product-show-page .product-show-detail .pd-detail-block .content-title {
        font-size: 18px
    }
}

#product-show-page .product-show-detail .pd-detail-block .product-show-desc {
    font-family: Arial,sans-serif;
    font-size: 18px;
    letter-spacing: .9px;
    color: #3c3c3c;
    margin: 28px 0;
    line-height: 1.5
}

@media (max-width:1680px) {
    #product-show-page .product-show-detail .pd-detail-block .product-show-desc {
        font-size: 16px;
        line-height: 1.4
    }
}

#product-show-page .add-to-cart, #product-show-page .btn-download {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    letter-spacing: .9px;
    max-width: 260px;
    width: 100%;
    padding: .8854vw 1.5625vw
}

@media (max-width:1680px) {
    #product-show-page .add-to-cart, #product-show-page .btn-download {
        font-size: 16px
    }
}

@media (max-width:991px) {
    #product-show-page .add-to-cart, #product-show-page .btn-download {
        padding: 15px
    }
}

#product-show-page .add-to-cart:lang(de), #product-show-page .btn-download:lang(de) {
    font-size: 16px;
    padding: .8854vw 15px
}

#product-show-page .add-to-cart {
    background-image: none;
    color: #fff;
    background-color: #004e99;
    border: 1px solid #004e99 !important;
    border-radius: 0 !important;
    text-shadow: none;
    transition: all .3s ease;
    height: 60px
}

@media (max-width:1680px) {
    #product-show-page .add-to-cart {
        height: 50px
    }
}

#product-show-page .btn-download {
    max-width: 228px;
    font-family: Almarai,Microsoft JhengHei;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    background-image: none;
    color: #004e99;
    background-color: transparent;
    border: 1px solid #004e99 !important;
    border-radius: 0;
    text-shadow: none;
    transition: all .3s ease
}

@media (max-width:1680px) {
    #product-show-page .btn-download {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #product-show-page .btn-download {
        font-size: 16px
    }
}

#product-show-page .btn-download:hover {
    background-color: #004e99;
    color: #fff
}

#product-show-page #products_detail_spec {
    margin-top: 1.7708vw !important;
    padding-top: 1.7708vw;
    border-top: 1px solid #666 !important
}

@media (max-width:1199px) {
    #product-show-page #products_detail_spec {
        margin-top: 20px !important;
        padding-top: 20px
    }
}

#product-show-page #products_detail_spec tbody {
    display: flex;
    align-items: center
}

@media (max-width:1199px) {
    #product-show-page #products_detail_spec tbody {
        flex-direction: column;
        align-items: flex-start
    }
}

#product-show-page #products_detail_spec tbody .tr_amount td {
    padding: 0 0 0 10px !important
}

@media (max-width:1199px) {
    #product-show-page #products_detail_spec tbody .tr_amount {
        margin-bottom: 15px
    }
}

#product-show-page #products_detail_spec tbody .tr_button td {
    padding: 0 0 0 10px !important
}

#product-show-page #products_detail_spec .tr_amount {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 700;
    color: #004e99
}

@media (max-width:1680px) {
    #product-show-page #products_detail_spec .tr_amount {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #product-show-page #products_detail_spec .tr_amount {
        font-size: 16px
    }
}

#product-show-page #products_detail_spec .amount {
    width: 100%;
    max-width: 250px
}

    #product-show-page #products_detail_spec .amount button {
        background-image: none;
        background-color: #fff;
        color: #000;
        border-radius: 0;
        border-color: #ddd;
        font-family: Almarai,Microsoft JhengHei;
        font-size: 18px;
        line-height: 1;
        letter-spacing: normal;
        font-weight: 700;
        letter-spacing: .9px;
        padding: 0 20px;
        height: 60px
    }

@media (max-width:1680px) {
    #product-show-page #products_detail_spec .amount button {
        font-size: 16px;
        height: 50px
    }
}

#product-show-page #products_detail_spec .amount .input-group-prepend .btn-sm svg {
    display: none
}

#product-show-page #products_detail_spec .amount .input-group-prepend .btn-sm:after, #product-show-page #products_detail_spec .amount .input-group-prepend .btn-sm:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 6px;
    background-color: #000;
    top: 50%;
    left: 50%
}

#product-show-page #products_detail_spec .amount .input-group-prepend .btn-sm:before {
    transform: translate(-50%,-50%) rotate(0deg)
}

#product-show-page #products_detail_spec .amount .input-group-prepend .btn-sm:after {
    display: none;
    transform: translate(-50%,-50%) rotate(90deg)
}

#product-show-page #products_detail_spec .amount .input-group-append .btn-sm svg {
    display: none
}

#product-show-page #products_detail_spec .amount .input-group-append .btn-sm:after, #product-show-page #products_detail_spec .amount .input-group-append .btn-sm:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 6px;
    background-color: #000;
    top: 50%;
    left: 50%
}

#product-show-page #products_detail_spec .amount .input-group-append .btn-sm:before {
    transform: translate(-50%,-50%) rotate(0deg)
}

#product-show-page #products_detail_spec .amount .input-group-append .btn-sm:after {
    transform: translate(-50%,-50%) rotate(90deg)
}

#product-show-page #products_detail_spec .amount .form-control {
    height: auto;
    text-align: center;
    border: 1px solid #ddd
}

    #product-show-page #products_detail_spec .amount .form-control:focus {
        color: #000;
        border-color: #ddd
    }

#product-show-page #attach_area .dropdown-toggle:after {
    vertical-align: middle
}

#product-show-page .product-show-tabs ul {
    margin-left: 20px
}

#product-show-page .product-show-tabs .embed-responsive {
    max-width: 60%
}

@media (max-width:991px) {
    #product-show-page .product-show-tabs .embed-responsive {
        max-width: 100%
    }
}

#product-show-page .product-show-tabs .desc-block {
    border-top: 1px solid #ccc;
    margin-top: 5.2083vw;
    padding-top: 2.1875vw
}

@media (max-width:991px) {
    #product-show-page .product-show-tabs .desc-block {
        margin-top: 50px;
        padding-top: 30px
    }
}

@media (max-width:576px) {
    #product-show-page .product-show-tabs .desc-block {
        margin-top: 30px;
        padding-top: 30px
    }
}

#product-show-page .product-show-tabs .desc-block .desc-title h2 {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.7708vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 1.7px;
    color: #004e99;
    text-transform: uppercase;
    margin-bottom: 30px
}

@media (max-width:1199px) {
    #product-show-page .product-show-tabs .desc-block .desc-title h2 {
        font-size: 20px
    }
}

@media (max-width:991px) {
    #product-show-page .product-show-tabs .desc-block .desc-title h2 {
        text-align: center;
        font-size: 24px
    }
}

@media (max-width:576px) {
    #product-show-page .product-show-tabs .desc-block .desc-title h2 {
        font-size: 22px;
        margin-bottom: 10px
    }
}

@media (max-width:413px) {
    #product-show-page .product-show-tabs .desc-block .desc-title h2 {
        font-size: 20px
    }
}

.related_area .related_title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.7708vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 800;
    letter-spacing: 1.7px;
    color: #004e99;
    text-transform: uppercase;
    margin-bottom: 30px
}

@media (max-width:1199px) {
    .related_area .related_title {
        font-size: 20px
    }
}

@media (max-width:991px) {
    .related_area .related_title {
        text-align: center;
        font-size: 24px;
        margin-top: 50px
    }
}

.container-fluid.layout.qaPage .col-md-3 {
    display: none
}

.container-fluid.layout.qaPage .col-md-9 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
    margin: 0 auto
}

#list_accordion .accordion_item .card-header {
    background-color: transparent;
    padding: 0
}

    #list_accordion .accordion_item .card-header .btn-link {
        border: none;
        text-shadow: none;
        background-image: none;
        font-weight: 700;
        background-color: transparent;
        padding: 15px
    }

        #list_accordion .accordion_item .btn-link:focus, #list_accordion .accordion_item .card-header .btn-link:hover {
            text-decoration: none;
            color: #3c3c3c !important;
            font-weight: 700
        }

.dropdown-menu.show {
    width: 100%;
    padding: 10px
}

.downloadstrip_item {
    margin-bottom: 30px
}

    .downloadstrip_item .table-responsive {
        padding: 0
    }

    .downloadstrip_item .strip_title {
        font-family: Almarai,Microsoft JhengHei;
        font-size: 20px;
        line-height: 1;
        letter-spacing: 1px;
        font-weight: 700
    }

@media (max-width:1680px) {
    .downloadstrip_item .strip_title {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .downloadstrip_item .strip_title {
        font-size: 16px
    }
}

@media (max-width:991px) {
    .downloadstrip_item .strip_title {
        font-size: 20px
    }
}

@media (max-width:576px) {
    .downloadstrip_item .thumb {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    #news_cate_page #list_strip_v2 .col-4 {
        flex: 0 0 40%;
        max-width: 40%
    }

    #news_cate_page #list_strip_v2 .col-8 {
        flex: 0 0 60%;
        max-width: 60%
    }
}

@media (max-width:575px) {
    #news_cate_page #list_strip_v2 .col-4, #news_cate_page #list_strip_v2 .col-8 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

#news_cate_page .strip_v2_item {
    align-items: flex-start;
    margin-bottom: 30px
}

#news_cate_page .strip_v2_publictime {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    color: #878787;
    margin-bottom: 8px
}

@media (max-width:1680px) {
    #news_cate_page .strip_v2_publictime {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #news_cate_page .strip_v2_publictime {
        font-size: 16px
    }
}

@media (max-width:575px) {
    #news_cate_page .strip_v2_publictime {
        margin-top: 20px
    }
}

#news_cate_page .strip_v2_publictime i {
    display: inline-block
}

#news_cate_page .strip_v2_title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.1458vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    line-height: 1.2
}

@media (max-width:1680px) {
    #news_cate_page .strip_v2_title {
        font-size: 20px
    }
}

@media (max-width:1560px) {
    #news_cate_page .strip_v2_title {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #news_cate_page .strip_v2_title {
        font-size: 16px
    }
}

#news_cate_page .strip_v2_title a {
    color: #3c3c3c
}

#news_cate_page .strip_v2_summary {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .9px;
    color: #3c3c3c;
    margin: 10px 0 20px
}

    #news_cate_page .strip_v2_summary.multiline-ellipsis {
        -webkit-line-clamp: 2
    }

@media (max-width:1440px) {
    #news_cate_page .strip_v2_summary {
        font-size: 16px
    }
}

#news_cate_page #inner_btnarea {
    text-align: left
}

#news_cate_page .thumb {
    height: 0 !important;
    padding-bottom: 61%
}

    #news_cate_page .thumb img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

#news_cate_page #btn_more {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    background: transparent;
    border: 1px solid #3c3c3c !important;
    padding: 10px;
    transition: all .3s;
    max-width: 100px;
    width: 100%;
    opacity: 1;
    border-radius: 0 !important;
    color: #3c3c3c
}

@media (max-width:1680px) {
    #news_cate_page #btn_more {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    #news_cate_page #btn_more {
        font-size: 16px
    }
}

#news_cate_page #btn_more:hover {
    opacity: 1;
    color: #fff !important;
    text-shadow: none;
    background: #004e99;
    border: 1px solid #004e99 !important
}

@media (max-width:376px) {
    #news_cate_page #btn_more {
        max-width: 100%
    }
}

@media (max-width:575px) {
    #news_cate_page #inner_btnarea {
        text-align: center
    }
}

#content.inside-page #news_show_page #main_title {
    font-size: 24px;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 25px
}

@media (max-width:991px) {
    #content.inside-page #news_show_page #main_title {
        font-size: 22px;
        padding: 0
    }
}

@media (max-width:767px) {
    #content.inside-page #news_show_page #main_title {
        font-size: 20px
    }
}

@media (max-width:576px) {
    #content.inside-page #news_show_page #main_title {
        font-size: 18px
    }
}

#content.inside-page #news_show_page .publictime {
    font-family: Arial;
    letter-spacing: 2px;
    color: #fff;
    margin: 20px 0
}

    #content.inside-page #news_show_page .publictime:lang(en) {
        letter-spacing: 0
    }

#content.inside-page #news_show_page .news_content {
    letter-spacing: .7px
}

    #content.inside-page #news_show_page .news_content p {
        line-height: 1.5
    }

#download_list_page, #download_list_page .table, #download_list_page a {
    color: #3c3c3c
}

    #download_list_page a:hover {
        color: #fff
    }

#message_cate_page a:hover {
    color: #3c3c3c
}

#message_cate_page .grid_content {
    margin-bottom: 25px
}

@media (max-width:413px) {
    #message_cate_page .col-6 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

#message_cate_page .grid_v2_content .thumb img {
    -o-object-fit: contain;
    object-fit: contain;
    padding: 15px;
    width: 100%;
    height: 100%
}

#message_show_page .msg_description {
    margin-bottom: 20px
}

    #message_show_page .msg_description ul {
        margin-left: 20px
    }

#content_wrap #inside-page.contact-page .content-col {
    padding-left: 0;
    flex: 0 0 100%;
    max-width: 100%
}

@media (max-width:991px) {
    #content_wrap #inside-page.contact-page .content-col {
        margin-top: 20px
    }
}

#contact-page #bread_area .breadcrumb {
    margin: 0;
    position: static
}

@media (max-width:991px) {
    #contactus .col-md-4, #contactus .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

#contactus label {
    margin-bottom: 10px
}

#contactus .information_title {
    border-bottom: 1px solid #3c3c3c;
    padding-bottom: 10px;
    margin-bottom: 25px
}

#contactus .form_title, #contactus .information_title {
    font-family: Almarai,Microsoft JhengHei;
    font-size: 1.4583vw;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 700;
    margin-bottom: 10px
}

@media (max-width:1440px) {
    #contactus .form_title, #contactus .information_title {
        font-size: 20px
    }
}

#contactus .contactus_information_area {
    padding: 20px;
    background: #fff;
    border: 1px solid #cbcbcb;
    margin-bottom: 20px
}

    #contactus .contactus_information_area ul {
        line-height: 2.5;
        margin-left: 0
    }

    #contactus .contactus_information_area li:nth-child(2) a, #contactus .contactus_information_area li:nth-child(3) a, #contactus .contactus_information_area li:nth-child(5) a {
        color: #3c3c3c;
        text-decoration: none
    }

        #contactus .contactus_information_area li:nth-child(2) a:hover, #contactus .contactus_information_area li:nth-child(3) a:hover, #contactus .contactus_information_area li:nth-child(5) a:hover {
            color: #004e99;
            text-decoration: none
        }

    #contactus .contactus_information_area li:last-child a {
        text-transform: inherit
    }

    #contactus .contactus_information_area svg:not(:root).svg-inline--fa {
        width: 15px;
        margin-right: 10px
    }

#contactus .contactus_form_area {
    border: 1px solid #cbcbcb;
    padding: 20px
}

    #contactus .contactus_form_area .form_title {
        border-bottom: 1px solid #3c3c3c;
        padding-bottom: 10px;
        margin-bottom: 25px
    }

#react_main .inside-header-wrap {
    display: none
}

.table-responsive {
    padding: 0;
    display: block;
    width: 100%
}

.fancybox__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px
}

    .fancybox__toolbar .fancybox__toolbar__items.fancybox__toolbar__items--right {
        display: flex
    }

    .fancybox__toolbar .fancybox__toolbar__items .fancybox__button--fullscreen, .fancybox__toolbar .fancybox__toolbar__items .fancybox__button--slideshow, .fancybox__toolbar .fancybox__toolbar__items .fancybox__button--thumbs, .fancybox__toolbar .fancybox__toolbar__items .fancybox__button--zoom {
        display: none
    }

table.custom-table-bg {
    width: 100%
}

    table.custom-table-bg tbody td, table.custom-table-bg tbody th {
        padding: 20px
    }

    table.custom-table-bg td, table.custom-table-bg th, table.custom-table-bg tr {
        border: 1px solid #555
    }

    table.custom-table-bg tr {
        font-size: 18px;
        letter-spacing: .9px;
        color: #3c3c3c
    }

@media (max-width:1440px) {
    table.custom-table-bg tr {
        font-size: 16px
    }
}

table.custom-table-bg tr:first-child {
    background-color: #3c3c3c !important;
    font-weight: 700;
    color: #fff
}

table.custom-table-bg .waring {
    color: #c81414
}

#change_password #login_link a, #member #member_edit > .row + hr + .row #login_link a, #member_forget #login_link a, #member_login #login_link a, #member_register #login_link a {
    color: #3c3c3c
}

#singleton_show_page ul {
    margin-left: 20px;
    margin-bottom: 2vw;
    line-height: 1.5
}

@media (max-width:991px) {
    #singleton_show_page ul {
        margin-bottom: 30px
    }
}

@media (max-width:575px) {
    #singleton_show_page ul {
        margin-bottom: 20px
    }
}

#singleton_show_page dt {
    margin-bottom: 10px;
    font-size: 18px
}

#singleton_show_page dd {
    margin-bottom: 2vw;
    line-height: 1.5
}

@media (max-width:991px) {
    #singleton_show_page dd {
        margin-bottom: 30px
    }
}

@media (max-width:575px) {
    #singleton_show_page dd {
        margin-bottom: 20px
    }
}

#singleton_show_page .container {
    padding-left: 0;
    padding-right: 0
}

#sitemap #sitemap_content {
    background-color: transparent;
    color: #3c3c3c
}

    #sitemap #sitemap_content ul {
        background-color: transparent;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 2vw
    }

        #sitemap #sitemap_content ul[data-level="1"] > li {
            border: 1px solid #3c3c3c;
            margin-bottom: 20px !important
        }

            #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper {
                background-color: #fff
            }

                #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper > a {
                    color: #3c3c3c
                }

                    #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper > a:hover {
                        color: #004e99
                    }

                #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper > button {
                    background-color: #fff;
                    color: #fff
                }

        #sitemap #sitemap_content ul > li > .sitemap-item-wrapper > a:hover {
            color: #3c3c3c
        }

        #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper > button {
            border-color: #3c3c3c
        }

        #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper:hover > button {
            background-color: #fff;
            color: #3c3c3c;
            border-color: #3c3c3c
        }

        #sitemap #sitemap_content ul[data-level="1"] > li > .sitemap-item-wrapper:hover > a {
            color: #3c3c3c
        }

        #sitemap #sitemap_content ul > li > .sitemap-item-wrapper > button.sitemap-collapse {
            background-image: none
        }

            #sitemap #sitemap_content ul > li > .sitemap-item-wrapper > button.sitemap-collapse:before {
                color: #3c3c3c
            }

    #sitemap #sitemap_content .btn.disabled, #sitemap #sitemap_content .btn:disabled {
        opacity: 1
    }

#inquiry {
    color: #3c3c3c
}

    #inquiry #inquiry_table, #inquiry label {
        color: #333
    }

    #inquiry .table-hover tbody tr {
        transition: all .3s ease
    }

        #inquiry .table-hover tbody tr:hover {
            color: #333
        }

#content_wrap #inside-page.inquiry-page .content-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0
}

/*==·ÖÒ³¡ý==*/
#pages{float:left;width:100%; margin:20px 0 50px 0; text-align:center;}
#pages span{border:0px #ddd solid;padding:5px 10px;margin:0 5px; background:#ddd; color:#999}
#pages a{border:1px #bbb solid;padding:5px 10px;color:#666; margin:0 5px;}
#pages a:hover{color:#fff; background:#f60}
