﻿/* 縮小失敗。正在傳回未縮小的內容。
(3309,10): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,25): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,59): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,74): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,88): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,105): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,122): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,138): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,153): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,168): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,181): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,196): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,216): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,234): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,254): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,272): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,287): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,305): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,322): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,338): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,353): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,371): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,393): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,415): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,437): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,460): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,656): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25635,11): run-time error CSS1036: Expected expression, found ';'
 */
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        -ms-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        -ms-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        -ms-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        -ms-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        -ms-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        -ms-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        -ms-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        -ms-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        -ms-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        -ms-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        -ms-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        -ms-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        -ms-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        transform-origin: center top;
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}
/*!
 * Bootstrap v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */ :root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

*, ::after, ::before {
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[data-original-title], abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem
}

    ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0
    }

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b, strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent
}

    a:hover {
        color: #0056b3;
        text-decoration: underline
    }

    a:not([href]) {
        color: inherit;
        text-decoration: none
    }

        a:not([href]):hover {
            color: inherit;
            text-decoration: none
        }

code, kbd, pre, samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

svg {
    overflow: hidden;
    vertical-align: middle
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

    button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color
    }

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
        cursor: pointer
    }

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        padding: 0;
        border-style: none
    }

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none
}

    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1, h1 {
    font-size: 2.5rem
}

.h2, h2 {
    font-size: 2rem
}

.h3, h3 {
    font-size: 1.75rem
}

.h4, h4 {
    font-size: 1.5rem
}

.h5, h5 {
    font-size: 1.25rem
}

.h6, h6 {
    font-size: 1rem
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1)
}

.small, small {
    font-size: 80%;
    font-weight: 400
}

.mark, mark {
    padding: .2em;
    background-color: #fcf8e3
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

    .list-inline-item:not(:last-child) {
        margin-right: .5rem
    }

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d
}

    .blockquote-footer::before {
        content: "\2014\00A0"
    }

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #6c757d
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word
}

a > code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700
    }

pre {
    display: block;
    font-size: 87.5%;
    color: #212529
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

.container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container, .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container, .container-md, .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

    .no-gutters > .col, .no-gutters > [class*=col-] {
        padding-right: 0;
        padding-left: 0
    }

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%
}

.row-cols-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.row-cols-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 16.666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.333333%
}

.offset-5 {
    margin-left: 41.666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.333333%
}

.offset-8 {
    margin-left: 66.666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.333333%
}

.offset-11 {
    margin-left: 91.666667%
}

@media (min-width:576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .row-cols-sm-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-sm-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-sm-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .row-cols-sm-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-sm-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.333333%
    }

    .offset-sm-2 {
        margin-left: 16.666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.333333%
    }

    .offset-sm-5 {
        margin-left: 41.666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.333333%
    }

    .offset-sm-8 {
        margin-left: 66.666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.333333%
    }

    .offset-sm-11 {
        margin-left: 91.666667%
    }
}

@media (min-width:768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .row-cols-md-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-md-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-md-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .row-cols-md-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-md-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.333333%
    }

    .offset-md-2 {
        margin-left: 16.666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.333333%
    }

    .offset-md-5 {
        margin-left: 41.666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.333333%
    }

    .offset-md-8 {
        margin-left: 66.666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.333333%
    }

    .offset-md-11 {
        margin-left: 91.666667%
    }
}

@media (min-width:992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .row-cols-lg-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-lg-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-lg-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .row-cols-lg-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-lg-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }

    .offset-lg-2 {
        margin-left: 16.666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.333333%
    }

    .offset-lg-5 {
        margin-left: 41.666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.333333%
    }

    .offset-lg-8 {
        margin-left: 66.666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.333333%
    }

    .offset-lg-11 {
        margin-left: 91.666667%
    }
}

@media (min-width:1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .row-cols-xl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .row-cols-xl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.333333%
    }

    .offset-xl-2 {
        margin-left: 16.666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.333333%
    }

    .offset-xl-5 {
        margin-left: 41.666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.333333%
    }

    .offset-xl-8 {
        margin-left: 66.666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.333333%
    }

    .offset-xl-11 {
        margin-left: 91.666667%
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

    .table td, .table th {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6
    }

    .table tbody + tbody {
        border-top: 2px solid #dee2e6
    }

.table-sm td, .table-sm th {
    padding: .3rem
}

.table-bordered {
    border: 1px solid #dee2e6
}

    .table-bordered td, .table-bordered th {
        border: 1px solid #dee2e6
    }

    .table-bordered thead td, .table-bordered thead th {
        border-bottom-width: 2px
    }

.table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05)
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075)
}

.table-primary, .table-primary > td, .table-primary > th {
    background-color: #b8daff
}

    .table-primary tbody + tbody, .table-primary td, .table-primary th, .table-primary thead th {
        border-color: #7abaff
    }

.table-hover .table-primary:hover {
    background-color: #9fcdff
}

    .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
        background-color: #9fcdff
    }

.table-secondary, .table-secondary > td, .table-secondary > th {
    background-color: #d6d8db
}

    .table-secondary tbody + tbody, .table-secondary td, .table-secondary th, .table-secondary thead th {
        border-color: #b3b7bb
    }

.table-hover .table-secondary:hover {
    background-color: #c8cbcf
}

    .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
        background-color: #c8cbcf
    }

.table-success, .table-success > td, .table-success > th {
    background-color: #c3e6cb
}

    .table-success tbody + tbody, .table-success td, .table-success th, .table-success thead th {
        border-color: #8fd19e
    }

.table-hover .table-success:hover {
    background-color: #b1dfbb
}

    .table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
        background-color: #b1dfbb
    }

.table-info, .table-info > td, .table-info > th {
    background-color: #bee5eb
}

    .table-info tbody + tbody, .table-info td, .table-info th, .table-info thead th {
        border-color: #86cfda
    }

.table-hover .table-info:hover {
    background-color: #abdde5
}

    .table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
        background-color: #abdde5
    }

.table-warning, .table-warning > td, .table-warning > th {
    background-color: #ffeeba
}

    .table-warning tbody + tbody, .table-warning td, .table-warning th, .table-warning thead th {
        border-color: #ffdf7e
    }

.table-hover .table-warning:hover {
    background-color: #ffe8a1
}

    .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
        background-color: #ffe8a1
    }

.table-danger, .table-danger > td, .table-danger > th {
    background-color: #f5c6cb
}

    .table-danger tbody + tbody, .table-danger td, .table-danger th, .table-danger thead th {
        border-color: #ed969e
    }

.table-hover .table-danger:hover {
    background-color: #f1b0b7
}

    .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
        background-color: #f1b0b7
    }

.table-light, .table-light > td, .table-light > th {
    background-color: #fdfdfe
}

    .table-light tbody + tbody, .table-light td, .table-light th, .table-light thead th {
        border-color: #fbfcfc
    }

.table-hover .table-light:hover {
    background-color: #ececf6
}

    .table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
        background-color: #ececf6
    }

.table-dark, .table-dark > td, .table-dark > th {
    background-color: #c6c8ca
}

    .table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th {
        border-color: #95999c
    }

.table-hover .table-dark:hover {
    background-color: #b9bbbe
}

    .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
        background-color: #b9bbbe
    }

.table-active, .table-active > td, .table-active > th {
    background-color: rgba(0,0,0,.075)
}

.table-hover .table-active:hover {
    background-color: rgba(0,0,0,.075)
}

    .table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
        background-color: rgba(0,0,0,.075)
    }

.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.table-dark {
    color: #fff;
    background-color: #343a40
}

    .table-dark td, .table-dark th, .table-dark thead th {
        border-color: #454d55
    }

    .table-dark.table-bordered {
        border: 0
    }

    .table-dark.table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(255,255,255,.05)
    }

    .table-dark.table-hover tbody tr:hover {
        color: #fff;
        background-color: rgba(255,255,255,.075)
    }

@media (max-width:575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

        .table-responsive-sm > .table-bordered {
            border: 0
        }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

        .table-responsive-md > .table-bordered {
            border: 0
        }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

        .table-responsive-lg > .table-bordered {
            border: 0
        }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

        .table-responsive-xl > .table-bordered {
            border: 0
        }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

    .table-responsive > .table-bordered {
        border: 0
    }

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

input[type=date].form-control, input[type=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.form-control-file, .form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

    .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
        padding-right: 0;
        padding-left: 0
    }

.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

select.form-control[multiple], select.form-control[size] {
    height: auto
}

textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

    .form-row > .col, .form-row > [class*=col-] {
        padding-right: 5px;
        padding-left: 5px
    }

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

    .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
        color: #6c757d
    }

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

    .form-check-inline .form-check-input {
        position: static;
        margin-top: 0;
        margin-right: .3125rem;
        margin-left: 0
    }

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #28a745
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40,167,69,.9);
    border-radius: .25rem
}

.is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {
    display: block
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
    }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-valid, .was-validated .custom-select:valid {
    border-color: #28a745;
    padding-right: calc(.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)
}

    .custom-select.is-valid:focus, .was-validated .custom-select:valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
    }

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
    color: #28a745
}

.form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip {
    display: block
}

.custom-control-input.is-valid ~ .custom-control-label, .was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #28a745
}

    .custom-control-input.is-valid ~ .custom-control-label::before, .was-validated .custom-control-input:valid ~ .custom-control-label::before {
        border-color: #28a745
    }

.custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57
}

.custom-control-input.is-valid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745
}

.custom-file-input.is-valid ~ .custom-file-label, .was-validated .custom-file-input:valid ~ .custom-file-label {
    border-color: #28a745
}

.custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem
}

.is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {
    display: block
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
    }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-invalid, .was-validated .custom-select:invalid {
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)
}

    .custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
    }

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid ~ .custom-control-label, .was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #dc3545
}

    .custom-control-input.is-invalid ~ .custom-control-label::before, .was-validated .custom-control-input:invalid ~ .custom-control-label::before {
        border-color: #dc3545
    }

.custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d
}

.custom-control-input.is-invalid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545
}

.custom-file-input.is-invalid ~ .custom-file-label, .was-validated .custom-file-input:invalid ~ .custom-file-label {
    border-color: #dc3545
}

.custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center
}

    .form-inline .form-check {
        width: 100%
    }

@media (min-width:576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .custom-select, .form-inline .input-group {
        width: auto
    }

    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }

    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.btn.disabled, .btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

a.btn.disabled, fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0069d9;
        border-color: #0062cc
    }

    .btn-primary.focus, .btn-primary:focus {
        color: #fff;
        background-color: #0069d9;
        border-color: #0062cc;
        box-shadow: 0 0 0 .2rem rgba(38,143,255,.5)
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0062cc;
        border-color: #005cbf
    }

        .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(38,143,255,.5)
        }

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62
    }

    .btn-secondary.focus, .btn-secondary:focus {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
        box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

    .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #545b62;
        border-color: #4e555b
    }

        .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
        }

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

    .btn-success:hover {
        color: #fff;
        background-color: #218838;
        border-color: #1e7e34
    }

    .btn-success.focus, .btn-success:focus {
        color: #fff;
        background-color: #218838;
        border-color: #1e7e34;
        box-shadow: 0 0 0 .2rem rgba(72,180,97,.5)
    }

    .btn-success.disabled, .btn-success:disabled {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

    .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #1e7e34;
        border-color: #1c7430
    }

        .btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(72,180,97,.5)
        }

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

    .btn-info:hover {
        color: #fff;
        background-color: #138496;
        border-color: #117a8b
    }

    .btn-info.focus, .btn-info:focus {
        color: #fff;
        background-color: #138496;
        border-color: #117a8b;
        box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
    }

    .btn-info.disabled, .btn-info:disabled {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8
    }

    .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
        color: #fff;
        background-color: #117a8b;
        border-color: #10707f
    }

        .btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
        }

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

    .btn-warning:hover {
        color: #212529;
        background-color: #e0a800;
        border-color: #d39e00
    }

    .btn-warning.focus, .btn-warning:focus {
        color: #212529;
        background-color: #e0a800;
        border-color: #d39e00;
        box-shadow: 0 0 0 .2rem rgba(222,170,12,.5)
    }

    .btn-warning.disabled, .btn-warning:disabled {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107
    }

    .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle {
        color: #212529;
        background-color: #d39e00;
        border-color: #c69500
    }

        .btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(222,170,12,.5)
        }

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

    .btn-danger:hover {
        color: #fff;
        background-color: #c82333;
        border-color: #bd2130
    }

    .btn-danger.focus, .btn-danger:focus {
        color: #fff;
        background-color: #c82333;
        border-color: #bd2130;
        box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
    }

    .btn-danger.disabled, .btn-danger:disabled {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

    .btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #bd2130;
        border-color: #b21f2d
    }

        .btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
        }

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

    .btn-light:hover {
        color: #212529;
        background-color: #e2e6ea;
        border-color: #dae0e5
    }

    .btn-light.focus, .btn-light:focus {
        color: #212529;
        background-color: #e2e6ea;
        border-color: #dae0e5;
        box-shadow: 0 0 0 .2rem rgba(216,217,219,.5)
    }

    .btn-light.disabled, .btn-light:disabled {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

    .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
        color: #212529;
        background-color: #dae0e5;
        border-color: #d3d9df
    }

        .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(216,217,219,.5)
        }

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

    .btn-dark:hover {
        color: #fff;
        background-color: #23272b;
        border-color: #1d2124
    }

    .btn-dark.focus, .btn-dark:focus {
        color: #fff;
        background-color: #23272b;
        border-color: #1d2124;
        box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
    }

    .btn-dark.disabled, .btn-dark:disabled {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40
    }

    .btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
        color: #fff;
        background-color: #1d2124;
        border-color: #171a1d
    }

        .btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
        }

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

    .btn-outline-primary.focus, .btn-outline-primary:focus {
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #007bff;
        background-color: transparent
    }

    .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

        .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
        }

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

    .btn-outline-secondary.focus, .btn-outline-secondary:focus {
        box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
    }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        color: #6c757d;
        background-color: transparent
    }

    .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

        .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
        }

.btn-outline-success {
    color: #28a745;
    border-color: #28a745
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

    .btn-outline-success.focus, .btn-outline-success:focus {
        box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
    }

    .btn-outline-success.disabled, .btn-outline-success:disabled {
        color: #28a745;
        background-color: transparent
    }

    .btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show > .btn-outline-success.dropdown-toggle {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

        .btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
        }

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8
}

    .btn-outline-info:hover {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8
    }

    .btn-outline-info.focus, .btn-outline-info:focus {
        box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
    }

    .btn-outline-info.disabled, .btn-outline-info:disabled {
        color: #17a2b8;
        background-color: transparent
    }

    .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show > .btn-outline-info.dropdown-toggle {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8
    }

        .btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
        }

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

    .btn-outline-warning:hover {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107
    }

    .btn-outline-warning.focus, .btn-outline-warning:focus {
        box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
    }

    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
        color: #ffc107;
        background-color: transparent
    }

    .btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning.dropdown-toggle {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107
    }

        .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
        }

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

    .btn-outline-danger.focus, .btn-outline-danger:focus {
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
    }

    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
        color: #dc3545;
        background-color: transparent
    }

    .btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show > .btn-outline-danger.dropdown-toggle {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

        .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
        }

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

    .btn-outline-light:hover {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

    .btn-outline-light.focus, .btn-outline-light:focus {
        box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
    }

    .btn-outline-light.disabled, .btn-outline-light:disabled {
        color: #f8f9fa;
        background-color: transparent
    }

    .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show > .btn-outline-light.dropdown-toggle {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

        .btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
        }

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40
    }

    .btn-outline-dark.focus, .btn-outline-dark:focus {
        box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
    }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        color: #343a40;
        background-color: transparent
    }

    .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark.dropdown-toggle {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40
    }

        .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
        }

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none
}

    .btn-link:hover {
        color: #0056b3;
        text-decoration: underline
    }

    .btn-link.focus, .btn-link:focus {
        text-decoration: underline
    }

    .btn-link.disabled, .btn-link:disabled {
        color: #6c757d;
        pointer-events: none
    }

.btn-group-lg > .btn, .btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-group-sm > .btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

    .btn-block + .btn-block {
        margin-top: .5rem
    }

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
    width: 100%
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown, .dropleft, .dropright, .dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent
    }

    .dropdown-toggle:empty::after {
        margin-left: 0
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

@media (min-width:576px) {
    .dropdown-menu-sm-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-right {
        right: 0;
        left: auto
    }
}

@media (min-width:768px) {
    .dropdown-menu-md-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-right {
        right: 0;
        left: auto
    }
}

@media (min-width:992px) {
    .dropdown-menu-lg-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-right {
        right: 0;
        left: auto
    }
}

@media (min-width:1200px) {
    .dropdown-menu-xl-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-xl-right {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-toggle::after {
    vertical-align: 0
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropleft .dropdown-toggle::after {
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top] {
    right: auto;
    bottom: auto
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

    .dropdown-item:focus, .dropdown-item:hover {
        color: #16181b;
        text-decoration: none;
        background-color: #f8f9fa
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #007bff
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #6c757d;
        pointer-events: none;
        background-color: transparent
    }

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #212529
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

    .btn-group-vertical > .btn, .btn-group > .btn {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }

        .btn-group-vertical > .btn:hover, .btn-group > .btn:hover {
            z-index: 1
        }

        .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus {
            z-index: 1
        }

.btn-toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

    .btn-toolbar .input-group {
        width: auto
    }

.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
    margin-left: -1px
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

    .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
        margin-left: 0
    }

.dropleft .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center
}

    .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
        width: 100%
    }

        .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
            margin-top: -1px
        }

        .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0
        }

        .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn:not(:first-child) {
            border-top-left-radius: 0;
            border-top-right-radius: 0
        }

.btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0
}

    .btn-group-toggle > .btn input[type=checkbox], .btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .btn-group > .btn input[type=checkbox], .btn-group-toggle > .btn-group > .btn input[type=radio] {
        position: absolute;
        clip: rect(0,0,0,0);
        pointer-events: none
    }

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

    .input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control, .input-group > .form-control-plaintext {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        margin-bottom: 0
    }

        .input-group > .custom-file + .custom-file, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .form-control, .input-group > .custom-select + .custom-file, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .form-control, .input-group > .form-control + .custom-file, .input-group > .form-control + .custom-select, .input-group > .form-control + .form-control, .input-group > .form-control-plaintext + .custom-file, .input-group > .form-control-plaintext + .custom-select, .input-group > .form-control-plaintext + .form-control {
            margin-left: -1px
        }

        .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, .input-group > .custom-select:focus, .input-group > .form-control:focus {
            z-index: 3
        }

        .input-group > .custom-file .custom-file-input:focus {
            z-index: 4
        }

        .input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0
        }

        .input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0
        }

    .input-group > .custom-file {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

        .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0
        }

        .input-group > .custom-file:not(:first-child) .custom-file-label {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0
        }

.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex
}

    .input-group-append .btn, .input-group-prepend .btn {
        position: relative;
        z-index: 2
    }

        .input-group-append .btn:focus, .input-group-prepend .btn:focus {
            z-index: 3
        }

        .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .btn, .input-group-append .input-group-text + .input-group-text, .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-prepend .input-group-text + .input-group-text {
            margin-left: -1px
        }

.input-group-prepend {
    margin-right: -1px
}

.input-group-append {
    margin-left: -1px
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

    .input-group-text input[type=checkbox], .input-group-text input[type=radio] {
        margin-top: 0
    }

.input-group-lg > .custom-select, .input-group-lg > .form-control:not(textarea) {
    height: calc(1.5em + 1rem + 2px)
}

.input-group-lg > .custom-select, .input-group-lg > .form-control, .input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-sm > .custom-select, .input-group-sm > .form-control:not(textarea) {
    height: calc(1.5em + .5rem + 2px)
}

.input-group-sm > .custom-select, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-lg > .custom-select, .input-group-sm > .custom-select {
    padding-right: 1.75rem
}

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0
}

    .custom-control-input:checked ~ .custom-control-label::before {
        color: #fff;
        border-color: #007bff;
        background-color: #007bff
    }

    .custom-control-input:focus ~ .custom-control-label::before {
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
    }

    .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
        border-color: #80bdff
    }

    .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
        color: #fff;
        background-color: #b3d7ff;
        border-color: #b3d7ff
    }

    .custom-control-input:disabled ~ .custom-control-label, .custom-control-input[disabled] ~ .custom-control-label {
        color: #6c757d
    }

        .custom-control-input:disabled ~ .custom-control-label::before, .custom-control-input[disabled] ~ .custom-control-label::before {
            background-color: #e9ecef
        }

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

    .custom-control-label::before {
        position: absolute;
        top: .25rem;
        left: -1.5rem;
        display: block;
        width: 1rem;
        height: 1rem;
        pointer-events: none;
        content: "";
        background-color: #fff;
        border: #adb5bd solid 1px
    }

    .custom-control-label::after {
        position: absolute;
        top: .25rem;
        left: -1.5rem;
        display: block;
        width: 1rem;
        height: 1rem;
        content: "";
        background: no-repeat 50%/50% 50%
    }

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-switch {
    padding-left: 2.25rem
}

    .custom-switch .custom-control-label::before {
        left: -2.25rem;
        width: 1.75rem;
        pointer-events: all;
        border-radius: .5rem
    }

    .custom-switch .custom-control-label::after {
        top: calc(.25rem + 2px);
        left: calc(-2.25rem + 2px);
        width: calc(1rem - 4px);
        height: calc(1rem - 4px);
        background-color: #adb5bd;
        border-radius: .5rem;
        transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
        transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out
    }

@media (prefers-reduced-motion:reduce) {
    .custom-switch .custom-control-label::after {
        transition: none
    }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem)
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .custom-select:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
    }

        .custom-select:focus::-ms-value {
            color: #495057;
            background-color: #fff
        }

    .custom-select[multiple], .custom-select[size]:not([size="1"]) {
        height: auto;
        padding-right: .75rem;
        background-image: none
    }

    .custom-select:disabled {
        color: #6c757d;
        background-color: #e9ecef
    }

    .custom-select::-ms-expand {
        display: none
    }

    .custom-select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #495057
    }

.custom-select-sm {
    height: calc(1.5em + .5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    opacity: 0
}

    .custom-file-input:focus ~ .custom-file-label {
        border-color: #80bdff;
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
    }

    .custom-file-input:disabled ~ .custom-file-label, .custom-file-input[disabled] ~ .custom-file-label {
        background-color: #e9ecef
    }

    .custom-file-input:lang(en) ~ .custom-file-label::after {
        content: "Browse"
    }

    .custom-file-input ~ .custom-file-label[data-browse]::after {
        content: attr(data-browse)
    }

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

    .custom-file-label::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: block;
        height: calc(1.5em + .75rem);
        padding: .375rem .75rem;
        line-height: 1.5;
        color: #495057;
        content: "Browse";
        background-color: #e9ecef;
        border-left: inherit;
        border-radius: 0 .25rem .25rem 0
    }

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .custom-range:focus {
        outline: 0
    }

        .custom-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
        }

        .custom-range:focus::-moz-range-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
        }

        .custom-range:focus::-ms-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
        }

    .custom-range::-moz-focus-outer {
        border: 0
    }

    .custom-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -.25rem;
        background-color: #007bff;
        border: 0;
        border-radius: 1rem;
        -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        -webkit-appearance: none;
        appearance: none
    }

@media (prefers-reduced-motion:reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .custom-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .2rem;
    margin-left: .2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -ms-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .custom-range::-ms-thumb {
        -ms-transition: none;
        transition: none
    }
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-ms-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-moz-range-track {
    cursor: default
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd
}

.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .custom-control-label::before, .custom-file-label, .custom-select {
        transition: none
    }
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

    .nav-link:focus, .nav-link:hover {
        text-decoration: none
    }

    .nav-link.disabled {
        color: #6c757d;
        pointer-events: none;
        cursor: default
    }

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

    .nav-tabs .nav-item {
        margin-bottom: -1px
    }

    .nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem
    }

        .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
            border-color: #e9ecef #e9ecef #dee2e6
        }

        .nav-tabs .nav-link.disabled {
            color: #6c757d;
            background-color: transparent;
            border-color: transparent
        }

        .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
            color: #495057;
            background-color: #fff;
            border-color: #dee2e6 #dee2e6 #fff
        }

    .nav-tabs .dropdown-menu {
        margin-top: -1px;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

.nav-pills .nav-link {
    border-radius: .25rem
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #007bff
    }

.nav-fill .nav-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem
}

    .navbar .container, .navbar .container-fluid, .navbar .container-lg, .navbar .container-md, .navbar .container-sm, .navbar .container-xl {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

    .navbar-brand:focus, .navbar-brand:hover {
        text-decoration: none
    }

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none
    }

.navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

    .navbar-toggler:focus, .navbar-toggler:hover {
        text-decoration: none
    }

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%
}

@media (max-width:575.98px) {
    .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-xl {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:576px) {
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-sm .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-xl {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-sm .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-sm .navbar-toggler {
            display: none
        }
}

@media (max-width:767.98px) {
    .navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-md, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-xl {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:768px) {
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-md .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-md, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-xl {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-md .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-md .navbar-toggler {
            display: none
        }
}

@media (max-width:991.98px) {
    .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-xl {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-lg .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-lg .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-xl {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-lg .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-lg .navbar-toggler {
            display: none
        }
}

@media (max-width:1199.98px) {
    .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-xl {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .navbar-expand-xl .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-xl {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap
        }

        .navbar-expand-xl .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }

        .navbar-expand-xl .navbar-toggler {
            display: none
        }
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

    .navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-lg, .navbar-expand > .container-md, .navbar-expand > .container-sm, .navbar-expand > .container-xl {
        padding-right: 0;
        padding-left: 0
    }

    .navbar-expand .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

        .navbar-expand .navbar-nav .dropdown-menu {
            position: absolute
        }

        .navbar-expand .navbar-nav .nav-link {
            padding-right: .5rem;
            padding-left: .5rem
        }

    .navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-lg, .navbar-expand > .container-md, .navbar-expand > .container-sm, .navbar-expand > .container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand .navbar-toggler {
        display: none
    }

.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9)
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: rgba(0,0,0,.9)
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.5)
}

    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(0,0,0,.7)
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0,0,0,.3)
    }

    .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
        color: rgba(0,0,0,.9)
    }

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,.5)
}

    .navbar-light .navbar-text a {
        color: rgba(0,0,0,.9)
    }

        .navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
            color: rgba(0,0,0,.9)
        }

.navbar-dark .navbar-brand {
    color: #fff
}

    .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
        color: #fff
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.5)
}

    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255,255,255,.75)
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255,255,255,.25)
    }

    .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
        color: #fff
    }

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255,255,255,.5)
}

    .navbar-dark .navbar-text a {
        color: #fff
    }

        .navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {
            color: #fff
        }

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem
}

    .card > hr {
        margin-right: 0;
        margin-left: 0
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: calc(.25rem - 1px);
            border-top-right-radius: calc(.25rem - 1px)
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: calc(.25rem - 1px);
            border-bottom-left-radius: calc(.25rem - 1px)
        }

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link + .card-link {
    margin-left: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0
    }

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125)
}

    .card-footer:last-child {
        border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
    }

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem
}

.card-img, .card-img-bottom, .card-img-top {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%
}

.card-img, .card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img, .card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-deck .card {
    margin-bottom: 15px
}

@media (min-width:576px) {
    .card-deck {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px
    }

        .card-deck .card {
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px
        }
}

.card-group > .card {
    margin-bottom: 15px
}

@media (min-width:576px) {
    .card-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

        .card-group > .card {
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-bottom: 0
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0
            }

                .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
                    border-top-right-radius: 0
                }

                .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
                    border-bottom-right-radius: 0
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0
            }

                .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
                    border-top-left-radius: 0
                }

                .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
                    border-bottom-left-radius: 0
                }
}

.card-columns .card {
    margin-bottom: .75rem
}

@media (min-width:576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

        .card-columns .card {
            display: inline-block;
            width: 100%
        }
}

.accordion > .card {
    overflow: hidden
}

    .accordion > .card:not(:last-of-type) {
        border-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }

    .accordion > .card:not(:first-of-type) {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

    .accordion > .card > .card-header {
        border-radius: 0;
        margin-bottom: -1px
    }

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem
}

.breadcrumb-item {
    display: -ms-flexbox;
    display: flex
}

    .breadcrumb-item + .breadcrumb-item {
        padding-left: .5rem
    }

        .breadcrumb-item + .breadcrumb-item::before {
            display: inline-block;
            padding-right: .5rem;
            color: #6c757d;
            content: "/"
        }

        .breadcrumb-item + .breadcrumb-item:hover::before {
            text-decoration: underline
        }

        .breadcrumb-item + .breadcrumb-item:hover::before {
            text-decoration: none
        }

    .breadcrumb-item.active {
        color: #6c757d
    }

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

    .page-link:hover {
        z-index: 2;
        color: #0056b3;
        text-decoration: none;
        background-color: #e9ecef;
        border-color: #dee2e6
    }

    .page-link:focus {
        z-index: 3;
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
    }

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .badge {
        transition: none
    }
}

a.badge:focus, a.badge:hover {
    text-decoration: none
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

a.badge-primary:focus, a.badge-primary:hover {
    color: #fff;
    background-color: #0062cc
}

a.badge-primary.focus, a.badge-primary:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

a.badge-secondary:focus, a.badge-secondary:hover {
    color: #fff;
    background-color: #545b62
}

a.badge-secondary.focus, a.badge-secondary:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
}

.badge-success {
    color: #fff;
    background-color: #28a745
}

a.badge-success:focus, a.badge-success:hover {
    color: #fff;
    background-color: #1e7e34
}

a.badge-success.focus, a.badge-success:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
}

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

a.badge-info:focus, a.badge-info:hover {
    color: #fff;
    background-color: #117a8b
}

a.badge-info.focus, a.badge-info:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

.badge-warning {
    color: #212529;
    background-color: #ffc107
}

a.badge-warning:focus, a.badge-warning:hover {
    color: #212529;
    background-color: #d39e00
}

a.badge-warning.focus, a.badge-warning:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
}

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

a.badge-danger:focus, a.badge-danger:hover {
    color: #fff;
    background-color: #bd2130
}

a.badge-danger.focus, a.badge-danger:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

a.badge-light:focus, a.badge-light:hover {
    color: #212529;
    background-color: #dae0e5
}

a.badge-light.focus, a.badge-light:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
}

.badge-dark {
    color: #fff;
    background-color: #343a40
}

a.badge-dark:focus, a.badge-dark:hover {
    color: #fff;
    background-color: #1d2124
}

a.badge-dark.focus, a.badge-dark:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem
}

@media (min-width:576px) {
    .jumbotron {
        padding: 4rem 2rem
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

    .alert-dismissible .close {
        position: absolute;
        top: 0;
        right: 0;
        padding: .75rem 1.25rem;
        color: inherit
    }

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff
}

    .alert-primary hr {
        border-top-color: #9fcdff
    }

    .alert-primary .alert-link {
        color: #002752
    }

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db
}

    .alert-secondary hr {
        border-top-color: #c8cbcf
    }

    .alert-secondary .alert-link {
        color: #202326
    }

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb
}

    .alert-success hr {
        border-top-color: #b1dfbb
    }

    .alert-success .alert-link {
        color: #0b2e13
    }

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb
}

    .alert-info hr {
        border-top-color: #abdde5
    }

    .alert-info .alert-link {
        color: #062c33
    }

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}

    .alert-warning hr {
        border-top-color: #ffe8a1
    }

    .alert-warning .alert-link {
        color: #533f03
    }

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}

    .alert-danger hr {
        border-top-color: #f1b0b7
    }

    .alert-danger .alert-link {
        color: #491217
    }

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe
}

    .alert-light hr {
        border-top-color: #ececf6
    }

    .alert-light .alert-link {
        color: #686868
    }

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca
}

    .alert-dark hr {
        border-top-color: #b9bbbe
    }

    .alert-dark .alert-link {
        color: #040505
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none
    }
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start
}

.media-body {
    -ms-flex: 1;
    flex: 1
}

.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

    .list-group-item-action:focus, .list-group-item-action:hover {
        z-index: 1;
        color: #495057;
        text-decoration: none;
        background-color: #f8f9fa
    }

    .list-group-item-action:active {
        color: #212529;
        background-color: #e9ecef
    }

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

    .list-group-item:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit
    }

    .list-group-item:last-child {
        border-bottom-right-radius: inherit;
        border-bottom-left-radius: inherit
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: #6c757d;
        pointer-events: none;
        background-color: #fff
    }

    .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #007bff;
        border-color: #007bff
    }

    .list-group-item + .list-group-item {
        border-top-width: 0
    }

        .list-group-item + .list-group-item.active {
            margin-top: -1px;
            border-top-width: 1px
        }

.list-group-horizontal {
    -ms-flex-direction: row;
    flex-direction: row
}

    .list-group-horizontal > .list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal > .list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal > .list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

        .list-group-horizontal > .list-group-item + .list-group-item.active {
            margin-left: -1px;
            border-left-width: 1px
        }

@media (min-width:576px) {
    .list-group-horizontal-sm {
        -ms-flex-direction: row;
        flex-direction: row
    }

        .list-group-horizontal-sm > .list-group-item:first-child {
            border-bottom-left-radius: .25rem;
            border-top-right-radius: 0
        }

        .list-group-horizontal-sm > .list-group-item:last-child {
            border-top-right-radius: .25rem;
            border-bottom-left-radius: 0
        }

        .list-group-horizontal-sm > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-sm > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-left-width: 0
        }

            .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
                margin-left: -1px;
                border-left-width: 1px
            }
}

@media (min-width:768px) {
    .list-group-horizontal-md {
        -ms-flex-direction: row;
        flex-direction: row
    }

        .list-group-horizontal-md > .list-group-item:first-child {
            border-bottom-left-radius: .25rem;
            border-top-right-radius: 0
        }

        .list-group-horizontal-md > .list-group-item:last-child {
            border-top-right-radius: .25rem;
            border-bottom-left-radius: 0
        }

        .list-group-horizontal-md > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-md > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-left-width: 0
        }

            .list-group-horizontal-md > .list-group-item + .list-group-item.active {
                margin-left: -1px;
                border-left-width: 1px
            }
}

@media (min-width:992px) {
    .list-group-horizontal-lg {
        -ms-flex-direction: row;
        flex-direction: row
    }

        .list-group-horizontal-lg > .list-group-item:first-child {
            border-bottom-left-radius: .25rem;
            border-top-right-radius: 0
        }

        .list-group-horizontal-lg > .list-group-item:last-child {
            border-top-right-radius: .25rem;
            border-bottom-left-radius: 0
        }

        .list-group-horizontal-lg > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-lg > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-left-width: 0
        }

            .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
                margin-left: -1px;
                border-left-width: 1px
            }
}

@media (min-width:1200px) {
    .list-group-horizontal-xl {
        -ms-flex-direction: row;
        flex-direction: row
    }

        .list-group-horizontal-xl > .list-group-item:first-child {
            border-bottom-left-radius: .25rem;
            border-top-right-radius: 0
        }

        .list-group-horizontal-xl > .list-group-item:last-child {
            border-top-right-radius: .25rem;
            border-bottom-left-radius: 0
        }

        .list-group-horizontal-xl > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-xl > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-left-width: 0
        }

            .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
                margin-left: -1px;
                border-left-width: 1px
            }
}

.list-group-flush {
    border-radius: 0
}

    .list-group-flush > .list-group-item {
        border-width: 0 0 1px
    }

        .list-group-flush > .list-group-item:last-child {
            border-bottom-width: 0
        }

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff
}

    .list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {
        color: #004085;
        background-color: #9fcdff
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #004085;
        border-color: #004085
    }

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db
}

    .list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover {
        color: #383d41;
        background-color: #c8cbcf
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #383d41;
        border-color: #383d41
    }

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb
}

    .list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover {
        color: #155724;
        background-color: #b1dfbb
    }

    .list-group-item-success.list-group-item-action.active {
        color: #fff;
        background-color: #155724;
        border-color: #155724
    }

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb
}

    .list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover {
        color: #0c5460;
        background-color: #abdde5
    }

    .list-group-item-info.list-group-item-action.active {
        color: #fff;
        background-color: #0c5460;
        border-color: #0c5460
    }

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba
}

    .list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover {
        color: #856404;
        background-color: #ffe8a1
    }

    .list-group-item-warning.list-group-item-action.active {
        color: #fff;
        background-color: #856404;
        border-color: #856404
    }

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb
}

    .list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover {
        color: #721c24;
        background-color: #f1b0b7
    }

    .list-group-item-danger.list-group-item-action.active {
        color: #fff;
        background-color: #721c24;
        border-color: #721c24
    }

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe
}

    .list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover {
        color: #818182;
        background-color: #ececf6
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #818182;
        border-color: #818182
    }

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca
}

    .list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover {
        color: #1b1e21;
        background-color: #b9bbbe
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: #1b1e21;
        border-color: #1b1e21
    }

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

    .close:hover {
        color: #000;
        text-decoration: none
    }

    .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
        opacity: .75
    }

button.close {
    padding: 0;
    background-color: transparent;
    border: 0
}

a.close.disabled {
    pointer-events: none
}

.toast {
    max-width: 350px;
    overflow: hidden;
    font-size: .875rem;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-radius: .25rem
}

    .toast:not(:last-child) {
        margin-bottom: .75rem
    }

    .toast.showing {
        opacity: 1
    }

    .toast.show {
        display: block;
        opacity: 1
    }

    .toast.hide {
        display: none
    }

.toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05)
}

.toast-body {
    padding: .75rem
}

.modal-open {
    overflow: hidden
}

    .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto
    }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 1rem);
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

    .modal-dialog-centered::before {
        display: block;
        height: calc(100vh - 1rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        content: ""
    }

    .modal-dialog-centered.modal-dialog-scrollable {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%
    }

        .modal-dialog-centered.modal-dialog-scrollable .modal-content {
            max-height: none
        }

        .modal-dialog-centered.modal-dialog-scrollable::before {
            content: none
        }

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .5
    }

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

    .modal-header .close {
        padding: 1rem 1rem;
        margin: -1rem -1rem -1rem auto
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

    .modal-footer > * {
        margin: .25rem
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

        .modal-dialog-scrollable .modal-content {
            max-height: calc(100vh - 3.5rem)
        }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

        .modal-dialog-centered::before {
            height: calc(100vh - 3.5rem);
            height: -webkit-min-content;
            height: -moz-min-content;
            height: min-content
        }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg, .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

    .tooltip.show {
        opacity: .9
    }

    .tooltip .arrow {
        position: absolute;
        display: block;
        width: .8rem;
        height: .4rem
    }

        .tooltip .arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
    padding: .4rem 0
}

    .bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow {
        bottom: 0
    }

        .bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
            top: 0;
            border-width: .4rem .4rem 0;
            border-top-color: #000
        }

.bs-tooltip-auto[x-placement^=right], .bs-tooltip-right {
    padding: 0 .4rem
}

    .bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow {
        left: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
            right: 0;
            border-width: .4rem .4rem .4rem 0;
            border-right-color: #000
        }

.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom {
    padding: .4rem 0
}

    .bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-bottom .arrow {
        top: 0
    }

        .bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
            bottom: 0;
            border-width: 0 .4rem .4rem;
            border-bottom-color: #000
        }

.bs-tooltip-auto[x-placement^=left], .bs-tooltip-left {
    padding: 0 .4rem
}

    .bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow {
        right: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
            left: 0;
            border-width: .4rem 0 .4rem .4rem;
            border-left-color: #000
        }

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem
}

    .popover .arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: .5rem;
        margin: 0 .3rem
    }

        .popover .arrow::after, .popover .arrow::before {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-popover-auto[x-placement^=top], .bs-popover-top {
    margin-bottom: .5rem
}

    .bs-popover-auto[x-placement^=top] > .arrow, .bs-popover-top > .arrow {
        bottom: calc(-.5rem - 1px)
    }

        .bs-popover-auto[x-placement^=top] > .arrow::before, .bs-popover-top > .arrow::before {
            bottom: 0;
            border-width: .5rem .5rem 0;
            border-top-color: rgba(0,0,0,.25)
        }

        .bs-popover-auto[x-placement^=top] > .arrow::after, .bs-popover-top > .arrow::after {
            bottom: 1px;
            border-width: .5rem .5rem 0;
            border-top-color: #fff
        }

.bs-popover-auto[x-placement^=right], .bs-popover-right {
    margin-left: .5rem
}

    .bs-popover-auto[x-placement^=right] > .arrow, .bs-popover-right > .arrow {
        left: calc(-.5rem - 1px);
        width: .5rem;
        height: 1rem;
        margin: .3rem 0
    }

        .bs-popover-auto[x-placement^=right] > .arrow::before, .bs-popover-right > .arrow::before {
            left: 0;
            border-width: .5rem .5rem .5rem 0;
            border-right-color: rgba(0,0,0,.25)
        }

        .bs-popover-auto[x-placement^=right] > .arrow::after, .bs-popover-right > .arrow::after {
            left: 1px;
            border-width: .5rem .5rem .5rem 0;
            border-right-color: #fff
        }

.bs-popover-auto[x-placement^=bottom], .bs-popover-bottom {
    margin-top: .5rem
}

    .bs-popover-auto[x-placement^=bottom] > .arrow, .bs-popover-bottom > .arrow {
        top: calc(-.5rem - 1px)
    }

        .bs-popover-auto[x-placement^=bottom] > .arrow::before, .bs-popover-bottom > .arrow::before {
            top: 0;
            border-width: 0 .5rem .5rem .5rem;
            border-bottom-color: rgba(0,0,0,.25)
        }

        .bs-popover-auto[x-placement^=bottom] > .arrow::after, .bs-popover-bottom > .arrow::after {
            top: 1px;
            border-width: 0 .5rem .5rem .5rem;
            border-bottom-color: #fff
        }

    .bs-popover-auto[x-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 1rem;
        margin-left: -.5rem;
        content: "";
        border-bottom: 1px solid #f7f7f7
    }

.bs-popover-auto[x-placement^=left], .bs-popover-left {
    margin-right: .5rem
}

    .bs-popover-auto[x-placement^=left] > .arrow, .bs-popover-left > .arrow {
        right: calc(-.5rem - 1px);
        width: .5rem;
        height: 1rem;
        margin: .3rem 0
    }

        .bs-popover-auto[x-placement^=left] > .arrow::before, .bs-popover-left > .arrow::before {
            right: 0;
            border-width: .5rem 0 .5rem .5rem;
            border-left-color: rgba(0,0,0,.25)
        }

        .bs-popover-auto[x-placement^=left] > .arrow::after, .bs-popover-left > .arrow::after {
            right: 1px;
            border-width: .5rem 0 .5rem .5rem;
            border-left-color: #fff
        }

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

    .popover-header:empty {
        display: none
    }

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.carousel {
    position: relative
}

    .carousel.pointer-event {
        -ms-touch-action: pan-y;
        touch-action: pan-y
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: ""
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: block
}

    .active.carousel-item-right, .carousel-item-next:not(.carousel-item-left) {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    .active.carousel-item-left, .carousel-item-prev:not(.carousel-item-right) {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none
}

    .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {
        z-index: 1;
        opacity: 1
    }

.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
        transition: none
    }
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next, .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

    .carousel-indicators li {
        box-sizing: content-box;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity .6s ease
    }

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators li {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
    animation: spinner-grow .75s linear infinite
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
    background-color: #545b62 !important
}

.bg-success {
    background-color: #28a745 !important
}

a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover {
    background-color: #1e7e34 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #28a745 !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    border-radius: .2rem !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-lg {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

    .embed-responsive::before {
        display: block;
        content: ""
    }

    .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width:576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width:576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width:768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width:992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width:1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.m-0 {
    margin: 0 !important
}

.mt-0, .my-0 {
    margin-top: 0 !important
}

.mr-0, .mx-0 {
    margin-right: 0 !important
}

.mb-0, .my-0 {
    margin-bottom: 0 !important
}

.ml-0, .mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1, .my-1 {
    margin-top: .25rem !important
}

.mr-1, .mx-1 {
    margin-right: .25rem !important
}

.mb-1, .my-1 {
    margin-bottom: .25rem !important
}

.ml-1, .mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2, .my-2 {
    margin-top: .5rem !important
}

.mr-2, .mx-2 {
    margin-right: .5rem !important
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important
}

.ml-2, .mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3, .my-3 {
    margin-top: 1rem !important
}

.mr-3, .mx-3 {
    margin-right: 1rem !important
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important
}

.ml-3, .mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5, .my-5 {
    margin-top: 3rem !important
}

.mr-5, .mx-5 {
    margin-right: 3rem !important
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important
}

.ml-5, .mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0, .py-0 {
    padding-top: 0 !important
}

.pr-0, .px-0 {
    padding-right: 0 !important
}

.pb-0, .py-0 {
    padding-bottom: 0 !important
}

.pl-0, .px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1, .py-1 {
    padding-top: .25rem !important
}

.pr-1, .px-1 {
    padding-right: .25rem !important
}

.pb-1, .py-1 {
    padding-bottom: .25rem !important
}

.pl-1, .px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2, .py-2 {
    padding-top: .5rem !important
}

.pr-2, .px-2 {
    padding-right: .5rem !important
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important
}

.pl-2, .px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3, .py-3 {
    padding-top: 1rem !important
}

.pr-3, .px-3 {
    padding-right: 1rem !important
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important
}

.pl-3, .px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4, .px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5, .py-5 {
    padding-top: 3rem !important
}

.pr-5, .px-5 {
    padding-right: 3rem !important
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important
}

.pl-5, .px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1, .my-n1 {
    margin-top: -.25rem !important
}

.mr-n1, .mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1, .my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1, .mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2, .my-n2 {
    margin-top: -.5rem !important
}

.mr-n2, .mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2, .my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2, .mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3, .my-n3 {
    margin-top: -1rem !important
}

.mr-n3, .mx-n3 {
    margin-right: -1rem !important
}

.mb-n3, .my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3, .mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4, .my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4, .mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4, .my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4, .mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5, .my-n5 {
    margin-top: -3rem !important
}

.mr-n5, .mx-n5 {
    margin-right: -3rem !important
}

.mb-n5, .my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5, .mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto, .my-auto {
    margin-top: auto !important
}

.mr-auto, .mx-auto {
    margin-right: auto !important
}

.mb-auto, .my-auto {
    margin-bottom: auto !important
}

.ml-auto, .mx-auto {
    margin-left: auto !important
}

@media (min-width:576px) {
    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0, .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0, .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0, .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0, .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1, .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1, .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1, .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1, .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2, .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2, .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2, .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2, .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3, .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3, .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3, .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3, .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4, .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4, .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4, .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4, .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5, .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5, .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5, .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5, .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0, .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0, .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0, .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0, .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1, .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1, .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1, .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1, .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2, .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2, .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2, .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2, .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3, .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3, .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3, .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3, .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4, .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4, .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4, .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4, .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5, .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5, .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5, .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5, .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1, .my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1, .mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1, .my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1, .mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2, .my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2, .mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2, .my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2, .mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3, .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3, .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3, .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3, .mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4, .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4, .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4, .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4, .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5, .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5, .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5, .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5, .mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto, .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto, .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto, .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto, .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width:768px) {
    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0, .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0, .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0, .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0, .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1, .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1, .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1, .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1, .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2, .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2, .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2, .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2, .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3, .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3, .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3, .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3, .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4, .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4, .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4, .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4, .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5, .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5, .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5, .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5, .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0, .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0, .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0, .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0, .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1, .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1, .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1, .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1, .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2, .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2, .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2, .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2, .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3, .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3, .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3, .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3, .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4, .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4, .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4, .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4, .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5, .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5, .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5, .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5, .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1, .my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1, .mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1, .my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1, .mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2, .my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2, .mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2, .my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2, .mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3, .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3, .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3, .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3, .mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4, .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4, .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4, .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4, .mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5, .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5, .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5, .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5, .mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto, .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto, .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto, .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width:992px) {
    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0, .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0, .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0, .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0, .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1, .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1, .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1, .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1, .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2, .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2, .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2, .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2, .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3, .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3, .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3, .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3, .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4, .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4, .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4, .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4, .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5, .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5, .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5, .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5, .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0, .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0, .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0, .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0, .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1, .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1, .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1, .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1, .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2, .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2, .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2, .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2, .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3, .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3, .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3, .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3, .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4, .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4, .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4, .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4, .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5, .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5, .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5, .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5, .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1, .my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1, .mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1, .my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1, .mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2, .my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2, .mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2, .my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2, .mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3, .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3, .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3, .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3, .mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4, .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4, .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4, .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4, .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5, .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5, .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5, .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5, .mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto, .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto, .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto, .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto, .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width:1200px) {
    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0, .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0, .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0, .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0, .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1, .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1, .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1, .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1, .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2, .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2, .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2, .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2, .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3, .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3, .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3, .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3, .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4, .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4, .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4, .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4, .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5, .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5, .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5, .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5, .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0, .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0, .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0, .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0, .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1, .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1, .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1, .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1, .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2, .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2, .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2, .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2, .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3, .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3, .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3, .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3, .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4, .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4, .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4, .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4, .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5, .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5, .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1, .my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1, .mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1, .my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1, .mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2, .my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2, .mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2, .my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2, .mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3, .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3, .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3, .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3, .mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4, .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4, .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4, .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4, .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5, .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5, .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5, .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5, .mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto, .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto, .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto, .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto, .mx-xl-auto {
        margin-left: auto !important
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0)
}

.text-monospace {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width:576px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:focus, a.text-primary:hover {
    color: #0056b3 !important
}

.text-secondary {
    color: #6c757d !important
}

a.text-secondary:focus, a.text-secondary:hover {
    color: #494f54 !important
}

.text-success {
    color: #28a745 !important
}

a.text-success:focus, a.text-success:hover {
    color: #19692c !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:focus, a.text-info:hover {
    color: #0f6674 !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:focus, a.text-warning:hover {
    color: #ba8b00 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:focus, a.text-danger:hover {
    color: #a71d2a !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:focus, a.text-light:hover {
    color: #cbd3da !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:focus, a.text-dark:hover {
    color: #121416 !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media print {
    *, ::after, ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote, pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img, tr {
        page-break-inside: avoid
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

        .table td, .table th {
            background-color: #fff !important
        }

    .table-bordered td, .table-bordered th {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

        .table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th {
            border-color: #dee2e6
        }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6
    }
}
/*# sourceMappingURL=bootstrap.min.css.map */
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxFIzIFKw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxMIzIFKw.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxEIzIFKw.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxLIzIFKw.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxHIzIFKw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxGIzIFKw.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxIIzI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCRc4EsA.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfABc4EsA.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCBc4EsA.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBxc4EsA.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCxc4EsA.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfChc4EsA.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: local('Poppins ExtraLight'), local('Poppins-ExtraLight'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: local('Poppins ExtraLight'), local('Poppins-ExtraLight'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: local('Poppins ExtraLight'), local('Poppins-ExtraLight'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v12/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v12/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v12/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Poppins ExtraBold'), local('Poppins-ExtraBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Poppins ExtraBold'), local('Poppins-ExtraBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Poppins ExtraBold'), local('Poppins-ExtraBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Poppins Black'), local('Poppins-Black'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLBT5Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Poppins Black'), local('Poppins-Black'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Poppins Black'), local('Poppins-Black'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*!
 * Font Awesome Free 5.7.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

    .fa-ul > li {
        position: relative
    }

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    animation: fa-spin 1s infinite steps(8)
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scaleX(-1)
}

.fa-flip-vertical {
    transform: scaleY(-1)
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1)
}

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em
}

.fa-stack-1x, .fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: "\f26e"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-acquisitions-incorporated:before {
    content: "\f6af"
}

.fa-ad:before {
    content: "\f641"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adobe:before {
    content: "\f778"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-air-freshener:before {
    content: "\f5d0"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-alipay:before {
    content: "\f642"
}

.fa-allergies:before {
    content: "\f461"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angry:before {
    content: "\f556"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-ankh:before {
    content: "\f644"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-alt:before {
    content: "\f5d1"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-archway:before {
    content: "\f557"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-artstation:before {
    content: "\f77a"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-atlas:before {
    content: "\f558"
}

.fa-atlassian:before {
    content: "\f77b"
}

.fa-atom:before {
    content: "\f5d2"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-award:before {
    content: "\f559"
}

.fa-aws:before {
    content: "\f375"
}

.fa-baby:before {
    content: "\f77c"
}

.fa-baby-carriage:before {
    content: "\f77d"
}

.fa-backspace:before {
    content: "\f55a"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-bacon:before {
    content: "\f7e5"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bezier-curve:before {
    content: "\f55b"
}

.fa-bible:before {
    content: "\f647"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-biohazard:before {
    content: "\f780"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blender:before {
    content: "\f517"
}

.fa-blender-phone:before {
    content: "\f6b6"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blog:before {
    content: "\f781"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-bone:before {
    content: "\f5d7"
}

.fa-bong:before {
    content: "\f55c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-book-dead:before {
    content: "\f6b7"
}

.fa-book-medical:before {
    content: "\f7e6"
}

.fa-book-open:before {
    content: "\f518"
}

.fa-book-reader:before {
    content: "\f5da"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-box:before {
    content: "\f466"
}

.fa-box-open:before {
    content: "\f49e"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-brain:before {
    content: "\f5dc"
}

.fa-bread-slice:before {
    content: "\f7ec"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-briefcase-medical:before {
    content: "\f469"
}

.fa-broadcast-tower:before {
    content: "\f519"
}

.fa-broom:before {
    content: "\f51a"
}

.fa-brush:before {
    content: "\f55d"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-burn:before {
    content: "\f46a"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-bus-alt:before {
    content: "\f55e"
}

.fa-business-time:before {
    content: "\f64a"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-day:before {
    content: "\f783"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-calendar-week:before {
    content: "\f784"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-campground:before {
    content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
    content: "\f785"
}

.fa-candy-cane:before {
    content: "\f786"
}

.fa-cannabis:before {
    content: "\f55f"
}

.fa-capsules:before {
    content: "\f46b"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-car-alt:before {
    content: "\f5de"
}

.fa-car-battery:before {
    content: "\f5df"
}

.fa-car-crash:before {
    content: "\f5e1"
}

.fa-car-side:before {
    content: "\f5e4"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-carrot:before {
    content: "\f787"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cash-register:before {
    content: "\f788"
}

.fa-cat:before {
    content: "\f6be"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-centos:before {
    content: "\f789"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chair:before {
    content: "\f6c0"
}

.fa-chalkboard:before {
    content: "\f51b"
}

.fa-chalkboard-teacher:before {
    content: "\f51c"
}

.fa-charging-station:before {
    content: "\f5e7"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-double:before {
    content: "\f560"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-cheese:before {
    content: "\f7ef"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-church:before {
    content: "\f51d"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-city:before {
    content: "\f64f"
}

.fa-clinic-medical:before {
    content: "\f7f2"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-meatball:before {
    content: "\f73b"
}

.fa-cloud-moon:before {
    content: "\f6c3"
}

.fa-cloud-moon-rain:before {
    content: "\f73c"
}

.fa-cloud-rain:before {
    content: "\f73d"
}

.fa-cloud-showers-heavy:before {
    content: "\f740"
}

.fa-cloud-sun:before {
    content: "\f6c4"
}

.fa-cloud-sun-rain:before {
    content: "\f743"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-cocktail:before {
    content: "\f561"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-coins:before {
    content: "\f51e"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-dollar:before {
    content: "\f651"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comment-medical:before {
    content: "\f7f5"
}

.fa-comment-slash:before {
    content: "\f4b3"
}

.fa-comments:before {
    content: "\f086"
}

.fa-comments-dollar:before {
    content: "\f653"
}

.fa-compact-disc:before {
    content: "\f51f"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compress:before {
    content: "\f066"
}

.fa-compress-arrows-alt:before {
    content: "\f78c"
}

.fa-concierge-bell:before {
    content: "\f562"
}

.fa-confluence:before {
    content: "\f78d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-cookie:before {
    content: "\f563"
}

.fa-cookie-bite:before {
    content: "\f564"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-couch:before {
    content: "\f4b8"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-creative-commons-by:before {
    content: "\f4e7"
}

.fa-creative-commons-nc:before {
    content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"
}

.fa-creative-commons-nd:before {
    content: "\f4eb"
}

.fa-creative-commons-pd:before {
    content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"
}

.fa-creative-commons-remix:before {
    content: "\f4ee"
}

.fa-creative-commons-sa:before {
    content: "\f4ef"
}

.fa-creative-commons-sampling:before {
    content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"
}

.fa-creative-commons-share:before {
    content: "\f4f2"
}

.fa-creative-commons-zero:before {
    content: "\f4f3"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-critical-role:before {
    content: "\f6c9"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crop-alt:before {
    content: "\f565"
}

.fa-cross:before {
    content: "\f654"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-crow:before {
    content: "\f520"
}

.fa-crown:before {
    content: "\f521"
}

.fa-crutch:before {
    content: "\f7f7"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-d-and-d-beyond:before {
    content: "\f6ca"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-democrat:before {
    content: "\f747"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-dev:before {
    content: "\f6cc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-dharmachakra:before {
    content: "\f655"
}

.fa-dhl:before {
    content: "\f790"
}

.fa-diagnoses:before {
    content: "\f470"
}

.fa-diaspora:before {
    content: "\f791"
}

.fa-dice:before {
    content: "\f522"
}

.fa-dice-d20:before {
    content: "\f6cf"
}

.fa-dice-d6:before {
    content: "\f6d1"
}

.fa-dice-five:before {
    content: "\f523"
}

.fa-dice-four:before {
    content: "\f524"
}

.fa-dice-one:before {
    content: "\f525"
}

.fa-dice-six:before {
    content: "\f526"
}

.fa-dice-three:before {
    content: "\f527"
}

.fa-dice-two:before {
    content: "\f528"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-digital-tachograph:before {
    content: "\f566"
}

.fa-directions:before {
    content: "\f5eb"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-divide:before {
    content: "\f529"
}

.fa-dizzy:before {
    content: "\f567"
}

.fa-dna:before {
    content: "\f471"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dog:before {
    content: "\f6d3"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-donate:before {
    content: "\f4b9"
}

.fa-door-closed:before {
    content: "\f52a"
}

.fa-door-open:before {
    content: "\f52b"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-dove:before {
    content: "\f4ba"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-drafting-compass:before {
    content: "\f568"
}

.fa-dragon:before {
    content: "\f6d5"
}

.fa-draw-polygon:before {
    content: "\f5ee"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drum:before {
    content: "\f569"
}

.fa-drum-steelpan:before {
    content: "\f56a"
}

.fa-drumstick-bite:before {
    content: "\f6d7"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dumbbell:before {
    content: "\f44b"
}

.fa-dumpster:before {
    content: "\f793"
}

.fa-dumpster-fire:before {
    content: "\f794"
}

.fa-dungeon:before {
    content: "\f6d9"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-ebay:before {
    content: "\f4f4"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edit:before {
    content: "\f044"
}

.fa-egg:before {
    content: "\f7fb"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ello:before {
    content: "\f5f1"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-text:before {
    content: "\f658"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-equals:before {
    content: "\f52c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-ethernet:before {
    content: "\f796"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fantasy-flight-games:before {
    content: "\f6dc"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-feather:before {
    content: "\f52d"
}

.fa-feather-alt:before {
    content: "\f56b"
}

.fa-fedex:before {
    content: "\f797"
}

.fa-fedora:before {
    content: "\f798"
}

.fa-female:before {
    content: "\f182"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-figma:before {
    content: "\f799"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-contract:before {
    content: "\f56c"
}

.fa-file-csv:before {
    content: "\f6dd"
}

.fa-file-download:before {
    content: "\f56d"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-export:before {
    content: "\f56e"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-import:before {
    content: "\f56f"
}

.fa-file-invoice:before {
    content: "\f570"
}

.fa-file-invoice-dollar:before {
    content: "\f571"
}

.fa-file-medical:before {
    content: "\f477"
}

.fa-file-medical-alt:before {
    content: "\f478"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-prescription:before {
    content: "\f572"
}

.fa-file-signature:before {
    content: "\f573"
}

.fa-file-upload:before {
    content: "\f574"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-fill:before {
    content: "\f575"
}

.fa-fill-drip:before {
    content: "\f576"
}

.fa-film:before {
    content: "\f008"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fingerprint:before {
    content: "\f577"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-alt:before {
    content: "\f7e4"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-first-order-alt:before {
    content: "\f50a"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-fish:before {
    content: "\f578"
}

.fa-fist-raised:before {
    content: "\f6de"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flag-usa:before {
    content: "\f74d"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-flushed:before {
    content: "\f579"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-minus:before {
    content: "\f65d"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-folder-plus:before {
    content: "\f65e"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frog:before {
    content: "\f52e"
}

.fa-frown:before {
    content: "\f119"
}

.fa-frown-open:before {
    content: "\f57a"
}

.fa-fulcrum:before {
    content: "\f50b"
}

.fa-funnel-dollar:before {
    content: "\f662"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-galactic-republic:before {
    content: "\f50c"
}

.fa-galactic-senate:before {
    content: "\f50d"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gas-pump:before {
    content: "\f52f"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-ghost:before {
    content: "\f6e2"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-gifts:before {
    content: "\f79c"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-cheers:before {
    content: "\f79f"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glass-martini-alt:before {
    content: "\f57b"
}

.fa-glass-whiskey:before {
    content: "\f7a0"
}

.fa-glasses:before {
    content: "\f530"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-globe-africa:before {
    content: "\f57c"
}

.fa-globe-americas:before {
    content: "\f57d"
}

.fa-globe-asia:before {
    content: "\f57e"
}

.fa-globe-europe:before {
    content: "\f7a2"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-gopuram:before {
    content: "\f664"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-greater-than:before {
    content: "\f531"
}

.fa-greater-than-equal:before {
    content: "\f532"
}

.fa-grimace:before {
    content: "\f57f"
}

.fa-grin:before {
    content: "\f580"
}

.fa-grin-alt:before {
    content: "\f581"
}

.fa-grin-beam:before {
    content: "\f582"
}

.fa-grin-beam-sweat:before {
    content: "\f583"
}

.fa-grin-hearts:before {
    content: "\f584"
}

.fa-grin-squint:before {
    content: "\f585"
}

.fa-grin-squint-tears:before {
    content: "\f586"
}

.fa-grin-stars:before {
    content: "\f587"
}

.fa-grin-tears:before {
    content: "\f588"
}

.fa-grin-tongue:before {
    content: "\f589"
}

.fa-grin-tongue-squint:before {
    content: "\f58a"
}

.fa-grin-tongue-wink:before {
    content: "\f58b"
}

.fa-grin-wink:before {
    content: "\f58c"
}

.fa-grip-horizontal:before {
    content: "\f58d"
}

.fa-grip-lines:before {
    content: "\f7a4"
}

.fa-grip-lines-vertical:before {
    content: "\f7a5"
}

.fa-grip-vertical:before {
    content: "\f58e"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-guitar:before {
    content: "\f7a6"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hackerrank:before {
    content: "\f5f7"
}

.fa-hamburger:before {
    content: "\f805"
}

.fa-hammer:before {
    content: "\f6e3"
}

.fa-hamsa:before {
    content: "\f665"
}

.fa-hand-holding:before {
    content: "\f4bd"
}

.fa-hand-holding-heart:before {
    content: "\f4be"
}

.fa-hand-holding-usd:before {
    content: "\f4c0"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-middle-finger:before {
    content: "\f806"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-hands:before {
    content: "\f4c2"
}

.fa-hands-helping:before {
    content: "\f4c4"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-hanukiah:before {
    content: "\f6e6"
}

.fa-hard-hat:before {
    content: "\f807"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-hat-wizard:before {
    content: "\f6e8"
}

.fa-haykal:before {
    content: "\f666"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-headphones-alt:before {
    content: "\f58f"
}

.fa-headset:before {
    content: "\f590"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heart-broken:before {
    content: "\f7a9"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-helicopter:before {
    content: "\f533"
}

.fa-highlighter:before {
    content: "\f591"
}

.fa-hiking:before {
    content: "\f6ec"
}

.fa-hippo:before {
    content: "\f6ed"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-holly-berry:before {
    content: "\f7aa"
}

.fa-home:before {
    content: "\f015"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hornbill:before {
    content: "\f592"
}

.fa-horse:before {
    content: "\f6f0"
}

.fa-horse-head:before {
    content: "\f7ab"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-alt:before {
    content: "\f47d"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hot-tub:before {
    content: "\f593"
}

.fa-hotdog:before {
    content: "\f80f"
}

.fa-hotel:before {
    content: "\f594"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-house-damage:before {
    content: "\f6f1"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-hryvnia:before {
    content: "\f6f2"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-ice-cream:before {
    content: "\f810"
}

.fa-icicles:before {
    content: "\f7ad"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-igloo:before {
    content: "\f7ae"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-infinity:before {
    content: "\f534"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-intercom:before {
    content: "\f7af"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-invision:before {
    content: "\f7b0"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-java:before {
    content: "\f4e4"
}

.fa-jedi:before {
    content: "\f669"
}

.fa-jedi-order:before {
    content: "\f50e"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-jira:before {
    content: "\f7b1"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joint:before {
    content: "\f595"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-journal-whills:before {
    content: "\f66a"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-kaaba:before {
    content: "\f66b"
}

.fa-kaggle:before {
    content: "\f5fa"
}

.fa-key:before {
    content: "\f084"
}

.fa-keybase:before {
    content: "\f4f5"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-khanda:before {
    content: "\f66d"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-kiss:before {
    content: "\f596"
}

.fa-kiss-beam:before {
    content: "\f597"
}

.fa-kiss-wink-heart:before {
    content: "\f598"
}

.fa-kiwi-bird:before {
    content: "\f535"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-landmark:before {
    content: "\f66f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laptop-code:before {
    content: "\f5fc"
}

.fa-laptop-medical:before {
    content: "\f812"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-laugh:before {
    content: "\f599"
}

.fa-laugh-beam:before {
    content: "\f59a"
}

.fa-laugh-squint:before {
    content: "\f59b"
}

.fa-laugh-wink:before {
    content: "\f59c"
}

.fa-layer-group:before {
    content: "\f5fd"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-less-than-equal:before {
    content: "\f537"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-luggage-cart:before {
    content: "\f59d"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-mail-bulk:before {
    content: "\f674"
}

.fa-mailchimp:before {
    content: "\f59e"
}

.fa-male:before {
    content: "\f183"
}

.fa-mandalorian:before {
    content: "\f50f"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marked:before {
    content: "\f59f"
}

.fa-map-marked-alt:before {
    content: "\f5a0"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-markdown:before {
    content: "\f60f"
}

.fa-marker:before {
    content: "\f5a1"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mask:before {
    content: "\f6fa"
}

.fa-mastodon:before {
    content: "\f4f6"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-medal:before {
    content: "\f5a2"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-megaport:before {
    content: "\f5a3"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-meh-blank:before {
    content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
    content: "\f5a5"
}

.fa-memory:before {
    content: "\f538"
}

.fa-mendeley:before {
    content: "\f7b3"
}

.fa-menorah:before {
    content: "\f676"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-meteor:before {
    content: "\f753"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-alt:before {
    content: "\f3c9"
}

.fa-microphone-alt-slash:before {
    content: "\f539"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microscope:before {
    content: "\f610"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mitten:before {
    content: "\f7b5"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill:before {
    content: "\f0d6"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-money-bill-wave:before {
    content: "\f53a"
}

.fa-money-bill-wave-alt:before {
    content: "\f53b"
}

.fa-money-check:before {
    content: "\f53c"
}

.fa-money-check-alt:before {
    content: "\f53d"
}

.fa-monument:before {
    content: "\f5a6"
}

.fa-moon:before {
    content: "\f186"
}

.fa-mortar-pestle:before {
    content: "\f5a7"
}

.fa-mosque:before {
    content: "\f678"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mountain:before {
    content: "\f6fc"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-mug-hot:before {
    content: "\f7b6"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neos:before {
    content: "\f612"
}

.fa-network-wired:before {
    content: "\f6ff"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nimblr:before {
    content: "\f5a8"
}

.fa-nintendo-switch:before {
    content: "\f418"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-not-equal:before {
    content: "\f53e"
}

.fa-notes-medical:before {
    content: "\f481"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-oil-can:before {
    content: "\f613"
}

.fa-old-republic:before {
    content: "\f510"
}

.fa-om:before {
    content: "\f679"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-otter:before {
    content: "\f700"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-pager:before {
    content: "\f815"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-paint-roller:before {
    content: "\f5aa"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-parachute-box:before {
    content: "\f4cd"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-parking:before {
    content: "\f540"
}

.fa-passport:before {
    content: "\f5ab"
}

.fa-pastafarianism:before {
    content: "\f67b"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-peace:before {
    content: "\f67c"
}

.fa-pen:before {
    content: "\f304"
}

.fa-pen-alt:before {
    content: "\f305"
}

.fa-pen-fancy:before {
    content: "\f5ac"
}

.fa-pen-nib:before {
    content: "\f5ad"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-pencil-ruler:before {
    content: "\f5ae"
}

.fa-penny-arcade:before {
    content: "\f704"
}

.fa-people-carry:before {
    content: "\f4ce"
}

.fa-pepper-hot:before {
    content: "\f816"
}

.fa-percent:before {
    content: "\f295"
}

.fa-percentage:before {
    content: "\f541"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-person-booth:before {
    content: "\f756"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phoenix-squadron:before {
    content: "\f511"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-slash:before {
    content: "\f3dd"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-php:before {
    content: "\f457"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-hat:before {
    content: "\f4e5"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-piggy-bank:before {
    content: "\f4d3"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-pizza-slice:before {
    content: "\f818"
}

.fa-place-of-worship:before {
    content: "\f67f"
}

.fa-plane:before {
    content: "\f072"
}

.fa-plane-arrival:before {
    content: "\f5af"
}

.fa-plane-departure:before {
    content: "\f5b0"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-poll:before {
    content: "\f681"
}

.fa-poll-h:before {
    content: "\f682"
}

.fa-poo:before {
    content: "\f2fe"
}

.fa-poo-storm:before {
    content: "\f75a"
}

.fa-poop:before {
    content: "\f619"
}

.fa-portrait:before {
    content: "\f3e0"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-pray:before {
    content: "\f683"
}

.fa-praying-hands:before {
    content: "\f684"
}

.fa-prescription:before {
    content: "\f5b1"
}

.fa-prescription-bottle:before {
    content: "\f485"
}

.fa-prescription-bottle-alt:before {
    content: "\f486"
}

.fa-print:before {
    content: "\f02f"
}

.fa-procedures:before {
    content: "\f487"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-project-diagram:before {
    content: "\f542"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-quran:before {
    content: "\f687"
}

.fa-r-project:before {
    content: "\f4f7"
}

.fa-radiation:before {
    content: "\f7b9"
}

.fa-radiation-alt:before {
    content: "\f7ba"
}

.fa-rainbow:before {
    content: "\f75b"
}

.fa-random:before {
    content: "\f074"
}

.fa-raspberry-pi:before {
    content: "\f7bb"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-reacteurope:before {
    content: "\f75d"
}

.fa-readme:before {
    content: "\f4d5"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-receipt:before {
    content: "\f543"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redhat:before {
    content: "\f7bc"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-republican:before {
    content: "\f75e"
}

.fa-researchgate:before {
    content: "\f4f8"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-restroom:before {
    content: "\f7bd"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-rev:before {
    content: "\f5b2"
}

.fa-ribbon:before {
    content: "\f4d6"
}

.fa-ring:before {
    content: "\f70b"
}

.fa-road:before {
    content: "\f018"
}

.fa-robot:before {
    content: "\f544"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-route:before {
    content: "\f4d7"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-ruler:before {
    content: "\f545"
}

.fa-ruler-combined:before {
    content: "\f546"
}

.fa-ruler-horizontal:before {
    content: "\f547"
}

.fa-ruler-vertical:before {
    content: "\f548"
}

.fa-running:before {
    content: "\f70c"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-sad-cry:before {
    content: "\f5b3"
}

.fa-sad-tear:before {
    content: "\f5b4"
}

.fa-safari:before {
    content: "\f267"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-satellite:before {
    content: "\f7bf"
}

.fa-satellite-dish:before {
    content: "\f7c0"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-school:before {
    content: "\f549"
}

.fa-screwdriver:before {
    content: "\f54a"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-scroll:before {
    content: "\f70e"
}

.fa-sd-card:before {
    content: "\f7c2"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-dollar:before {
    content: "\f688"
}

.fa-search-location:before {
    content: "\f689"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-seedling:before {
    content: "\f4d8"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-shapes:before {
    content: "\f61f"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shoe-prints:before {
    content: "\f54b"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shopware:before {
    content: "\f5b5"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-shuttle-van:before {
    content: "\f5b6"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-signature:before {
    content: "\f5b7"
}

.fa-sim-card:before {
    content: "\f7c4"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-sith:before {
    content: "\f512"
}

.fa-skating:before {
    content: "\f7c5"
}

.fa-sketch:before {
    content: "\f7c6"
}

.fa-skiing:before {
    content: "\f7c9"
}

.fa-skiing-nordic:before {
    content: "\f7ca"
}

.fa-skull:before {
    content: "\f54c"
}

.fa-skull-crossbones:before {
    content: "\f714"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-slash:before {
    content: "\f715"
}

.fa-sleigh:before {
    content: "\f7cc"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-smile-beam:before {
    content: "\f5b8"
}

.fa-smile-wink:before {
    content: "\f4da"
}

.fa-smog:before {
    content: "\f75f"
}

.fa-smoking:before {
    content: "\f48d"
}

.fa-smoking-ban:before {
    content: "\f54d"
}

.fa-sms:before {
    content: "\f7cd"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowboarding:before {
    content: "\f7ce"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-snowman:before {
    content: "\f7d0"
}

.fa-snowplow:before {
    content: "\f7d2"
}

.fa-socks:before {
    content: "\f696"
}

.fa-solar-panel:before {
    content: "\f5ba"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-sourcetree:before {
    content: "\f7d3"
}

.fa-spa:before {
    content: "\f5bb"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-spider:before {
    content: "\f717"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-splotch:before {
    content: "\f5bc"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-spray-can:before {
    content: "\f5bd"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-square-root-alt:before {
    content: "\f698"
}

.fa-squarespace:before {
    content: "\f5be"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-stamp:before {
    content: "\f5bf"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-and-crescent:before {
    content: "\f699"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-star-half-alt:before {
    content: "\f5c0"
}

.fa-star-of-david:before {
    content: "\f69a"
}

.fa-star-of-life:before {
    content: "\f621"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-store:before {
    content: "\f54e"
}

.fa-store-alt:before {
    content: "\f54f"
}

.fa-strava:before {
    content: "\f428"
}

.fa-stream:before {
    content: "\f550"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-stroopwafel:before {
    content: "\f551"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-suitcase-rolling:before {
    content: "\f5c1"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-surprise:before {
    content: "\f5c2"
}

.fa-suse:before {
    content: "\f7d6"
}

.fa-swatchbook:before {
    content: "\f5c3"
}

.fa-swimmer:before {
    content: "\f5c4"
}

.fa-swimming-pool:before {
    content: "\f5c5"
}

.fa-synagogue:before {
    content: "\f69b"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tablets:before {
    content: "\f490"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tape:before {
    content: "\f4db"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-teamspeak:before {
    content: "\f4f9"
}

.fa-teeth:before {
    content: "\f62e"
}

.fa-teeth-open:before {
    content: "\f62f"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-temperature-high:before {
    content: "\f769"
}

.fa-temperature-low:before {
    content: "\f76b"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-tenge:before {
    content: "\f7d7"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-the-red-yeti:before {
    content: "\f69d"
}

.fa-theater-masks:before {
    content: "\f630"
}

.fa-themeco:before {
    content: "\f5c6"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-think-peaks:before {
    content: "\f731"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-tint:before {
    content: "\f043"
}

.fa-tint-slash:before {
    content: "\f5c7"
}

.fa-tired:before {
    content: "\f5c8"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-toilet:before {
    content: "\f7d8"
}

.fa-toilet-paper:before {
    content: "\f71e"
}

.fa-toolbox:before {
    content: "\f552"
}

.fa-tools:before {
    content: "\f7d9"
}

.fa-tooth:before {
    content: "\f5c9"
}

.fa-torah:before {
    content: "\f6a0"
}

.fa-torii-gate:before {
    content: "\f6a1"
}

.fa-tractor:before {
    content: "\f722"
}

.fa-trade-federation:before {
    content: "\f513"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-traffic-light:before {
    content: "\f637"
}

.fa-train:before {
    content: "\f238"
}

.fa-tram:before {
    content: "\f7da"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-trash-restore:before {
    content: "\f829"
}

.fa-trash-restore-alt:before {
    content: "\f82a"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-trello:before {
    content: "\f181"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-truck-loading:before {
    content: "\f4de"
}

.fa-truck-monster:before {
    content: "\f63b"
}

.fa-truck-moving:before {
    content: "\f4df"
}

.fa-truck-pickup:before {
    content: "\f63c"
}

.fa-tshirt:before {
    content: "\f553"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-ubuntu:before {
    content: "\f7df"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-umbrella-beach:before {
    content: "\f5ca"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-ups:before {
    content: "\f7e0"
}

.fa-usb:before {
    content: "\f287"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-alt:before {
    content: "\f406"
}

.fa-user-alt-slash:before {
    content: "\f4fa"
}

.fa-user-astronaut:before {
    content: "\f4fb"
}

.fa-user-check:before {
    content: "\f4fc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-clock:before {
    content: "\f4fd"
}

.fa-user-cog:before {
    content: "\f4fe"
}

.fa-user-edit:before {
    content: "\f4ff"
}

.fa-user-friends:before {
    content: "\f500"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-user-injured:before {
    content: "\f728"
}

.fa-user-lock:before {
    content: "\f502"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-minus:before {
    content: "\f503"
}

.fa-user-ninja:before {
    content: "\f504"
}

.fa-user-nurse:before {
    content: "\f82f"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-shield:before {
    content: "\f505"
}

.fa-user-slash:before {
    content: "\f506"
}

.fa-user-tag:before {
    content: "\f507"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-users-cog:before {
    content: "\f509"
}

.fa-usps:before {
    content: "\f7e1"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-vector-square:before {
    content: "\f5cb"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-vial:before {
    content: "\f492"
}

.fa-vials:before {
    content: "\f493"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-video-slash:before {
    content: "\f4e2"
}

.fa-vihara:before {
    content: "\f6a7"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-mute:before {
    content: "\f6a9"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vote-yea:before {
    content: "\f772"
}

.fa-vr-cardboard:before {
    content: "\f729"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-walking:before {
    content: "\f554"
}

.fa-wallet:before {
    content: "\f555"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-water:before {
    content: "\f773"
}

.fa-weebly:before {
    content: "\f5cc"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weight-hanging:before {
    content: "\f5cd"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-wind:before {
    content: "\f72e"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-wine-bottle:before {
    content: "\f72f"
}

.fa-wine-glass:before {
    content: "\f4e3"
}

.fa-wine-glass-alt:before {
    content: "\f5ce"
}

.fa-wix:before {
    content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
    content: "\f730"
}

.fa-wolf-pack-battalion:before {
    content: "\f514"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wpressr:before {
    content: "\f3e4"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-x-ray:before {
    content: "\f497"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yarn:before {
    content: "\f7e3"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yin-yang:before {
    content: "\f6ad"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

.fa-zhihu:before {
    content: "\f63f"
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url(../fonts/fa-brands-400.eot);
    src: url(../fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.woff) format("woff"),url(../fonts/fa-brands-400.ttf) format("truetype"),url(../fonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: "Font Awesome 5 Brands"
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(../fonts/fa-regular-400.eot);
    src: url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype"),url(../fonts/fa-regular-400.svg#fontawesome) format("svg")
}

.far {
    font-weight: 400
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url(../fonts/fa-solid-900.eot);
    src: url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free"
}

.fa, .fas {
    font-weight: 900
}

@charset "UTF-8"; /*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/

@font-face {
    font-family: "Ionicons";
    src: url("../fonts/ionicons.eot?v=2.0.0");
    src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
    font-weight: normal;
    font-style: normal
}

.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ion-alert:before {
    content: "\f101"
}

.ion-alert-circled:before {
    content: "\f100"
}

.ion-android-add:before {
    content: "\f2c7"
}

.ion-android-add-circle:before {
    content: "\f359"
}

.ion-android-alarm-clock:before {
    content: "\f35a"
}

.ion-android-alert:before {
    content: "\f35b"
}

.ion-android-apps:before {
    content: "\f35c"
}

.ion-android-archive:before {
    content: "\f2c9"
}

.ion-android-arrow-back:before {
    content: "\f2ca"
}

.ion-android-arrow-down:before {
    content: "\f35d"
}

.ion-android-arrow-dropdown:before {
    content: "\f35f"
}

.ion-android-arrow-dropdown-circle:before {
    content: "\f35e"
}

.ion-android-arrow-dropleft:before {
    content: "\f361"
}

.ion-android-arrow-dropleft-circle:before {
    content: "\f360"
}

.ion-android-arrow-dropright:before {
    content: "\f363"
}

.ion-android-arrow-dropright-circle:before {
    content: "\f362"
}

.ion-android-arrow-dropup:before {
    content: "\f365"
}

.ion-android-arrow-dropup-circle:before {
    content: "\f364"
}

.ion-android-arrow-forward:before {
    content: "\f30f"
}

.ion-android-arrow-up:before {
    content: "\f366"
}

.ion-android-attach:before {
    content: "\f367"
}

.ion-android-bar:before {
    content: "\f368"
}

.ion-android-bicycle:before {
    content: "\f369"
}

.ion-android-boat:before {
    content: "\f36a"
}

.ion-android-bookmark:before {
    content: "\f36b"
}

.ion-android-bulb:before {
    content: "\f36c"
}

.ion-android-bus:before {
    content: "\f36d"
}

.ion-android-calendar:before {
    content: "\f2d1"
}

.ion-android-call:before {
    content: "\f2d2"
}

.ion-android-camera:before {
    content: "\f2d3"
}

.ion-android-cancel:before {
    content: "\f36e"
}

.ion-android-car:before {
    content: "\f36f"
}

.ion-android-cart:before {
    content: "\f370"
}

.ion-android-chat:before {
    content: "\f2d4"
}

.ion-android-checkbox:before {
    content: "\f374"
}

.ion-android-checkbox-blank:before {
    content: "\f371"
}

.ion-android-checkbox-outline:before {
    content: "\f373"
}

.ion-android-checkbox-outline-blank:before {
    content: "\f372"
}

.ion-android-checkmark-circle:before {
    content: "\f375"
}

.ion-android-clipboard:before {
    content: "\f376"
}

.ion-android-close:before {
    content: "\f2d7"
}

.ion-android-cloud:before {
    content: "\f37a"
}

.ion-android-cloud-circle:before {
    content: "\f377"
}

.ion-android-cloud-done:before {
    content: "\f378"
}

.ion-android-cloud-outline:before {
    content: "\f379"
}

.ion-android-color-palette:before {
    content: "\f37b"
}

.ion-android-compass:before {
    content: "\f37c"
}

.ion-android-contact:before {
    content: "\f2d8"
}

.ion-android-contacts:before {
    content: "\f2d9"
}

.ion-android-contract:before {
    content: "\f37d"
}

.ion-android-create:before {
    content: "\f37e"
}

.ion-android-delete:before {
    content: "\f37f"
}

.ion-android-desktop:before {
    content: "\f380"
}

.ion-android-document:before {
    content: "\f381"
}

.ion-android-done:before {
    content: "\f383"
}

.ion-android-done-all:before {
    content: "\f382"
}

.ion-android-download:before {
    content: "\f2dd"
}

.ion-android-drafts:before {
    content: "\f384"
}

.ion-android-exit:before {
    content: "\f385"
}

.ion-android-expand:before {
    content: "\f386"
}

.ion-android-favorite:before {
    content: "\f388"
}

.ion-android-favorite-outline:before {
    content: "\f387"
}

.ion-android-film:before {
    content: "\f389"
}

.ion-android-folder:before {
    content: "\f2e0"
}

.ion-android-folder-open:before {
    content: "\f38a"
}

.ion-android-funnel:before {
    content: "\f38b"
}

.ion-android-globe:before {
    content: "\f38c"
}

.ion-android-hand:before {
    content: "\f2e3"
}

.ion-android-hangout:before {
    content: "\f38d"
}

.ion-android-happy:before {
    content: "\f38e"
}

.ion-android-home:before {
    content: "\f38f"
}

.ion-android-image:before {
    content: "\f2e4"
}

.ion-android-laptop:before {
    content: "\f390"
}

.ion-android-list:before {
    content: "\f391"
}

.ion-android-locate:before {
    content: "\f2e9"
}

.ion-android-lock:before {
    content: "\f392"
}

.ion-android-mail:before {
    content: "\f2eb"
}

.ion-android-map:before {
    content: "\f393"
}

.ion-android-menu:before {
    content: "\f394"
}

.ion-android-microphone:before {
    content: "\f2ec"
}

.ion-android-microphone-off:before {
    content: "\f395"
}

.ion-android-more-horizontal:before {
    content: "\f396"
}

.ion-android-more-vertical:before {
    content: "\f397"
}

.ion-android-navigate:before {
    content: "\f398"
}

.ion-android-notifications:before {
    content: "\f39b"
}

.ion-android-notifications-none:before {
    content: "\f399"
}

.ion-android-notifications-off:before {
    content: "\f39a"
}

.ion-android-open:before {
    content: "\f39c"
}

.ion-android-options:before {
    content: "\f39d"
}

.ion-android-people:before {
    content: "\f39e"
}

.ion-android-person:before {
    content: "\f3a0"
}

.ion-android-person-add:before {
    content: "\f39f"
}

.ion-android-phone-landscape:before {
    content: "\f3a1"
}

.ion-android-phone-portrait:before {
    content: "\f3a2"
}

.ion-android-pin:before {
    content: "\f3a3"
}

.ion-android-plane:before {
    content: "\f3a4"
}

.ion-android-playstore:before {
    content: "\f2f0"
}

.ion-android-print:before {
    content: "\f3a5"
}

.ion-android-radio-button-off:before {
    content: "\f3a6"
}

.ion-android-radio-button-on:before {
    content: "\f3a7"
}

.ion-android-refresh:before {
    content: "\f3a8"
}

.ion-android-remove:before {
    content: "\f2f4"
}

.ion-android-remove-circle:before {
    content: "\f3a9"
}

.ion-android-restaurant:before {
    content: "\f3aa"
}

.ion-android-sad:before {
    content: "\f3ab"
}

.ion-android-search:before {
    content: "\f2f5"
}

.ion-android-send:before {
    content: "\f2f6"
}

.ion-android-settings:before {
    content: "\f2f7"
}

.ion-android-share:before {
    content: "\f2f8"
}

.ion-android-share-alt:before {
    content: "\f3ac"
}

.ion-android-star:before {
    content: "\f2fc"
}

.ion-android-star-half:before {
    content: "\f3ad"
}

.ion-android-star-outline:before {
    content: "\f3ae"
}

.ion-android-stopwatch:before {
    content: "\f2fd"
}

.ion-android-subway:before {
    content: "\f3af"
}

.ion-android-sunny:before {
    content: "\f3b0"
}

.ion-android-sync:before {
    content: "\f3b1"
}

.ion-android-textsms:before {
    content: "\f3b2"
}

.ion-android-time:before {
    content: "\f3b3"
}

.ion-android-train:before {
    content: "\f3b4"
}

.ion-android-unlock:before {
    content: "\f3b5"
}

.ion-android-upload:before {
    content: "\f3b6"
}

.ion-android-volume-down:before {
    content: "\f3b7"
}

.ion-android-volume-mute:before {
    content: "\f3b8"
}

.ion-android-volume-off:before {
    content: "\f3b9"
}

.ion-android-volume-up:before {
    content: "\f3ba"
}

.ion-android-walk:before {
    content: "\f3bb"
}

.ion-android-warning:before {
    content: "\f3bc"
}

.ion-android-watch:before {
    content: "\f3bd"
}

.ion-android-wifi:before {
    content: "\f305"
}

.ion-aperture:before {
    content: "\f313"
}

.ion-archive:before {
    content: "\f102"
}

.ion-arrow-down-a:before {
    content: "\f103"
}

.ion-arrow-down-b:before {
    content: "\f104"
}

.ion-arrow-down-c:before {
    content: "\f105"
}

.ion-arrow-expand:before {
    content: "\f25e"
}

.ion-arrow-graph-down-left:before {
    content: "\f25f"
}

.ion-arrow-graph-down-right:before {
    content: "\f260"
}

.ion-arrow-graph-up-left:before {
    content: "\f261"
}

.ion-arrow-graph-up-right:before {
    content: "\f262"
}

.ion-arrow-left-a:before {
    content: "\f106"
}

.ion-arrow-left-b:before {
    content: "\f107"
}

.ion-arrow-left-c:before {
    content: "\f108"
}

.ion-arrow-move:before {
    content: "\f263"
}

.ion-arrow-resize:before {
    content: "\f264"
}

.ion-arrow-return-left:before {
    content: "\f265"
}

.ion-arrow-return-right:before {
    content: "\f266"
}

.ion-arrow-right-a:before {
    content: "\f109"
}

.ion-arrow-right-b:before {
    content: "\f10a"
}

.ion-arrow-right-c:before {
    content: "\f10b"
}

.ion-arrow-shrink:before {
    content: "\f267"
}

.ion-arrow-swap:before {
    content: "\f268"
}

.ion-arrow-up-a:before {
    content: "\f10c"
}

.ion-arrow-up-b:before {
    content: "\f10d"
}

.ion-arrow-up-c:before {
    content: "\f10e"
}

.ion-asterisk:before {
    content: "\f314"
}

.ion-at:before {
    content: "\f10f"
}

.ion-backspace:before {
    content: "\f3bf"
}

.ion-backspace-outline:before {
    content: "\f3be"
}

.ion-bag:before {
    content: "\f110"
}

.ion-battery-charging:before {
    content: "\f111"
}

.ion-battery-empty:before {
    content: "\f112"
}

.ion-battery-full:before {
    content: "\f113"
}

.ion-battery-half:before {
    content: "\f114"
}

.ion-battery-low:before {
    content: "\f115"
}

.ion-beaker:before {
    content: "\f269"
}

.ion-beer:before {
    content: "\f26a"
}

.ion-bluetooth:before {
    content: "\f116"
}

.ion-bonfire:before {
    content: "\f315"
}

.ion-bookmark:before {
    content: "\f26b"
}

.ion-bowtie:before {
    content: "\f3c0"
}

.ion-briefcase:before {
    content: "\f26c"
}

.ion-bug:before {
    content: "\f2be"
}

.ion-calculator:before {
    content: "\f26d"
}

.ion-calendar:before {
    content: "\f117"
}

.ion-camera:before {
    content: "\f118"
}

.ion-card:before {
    content: "\f119"
}

.ion-cash:before {
    content: "\f316"
}

.ion-chatbox:before {
    content: "\f11b"
}

.ion-chatbox-working:before {
    content: "\f11a"
}

.ion-chatboxes:before {
    content: "\f11c"
}

.ion-chatbubble:before {
    content: "\f11e"
}

.ion-chatbubble-working:before {
    content: "\f11d"
}

.ion-chatbubbles:before {
    content: "\f11f"
}

.ion-checkmark:before {
    content: "\f122"
}

.ion-checkmark-circled:before {
    content: "\f120"
}

.ion-checkmark-round:before {
    content: "\f121"
}

.ion-chevron-down:before {
    content: "\f123"
}

.ion-chevron-left:before {
    content: "\f124"
}

.ion-chevron-right:before {
    content: "\f125"
}

.ion-chevron-up:before {
    content: "\f126"
}

.ion-clipboard:before {
    content: "\f127"
}

.ion-clock:before {
    content: "\f26e"
}

.ion-close:before {
    content: "\f12a"
}

.ion-close-circled:before {
    content: "\f128"
}

.ion-close-round:before {
    content: "\f129"
}

.ion-closed-captioning:before {
    content: "\f317"
}

.ion-cloud:before {
    content: "\f12b"
}

.ion-code:before {
    content: "\f271"
}

.ion-code-download:before {
    content: "\f26f"
}

.ion-code-working:before {
    content: "\f270"
}

.ion-coffee:before {
    content: "\f272"
}

.ion-compass:before {
    content: "\f273"
}

.ion-compose:before {
    content: "\f12c"
}

.ion-connection-bars:before {
    content: "\f274"
}

.ion-contrast:before {
    content: "\f275"
}

.ion-crop:before {
    content: "\f3c1"
}

.ion-cube:before {
    content: "\f318"
}

.ion-disc:before {
    content: "\f12d"
}

.ion-document:before {
    content: "\f12f"
}

.ion-document-text:before {
    content: "\f12e"
}

.ion-drag:before {
    content: "\f130"
}

.ion-earth:before {
    content: "\f276"
}

.ion-easel:before {
    content: "\f3c2"
}

.ion-edit:before {
    content: "\f2bf"
}

.ion-egg:before {
    content: "\f277"
}

.ion-eject:before {
    content: "\f131"
}

.ion-email:before {
    content: "\f132"
}

.ion-email-unread:before {
    content: "\f3c3"
}

.ion-erlenmeyer-flask:before {
    content: "\f3c5"
}

.ion-erlenmeyer-flask-bubbles:before {
    content: "\f3c4"
}

.ion-eye:before {
    content: "\f133"
}

.ion-eye-disabled:before {
    content: "\f306"
}

.ion-female:before {
    content: "\f278"
}

.ion-filing:before {
    content: "\f134"
}

.ion-film-marker:before {
    content: "\f135"
}

.ion-fireball:before {
    content: "\f319"
}

.ion-flag:before {
    content: "\f279"
}

.ion-flame:before {
    content: "\f31a"
}

.ion-flash:before {
    content: "\f137"
}

.ion-flash-off:before {
    content: "\f136"
}

.ion-folder:before {
    content: "\f139"
}

.ion-fork:before {
    content: "\f27a"
}

.ion-fork-repo:before {
    content: "\f2c0"
}

.ion-forward:before {
    content: "\f13a"
}

.ion-funnel:before {
    content: "\f31b"
}

.ion-gear-a:before {
    content: "\f13d"
}

.ion-gear-b:before {
    content: "\f13e"
}

.ion-grid:before {
    content: "\f13f"
}

.ion-hammer:before {
    content: "\f27b"
}

.ion-happy:before {
    content: "\f31c"
}

.ion-happy-outline:before {
    content: "\f3c6"
}

.ion-headphone:before {
    content: "\f140"
}

.ion-heart:before {
    content: "\f141"
}

.ion-heart-broken:before {
    content: "\f31d"
}

.ion-help:before {
    content: "\f143"
}

.ion-help-buoy:before {
    content: "\f27c"
}

.ion-help-circled:before {
    content: "\f142"
}

.ion-home:before {
    content: "\f144"
}

.ion-icecream:before {
    content: "\f27d"
}

.ion-image:before {
    content: "\f147"
}

.ion-images:before {
    content: "\f148"
}

.ion-information:before {
    content: "\f14a"
}

.ion-information-circled:before {
    content: "\f149"
}

.ion-ionic:before {
    content: "\f14b"
}

.ion-ios-alarm:before {
    content: "\f3c8"
}

.ion-ios-alarm-outline:before {
    content: "\f3c7"
}

.ion-ios-albums:before {
    content: "\f3ca"
}

.ion-ios-albums-outline:before {
    content: "\f3c9"
}

.ion-ios-americanfootball:before {
    content: "\f3cc"
}

.ion-ios-americanfootball-outline:before {
    content: "\f3cb"
}

.ion-ios-analytics:before {
    content: "\f3ce"
}

.ion-ios-analytics-outline:before {
    content: "\f3cd"
}

.ion-ios-arrow-back:before {
    content: "\f3cf"
}

.ion-ios-arrow-down:before {
    content: "\f3d0"
}

.ion-ios-arrow-forward:before {
    content: "\f3d1"
}

.ion-ios-arrow-left:before {
    content: "\f3d2"
}

.ion-ios-arrow-right:before {
    content: "\f3d3"
}

.ion-ios-arrow-thin-down:before {
    content: "\f3d4"
}

.ion-ios-arrow-thin-left:before {
    content: "\f3d5"
}

.ion-ios-arrow-thin-right:before {
    content: "\f3d6"
}

.ion-ios-arrow-thin-up:before {
    content: "\f3d7"
}

.ion-ios-arrow-up:before {
    content: "\f3d8"
}

.ion-ios-at:before {
    content: "\f3da"
}

.ion-ios-at-outline:before {
    content: "\f3d9"
}

.ion-ios-barcode:before {
    content: "\f3dc"
}

.ion-ios-barcode-outline:before {
    content: "\f3db"
}

.ion-ios-baseball:before {
    content: "\f3de"
}

.ion-ios-baseball-outline:before {
    content: "\f3dd"
}

.ion-ios-basketball:before {
    content: "\f3e0"
}

.ion-ios-basketball-outline:before {
    content: "\f3df"
}

.ion-ios-bell:before {
    content: "\f3e2"
}

.ion-ios-bell-outline:before {
    content: "\f3e1"
}

.ion-ios-body:before {
    content: "\f3e4"
}

.ion-ios-body-outline:before {
    content: "\f3e3"
}

.ion-ios-bolt:before {
    content: "\f3e6"
}

.ion-ios-bolt-outline:before {
    content: "\f3e5"
}

.ion-ios-book:before {
    content: "\f3e8"
}

.ion-ios-book-outline:before {
    content: "\f3e7"
}

.ion-ios-bookmarks:before {
    content: "\f3ea"
}

.ion-ios-bookmarks-outline:before {
    content: "\f3e9"
}

.ion-ios-box:before {
    content: "\f3ec"
}

.ion-ios-box-outline:before {
    content: "\f3eb"
}

.ion-ios-briefcase:before {
    content: "\f3ee"
}

.ion-ios-briefcase-outline:before {
    content: "\f3ed"
}

.ion-ios-browsers:before {
    content: "\f3f0"
}

.ion-ios-browsers-outline:before {
    content: "\f3ef"
}

.ion-ios-calculator:before {
    content: "\f3f2"
}

.ion-ios-calculator-outline:before {
    content: "\f3f1"
}

.ion-ios-calendar:before {
    content: "\f3f4"
}

.ion-ios-calendar-outline:before {
    content: "\f3f3"
}

.ion-ios-camera:before {
    content: "\f3f6"
}

.ion-ios-camera-outline:before {
    content: "\f3f5"
}

.ion-ios-cart:before {
    content: "\f3f8"
}

.ion-ios-cart-outline:before {
    content: "\f3f7"
}

.ion-ios-chatboxes:before {
    content: "\f3fa"
}

.ion-ios-chatboxes-outline:before {
    content: "\f3f9"
}

.ion-ios-chatbubble:before {
    content: "\f3fc"
}

.ion-ios-chatbubble-outline:before {
    content: "\f3fb"
}

.ion-ios-checkmark:before {
    content: "\f3ff"
}

.ion-ios-checkmark-empty:before {
    content: "\f3fd"
}

.ion-ios-checkmark-outline:before {
    content: "\f3fe"
}

.ion-ios-circle-filled:before {
    content: "\f400"
}

.ion-ios-circle-outline:before {
    content: "\f401"
}

.ion-ios-clock:before {
    content: "\f403"
}

.ion-ios-clock-outline:before {
    content: "\f402"
}

.ion-ios-close:before {
    content: "\f406"
}

.ion-ios-close-empty:before {
    content: "\f404"
}

.ion-ios-close-outline:before {
    content: "\f405"
}

.ion-ios-cloud:before {
    content: "\f40c"
}

.ion-ios-cloud-download:before {
    content: "\f408"
}

.ion-ios-cloud-download-outline:before {
    content: "\f407"
}

.ion-ios-cloud-outline:before {
    content: "\f409"
}

.ion-ios-cloud-upload:before {
    content: "\f40b"
}

.ion-ios-cloud-upload-outline:before {
    content: "\f40a"
}

.ion-ios-cloudy:before {
    content: "\f410"
}

.ion-ios-cloudy-night:before {
    content: "\f40e"
}

.ion-ios-cloudy-night-outline:before {
    content: "\f40d"
}

.ion-ios-cloudy-outline:before {
    content: "\f40f"
}

.ion-ios-cog:before {
    content: "\f412"
}

.ion-ios-cog-outline:before {
    content: "\f411"
}

.ion-ios-color-filter:before {
    content: "\f414"
}

.ion-ios-color-filter-outline:before {
    content: "\f413"
}

.ion-ios-color-wand:before {
    content: "\f416"
}

.ion-ios-color-wand-outline:before {
    content: "\f415"
}

.ion-ios-compose:before {
    content: "\f418"
}

.ion-ios-compose-outline:before {
    content: "\f417"
}

.ion-ios-contact:before {
    content: "\f41a"
}

.ion-ios-contact-outline:before {
    content: "\f419"
}

.ion-ios-copy:before {
    content: "\f41c"
}

.ion-ios-copy-outline:before {
    content: "\f41b"
}

.ion-ios-crop:before {
    content: "\f41e"
}

.ion-ios-crop-strong:before {
    content: "\f41d"
}

.ion-ios-download:before {
    content: "\f420"
}

.ion-ios-download-outline:before {
    content: "\f41f"
}

.ion-ios-drag:before {
    content: "\f421"
}

.ion-ios-email:before {
    content: "\f423"
}

.ion-ios-email-outline:before {
    content: "\f422"
}

.ion-ios-eye:before {
    content: "\f425"
}

.ion-ios-eye-outline:before {
    content: "\f424"
}

.ion-ios-fastforward:before {
    content: "\f427"
}

.ion-ios-fastforward-outline:before {
    content: "\f426"
}

.ion-ios-filing:before {
    content: "\f429"
}

.ion-ios-filing-outline:before {
    content: "\f428"
}

.ion-ios-film:before {
    content: "\f42b"
}

.ion-ios-film-outline:before {
    content: "\f42a"
}

.ion-ios-flag:before {
    content: "\f42d"
}

.ion-ios-flag-outline:before {
    content: "\f42c"
}

.ion-ios-flame:before {
    content: "\f42f"
}

.ion-ios-flame-outline:before {
    content: "\f42e"
}

.ion-ios-flask:before {
    content: "\f431"
}

.ion-ios-flask-outline:before {
    content: "\f430"
}

.ion-ios-flower:before {
    content: "\f433"
}

.ion-ios-flower-outline:before {
    content: "\f432"
}

.ion-ios-folder:before {
    content: "\f435"
}

.ion-ios-folder-outline:before {
    content: "\f434"
}

.ion-ios-football:before {
    content: "\f437"
}

.ion-ios-football-outline:before {
    content: "\f436"
}

.ion-ios-game-controller-a:before {
    content: "\f439"
}

.ion-ios-game-controller-a-outline:before {
    content: "\f438"
}

.ion-ios-game-controller-b:before {
    content: "\f43b"
}

.ion-ios-game-controller-b-outline:before {
    content: "\f43a"
}

.ion-ios-gear:before {
    content: "\f43d"
}

.ion-ios-gear-outline:before {
    content: "\f43c"
}

.ion-ios-glasses:before {
    content: "\f43f"
}

.ion-ios-glasses-outline:before {
    content: "\f43e"
}

.ion-ios-grid-view:before {
    content: "\f441"
}

.ion-ios-grid-view-outline:before {
    content: "\f440"
}

.ion-ios-heart:before {
    content: "\f443"
}

.ion-ios-heart-outline:before {
    content: "\f442"
}

.ion-ios-help:before {
    content: "\f446"
}

.ion-ios-help-empty:before {
    content: "\f444"
}

.ion-ios-help-outline:before {
    content: "\f445"
}

.ion-ios-home:before {
    content: "\f448"
}

.ion-ios-home-outline:before {
    content: "\f447"
}

.ion-ios-infinite:before {
    content: "\f44a"
}

.ion-ios-infinite-outline:before {
    content: "\f449"
}

.ion-ios-information:before {
    content: "\f44d"
}

.ion-ios-information-empty:before {
    content: "\f44b"
}

.ion-ios-information-outline:before {
    content: "\f44c"
}

.ion-ios-ionic-outline:before {
    content: "\f44e"
}

.ion-ios-keypad:before {
    content: "\f450"
}

.ion-ios-keypad-outline:before {
    content: "\f44f"
}

.ion-ios-lightbulb:before {
    content: "\f452"
}

.ion-ios-lightbulb-outline:before {
    content: "\f451"
}

.ion-ios-list:before {
    content: "\f454"
}

.ion-ios-list-outline:before {
    content: "\f453"
}

.ion-ios-location:before {
    content: "\f456"
}

.ion-ios-location-outline:before {
    content: "\f455"
}

.ion-ios-locked:before {
    content: "\f458"
}

.ion-ios-locked-outline:before {
    content: "\f457"
}

.ion-ios-loop:before {
    content: "\f45a"
}

.ion-ios-loop-strong:before {
    content: "\f459"
}

.ion-ios-medical:before {
    content: "\f45c"
}

.ion-ios-medical-outline:before {
    content: "\f45b"
}

.ion-ios-medkit:before {
    content: "\f45e"
}

.ion-ios-medkit-outline:before {
    content: "\f45d"
}

.ion-ios-mic:before {
    content: "\f461"
}

.ion-ios-mic-off:before {
    content: "\f45f"
}

.ion-ios-mic-outline:before {
    content: "\f460"
}

.ion-ios-minus:before {
    content: "\f464"
}

.ion-ios-minus-empty:before {
    content: "\f462"
}

.ion-ios-minus-outline:before {
    content: "\f463"
}

.ion-ios-monitor:before {
    content: "\f466"
}

.ion-ios-monitor-outline:before {
    content: "\f465"
}

.ion-ios-moon:before {
    content: "\f468"
}

.ion-ios-moon-outline:before {
    content: "\f467"
}

.ion-ios-more:before {
    content: "\f46a"
}

.ion-ios-more-outline:before {
    content: "\f469"
}

.ion-ios-musical-note:before {
    content: "\f46b"
}

.ion-ios-musical-notes:before {
    content: "\f46c"
}

.ion-ios-navigate:before {
    content: "\f46e"
}

.ion-ios-navigate-outline:before {
    content: "\f46d"
}

.ion-ios-nutrition:before {
    content: "\f470"
}

.ion-ios-nutrition-outline:before {
    content: "\f46f"
}

.ion-ios-paper:before {
    content: "\f472"
}

.ion-ios-paper-outline:before {
    content: "\f471"
}

.ion-ios-paperplane:before {
    content: "\f474"
}

.ion-ios-paperplane-outline:before {
    content: "\f473"
}

.ion-ios-partlysunny:before {
    content: "\f476"
}

.ion-ios-partlysunny-outline:before {
    content: "\f475"
}

.ion-ios-pause:before {
    content: "\f478"
}

.ion-ios-pause-outline:before {
    content: "\f477"
}

.ion-ios-paw:before {
    content: "\f47a"
}

.ion-ios-paw-outline:before {
    content: "\f479"
}

.ion-ios-people:before {
    content: "\f47c"
}

.ion-ios-people-outline:before {
    content: "\f47b"
}

.ion-ios-person:before {
    content: "\f47e"
}

.ion-ios-person-outline:before {
    content: "\f47d"
}

.ion-ios-personadd:before {
    content: "\f480"
}

.ion-ios-personadd-outline:before {
    content: "\f47f"
}

.ion-ios-photos:before {
    content: "\f482"
}

.ion-ios-photos-outline:before {
    content: "\f481"
}

.ion-ios-pie:before {
    content: "\f484"
}

.ion-ios-pie-outline:before {
    content: "\f483"
}

.ion-ios-pint:before {
    content: "\f486"
}

.ion-ios-pint-outline:before {
    content: "\f485"
}

.ion-ios-play:before {
    content: "\f488"
}

.ion-ios-play-outline:before {
    content: "\f487"
}

.ion-ios-plus:before {
    content: "\f48b"
}

.ion-ios-plus-empty:before {
    content: "\f489"
}

.ion-ios-plus-outline:before {
    content: "\f48a"
}

.ion-ios-pricetag:before {
    content: "\f48d"
}

.ion-ios-pricetag-outline:before {
    content: "\f48c"
}

.ion-ios-pricetags:before {
    content: "\f48f"
}

.ion-ios-pricetags-outline:before {
    content: "\f48e"
}

.ion-ios-printer:before {
    content: "\f491"
}

.ion-ios-printer-outline:before {
    content: "\f490"
}

.ion-ios-pulse:before {
    content: "\f493"
}

.ion-ios-pulse-strong:before {
    content: "\f492"
}

.ion-ios-rainy:before {
    content: "\f495"
}

.ion-ios-rainy-outline:before {
    content: "\f494"
}

.ion-ios-recording:before {
    content: "\f497"
}

.ion-ios-recording-outline:before {
    content: "\f496"
}

.ion-ios-redo:before {
    content: "\f499"
}

.ion-ios-redo-outline:before {
    content: "\f498"
}

.ion-ios-refresh:before {
    content: "\f49c"
}

.ion-ios-refresh-empty:before {
    content: "\f49a"
}

.ion-ios-refresh-outline:before {
    content: "\f49b"
}

.ion-ios-reload:before {
    content: "\f49d"
}

.ion-ios-reverse-camera:before {
    content: "\f49f"
}

.ion-ios-reverse-camera-outline:before {
    content: "\f49e"
}

.ion-ios-rewind:before {
    content: "\f4a1"
}

.ion-ios-rewind-outline:before {
    content: "\f4a0"
}

.ion-ios-rose:before {
    content: "\f4a3"
}

.ion-ios-rose-outline:before {
    content: "\f4a2"
}

.ion-ios-search:before {
    content: "\f4a5"
}

.ion-ios-search-strong:before {
    content: "\f4a4"
}

.ion-ios-settings:before {
    content: "\f4a7"
}

.ion-ios-settings-strong:before {
    content: "\f4a6"
}

.ion-ios-shuffle:before {
    content: "\f4a9"
}

.ion-ios-shuffle-strong:before {
    content: "\f4a8"
}

.ion-ios-skipbackward:before {
    content: "\f4ab"
}

.ion-ios-skipbackward-outline:before {
    content: "\f4aa"
}

.ion-ios-skipforward:before {
    content: "\f4ad"
}

.ion-ios-skipforward-outline:before {
    content: "\f4ac"
}

.ion-ios-snowy:before {
    content: "\f4ae"
}

.ion-ios-speedometer:before {
    content: "\f4b0"
}

.ion-ios-speedometer-outline:before {
    content: "\f4af"
}

.ion-ios-star:before {
    content: "\f4b3"
}

.ion-ios-star-half:before {
    content: "\f4b1"
}

.ion-ios-star-outline:before {
    content: "\f4b2"
}

.ion-ios-stopwatch:before {
    content: "\f4b5"
}

.ion-ios-stopwatch-outline:before {
    content: "\f4b4"
}

.ion-ios-sunny:before {
    content: "\f4b7"
}

.ion-ios-sunny-outline:before {
    content: "\f4b6"
}

.ion-ios-telephone:before {
    content: "\f4b9"
}

.ion-ios-telephone-outline:before {
    content: "\f4b8"
}

.ion-ios-tennisball:before {
    content: "\f4bb"
}

.ion-ios-tennisball-outline:before {
    content: "\f4ba"
}

.ion-ios-thunderstorm:before {
    content: "\f4bd"
}

.ion-ios-thunderstorm-outline:before {
    content: "\f4bc"
}

.ion-ios-time:before {
    content: "\f4bf"
}

.ion-ios-time-outline:before {
    content: "\f4be"
}

.ion-ios-timer:before {
    content: "\f4c1"
}

.ion-ios-timer-outline:before {
    content: "\f4c0"
}

.ion-ios-toggle:before {
    content: "\f4c3"
}

.ion-ios-toggle-outline:before {
    content: "\f4c2"
}

.ion-ios-trash:before {
    content: "\f4c5"
}

.ion-ios-trash-outline:before {
    content: "\f4c4"
}

.ion-ios-undo:before {
    content: "\f4c7"
}

.ion-ios-undo-outline:before {
    content: "\f4c6"
}

.ion-ios-unlocked:before {
    content: "\f4c9"
}

.ion-ios-unlocked-outline:before {
    content: "\f4c8"
}

.ion-ios-upload:before {
    content: "\f4cb"
}

.ion-ios-upload-outline:before {
    content: "\f4ca"
}

.ion-ios-videocam:before {
    content: "\f4cd"
}

.ion-ios-videocam-outline:before {
    content: "\f4cc"
}

.ion-ios-volume-high:before {
    content: "\f4ce"
}

.ion-ios-volume-low:before {
    content: "\f4cf"
}

.ion-ios-wineglass:before {
    content: "\f4d1"
}

.ion-ios-wineglass-outline:before {
    content: "\f4d0"
}

.ion-ios-world:before {
    content: "\f4d3"
}

.ion-ios-world-outline:before {
    content: "\f4d2"
}

.ion-ipad:before {
    content: "\f1f9"
}

.ion-iphone:before {
    content: "\f1fa"
}

.ion-ipod:before {
    content: "\f1fb"
}

.ion-jet:before {
    content: "\f295"
}

.ion-key:before {
    content: "\f296"
}

.ion-knife:before {
    content: "\f297"
}

.ion-laptop:before {
    content: "\f1fc"
}

.ion-leaf:before {
    content: "\f1fd"
}

.ion-levels:before {
    content: "\f298"
}

.ion-lightbulb:before {
    content: "\f299"
}

.ion-link:before {
    content: "\f1fe"
}

.ion-load-a:before {
    content: "\f29a"
}

.ion-load-b:before {
    content: "\f29b"
}

.ion-load-c:before {
    content: "\f29c"
}

.ion-load-d:before {
    content: "\f29d"
}

.ion-location:before {
    content: "\f1ff"
}

.ion-lock-combination:before {
    content: "\f4d4"
}

.ion-locked:before {
    content: "\f200"
}

.ion-log-in:before {
    content: "\f29e"
}

.ion-log-out:before {
    content: "\f29f"
}

.ion-loop:before {
    content: "\f201"
}

.ion-magnet:before {
    content: "\f2a0"
}

.ion-male:before {
    content: "\f2a1"
}

.ion-man:before {
    content: "\f202"
}

.ion-map:before {
    content: "\f203"
}

.ion-medkit:before {
    content: "\f2a2"
}

.ion-merge:before {
    content: "\f33f"
}

.ion-mic-a:before {
    content: "\f204"
}

.ion-mic-b:before {
    content: "\f205"
}

.ion-mic-c:before {
    content: "\f206"
}

.ion-minus:before {
    content: "\f209"
}

.ion-minus-circled:before {
    content: "\f207"
}

.ion-minus-round:before {
    content: "\f208"
}

.ion-model-s:before {
    content: "\f2c1"
}

.ion-monitor:before {
    content: "\f20a"
}

.ion-more:before {
    content: "\f20b"
}

.ion-mouse:before {
    content: "\f340"
}

.ion-music-note:before {
    content: "\f20c"
}

.ion-navicon:before {
    content: "\f20e"
}

.ion-navicon-round:before {
    content: "\f20d"
}

.ion-navigate:before {
    content: "\f2a3"
}

.ion-network:before {
    content: "\f341"
}

.ion-no-smoking:before {
    content: "\f2c2"
}

.ion-nuclear:before {
    content: "\f2a4"
}

.ion-outlet:before {
    content: "\f342"
}

.ion-paintbrush:before {
    content: "\f4d5"
}

.ion-paintbucket:before {
    content: "\f4d6"
}

.ion-paper-airplane:before {
    content: "\f2c3"
}

.ion-paperclip:before {
    content: "\f20f"
}

.ion-pause:before {
    content: "\f210"
}

.ion-person:before {
    content: "\f213"
}

.ion-person-add:before {
    content: "\f211"
}

.ion-person-stalker:before {
    content: "\f212"
}

.ion-pie-graph:before {
    content: "\f2a5"
}

.ion-pin:before {
    content: "\f2a6"
}

.ion-pinpoint:before {
    content: "\f2a7"
}

.ion-pizza:before {
    content: "\f2a8"
}

.ion-plane:before {
    content: "\f214"
}

.ion-planet:before {
    content: "\f343"
}

.ion-play:before {
    content: "\f215"
}

.ion-playstation:before {
    content: "\f30a"
}

.ion-plus:before {
    content: "\f218"
}

.ion-plus-circled:before {
    content: "\f216"
}

.ion-plus-round:before {
    content: "\f217"
}

.ion-podium:before {
    content: "\f344"
}

.ion-pound:before {
    content: "\f219"
}

.ion-power:before {
    content: "\f2a9"
}

.ion-pricetag:before {
    content: "\f2aa"
}

.ion-pricetags:before {
    content: "\f2ab"
}

.ion-printer:before {
    content: "\f21a"
}

.ion-pull-request:before {
    content: "\f345"
}

.ion-qr-scanner:before {
    content: "\f346"
}

.ion-quote:before {
    content: "\f347"
}

.ion-radio-waves:before {
    content: "\f2ac"
}

.ion-record:before {
    content: "\f21b"
}

.ion-refresh:before {
    content: "\f21c"
}

.ion-reply:before {
    content: "\f21e"
}

.ion-reply-all:before {
    content: "\f21d"
}

.ion-ribbon-a:before {
    content: "\f348"
}

.ion-ribbon-b:before {
    content: "\f349"
}

.ion-sad:before {
    content: "\f34a"
}

.ion-sad-outline:before {
    content: "\f4d7"
}

.ion-scissors:before {
    content: "\f34b"
}

.ion-search:before {
    content: "\f21f"
}

.ion-settings:before {
    content: "\f2ad"
}

.ion-share:before {
    content: "\f220"
}

.ion-shuffle:before {
    content: "\f221"
}

.ion-skip-backward:before {
    content: "\f222"
}

.ion-skip-forward:before {
    content: "\f223"
}

.ion-social-android:before {
    content: "\f225"
}

.ion-social-android-outline:before {
    content: "\f224"
}

.ion-social-angular:before {
    content: "\f4d9"
}

.ion-social-angular-outline:before {
    content: "\f4d8"
}

.ion-social-apple:before {
    content: "\f227"
}

.ion-social-apple-outline:before {
    content: "\f226"
}

.ion-social-bitcoin:before {
    content: "\f2af"
}

.ion-social-bitcoin-outline:before {
    content: "\f2ae"
}

.ion-social-buffer:before {
    content: "\f229"
}

.ion-social-buffer-outline:before {
    content: "\f228"
}

.ion-social-chrome:before {
    content: "\f4db"
}

.ion-social-chrome-outline:before {
    content: "\f4da"
}

.ion-social-codepen:before {
    content: "\f4dd"
}

.ion-social-codepen-outline:before {
    content: "\f4dc"
}

.ion-social-css3:before {
    content: "\f4df"
}

.ion-social-css3-outline:before {
    content: "\f4de"
}

.ion-social-designernews:before {
    content: "\f22b"
}

.ion-social-designernews-outline:before {
    content: "\f22a"
}

.ion-social-dribbble:before {
    content: "\f22d"
}

.ion-social-dribbble-outline:before {
    content: "\f22c"
}

.ion-social-dropbox:before {
    content: "\f22f"
}

.ion-social-dropbox-outline:before {
    content: "\f22e"
}

.ion-social-euro:before {
    content: "\f4e1"
}

.ion-social-euro-outline:before {
    content: "\f4e0"
}

.ion-social-facebook:before {
    content: "\f231"
}

.ion-social-facebook-outline:before {
    content: "\f230"
}

.ion-social-foursquare:before {
    content: "\f34d"
}

.ion-social-foursquare-outline:before {
    content: "\f34c"
}

.ion-social-freebsd-devil:before {
    content: "\f2c4"
}

.ion-social-github:before {
    content: "\f233"
}

.ion-social-github-outline:before {
    content: "\f232"
}

.ion-social-google:before {
    content: "\f34f"
}

.ion-social-google-outline:before {
    content: "\f34e"
}

.ion-social-googleplus:before {
    content: "\f235"
}

.ion-social-googleplus-outline:before {
    content: "\f234"
}

.ion-social-hackernews:before {
    content: "\f237"
}

.ion-social-hackernews-outline:before {
    content: "\f236"
}

.ion-social-html5:before {
    content: "\f4e3"
}

.ion-social-html5-outline:before {
    content: "\f4e2"
}

.ion-social-instagram:before {
    content: "\f351"
}

.ion-social-instagram-outline:before {
    content: "\f350"
}

.ion-social-javascript:before {
    content: "\f4e5"
}

.ion-social-javascript-outline:before {
    content: "\f4e4"
}

.ion-social-linkedin:before {
    content: "\f239"
}

.ion-social-linkedin-outline:before {
    content: "\f238"
}

.ion-social-markdown:before {
    content: "\f4e6"
}

.ion-social-nodejs:before {
    content: "\f4e7"
}

.ion-social-octocat:before {
    content: "\f4e8"
}

.ion-social-pinterest:before {
    content: "\f2b1"
}

.ion-social-pinterest-outline:before {
    content: "\f2b0"
}

.ion-social-python:before {
    content: "\f4e9"
}

.ion-social-reddit:before {
    content: "\f23b"
}

.ion-social-reddit-outline:before {
    content: "\f23a"
}

.ion-social-rss:before {
    content: "\f23d"
}

.ion-social-rss-outline:before {
    content: "\f23c"
}

.ion-social-sass:before {
    content: "\f4ea"
}

.ion-social-skype:before {
    content: "\f23f"
}

.ion-social-skype-outline:before {
    content: "\f23e"
}

.ion-social-snapchat:before {
    content: "\f4ec"
}

.ion-social-snapchat-outline:before {
    content: "\f4eb"
}

.ion-social-tumblr:before {
    content: "\f241"
}

.ion-social-tumblr-outline:before {
    content: "\f240"
}

.ion-social-tux:before {
    content: "\f2c5"
}

.ion-social-twitch:before {
    content: "\f4ee"
}

.ion-social-twitch-outline:before {
    content: "\f4ed"
}

.ion-social-twitter:before {
    content: "\f243"
}

.ion-social-twitter-outline:before {
    content: "\f242"
}

.ion-social-usd:before {
    content: "\f353"
}

.ion-social-usd-outline:before {
    content: "\f352"
}

.ion-social-vimeo:before {
    content: "\f245"
}

.ion-social-vimeo-outline:before {
    content: "\f244"
}

.ion-social-whatsapp:before {
    content: "\f4f0"
}

.ion-social-whatsapp-outline:before {
    content: "\f4ef"
}

.ion-social-windows:before {
    content: "\f247"
}

.ion-social-windows-outline:before {
    content: "\f246"
}

.ion-social-wordpress:before {
    content: "\f249"
}

.ion-social-wordpress-outline:before {
    content: "\f248"
}

.ion-social-yahoo:before {
    content: "\f24b"
}

.ion-social-yahoo-outline:before {
    content: "\f24a"
}

.ion-social-yen:before {
    content: "\f4f2"
}

.ion-social-yen-outline:before {
    content: "\f4f1"
}

.ion-social-youtube:before {
    content: "\f24d"
}

.ion-social-youtube-outline:before {
    content: "\f24c"
}

.ion-soup-can:before {
    content: "\f4f4"
}

.ion-soup-can-outline:before {
    content: "\f4f3"
}

.ion-speakerphone:before {
    content: "\f2b2"
}

.ion-speedometer:before {
    content: "\f2b3"
}

.ion-spoon:before {
    content: "\f2b4"
}

.ion-star:before {
    content: "\f24e"
}

.ion-stats-bars:before {
    content: "\f2b5"
}

.ion-steam:before {
    content: "\f30b"
}

.ion-stop:before {
    content: "\f24f"
}

.ion-thermometer:before {
    content: "\f2b6"
}

.ion-thumbsdown:before {
    content: "\f250"
}

.ion-thumbsup:before {
    content: "\f251"
}

.ion-toggle:before {
    content: "\f355"
}

.ion-toggle-filled:before {
    content: "\f354"
}

.ion-transgender:before {
    content: "\f4f5"
}

.ion-trash-a:before {
    content: "\f252"
}

.ion-trash-b:before {
    content: "\f253"
}

.ion-trophy:before {
    content: "\f356"
}

.ion-tshirt:before {
    content: "\f4f7"
}

.ion-tshirt-outline:before {
    content: "\f4f6"
}

.ion-umbrella:before {
    content: "\f2b7"
}

.ion-university:before {
    content: "\f357"
}

.ion-unlocked:before {
    content: "\f254"
}

.ion-upload:before {
    content: "\f255"
}

.ion-usb:before {
    content: "\f2b8"
}

.ion-videocamera:before {
    content: "\f256"
}

.ion-volume-high:before {
    content: "\f257"
}

.ion-volume-low:before {
    content: "\f258"
}

.ion-volume-medium:before {
    content: "\f259"
}

.ion-volume-mute:before {
    content: "\f25a"
}

.ion-wand:before {
    content: "\f358"
}

.ion-waterdrop:before {
    content: "\f25b"
}

.ion-wifi:before {
    content: "\f25c"
}

.ion-wineglass:before {
    content: "\f2b9"
}

.ion-woman:before {
    content: "\f25d"
}

.ion-wrench:before {
    content: "\f2ba"
}

.ion-xbox:before {
    content: "\f30c"
}

@font-face {
    font-family: 'themify';
    src: url('../fonts/themify.eot?-fvbane');
    src: url('../fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'), url('../fonts/themify.woff?-fvbane') format('woff'), url('../fonts/themify.ttf?-fvbane') format('truetype'), url('../fonts/themify.svg?-fvbane#themify') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="ti-"], [class*=" ti-"] {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
    content: "\e600";
}

.ti-volume:before {
    content: "\e601";
}

.ti-user:before {
    content: "\e602";
}

.ti-unlock:before {
    content: "\e603";
}

.ti-unlink:before {
    content: "\e604";
}

.ti-trash:before {
    content: "\e605";
}

.ti-thought:before {
    content: "\e606";
}

.ti-target:before {
    content: "\e607";
}

.ti-tag:before {
    content: "\e608";
}

.ti-tablet:before {
    content: "\e609";
}

.ti-star:before {
    content: "\e60a";
}

.ti-spray:before {
    content: "\e60b";
}

.ti-signal:before {
    content: "\e60c";
}

.ti-shopping-cart:before {
    content: "\e60d";
}

.ti-shopping-cart-full:before {
    content: "\e60e";
}

.ti-settings:before {
    content: "\e60f";
}

.ti-search:before {
    content: "\e610";
}

.ti-zoom-in:before {
    content: "\e611";
}

.ti-zoom-out:before {
    content: "\e612";
}

.ti-cut:before {
    content: "\e613";
}

.ti-ruler:before {
    content: "\e614";
}

.ti-ruler-pencil:before {
    content: "\e615";
}

.ti-ruler-alt:before {
    content: "\e616";
}

.ti-bookmark:before {
    content: "\e617";
}

.ti-bookmark-alt:before {
    content: "\e618";
}

.ti-reload:before {
    content: "\e619";
}

.ti-plus:before {
    content: "\e61a";
}

.ti-pin:before {
    content: "\e61b";
}

.ti-pencil:before {
    content: "\e61c";
}

.ti-pencil-alt:before {
    content: "\e61d";
}

.ti-paint-roller:before {
    content: "\e61e";
}

.ti-paint-bucket:before {
    content: "\e61f";
}

.ti-na:before {
    content: "\e620";
}

.ti-mobile:before {
    content: "\e621";
}

.ti-minus:before {
    content: "\e622";
}

.ti-medall:before {
    content: "\e623";
}

.ti-medall-alt:before {
    content: "\e624";
}

.ti-marker:before {
    content: "\e625";
}

.ti-marker-alt:before {
    content: "\e626";
}

.ti-arrow-up:before {
    content: "\e627";
}

.ti-arrow-right:before {
    content: "\e628";
}

.ti-arrow-left:before {
    content: "\e629";
}

.ti-arrow-down:before {
    content: "\e62a";
}

.ti-lock:before {
    content: "\e62b";
}

.ti-location-arrow:before {
    content: "\e62c";
}

.ti-link:before {
    content: "\e62d";
}

.ti-layout:before {
    content: "\e62e";
}

.ti-layers:before {
    content: "\e62f";
}

.ti-layers-alt:before {
    content: "\e630";
}

.ti-key:before {
    content: "\e631";
}

.ti-import:before {
    content: "\e632";
}

.ti-image:before {
    content: "\e633";
}

.ti-heart:before {
    content: "\e634";
}

.ti-heart-broken:before {
    content: "\e635";
}

.ti-hand-stop:before {
    content: "\e636";
}

.ti-hand-open:before {
    content: "\e637";
}

.ti-hand-drag:before {
    content: "\e638";
}

.ti-folder:before {
    content: "\e639";
}

.ti-flag:before {
    content: "\e63a";
}

.ti-flag-alt:before {
    content: "\e63b";
}

.ti-flag-alt-2:before {
    content: "\e63c";
}

.ti-eye:before {
    content: "\e63d";
}

.ti-export:before {
    content: "\e63e";
}

.ti-exchange-vertical:before {
    content: "\e63f";
}

.ti-desktop:before {
    content: "\e640";
}

.ti-cup:before {
    content: "\e641";
}

.ti-crown:before {
    content: "\e642";
}

.ti-comments:before {
    content: "\e643";
}

.ti-comment:before {
    content: "\e644";
}

.ti-comment-alt:before {
    content: "\e645";
}

.ti-close:before {
    content: "\e646";
}

.ti-clip:before {
    content: "\e647";
}

.ti-angle-up:before {
    content: "\e648";
}

.ti-angle-right:before {
    content: "\e649";
}

.ti-angle-left:before {
    content: "\e64a";
}

.ti-angle-down:before {
    content: "\e64b";
}

.ti-check:before {
    content: "\e64c";
}

.ti-check-box:before {
    content: "\e64d";
}

.ti-camera:before {
    content: "\e64e";
}

.ti-announcement:before {
    content: "\e64f";
}

.ti-brush:before {
    content: "\e650";
}

.ti-briefcase:before {
    content: "\e651";
}

.ti-bolt:before {
    content: "\e652";
}

.ti-bolt-alt:before {
    content: "\e653";
}

.ti-blackboard:before {
    content: "\e654";
}

.ti-bag:before {
    content: "\e655";
}

.ti-move:before {
    content: "\e656";
}

.ti-arrows-vertical:before {
    content: "\e657";
}

.ti-arrows-horizontal:before {
    content: "\e658";
}

.ti-fullscreen:before {
    content: "\e659";
}

.ti-arrow-top-right:before {
    content: "\e65a";
}

.ti-arrow-top-left:before {
    content: "\e65b";
}

.ti-arrow-circle-up:before {
    content: "\e65c";
}

.ti-arrow-circle-right:before {
    content: "\e65d";
}

.ti-arrow-circle-left:before {
    content: "\e65e";
}

.ti-arrow-circle-down:before {
    content: "\e65f";
}

.ti-angle-double-up:before {
    content: "\e660";
}

.ti-angle-double-right:before {
    content: "\e661";
}

.ti-angle-double-left:before {
    content: "\e662";
}

.ti-angle-double-down:before {
    content: "\e663";
}

.ti-zip:before {
    content: "\e664";
}

.ti-world:before {
    content: "\e665";
}

.ti-wheelchair:before {
    content: "\e666";
}

.ti-view-list:before {
    content: "\e667";
}

.ti-view-list-alt:before {
    content: "\e668";
}

.ti-view-grid:before {
    content: "\e669";
}

.ti-uppercase:before {
    content: "\e66a";
}

.ti-upload:before {
    content: "\e66b";
}

.ti-underline:before {
    content: "\e66c";
}

.ti-truck:before {
    content: "\e66d";
}

.ti-timer:before {
    content: "\e66e";
}

.ti-ticket:before {
    content: "\e66f";
}

.ti-thumb-up:before {
    content: "\e670";
}

.ti-thumb-down:before {
    content: "\e671";
}

.ti-text:before {
    content: "\e672";
}

.ti-stats-up:before {
    content: "\e673";
}

.ti-stats-down:before {
    content: "\e674";
}

.ti-split-v:before {
    content: "\e675";
}

.ti-split-h:before {
    content: "\e676";
}

.ti-smallcap:before {
    content: "\e677";
}

.ti-shine:before {
    content: "\e678";
}

.ti-shift-right:before {
    content: "\e679";
}

.ti-shift-left:before {
    content: "\e67a";
}

.ti-shield:before {
    content: "\e67b";
}

.ti-notepad:before {
    content: "\e67c";
}

.ti-server:before {
    content: "\e67d";
}

.ti-quote-right:before {
    content: "\e67e";
}

.ti-quote-left:before {
    content: "\e67f";
}

.ti-pulse:before {
    content: "\e680";
}

.ti-printer:before {
    content: "\e681";
}

.ti-power-off:before {
    content: "\e682";
}

.ti-plug:before {
    content: "\e683";
}

.ti-pie-chart:before {
    content: "\e684";
}

.ti-paragraph:before {
    content: "\e685";
}

.ti-panel:before {
    content: "\e686";
}

.ti-package:before {
    content: "\e687";
}

.ti-music:before {
    content: "\e688";
}

.ti-music-alt:before {
    content: "\e689";
}

.ti-mouse:before {
    content: "\e68a";
}

.ti-mouse-alt:before {
    content: "\e68b";
}

.ti-money:before {
    content: "\e68c";
}

.ti-microphone:before {
    content: "\e68d";
}

.ti-menu:before {
    content: "\e68e";
}

.ti-menu-alt:before {
    content: "\e68f";
}

.ti-map:before {
    content: "\e690";
}

.ti-map-alt:before {
    content: "\e691";
}

.ti-loop:before {
    content: "\e692";
}

.ti-location-pin:before {
    content: "\e693";
}

.ti-list:before {
    content: "\e694";
}

.ti-light-bulb:before {
    content: "\e695";
}

.ti-Italic:before {
    content: "\e696";
}

.ti-info:before {
    content: "\e697";
}

.ti-infinite:before {
    content: "\e698";
}

.ti-id-badge:before {
    content: "\e699";
}

.ti-hummer:before {
    content: "\e69a";
}

.ti-home:before {
    content: "\e69b";
}

.ti-help:before {
    content: "\e69c";
}

.ti-headphone:before {
    content: "\e69d";
}

.ti-harddrives:before {
    content: "\e69e";
}

.ti-harddrive:before {
    content: "\e69f";
}

.ti-gift:before {
    content: "\e6a0";
}

.ti-game:before {
    content: "\e6a1";
}

.ti-filter:before {
    content: "\e6a2";
}

.ti-files:before {
    content: "\e6a3";
}

.ti-file:before {
    content: "\e6a4";
}

.ti-eraser:before {
    content: "\e6a5";
}

.ti-envelope:before {
    content: "\e6a6";
}

.ti-download:before {
    content: "\e6a7";
}

.ti-direction:before {
    content: "\e6a8";
}

.ti-direction-alt:before {
    content: "\e6a9";
}

.ti-dashboard:before {
    content: "\e6aa";
}

.ti-control-stop:before {
    content: "\e6ab";
}

.ti-control-shuffle:before {
    content: "\e6ac";
}

.ti-control-play:before {
    content: "\e6ad";
}

.ti-control-pause:before {
    content: "\e6ae";
}

.ti-control-forward:before {
    content: "\e6af";
}

.ti-control-backward:before {
    content: "\e6b0";
}

.ti-cloud:before {
    content: "\e6b1";
}

.ti-cloud-up:before {
    content: "\e6b2";
}

.ti-cloud-down:before {
    content: "\e6b3";
}

.ti-clipboard:before {
    content: "\e6b4";
}

.ti-car:before {
    content: "\e6b5";
}

.ti-calendar:before {
    content: "\e6b6";
}

.ti-book:before {
    content: "\e6b7";
}

.ti-bell:before {
    content: "\e6b8";
}

.ti-basketball:before {
    content: "\e6b9";
}

.ti-bar-chart:before {
    content: "\e6ba";
}

.ti-bar-chart-alt:before {
    content: "\e6bb";
}

.ti-back-right:before {
    content: "\e6bc";
}

.ti-back-left:before {
    content: "\e6bd";
}

.ti-arrows-corner:before {
    content: "\e6be";
}

.ti-archive:before {
    content: "\e6bf";
}

.ti-anchor:before {
    content: "\e6c0";
}

.ti-align-right:before {
    content: "\e6c1";
}

.ti-align-left:before {
    content: "\e6c2";
}

.ti-align-justify:before {
    content: "\e6c3";
}

.ti-align-center:before {
    content: "\e6c4";
}

.ti-alert:before {
    content: "\e6c5";
}

.ti-alarm-clock:before {
    content: "\e6c6";
}

.ti-agenda:before {
    content: "\e6c7";
}

.ti-write:before {
    content: "\e6c8";
}

.ti-window:before {
    content: "\e6c9";
}

.ti-widgetized:before {
    content: "\e6ca";
}

.ti-widget:before {
    content: "\e6cb";
}

.ti-widget-alt:before {
    content: "\e6cc";
}

.ti-wallet:before {
    content: "\e6cd";
}

.ti-video-clapper:before {
    content: "\e6ce";
}

.ti-video-camera:before {
    content: "\e6cf";
}

.ti-vector:before {
    content: "\e6d0";
}

.ti-themify-logo:before {
    content: "\e6d1";
}

.ti-themify-favicon:before {
    content: "\e6d2";
}

.ti-themify-favicon-alt:before {
    content: "\e6d3";
}

.ti-support:before {
    content: "\e6d4";
}

.ti-stamp:before {
    content: "\e6d5";
}

.ti-split-v-alt:before {
    content: "\e6d6";
}

.ti-slice:before {
    content: "\e6d7";
}

.ti-shortcode:before {
    content: "\e6d8";
}

.ti-shift-right-alt:before {
    content: "\e6d9";
}

.ti-shift-left-alt:before {
    content: "\e6da";
}

.ti-ruler-alt-2:before {
    content: "\e6db";
}

.ti-receipt:before {
    content: "\e6dc";
}

.ti-pin2:before {
    content: "\e6dd";
}

.ti-pin-alt:before {
    content: "\e6de";
}

.ti-pencil-alt2:before {
    content: "\e6df";
}

.ti-palette:before {
    content: "\e6e0";
}

.ti-more:before {
    content: "\e6e1";
}

.ti-more-alt:before {
    content: "\e6e2";
}

.ti-microphone-alt:before {
    content: "\e6e3";
}

.ti-magnet:before {
    content: "\e6e4";
}

.ti-line-double:before {
    content: "\e6e5";
}

.ti-line-dotted:before {
    content: "\e6e6";
}

.ti-line-dashed:before {
    content: "\e6e7";
}

.ti-layout-width-full:before {
    content: "\e6e8";
}

.ti-layout-width-default:before {
    content: "\e6e9";
}

.ti-layout-width-default-alt:before {
    content: "\e6ea";
}

.ti-layout-tab:before {
    content: "\e6eb";
}

.ti-layout-tab-window:before {
    content: "\e6ec";
}

.ti-layout-tab-v:before {
    content: "\e6ed";
}

.ti-layout-tab-min:before {
    content: "\e6ee";
}

.ti-layout-slider:before {
    content: "\e6ef";
}

.ti-layout-slider-alt:before {
    content: "\e6f0";
}

.ti-layout-sidebar-right:before {
    content: "\e6f1";
}

.ti-layout-sidebar-none:before {
    content: "\e6f2";
}

.ti-layout-sidebar-left:before {
    content: "\e6f3";
}

.ti-layout-placeholder:before {
    content: "\e6f4";
}

.ti-layout-menu:before {
    content: "\e6f5";
}

.ti-layout-menu-v:before {
    content: "\e6f6";
}

.ti-layout-menu-separated:before {
    content: "\e6f7";
}

.ti-layout-menu-full:before {
    content: "\e6f8";
}

.ti-layout-media-right-alt:before {
    content: "\e6f9";
}

.ti-layout-media-right:before {
    content: "\e6fa";
}

.ti-layout-media-overlay:before {
    content: "\e6fb";
}

.ti-layout-media-overlay-alt:before {
    content: "\e6fc";
}

.ti-layout-media-overlay-alt-2:before {
    content: "\e6fd";
}

.ti-layout-media-left-alt:before {
    content: "\e6fe";
}

.ti-layout-media-left:before {
    content: "\e6ff";
}

.ti-layout-media-center-alt:before {
    content: "\e700";
}

.ti-layout-media-center:before {
    content: "\e701";
}

.ti-layout-list-thumb:before {
    content: "\e702";
}

.ti-layout-list-thumb-alt:before {
    content: "\e703";
}

.ti-layout-list-post:before {
    content: "\e704";
}

.ti-layout-list-large-image:before {
    content: "\e705";
}

.ti-layout-line-solid:before {
    content: "\e706";
}

.ti-layout-grid4:before {
    content: "\e707";
}

.ti-layout-grid3:before {
    content: "\e708";
}

.ti-layout-grid2:before {
    content: "\e709";
}

.ti-layout-grid2-thumb:before {
    content: "\e70a";
}

.ti-layout-cta-right:before {
    content: "\e70b";
}

.ti-layout-cta-left:before {
    content: "\e70c";
}

.ti-layout-cta-center:before {
    content: "\e70d";
}

.ti-layout-cta-btn-right:before {
    content: "\e70e";
}

.ti-layout-cta-btn-left:before {
    content: "\e70f";
}

.ti-layout-column4:before {
    content: "\e710";
}

.ti-layout-column3:before {
    content: "\e711";
}

.ti-layout-column2:before {
    content: "\e712";
}

.ti-layout-accordion-separated:before {
    content: "\e713";
}

.ti-layout-accordion-merged:before {
    content: "\e714";
}

.ti-layout-accordion-list:before {
    content: "\e715";
}

.ti-ink-pen:before {
    content: "\e716";
}

.ti-info-alt:before {
    content: "\e717";
}

.ti-help-alt:before {
    content: "\e718";
}

.ti-headphone-alt:before {
    content: "\e719";
}

.ti-hand-point-up:before {
    content: "\e71a";
}

.ti-hand-point-right:before {
    content: "\e71b";
}

.ti-hand-point-left:before {
    content: "\e71c";
}

.ti-hand-point-down:before {
    content: "\e71d";
}

.ti-gallery:before {
    content: "\e71e";
}

.ti-face-smile:before {
    content: "\e71f";
}

.ti-face-sad:before {
    content: "\e720";
}

.ti-credit-card:before {
    content: "\e721";
}

.ti-control-skip-forward:before {
    content: "\e722";
}

.ti-control-skip-backward:before {
    content: "\e723";
}

.ti-control-record:before {
    content: "\e724";
}

.ti-control-eject:before {
    content: "\e725";
}

.ti-comments-smiley:before {
    content: "\e726";
}

.ti-brush-alt:before {
    content: "\e727";
}

.ti-youtube:before {
    content: "\e728";
}

.ti-vimeo:before {
    content: "\e729";
}

.ti-twitter:before {
    content: "\e72a";
}

.ti-time:before {
    content: "\e72b";
}

.ti-tumblr:before {
    content: "\e72c";
}

.ti-skype:before {
    content: "\e72d";
}

.ti-share:before {
    content: "\e72e";
}

.ti-share-alt:before {
    content: "\e72f";
}

.ti-rocket:before {
    content: "\e730";
}

.ti-pinterest:before {
    content: "\e731";
}

.ti-new-window:before {
    content: "\e732";
}

.ti-microsoft:before {
    content: "\e733";
}

.ti-list-ol:before {
    content: "\e734";
}

.ti-linkedin:before {
    content: "\e735";
}

.ti-layout-sidebar-2:before {
    content: "\e736";
}

.ti-layout-grid4-alt:before {
    content: "\e737";
}

.ti-layout-grid3-alt:before {
    content: "\e738";
}

.ti-layout-grid2-alt:before {
    content: "\e739";
}

.ti-layout-column4-alt:before {
    content: "\e73a";
}

.ti-layout-column3-alt:before {
    content: "\e73b";
}

.ti-layout-column2-alt:before {
    content: "\e73c";
}

.ti-instagram:before {
    content: "\e73d";
}

.ti-google:before {
    content: "\e73e";
}

.ti-github:before {
    content: "\e73f";
}

.ti-flickr:before {
    content: "\e740";
}

.ti-facebook:before {
    content: "\e741";
}

.ti-dropbox:before {
    content: "\e742";
}

.ti-dribbble:before {
    content: "\e743";
}

.ti-apple:before {
    content: "\e744";
}

.ti-android:before {
    content: "\e745";
}

.ti-save:before {
    content: "\e746";
}

.ti-save-alt:before {
    content: "\e747";
}

.ti-yahoo:before {
    content: "\e748";
}

.ti-wordpress:before {
    content: "\e749";
}

.ti-vimeo-alt:before {
    content: "\e74a";
}

.ti-twitter-alt:before {
    content: "\e74b";
}

.ti-tumblr-alt:before {
    content: "\e74c";
}

.ti-trello:before {
    content: "\e74d";
}

.ti-stack-overflow:before {
    content: "\e74e";
}

.ti-soundcloud:before {
    content: "\e74f";
}

.ti-sharethis:before {
    content: "\e750";
}

.ti-sharethis-alt:before {
    content: "\e751";
}

.ti-reddit:before {
    content: "\e752";
}

.ti-pinterest-alt:before {
    content: "\e753";
}

.ti-microsoft-alt:before {
    content: "\e754";
}

.ti-linux:before {
    content: "\e755";
}

.ti-jsfiddle:before {
    content: "\e756";
}

.ti-joomla:before {
    content: "\e757";
}

.ti-html5:before {
    content: "\e758";
}

.ti-flickr-alt:before {
    content: "\e759";
}

.ti-email:before {
    content: "\e75a";
}

.ti-drupal:before {
    content: "\e75b";
}

.ti-dropbox-alt:before {
    content: "\e75c";
}

.ti-css3:before {
    content: "\e75d";
}

.ti-rss:before {
    content: "\e75e";
}

.ti-rss-alt:before {
    content: "\e75f";
}

@font-face {
    font-family: 'Linearicons';
    src: url('../fonts/Linearicons.eot?4t1dgh');
    src: url('../fonts/Linearicons.eot?4t1dgh#iefix') format('embedded-opentype'), url('../fonts/Linearicons.ttf?4t1dgh') format('truetype'), url('../fonts/Linearicons.woff?4t1dgh') format('woff'), url('../fonts/Linearicons.svg?4t1dgh#Linearicons') format('svg');
    font-weight: normal;
    font-style: normal;
    src: url(../fonts/Linearicons.eot); /* For IE6-8 */
    src: local('Linearicons'), local('Linearicons'), url('../fonts/Linearicons.woff') format('woff'), url('../fonts/Linearicons.ttf') format('truetype');
}

.linearicons,
[class^="linearicons-"], [class*=" linearicons-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'Linearicons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.linearicons-home:before {
    content: "\e900";
}

.linearicons-home2:before {
    content: "\e901";
}

.linearicons-home3:before {
    content: "\e902";
}

.linearicons-home4:before {
    content: "\e903";
}

.linearicons-home5:before {
    content: "\e904";
}

.linearicons-home6:before {
    content: "\e905";
}

.linearicons-bathtub:before {
    content: "\e906";
}

.linearicons-toothbrush:before {
    content: "\e907";
}

.linearicons-bed:before {
    content: "\e908";
}

.linearicons-couch:before {
    content: "\e909";
}

.linearicons-chair:before {
    content: "\e90a";
}

.linearicons-city:before {
    content: "\e90b";
}

.linearicons-apartment:before {
    content: "\e90c";
}

.linearicons-pencil:before {
    content: "\e90d";
}

.linearicons-pencil2:before {
    content: "\e90e";
}

.linearicons-pen:before {
    content: "\e90f";
}

.linearicons-pencil3:before {
    content: "\e910";
}

.linearicons-eraser:before {
    content: "\e911";
}

.linearicons-pencil4:before {
    content: "\e912";
}

.linearicons-pencil5:before {
    content: "\e913";
}

.linearicons-feather:before {
    content: "\e914";
}

.linearicons-feather2:before {
    content: "\e915";
}

.linearicons-feather3:before {
    content: "\e916";
}

.linearicons-pen2:before {
    content: "\e917";
}

.linearicons-pen-add:before {
    content: "\e918";
}

.linearicons-pen-remove:before {
    content: "\e919";
}

.linearicons-vector:before {
    content: "\e91a";
}

.linearicons-pen3:before {
    content: "\e91b";
}

.linearicons-blog:before {
    content: "\e91c";
}

.linearicons-brush:before {
    content: "\e91d";
}

.linearicons-brush2:before {
    content: "\e91e";
}

.linearicons-spray:before {
    content: "\e91f";
}

.linearicons-paint-roller:before {
    content: "\e920";
}

.linearicons-stamp:before {
    content: "\e921";
}

.linearicons-tape:before {
    content: "\e922";
}

.linearicons-desk-tape:before {
    content: "\e923";
}

.linearicons-texture:before {
    content: "\e924";
}

.linearicons-eye-dropper:before {
    content: "\e925";
}

.linearicons-palette:before {
    content: "\e926";
}

.linearicons-color-sampler:before {
    content: "\e927";
}

.linearicons-bucket:before {
    content: "\e928";
}

.linearicons-gradient:before {
    content: "\e929";
}

.linearicons-gradient2:before {
    content: "\e92a";
}

.linearicons-magic-wand:before {
    content: "\e92b";
}

.linearicons-magnet:before {
    content: "\e92c";
}

.linearicons-pencil-ruler:before {
    content: "\e92d";
}

.linearicons-pencil-ruler2:before {
    content: "\e92e";
}

.linearicons-compass:before {
    content: "\e92f";
}

.linearicons-aim:before {
    content: "\e930";
}

.linearicons-gun:before {
    content: "\e931";
}

.linearicons-bottle:before {
    content: "\e932";
}

.linearicons-drop:before {
    content: "\e933";
}

.linearicons-drop-crossed:before {
    content: "\e934";
}

.linearicons-drop2:before {
    content: "\e935";
}

.linearicons-snow:before {
    content: "\e936";
}

.linearicons-snow2:before {
    content: "\e937";
}

.linearicons-fire:before {
    content: "\e938";
}

.linearicons-lighter:before {
    content: "\e939";
}

.linearicons-knife:before {
    content: "\e93a";
}

.linearicons-dagger:before {
    content: "\e93b";
}

.linearicons-tissue:before {
    content: "\e93c";
}

.linearicons-toilet-paper:before {
    content: "\e93d";
}

.linearicons-poop:before {
    content: "\e93e";
}

.linearicons-umbrella:before {
    content: "\e93f";
}

.linearicons-umbrella2:before {
    content: "\e940";
}

.linearicons-rain:before {
    content: "\e941";
}

.linearicons-tornado:before {
    content: "\e942";
}

.linearicons-wind:before {
    content: "\e943";
}

.linearicons-fan:before {
    content: "\e944";
}

.linearicons-contrast:before {
    content: "\e945";
}

.linearicons-sun-small:before {
    content: "\e946";
}

.linearicons-sun:before {
    content: "\e947";
}

.linearicons-sun2:before {
    content: "\e948";
}

.linearicons-moon:before {
    content: "\e949";
}

.linearicons-cloud:before {
    content: "\e94a";
}

.linearicons-cloud-upload:before {
    content: "\e94b";
}

.linearicons-cloud-download:before {
    content: "\e94c";
}

.linearicons-cloud-rain:before {
    content: "\e94d";
}

.linearicons-cloud-hailstones:before {
    content: "\e94e";
}

.linearicons-cloud-snow:before {
    content: "\e94f";
}

.linearicons-cloud-windy:before {
    content: "\e950";
}

.linearicons-sun-wind:before {
    content: "\e951";
}

.linearicons-cloud-fog:before {
    content: "\e952";
}

.linearicons-cloud-sun:before {
    content: "\e953";
}

.linearicons-cloud-lightning:before {
    content: "\e954";
}

.linearicons-cloud-sync:before {
    content: "\e955";
}

.linearicons-cloud-lock:before {
    content: "\e956";
}

.linearicons-cloud-gear:before {
    content: "\e957";
}

.linearicons-cloud-alert:before {
    content: "\e958";
}

.linearicons-cloud-check:before {
    content: "\e959";
}

.linearicons-cloud-cross:before {
    content: "\e95a";
}

.linearicons-cloud-crossed:before {
    content: "\e95b";
}

.linearicons-cloud-database:before {
    content: "\e95c";
}

.linearicons-database:before {
    content: "\e95d";
}

.linearicons-database-add:before {
    content: "\e95e";
}

.linearicons-database-remove:before {
    content: "\e95f";
}

.linearicons-database-lock:before {
    content: "\e960";
}

.linearicons-database-refresh:before {
    content: "\e961";
}

.linearicons-database-check:before {
    content: "\e962";
}

.linearicons-database-history:before {
    content: "\e963";
}

.linearicons-database-upload:before {
    content: "\e964";
}

.linearicons-database-download:before {
    content: "\e965";
}

.linearicons-server:before {
    content: "\e966";
}

.linearicons-shield:before {
    content: "\e967";
}

.linearicons-shield-check:before {
    content: "\e968";
}

.linearicons-shield-alert:before {
    content: "\e969";
}

.linearicons-shield-cross:before {
    content: "\e96a";
}

.linearicons-lock:before {
    content: "\e96b";
}

.linearicons-rotation-lock:before {
    content: "\e96c";
}

.linearicons-unlock:before {
    content: "\e96d";
}

.linearicons-key:before {
    content: "\e96e";
}

.linearicons-key-hole:before {
    content: "\e96f";
}

.linearicons-toggle-off:before {
    content: "\e970";
}

.linearicons-toggle-on:before {
    content: "\e971";
}

.linearicons-cog:before {
    content: "\e972";
}

.linearicons-cog2:before {
    content: "\e973";
}

.linearicons-wrench:before {
    content: "\e974";
}

.linearicons-screwdriver:before {
    content: "\e975";
}

.linearicons-hammer-wrench:before {
    content: "\e976";
}

.linearicons-hammer:before {
    content: "\e977";
}

.linearicons-saw:before {
    content: "\e978";
}

.linearicons-axe:before {
    content: "\e979";
}

.linearicons-axe2:before {
    content: "\e97a";
}

.linearicons-shovel:before {
    content: "\e97b";
}

.linearicons-pickaxe:before {
    content: "\e97c";
}

.linearicons-factory:before {
    content: "\e97d";
}

.linearicons-factory2:before {
    content: "\e97e";
}

.linearicons-recycle:before {
    content: "\e97f";
}

.linearicons-trash:before {
    content: "\e980";
}

.linearicons-trash2:before {
    content: "\e981";
}

.linearicons-trash3:before {
    content: "\e982";
}

.linearicons-broom:before {
    content: "\e983";
}

.linearicons-game:before {
    content: "\e984";
}

.linearicons-gamepad:before {
    content: "\e985";
}

.linearicons-joystick:before {
    content: "\e986";
}

.linearicons-dice:before {
    content: "\e987";
}

.linearicons-spades:before {
    content: "\e988";
}

.linearicons-diamonds:before {
    content: "\e989";
}

.linearicons-clubs:before {
    content: "\e98a";
}

.linearicons-hearts:before {
    content: "\e98b";
}

.linearicons-heart:before {
    content: "\e98c";
}

.linearicons-star:before {
    content: "\e98d";
}

.linearicons-star-half:before {
    content: "\e98e";
}

.linearicons-star-empty:before {
    content: "\e98f";
}

.linearicons-flag:before {
    content: "\e990";
}

.linearicons-flag2:before {
    content: "\e991";
}

.linearicons-flag3:before {
    content: "\e992";
}

.linearicons-mailbox-full:before {
    content: "\e993";
}

.linearicons-mailbox-empty:before {
    content: "\e994";
}

.linearicons-at-sign:before {
    content: "\e995";
}

.linearicons-envelope:before {
    content: "\e996";
}

.linearicons-envelope-open:before {
    content: "\e997";
}

.linearicons-paperclip:before {
    content: "\e998";
}

.linearicons-paper-plane:before {
    content: "\e999";
}

.linearicons-reply:before {
    content: "\e99a";
}

.linearicons-reply-all:before {
    content: "\e99b";
}

.linearicons-inbox:before {
    content: "\e99c";
}

.linearicons-inbox2:before {
    content: "\e99d";
}

.linearicons-outbox:before {
    content: "\e99e";
}

.linearicons-box:before {
    content: "\e99f";
}

.linearicons-archive:before {
    content: "\e9a0";
}

.linearicons-archive2:before {
    content: "\e9a1";
}

.linearicons-drawers:before {
    content: "\e9a2";
}

.linearicons-drawers2:before {
    content: "\e9a3";
}

.linearicons-drawers3:before {
    content: "\e9a4";
}

.linearicons-eye:before {
    content: "\e9a5";
}

.linearicons-eye-crossed:before {
    content: "\e9a6";
}

.linearicons-eye-plus:before {
    content: "\e9a7";
}

.linearicons-eye-minus:before {
    content: "\e9a8";
}

.linearicons-binoculars:before {
    content: "\e9a9";
}

.linearicons-binoculars2:before {
    content: "\e9aa";
}

.linearicons-hdd:before {
    content: "\e9ab";
}

.linearicons-hdd-down:before {
    content: "\e9ac";
}

.linearicons-hdd-up:before {
    content: "\e9ad";
}

.linearicons-floppy-disk:before {
    content: "\e9ae";
}

.linearicons-disc:before {
    content: "\e9af";
}

.linearicons-tape2:before {
    content: "\e9b0";
}

.linearicons-printer:before {
    content: "\e9b1";
}

.linearicons-shredder:before {
    content: "\e9b2";
}

.linearicons-file-empty:before {
    content: "\e9b3";
}

.linearicons-file-add:before {
    content: "\e9b4";
}

.linearicons-file-check:before {
    content: "\e9b5";
}

.linearicons-file-lock:before {
    content: "\e9b6";
}

.linearicons-files:before {
    content: "\e9b7";
}

.linearicons-copy:before {
    content: "\e9b8";
}

.linearicons-compare:before {
    content: "\e9b9";
}

.linearicons-folder:before {
    content: "\e9ba";
}

.linearicons-folder-search:before {
    content: "\e9bb";
}

.linearicons-folder-plus:before {
    content: "\e9bc";
}

.linearicons-folder-minus:before {
    content: "\e9bd";
}

.linearicons-folder-download:before {
    content: "\e9be";
}

.linearicons-folder-upload:before {
    content: "\e9bf";
}

.linearicons-folder-star:before {
    content: "\e9c0";
}

.linearicons-folder-heart:before {
    content: "\e9c1";
}

.linearicons-folder-user:before {
    content: "\e9c2";
}

.linearicons-folder-shared:before {
    content: "\e9c3";
}

.linearicons-folder-music:before {
    content: "\e9c4";
}

.linearicons-folder-picture:before {
    content: "\e9c5";
}

.linearicons-folder-film:before {
    content: "\e9c6";
}

.linearicons-scissors:before {
    content: "\e9c7";
}

.linearicons-paste:before {
    content: "\e9c8";
}

.linearicons-clipboard-empty:before {
    content: "\e9c9";
}

.linearicons-clipboard-pencil:before {
    content: "\e9ca";
}

.linearicons-clipboard-text:before {
    content: "\e9cb";
}

.linearicons-clipboard-check:before {
    content: "\e9cc";
}

.linearicons-clipboard-down:before {
    content: "\e9cd";
}

.linearicons-clipboard-left:before {
    content: "\e9ce";
}

.linearicons-clipboard-alert:before {
    content: "\e9cf";
}

.linearicons-clipboard-user:before {
    content: "\e9d0";
}

.linearicons-register:before {
    content: "\e9d1";
}

.linearicons-enter:before {
    content: "\e9d2";
}

.linearicons-exit:before {
    content: "\e9d3";
}

.linearicons-papers:before {
    content: "\e9d4";
}

.linearicons-news:before {
    content: "\e9d5";
}

.linearicons-reading:before {
    content: "\e9d6";
}

.linearicons-typewriter:before {
    content: "\e9d7";
}

.linearicons-document:before {
    content: "\e9d8";
}

.linearicons-document2:before {
    content: "\e9d9";
}

.linearicons-graduation-hat:before {
    content: "\e9da";
}

.linearicons-license:before {
    content: "\e9db";
}

.linearicons-license2:before {
    content: "\e9dc";
}

.linearicons-medal-empty:before {
    content: "\e9dd";
}

.linearicons-medal-first:before {
    content: "\e9de";
}

.linearicons-medal-second:before {
    content: "\e9df";
}

.linearicons-medal-third:before {
    content: "\e9e0";
}

.linearicons-podium:before {
    content: "\e9e1";
}

.linearicons-trophy:before {
    content: "\e9e2";
}

.linearicons-trophy2:before {
    content: "\e9e3";
}

.linearicons-music-note:before {
    content: "\e9e4";
}

.linearicons-music-note2:before {
    content: "\e9e5";
}

.linearicons-music-note3:before {
    content: "\e9e6";
}

.linearicons-playlist:before {
    content: "\e9e7";
}

.linearicons-playlist-add:before {
    content: "\e9e8";
}

.linearicons-guitar:before {
    content: "\e9e9";
}

.linearicons-trumpet:before {
    content: "\e9ea";
}

.linearicons-album:before {
    content: "\e9eb";
}

.linearicons-shuffle:before {
    content: "\e9ec";
}

.linearicons-repeat-one:before {
    content: "\e9ed";
}

.linearicons-repeat:before {
    content: "\e9ee";
}

.linearicons-headphones:before {
    content: "\e9ef";
}

.linearicons-headset:before {
    content: "\e9f0";
}

.linearicons-loudspeaker:before {
    content: "\e9f1";
}

.linearicons-equalizer:before {
    content: "\e9f2";
}

.linearicons-theater:before {
    content: "\e9f3";
}

.linearicons-3d-glasses:before {
    content: "\e9f4";
}

.linearicons-ticket:before {
    content: "\e9f5";
}

.linearicons-presentation:before {
    content: "\e9f6";
}

.linearicons-play:before {
    content: "\e9f7";
}

.linearicons-film-play:before {
    content: "\e9f8";
}

.linearicons-clapboard-play:before {
    content: "\e9f9";
}

.linearicons-media:before {
    content: "\e9fa";
}

.linearicons-film:before {
    content: "\e9fb";
}

.linearicons-film2:before {
    content: "\e9fc";
}

.linearicons-surveillance:before {
    content: "\e9fd";
}

.linearicons-surveillance2:before {
    content: "\e9fe";
}

.linearicons-camera:before {
    content: "\e9ff";
}

.linearicons-camera-crossed:before {
    content: "\ea00";
}

.linearicons-camera-play:before {
    content: "\ea01";
}

.linearicons-time-lapse:before {
    content: "\ea02";
}

.linearicons-record:before {
    content: "\ea03";
}

.linearicons-camera2:before {
    content: "\ea04";
}

.linearicons-camera-flip:before {
    content: "\ea05";
}

.linearicons-panorama:before {
    content: "\ea06";
}

.linearicons-time-lapse2:before {
    content: "\ea07";
}

.linearicons-shutter:before {
    content: "\ea08";
}

.linearicons-shutter2:before {
    content: "\ea09";
}

.linearicons-face-detection:before {
    content: "\ea0a";
}

.linearicons-flare:before {
    content: "\ea0b";
}

.linearicons-convex:before {
    content: "\ea0c";
}

.linearicons-concave:before {
    content: "\ea0d";
}

.linearicons-picture:before {
    content: "\ea0e";
}

.linearicons-picture2:before {
    content: "\ea0f";
}

.linearicons-picture3:before {
    content: "\ea10";
}

.linearicons-pictures:before {
    content: "\ea11";
}

.linearicons-book:before {
    content: "\ea12";
}

.linearicons-audio-book:before {
    content: "\ea13";
}

.linearicons-book2:before {
    content: "\ea14";
}

.linearicons-bookmark:before {
    content: "\ea15";
}

.linearicons-bookmark2:before {
    content: "\ea16";
}

.linearicons-label:before {
    content: "\ea17";
}

.linearicons-library:before {
    content: "\ea18";
}

.linearicons-library2:before {
    content: "\ea19";
}

.linearicons-contacts:before {
    content: "\ea1a";
}

.linearicons-profile:before {
    content: "\ea1b";
}

.linearicons-portrait:before {
    content: "\ea1c";
}

.linearicons-portrait2:before {
    content: "\ea1d";
}

.linearicons-user:before {
    content: "\ea1e";
}

.linearicons-user-plus:before {
    content: "\ea1f";
}

.linearicons-user-minus:before {
    content: "\ea20";
}

.linearicons-user-lock:before {
    content: "\ea21";
}

.linearicons-users:before {
    content: "\ea22";
}

.linearicons-users2:before {
    content: "\ea23";
}

.linearicons-users-plus:before {
    content: "\ea24";
}

.linearicons-users-minus:before {
    content: "\ea25";
}

.linearicons-group-work:before {
    content: "\ea26";
}

.linearicons-woman:before {
    content: "\ea27";
}

.linearicons-man:before {
    content: "\ea28";
}

.linearicons-baby:before {
    content: "\ea29";
}

.linearicons-baby2:before {
    content: "\ea2a";
}

.linearicons-baby3:before {
    content: "\ea2b";
}

.linearicons-baby-bottle:before {
    content: "\ea2c";
}

.linearicons-walk:before {
    content: "\ea2d";
}

.linearicons-hand-waving:before {
    content: "\ea2e";
}

.linearicons-jump:before {
    content: "\ea2f";
}

.linearicons-run:before {
    content: "\ea30";
}

.linearicons-woman2:before {
    content: "\ea31";
}

.linearicons-man2:before {
    content: "\ea32";
}

.linearicons-man-woman:before {
    content: "\ea33";
}

.linearicons-height:before {
    content: "\ea34";
}

.linearicons-weight:before {
    content: "\ea35";
}

.linearicons-scale:before {
    content: "\ea36";
}

.linearicons-button:before {
    content: "\ea37";
}

.linearicons-bow-tie:before {
    content: "\ea38";
}

.linearicons-tie:before {
    content: "\ea39";
}

.linearicons-socks:before {
    content: "\ea3a";
}

.linearicons-shoe:before {
    content: "\ea3b";
}

.linearicons-shoes:before {
    content: "\ea3c";
}

.linearicons-hat:before {
    content: "\ea3d";
}

.linearicons-pants:before {
    content: "\ea3e";
}

.linearicons-shorts:before {
    content: "\ea3f";
}

.linearicons-flip-flops:before {
    content: "\ea40";
}

.linearicons-shirt:before {
    content: "\ea41";
}

.linearicons-hanger:before {
    content: "\ea42";
}

.linearicons-laundry:before {
    content: "\ea43";
}

.linearicons-store:before {
    content: "\ea44";
}

.linearicons-haircut:before {
    content: "\ea45";
}

.linearicons-store-24:before {
    content: "\ea46";
}

.linearicons-barcode:before {
    content: "\ea47";
}

.linearicons-barcode2:before {
    content: "\ea48";
}

.linearicons-barcode3:before {
    content: "\ea49";
}

.linearicons-cashier:before {
    content: "\ea4a";
}

.linearicons-bag:before {
    content: "\ea4b";
}

.linearicons-bag2:before {
    content: "\ea4c";
}

.linearicons-cart:before {
    content: "\ea4d";
}

.linearicons-cart-empty:before {
    content: "\ea4e";
}

.linearicons-cart-full:before {
    content: "\ea4f";
}

.linearicons-cart-plus:before {
    content: "\ea50";
}

.linearicons-cart-plus2:before {
    content: "\ea51";
}

.linearicons-cart-add:before {
    content: "\ea52";
}

.linearicons-cart-remove:before {
    content: "\ea53";
}

.linearicons-cart-exchange:before {
    content: "\ea54";
}

.linearicons-tag:before {
    content: "\ea55";
}

.linearicons-tags:before {
    content: "\ea56";
}

.linearicons-receipt:before {
    content: "\ea57";
}

.linearicons-wallet:before {
    content: "\ea58";
}

.linearicons-credit-card:before {
    content: "\ea59";
}

.linearicons-cash-dollar:before {
    content: "\ea5a";
}

.linearicons-cash-euro:before {
    content: "\ea5b";
}

.linearicons-cash-pound:before {
    content: "\ea5c";
}

.linearicons-cash-yen:before {
    content: "\ea5d";
}

.linearicons-bag-dollar:before {
    content: "\ea5e";
}

.linearicons-bag-euro:before {
    content: "\ea5f";
}

.linearicons-bag-pound:before {
    content: "\ea60";
}

.linearicons-bag-yen:before {
    content: "\ea61";
}

.linearicons-coin-dollar:before {
    content: "\ea62";
}

.linearicons-coin-euro:before {
    content: "\ea63";
}

.linearicons-coin-pound:before {
    content: "\ea64";
}

.linearicons-coin-yen:before {
    content: "\ea65";
}

.linearicons-calculator:before {
    content: "\ea66";
}

.linearicons-calculator2:before {
    content: "\ea67";
}

.linearicons-abacus:before {
    content: "\ea68";
}

.linearicons-vault:before {
    content: "\ea69";
}

.linearicons-telephone:before {
    content: "\ea6a";
}

.linearicons-phone-lock:before {
    content: "\ea6b";
}

.linearicons-phone-wave:before {
    content: "\ea6c";
}

.linearicons-phone-pause:before {
    content: "\ea6d";
}

.linearicons-phone-outgoing:before {
    content: "\ea6e";
}

.linearicons-phone-incoming:before {
    content: "\ea6f";
}

.linearicons-phone-in-out:before {
    content: "\ea70";
}

.linearicons-phone-error:before {
    content: "\ea71";
}

.linearicons-phone-sip:before {
    content: "\ea72";
}

.linearicons-phone-plus:before {
    content: "\ea73";
}

.linearicons-phone-minus:before {
    content: "\ea74";
}

.linearicons-voicemail:before {
    content: "\ea75";
}

.linearicons-dial:before {
    content: "\ea76";
}

.linearicons-telephone2:before {
    content: "\ea77";
}

.linearicons-pushpin:before {
    content: "\ea78";
}

.linearicons-pushpin2:before {
    content: "\ea79";
}

.linearicons-map-marker:before {
    content: "\ea7a";
}

.linearicons-map-marker-user:before {
    content: "\ea7b";
}

.linearicons-map-marker-down:before {
    content: "\ea7c";
}

.linearicons-map-marker-check:before {
    content: "\ea7d";
}

.linearicons-map-marker-crossed:before {
    content: "\ea7e";
}

.linearicons-radar:before {
    content: "\ea7f";
}

.linearicons-compass2:before {
    content: "\ea80";
}

.linearicons-map:before {
    content: "\ea81";
}

.linearicons-map2:before {
    content: "\ea82";
}

.linearicons-location:before {
    content: "\ea83";
}

.linearicons-road-sign:before {
    content: "\ea84";
}

.linearicons-calendar-empty:before {
    content: "\ea85";
}

.linearicons-calendar-check:before {
    content: "\ea86";
}

.linearicons-calendar-cross:before {
    content: "\ea87";
}

.linearicons-calendar-31:before {
    content: "\ea88";
}

.linearicons-calendar-full:before {
    content: "\ea89";
}

.linearicons-calendar-insert:before {
    content: "\ea8a";
}

.linearicons-calendar-text:before {
    content: "\ea8b";
}

.linearicons-calendar-user:before {
    content: "\ea8c";
}

.linearicons-mouse:before {
    content: "\ea8d";
}

.linearicons-mouse-left:before {
    content: "\ea8e";
}

.linearicons-mouse-right:before {
    content: "\ea8f";
}

.linearicons-mouse-both:before {
    content: "\ea90";
}

.linearicons-keyboard:before {
    content: "\ea91";
}

.linearicons-keyboard-up:before {
    content: "\ea92";
}

.linearicons-keyboard-down:before {
    content: "\ea93";
}

.linearicons-delete:before {
    content: "\ea94";
}

.linearicons-spell-check:before {
    content: "\ea95";
}

.linearicons-escape:before {
    content: "\ea96";
}

.linearicons-enter2:before {
    content: "\ea97";
}

.linearicons-screen:before {
    content: "\ea98";
}

.linearicons-aspect-ratio:before {
    content: "\ea99";
}

.linearicons-signal:before {
    content: "\ea9a";
}

.linearicons-signal-lock:before {
    content: "\ea9b";
}

.linearicons-signal-80:before {
    content: "\ea9c";
}

.linearicons-signal-60:before {
    content: "\ea9d";
}

.linearicons-signal-40:before {
    content: "\ea9e";
}

.linearicons-signal-20:before {
    content: "\ea9f";
}

.linearicons-signal-0:before {
    content: "\eaa0";
}

.linearicons-signal-blocked:before {
    content: "\eaa1";
}

.linearicons-sim:before {
    content: "\eaa2";
}

.linearicons-flash-memory:before {
    content: "\eaa3";
}

.linearicons-usb-drive:before {
    content: "\eaa4";
}

.linearicons-phone:before {
    content: "\eaa5";
}

.linearicons-smartphone:before {
    content: "\eaa6";
}

.linearicons-smartphone-notification:before {
    content: "\eaa7";
}

.linearicons-smartphone-vibration:before {
    content: "\eaa8";
}

.linearicons-smartphone-embed:before {
    content: "\eaa9";
}

.linearicons-smartphone-waves:before {
    content: "\eaaa";
}

.linearicons-tablet:before {
    content: "\eaab";
}

.linearicons-tablet2:before {
    content: "\eaac";
}

.linearicons-laptop:before {
    content: "\eaad";
}

.linearicons-laptop-phone:before {
    content: "\eaae";
}

.linearicons-desktop:before {
    content: "\eaaf";
}

.linearicons-launch:before {
    content: "\eab0";
}

.linearicons-new-tab:before {
    content: "\eab1";
}

.linearicons-window:before {
    content: "\eab2";
}

.linearicons-cable:before {
    content: "\eab3";
}

.linearicons-cable2:before {
    content: "\eab4";
}

.linearicons-tv:before {
    content: "\eab5";
}

.linearicons-radio:before {
    content: "\eab6";
}

.linearicons-remote-control:before {
    content: "\eab7";
}

.linearicons-power-switch:before {
    content: "\eab8";
}

.linearicons-power:before {
    content: "\eab9";
}

.linearicons-power-crossed:before {
    content: "\eaba";
}

.linearicons-flash-auto:before {
    content: "\eabb";
}

.linearicons-lamp:before {
    content: "\eabc";
}

.linearicons-flashlight:before {
    content: "\eabd";
}

.linearicons-lampshade:before {
    content: "\eabe";
}

.linearicons-cord:before {
    content: "\eabf";
}

.linearicons-outlet:before {
    content: "\eac0";
}

.linearicons-battery-power:before {
    content: "\eac1";
}

.linearicons-battery-empty:before {
    content: "\eac2";
}

.linearicons-battery-alert:before {
    content: "\eac3";
}

.linearicons-battery-error:before {
    content: "\eac4";
}

.linearicons-battery-low1:before {
    content: "\eac5";
}

.linearicons-battery-low2:before {
    content: "\eac6";
}

.linearicons-battery-low3:before {
    content: "\eac7";
}

.linearicons-battery-mid1:before {
    content: "\eac8";
}

.linearicons-battery-mid2:before {
    content: "\eac9";
}

.linearicons-battery-mid3:before {
    content: "\eaca";
}

.linearicons-battery-full:before {
    content: "\eacb";
}

.linearicons-battery-charging:before {
    content: "\eacc";
}

.linearicons-battery-charging2:before {
    content: "\eacd";
}

.linearicons-battery-charging3:before {
    content: "\eace";
}

.linearicons-battery-charging4:before {
    content: "\eacf";
}

.linearicons-battery-charging5:before {
    content: "\ead0";
}

.linearicons-battery-charging6:before {
    content: "\ead1";
}

.linearicons-battery-charging7:before {
    content: "\ead2";
}

.linearicons-chip:before {
    content: "\ead3";
}

.linearicons-chip-x64:before {
    content: "\ead4";
}

.linearicons-chip-x86:before {
    content: "\ead5";
}

.linearicons-bubble:before {
    content: "\ead6";
}

.linearicons-bubbles:before {
    content: "\ead7";
}

.linearicons-bubble-dots:before {
    content: "\ead8";
}

.linearicons-bubble-alert:before {
    content: "\ead9";
}

.linearicons-bubble-question:before {
    content: "\eada";
}

.linearicons-bubble-text:before {
    content: "\eadb";
}

.linearicons-bubble-pencil:before {
    content: "\eadc";
}

.linearicons-bubble-picture:before {
    content: "\eadd";
}

.linearicons-bubble-video:before {
    content: "\eade";
}

.linearicons-bubble-user:before {
    content: "\eadf";
}

.linearicons-bubble-quote:before {
    content: "\eae0";
}

.linearicons-bubble-heart:before {
    content: "\eae1";
}

.linearicons-bubble-emoticon:before {
    content: "\eae2";
}

.linearicons-bubble-attachment:before {
    content: "\eae3";
}

.linearicons-phone-bubble:before {
    content: "\eae4";
}

.linearicons-quote-open:before {
    content: "\eae5";
}

.linearicons-quote-close:before {
    content: "\eae6";
}

.linearicons-dna:before {
    content: "\eae7";
}

.linearicons-heart-pulse:before {
    content: "\eae8";
}

.linearicons-pulse:before {
    content: "\eae9";
}

.linearicons-syringe:before {
    content: "\eaea";
}

.linearicons-pills:before {
    content: "\eaeb";
}

.linearicons-first-aid:before {
    content: "\eaec";
}

.linearicons-lifebuoy:before {
    content: "\eaed";
}

.linearicons-bandage:before {
    content: "\eaee";
}

.linearicons-bandages:before {
    content: "\eaef";
}

.linearicons-thermometer:before {
    content: "\eaf0";
}

.linearicons-microscope:before {
    content: "\eaf1";
}

.linearicons-brain:before {
    content: "\eaf2";
}

.linearicons-beaker:before {
    content: "\eaf3";
}

.linearicons-skull:before {
    content: "\eaf4";
}

.linearicons-bone:before {
    content: "\eaf5";
}

.linearicons-construction:before {
    content: "\eaf6";
}

.linearicons-construction-cone:before {
    content: "\eaf7";
}

.linearicons-pie-chart:before {
    content: "\eaf8";
}

.linearicons-pie-chart2:before {
    content: "\eaf9";
}

.linearicons-graph:before {
    content: "\eafa";
}

.linearicons-chart-growth:before {
    content: "\eafb";
}

.linearicons-chart-bars:before {
    content: "\eafc";
}

.linearicons-chart-settings:before {
    content: "\eafd";
}

.linearicons-cake:before {
    content: "\eafe";
}

.linearicons-gift:before {
    content: "\eaff";
}

.linearicons-balloon:before {
    content: "\eb00";
}

.linearicons-rank:before {
    content: "\eb01";
}

.linearicons-rank2:before {
    content: "\eb02";
}

.linearicons-rank3:before {
    content: "\eb03";
}

.linearicons-crown:before {
    content: "\eb04";
}

.linearicons-lotus:before {
    content: "\eb05";
}

.linearicons-diamond:before {
    content: "\eb06";
}

.linearicons-diamond2:before {
    content: "\eb07";
}

.linearicons-diamond3:before {
    content: "\eb08";
}

.linearicons-diamond4:before {
    content: "\eb09";
}

.linearicons-linearicons:before {
    content: "\eb0a";
}

.linearicons-teacup:before {
    content: "\eb0b";
}

.linearicons-teapot:before {
    content: "\eb0c";
}

.linearicons-glass:before {
    content: "\eb0d";
}

.linearicons-bottle2:before {
    content: "\eb0e";
}

.linearicons-glass-cocktail:before {
    content: "\eb0f";
}

.linearicons-glass2:before {
    content: "\eb10";
}

.linearicons-dinner:before {
    content: "\eb11";
}

.linearicons-dinner2:before {
    content: "\eb12";
}

.linearicons-chef:before {
    content: "\eb13";
}

.linearicons-scale2:before {
    content: "\eb14";
}

.linearicons-egg:before {
    content: "\eb15";
}

.linearicons-egg2:before {
    content: "\eb16";
}

.linearicons-eggs:before {
    content: "\eb17";
}

.linearicons-platter:before {
    content: "\eb18";
}

.linearicons-steak:before {
    content: "\eb19";
}

.linearicons-hamburger:before {
    content: "\eb1a";
}

.linearicons-hotdog:before {
    content: "\eb1b";
}

.linearicons-pizza:before {
    content: "\eb1c";
}

.linearicons-sausage:before {
    content: "\eb1d";
}

.linearicons-chicken:before {
    content: "\eb1e";
}

.linearicons-fish:before {
    content: "\eb1f";
}

.linearicons-carrot:before {
    content: "\eb20";
}

.linearicons-cheese:before {
    content: "\eb21";
}

.linearicons-bread:before {
    content: "\eb22";
}

.linearicons-ice-cream:before {
    content: "\eb23";
}

.linearicons-ice-cream2:before {
    content: "\eb24";
}

.linearicons-candy:before {
    content: "\eb25";
}

.linearicons-lollipop:before {
    content: "\eb26";
}

.linearicons-coffee-bean:before {
    content: "\eb27";
}

.linearicons-coffee-cup:before {
    content: "\eb28";
}

.linearicons-cherry:before {
    content: "\eb29";
}

.linearicons-grapes:before {
    content: "\eb2a";
}

.linearicons-citrus:before {
    content: "\eb2b";
}

.linearicons-apple:before {
    content: "\eb2c";
}

.linearicons-leaf:before {
    content: "\eb2d";
}

.linearicons-landscape:before {
    content: "\eb2e";
}

.linearicons-pine-tree:before {
    content: "\eb2f";
}

.linearicons-tree:before {
    content: "\eb30";
}

.linearicons-cactus:before {
    content: "\eb31";
}

.linearicons-paw:before {
    content: "\eb32";
}

.linearicons-footprint:before {
    content: "\eb33";
}

.linearicons-speed-slow:before {
    content: "\eb34";
}

.linearicons-speed-medium:before {
    content: "\eb35";
}

.linearicons-speed-fast:before {
    content: "\eb36";
}

.linearicons-rocket:before {
    content: "\eb37";
}

.linearicons-hammer2:before {
    content: "\eb38";
}

.linearicons-balance:before {
    content: "\eb39";
}

.linearicons-briefcase:before {
    content: "\eb3a";
}

.linearicons-luggage-weight:before {
    content: "\eb3b";
}

.linearicons-dolly:before {
    content: "\eb3c";
}

.linearicons-plane:before {
    content: "\eb3d";
}

.linearicons-plane-crossed:before {
    content: "\eb3e";
}

.linearicons-helicopter:before {
    content: "\eb3f";
}

.linearicons-traffic-lights:before {
    content: "\eb40";
}

.linearicons-siren:before {
    content: "\eb41";
}

.linearicons-road:before {
    content: "\eb42";
}

.linearicons-engine:before {
    content: "\eb43";
}

.linearicons-oil-pressure:before {
    content: "\eb44";
}

.linearicons-coolant-temperature:before {
    content: "\eb45";
}

.linearicons-car-battery:before {
    content: "\eb46";
}

.linearicons-gas:before {
    content: "\eb47";
}

.linearicons-gallon:before {
    content: "\eb48";
}

.linearicons-transmission:before {
    content: "\eb49";
}

.linearicons-car:before {
    content: "\eb4a";
}

.linearicons-car-wash:before {
    content: "\eb4b";
}

.linearicons-car-wash2:before {
    content: "\eb4c";
}

.linearicons-bus:before {
    content: "\eb4d";
}

.linearicons-bus2:before {
    content: "\eb4e";
}

.linearicons-car2:before {
    content: "\eb4f";
}

.linearicons-parking:before {
    content: "\eb50";
}

.linearicons-car-lock:before {
    content: "\eb51";
}

.linearicons-taxi:before {
    content: "\eb52";
}

.linearicons-car-siren:before {
    content: "\eb53";
}

.linearicons-car-wash3:before {
    content: "\eb54";
}

.linearicons-car-wash4:before {
    content: "\eb55";
}

.linearicons-ambulance:before {
    content: "\eb56";
}

.linearicons-truck:before {
    content: "\eb57";
}

.linearicons-trailer:before {
    content: "\eb58";
}

.linearicons-scale-truck:before {
    content: "\eb59";
}

.linearicons-train:before {
    content: "\eb5a";
}

.linearicons-ship:before {
    content: "\eb5b";
}

.linearicons-ship2:before {
    content: "\eb5c";
}

.linearicons-anchor:before {
    content: "\eb5d";
}

.linearicons-boat:before {
    content: "\eb5e";
}

.linearicons-bicycle:before {
    content: "\eb5f";
}

.linearicons-bicycle2:before {
    content: "\eb60";
}

.linearicons-dumbbell:before {
    content: "\eb61";
}

.linearicons-bench-press:before {
    content: "\eb62";
}

.linearicons-swim:before {
    content: "\eb63";
}

.linearicons-football:before {
    content: "\eb64";
}

.linearicons-baseball-bat:before {
    content: "\eb65";
}

.linearicons-baseball:before {
    content: "\eb66";
}

.linearicons-tennis:before {
    content: "\eb67";
}

.linearicons-tennis2:before {
    content: "\eb68";
}

.linearicons-ping-pong:before {
    content: "\eb69";
}

.linearicons-hockey:before {
    content: "\eb6a";
}

.linearicons-8ball:before {
    content: "\eb6b";
}

.linearicons-bowling:before {
    content: "\eb6c";
}

.linearicons-bowling-pins:before {
    content: "\eb6d";
}

.linearicons-golf:before {
    content: "\eb6e";
}

.linearicons-golf2:before {
    content: "\eb6f";
}

.linearicons-archery:before {
    content: "\eb70";
}

.linearicons-slingshot:before {
    content: "\eb71";
}

.linearicons-soccer:before {
    content: "\eb72";
}

.linearicons-basketball:before {
    content: "\eb73";
}

.linearicons-cube:before {
    content: "\eb74";
}

.linearicons-3d-rotate:before {
    content: "\eb75";
}

.linearicons-puzzle:before {
    content: "\eb76";
}

.linearicons-glasses:before {
    content: "\eb77";
}

.linearicons-glasses2:before {
    content: "\eb78";
}

.linearicons-accessibility:before {
    content: "\eb79";
}

.linearicons-wheelchair:before {
    content: "\eb7a";
}

.linearicons-wall:before {
    content: "\eb7b";
}

.linearicons-fence:before {
    content: "\eb7c";
}

.linearicons-wall2:before {
    content: "\eb7d";
}

.linearicons-icons:before {
    content: "\eb7e";
}

.linearicons-resize-handle:before {
    content: "\eb7f";
}

.linearicons-icons2:before {
    content: "\eb80";
}

.linearicons-select:before {
    content: "\eb81";
}

.linearicons-select2:before {
    content: "\eb82";
}

.linearicons-site-map:before {
    content: "\eb83";
}

.linearicons-earth:before {
    content: "\eb84";
}

.linearicons-earth-lock:before {
    content: "\eb85";
}

.linearicons-network:before {
    content: "\eb86";
}

.linearicons-network-lock:before {
    content: "\eb87";
}

.linearicons-planet:before {
    content: "\eb88";
}

.linearicons-happy:before {
    content: "\eb89";
}

.linearicons-smile:before {
    content: "\eb8a";
}

.linearicons-grin:before {
    content: "\eb8b";
}

.linearicons-tongue:before {
    content: "\eb8c";
}

.linearicons-sad:before {
    content: "\eb8d";
}

.linearicons-wink:before {
    content: "\eb8e";
}

.linearicons-dream:before {
    content: "\eb8f";
}

.linearicons-shocked:before {
    content: "\eb90";
}

.linearicons-shocked2:before {
    content: "\eb91";
}

.linearicons-tongue2:before {
    content: "\eb92";
}

.linearicons-neutral:before {
    content: "\eb93";
}

.linearicons-happy-grin:before {
    content: "\eb94";
}

.linearicons-cool:before {
    content: "\eb95";
}

.linearicons-mad:before {
    content: "\eb96";
}

.linearicons-grin-evil:before {
    content: "\eb97";
}

.linearicons-evil:before {
    content: "\eb98";
}

.linearicons-wow:before {
    content: "\eb99";
}

.linearicons-annoyed:before {
    content: "\eb9a";
}

.linearicons-wondering:before {
    content: "\eb9b";
}

.linearicons-confused:before {
    content: "\eb9c";
}

.linearicons-zipped:before {
    content: "\eb9d";
}

.linearicons-grumpy:before {
    content: "\eb9e";
}

.linearicons-mustache:before {
    content: "\eb9f";
}

.linearicons-tombstone-hipster:before {
    content: "\eba0";
}

.linearicons-tombstone:before {
    content: "\eba1";
}

.linearicons-ghost:before {
    content: "\eba2";
}

.linearicons-ghost-hipster:before {
    content: "\eba3";
}

.linearicons-halloween:before {
    content: "\eba4";
}

.linearicons-christmas:before {
    content: "\eba5";
}

.linearicons-easter-egg:before {
    content: "\eba6";
}

.linearicons-mustache2:before {
    content: "\eba7";
}

.linearicons-mustache-glasses:before {
    content: "\eba8";
}

.linearicons-pipe:before {
    content: "\eba9";
}

.linearicons-alarm:before {
    content: "\ebaa";
}

.linearicons-alarm-add:before {
    content: "\ebab";
}

.linearicons-alarm-snooze:before {
    content: "\ebac";
}

.linearicons-alarm-ringing:before {
    content: "\ebad";
}

.linearicons-bullhorn:before {
    content: "\ebae";
}

.linearicons-hearing:before {
    content: "\ebaf";
}

.linearicons-volume-high:before {
    content: "\ebb0";
}

.linearicons-volume-medium:before {
    content: "\ebb1";
}

.linearicons-volume-low:before {
    content: "\ebb2";
}

.linearicons-volume:before {
    content: "\ebb3";
}

.linearicons-mute:before {
    content: "\ebb4";
}

.linearicons-lan:before {
    content: "\ebb5";
}

.linearicons-lan2:before {
    content: "\ebb6";
}

.linearicons-wifi:before {
    content: "\ebb7";
}

.linearicons-wifi-lock:before {
    content: "\ebb8";
}

.linearicons-wifi-blocked:before {
    content: "\ebb9";
}

.linearicons-wifi-mid:before {
    content: "\ebba";
}

.linearicons-wifi-low:before {
    content: "\ebbb";
}

.linearicons-wifi-low2:before {
    content: "\ebbc";
}

.linearicons-wifi-alert:before {
    content: "\ebbd";
}

.linearicons-wifi-alert-mid:before {
    content: "\ebbe";
}

.linearicons-wifi-alert-low:before {
    content: "\ebbf";
}

.linearicons-wifi-alert-low2:before {
    content: "\ebc0";
}

.linearicons-stream:before {
    content: "\ebc1";
}

.linearicons-stream-check:before {
    content: "\ebc2";
}

.linearicons-stream-error:before {
    content: "\ebc3";
}

.linearicons-stream-alert:before {
    content: "\ebc4";
}

.linearicons-communication:before {
    content: "\ebc5";
}

.linearicons-communication-crossed:before {
    content: "\ebc6";
}

.linearicons-broadcast:before {
    content: "\ebc7";
}

.linearicons-antenna:before {
    content: "\ebc8";
}

.linearicons-satellite:before {
    content: "\ebc9";
}

.linearicons-satellite2:before {
    content: "\ebca";
}

.linearicons-mic:before {
    content: "\ebcb";
}

.linearicons-mic-mute:before {
    content: "\ebcc";
}

.linearicons-mic2:before {
    content: "\ebcd";
}

.linearicons-spotlights:before {
    content: "\ebce";
}

.linearicons-hourglass:before {
    content: "\ebcf";
}

.linearicons-loading:before {
    content: "\ebd0";
}

.linearicons-loading2:before {
    content: "\ebd1";
}

.linearicons-loading3:before {
    content: "\ebd2";
}

.linearicons-refresh:before {
    content: "\ebd3";
}

.linearicons-refresh2:before {
    content: "\ebd4";
}

.linearicons-undo:before {
    content: "\ebd5";
}

.linearicons-redo:before {
    content: "\ebd6";
}

.linearicons-jump2:before {
    content: "\ebd7";
}

.linearicons-undo2:before {
    content: "\ebd8";
}

.linearicons-redo2:before {
    content: "\ebd9";
}

.linearicons-sync:before {
    content: "\ebda";
}

.linearicons-repeat-one2:before {
    content: "\ebdb";
}

.linearicons-sync-crossed:before {
    content: "\ebdc";
}

.linearicons-sync2:before {
    content: "\ebdd";
}

.linearicons-repeat-one3:before {
    content: "\ebde";
}

.linearicons-sync-crossed2:before {
    content: "\ebdf";
}

.linearicons-return:before {
    content: "\ebe0";
}

.linearicons-return2:before {
    content: "\ebe1";
}

.linearicons-refund:before {
    content: "\ebe2";
}

.linearicons-history:before {
    content: "\ebe3";
}

.linearicons-history2:before {
    content: "\ebe4";
}

.linearicons-self-timer:before {
    content: "\ebe5";
}

.linearicons-clock:before {
    content: "\ebe6";
}

.linearicons-clock2:before {
    content: "\ebe7";
}

.linearicons-clock3:before {
    content: "\ebe8";
}

.linearicons-watch:before {
    content: "\ebe9";
}

.linearicons-alarm2:before {
    content: "\ebea";
}

.linearicons-alarm-add2:before {
    content: "\ebeb";
}

.linearicons-alarm-remove:before {
    content: "\ebec";
}

.linearicons-alarm-check:before {
    content: "\ebed";
}

.linearicons-alarm-error:before {
    content: "\ebee";
}

.linearicons-timer:before {
    content: "\ebef";
}

.linearicons-timer-crossed:before {
    content: "\ebf0";
}

.linearicons-timer2:before {
    content: "\ebf1";
}

.linearicons-timer-crossed2:before {
    content: "\ebf2";
}

.linearicons-download:before {
    content: "\ebf3";
}

.linearicons-upload:before {
    content: "\ebf4";
}

.linearicons-download2:before {
    content: "\ebf5";
}

.linearicons-upload2:before {
    content: "\ebf6";
}

.linearicons-enter-up:before {
    content: "\ebf7";
}

.linearicons-enter-down:before {
    content: "\ebf8";
}

.linearicons-enter-left:before {
    content: "\ebf9";
}

.linearicons-enter-right:before {
    content: "\ebfa";
}

.linearicons-exit-up:before {
    content: "\ebfb";
}

.linearicons-exit-down:before {
    content: "\ebfc";
}

.linearicons-exit-left:before {
    content: "\ebfd";
}

.linearicons-exit-right:before {
    content: "\ebfe";
}

.linearicons-enter-up2:before {
    content: "\ebff";
}

.linearicons-enter-down2:before {
    content: "\ec00";
}

.linearicons-enter-vertical:before {
    content: "\ec01";
}

.linearicons-enter-left2:before {
    content: "\ec02";
}

.linearicons-enter-right2:before {
    content: "\ec03";
}

.linearicons-enter-horizontal:before {
    content: "\ec04";
}

.linearicons-exit-up2:before {
    content: "\ec05";
}

.linearicons-exit-down2:before {
    content: "\ec06";
}

.linearicons-exit-left2:before {
    content: "\ec07";
}

.linearicons-exit-right2:before {
    content: "\ec08";
}

.linearicons-cli:before {
    content: "\ec09";
}

.linearicons-bug:before {
    content: "\ec0a";
}

.linearicons-code:before {
    content: "\ec0b";
}

.linearicons-file-code:before {
    content: "\ec0c";
}

.linearicons-file-image:before {
    content: "\ec0d";
}

.linearicons-file-zip:before {
    content: "\ec0e";
}

.linearicons-file-audio:before {
    content: "\ec0f";
}

.linearicons-file-video:before {
    content: "\ec10";
}

.linearicons-file-preview:before {
    content: "\ec11";
}

.linearicons-file-charts:before {
    content: "\ec12";
}

.linearicons-file-stats:before {
    content: "\ec13";
}

.linearicons-file-spreadsheet:before {
    content: "\ec14";
}

.linearicons-link:before {
    content: "\ec15";
}

.linearicons-unlink:before {
    content: "\ec16";
}

.linearicons-link2:before {
    content: "\ec17";
}

.linearicons-unlink2:before {
    content: "\ec18";
}

.linearicons-thumbs-up:before {
    content: "\ec19";
}

.linearicons-thumbs-down:before {
    content: "\ec1a";
}

.linearicons-thumbs-up2:before {
    content: "\ec1b";
}

.linearicons-thumbs-down2:before {
    content: "\ec1c";
}

.linearicons-thumbs-up3:before {
    content: "\ec1d";
}

.linearicons-thumbs-down3:before {
    content: "\ec1e";
}

.linearicons-share:before {
    content: "\ec1f";
}

.linearicons-share2:before {
    content: "\ec20";
}

.linearicons-share3:before {
    content: "\ec21";
}

.linearicons-magnifier:before {
    content: "\ec22";
}

.linearicons-file-search:before {
    content: "\ec23";
}

.linearicons-find-replace:before {
    content: "\ec24";
}

.linearicons-zoom-in:before {
    content: "\ec25";
}

.linearicons-zoom-out:before {
    content: "\ec26";
}

.linearicons-loupe:before {
    content: "\ec27";
}

.linearicons-loupe-zoom-in:before {
    content: "\ec28";
}

.linearicons-loupe-zoom-out:before {
    content: "\ec29";
}

.linearicons-cross:before {
    content: "\ec2a";
}

.linearicons-menu:before {
    content: "\ec2b";
}

.linearicons-list:before {
    content: "\ec2c";
}

.linearicons-list2:before {
    content: "\ec2d";
}

.linearicons-list3:before {
    content: "\ec2e";
}

.linearicons-menu2:before {
    content: "\ec2f";
}

.linearicons-list4:before {
    content: "\ec30";
}

.linearicons-menu3:before {
    content: "\ec31";
}

.linearicons-exclamation:before {
    content: "\ec32";
}

.linearicons-question:before {
    content: "\ec33";
}

.linearicons-check:before {
    content: "\ec34";
}

.linearicons-cross2:before {
    content: "\ec35";
}

.linearicons-plus:before {
    content: "\ec36";
}

.linearicons-minus:before {
    content: "\ec37";
}

.linearicons-percent:before {
    content: "\ec38";
}

.linearicons-chevron-up:before {
    content: "\ec39";
}

.linearicons-chevron-down:before {
    content: "\ec3a";
}

.linearicons-chevron-left:before {
    content: "\ec3b";
}

.linearicons-chevron-right:before {
    content: "\ec3c";
}

.linearicons-chevrons-expand-vertical:before {
    content: "\ec3d";
}

.linearicons-chevrons-expand-horizontal:before {
    content: "\ec3e";
}

.linearicons-chevrons-contract-vertical:before {
    content: "\ec3f";
}

.linearicons-chevrons-contract-horizontal:before {
    content: "\ec40";
}

.linearicons-arrow-up:before {
    content: "\ec41";
}

.linearicons-arrow-down:before {
    content: "\ec42";
}

.linearicons-arrow-left:before {
    content: "\ec43";
}

.linearicons-arrow-right:before {
    content: "\ec44";
}

.linearicons-arrow-up-right:before {
    content: "\ec45";
}

.linearicons-arrows-merge:before {
    content: "\ec46";
}

.linearicons-arrows-split:before {
    content: "\ec47";
}

.linearicons-arrow-divert:before {
    content: "\ec48";
}

.linearicons-arrow-return:before {
    content: "\ec49";
}

.linearicons-expand:before {
    content: "\ec4a";
}

.linearicons-contract:before {
    content: "\ec4b";
}

.linearicons-expand2:before {
    content: "\ec4c";
}

.linearicons-contract2:before {
    content: "\ec4d";
}

.linearicons-move:before {
    content: "\ec4e";
}

.linearicons-tab:before {
    content: "\ec4f";
}

.linearicons-arrow-wave:before {
    content: "\ec50";
}

.linearicons-expand3:before {
    content: "\ec51";
}

.linearicons-expand4:before {
    content: "\ec52";
}

.linearicons-contract3:before {
    content: "\ec53";
}

.linearicons-notification:before {
    content: "\ec54";
}

.linearicons-warning:before {
    content: "\ec55";
}

.linearicons-notification-circle:before {
    content: "\ec56";
}

.linearicons-question-circle:before {
    content: "\ec57";
}

.linearicons-menu-circle:before {
    content: "\ec58";
}

.linearicons-checkmark-circle:before {
    content: "\ec59";
}

.linearicons-cross-circle:before {
    content: "\ec5a";
}

.linearicons-plus-circle:before {
    content: "\ec5b";
}

.linearicons-circle-minus:before {
    content: "\ec5c";
}

.linearicons-percent-circle:before {
    content: "\ec5d";
}

.linearicons-arrow-up-circle:before {
    content: "\ec5e";
}

.linearicons-arrow-down-circle:before {
    content: "\ec5f";
}

.linearicons-arrow-left-circle:before {
    content: "\ec60";
}

.linearicons-arrow-right-circle:before {
    content: "\ec61";
}

.linearicons-chevron-up-circle:before {
    content: "\ec62";
}

.linearicons-chevron-down-circle:before {
    content: "\ec63";
}

.linearicons-chevron-left-circle:before {
    content: "\ec64";
}

.linearicons-chevron-right-circle:before {
    content: "\ec65";
}

.linearicons-backward-circle:before {
    content: "\ec66";
}

.linearicons-first-circle:before {
    content: "\ec67";
}

.linearicons-previous-circle:before {
    content: "\ec68";
}

.linearicons-stop-circle:before {
    content: "\ec69";
}

.linearicons-play-circle:before {
    content: "\ec6a";
}

.linearicons-pause-circle:before {
    content: "\ec6b";
}

.linearicons-next-circle:before {
    content: "\ec6c";
}

.linearicons-last-circle:before {
    content: "\ec6d";
}

.linearicons-forward-circle:before {
    content: "\ec6e";
}

.linearicons-eject-circle:before {
    content: "\ec6f";
}

.linearicons-crop:before {
    content: "\ec70";
}

.linearicons-frame-expand:before {
    content: "\ec71";
}

.linearicons-frame-contract:before {
    content: "\ec72";
}

.linearicons-focus:before {
    content: "\ec73";
}

.linearicons-transform:before {
    content: "\ec74";
}

.linearicons-grid:before {
    content: "\ec75";
}

.linearicons-grid-crossed:before {
    content: "\ec76";
}

.linearicons-layers:before {
    content: "\ec77";
}

.linearicons-layers-crossed:before {
    content: "\ec78";
}

.linearicons-toggle:before {
    content: "\ec79";
}

.linearicons-rulers:before {
    content: "\ec7a";
}

.linearicons-ruler:before {
    content: "\ec7b";
}

.linearicons-funnel:before {
    content: "\ec7c";
}

.linearicons-flip-horizontal:before {
    content: "\ec7d";
}

.linearicons-flip-vertical:before {
    content: "\ec7e";
}

.linearicons-flip-horizontal2:before {
    content: "\ec7f";
}

.linearicons-flip-vertical2:before {
    content: "\ec80";
}

.linearicons-angle:before {
    content: "\ec81";
}

.linearicons-angle2:before {
    content: "\ec82";
}

.linearicons-subtract:before {
    content: "\ec83";
}

.linearicons-combine:before {
    content: "\ec84";
}

.linearicons-intersect:before {
    content: "\ec85";
}

.linearicons-exclude:before {
    content: "\ec86";
}

.linearicons-align-center-vertical:before {
    content: "\ec87";
}

.linearicons-align-right:before {
    content: "\ec88";
}

.linearicons-align-bottom:before {
    content: "\ec89";
}

.linearicons-align-left:before {
    content: "\ec8a";
}

.linearicons-align-center-horizontal:before {
    content: "\ec8b";
}

.linearicons-align-top:before {
    content: "\ec8c";
}

.linearicons-square:before {
    content: "\ec8d";
}

.linearicons-plus-square:before {
    content: "\ec8e";
}

.linearicons-minus-square:before {
    content: "\ec8f";
}

.linearicons-percent-square:before {
    content: "\ec90";
}

.linearicons-arrow-up-square:before {
    content: "\ec91";
}

.linearicons-arrow-down-square:before {
    content: "\ec92";
}

.linearicons-arrow-left-square:before {
    content: "\ec93";
}

.linearicons-arrow-right-square:before {
    content: "\ec94";
}

.linearicons-chevron-up-square:before {
    content: "\ec95";
}

.linearicons-chevron-down-square:before {
    content: "\ec96";
}

.linearicons-chevron-left-square:before {
    content: "\ec97";
}

.linearicons-chevron-right-square:before {
    content: "\ec98";
}

.linearicons-check-square:before {
    content: "\ec99";
}

.linearicons-cross-square:before {
    content: "\ec9a";
}

.linearicons-menu-square:before {
    content: "\ec9b";
}

.linearicons-prohibited:before {
    content: "\ec9c";
}

.linearicons-circle:before {
    content: "\ec9d";
}

.linearicons-radio-button:before {
    content: "\ec9e";
}

.linearicons-ligature:before {
    content: "\ec9f";
}

.linearicons-text-format:before {
    content: "\eca0";
}

.linearicons-text-format-remove:before {
    content: "\eca1";
}

.linearicons-text-size:before {
    content: "\eca2";
}

.linearicons-bold:before {
    content: "\eca3";
}

.linearicons-italic:before {
    content: "\eca4";
}

.linearicons-underline:before {
    content: "\eca5";
}

.linearicons-strikethrough:before {
    content: "\eca6";
}

.linearicons-highlight:before {
    content: "\eca7";
}

.linearicons-text-align-left:before {
    content: "\eca8";
}

.linearicons-text-align-center:before {
    content: "\eca9";
}

.linearicons-text-align-right:before {
    content: "\ecaa";
}

.linearicons-text-align-justify:before {
    content: "\ecab";
}

.linearicons-line-spacing:before {
    content: "\ecac";
}

.linearicons-indent-increase:before {
    content: "\ecad";
}

.linearicons-indent-decrease:before {
    content: "\ecae";
}

.linearicons-text-wrap:before {
    content: "\ecaf";
}

.linearicons-pilcrow:before {
    content: "\ecb0";
}

.linearicons-direction-ltr:before {
    content: "\ecb1";
}

.linearicons-direction-rtl:before {
    content: "\ecb2";
}

.linearicons-page-break:before {
    content: "\ecb3";
}

.linearicons-page-break2:before {
    content: "\ecb4";
}

.linearicons-sort-alpha-asc:before {
    content: "\ecb5";
}

.linearicons-sort-alpha-desc:before {
    content: "\ecb6";
}

.linearicons-sort-numeric-asc:before {
    content: "\ecb7";
}

.linearicons-sort-numeric-desc:before {
    content: "\ecb8";
}

.linearicons-sort-amount-asc:before {
    content: "\ecb9";
}

.linearicons-sort-amount-desc:before {
    content: "\ecba";
}

.linearicons-sort-time-asc:before {
    content: "\ecbb";
}

.linearicons-sort-time-desc:before {
    content: "\ecbc";
}

.linearicons-sigma:before {
    content: "\ecbd";
}

.linearicons-pencil-line:before {
    content: "\ecbe";
}

.linearicons-hand:before {
    content: "\ecbf";
}

.linearicons-pointer-up:before {
    content: "\ecc0";
}

.linearicons-pointer-right:before {
    content: "\ecc1";
}

.linearicons-pointer-down:before {
    content: "\ecc2";
}

.linearicons-pointer-left:before {
    content: "\ecc3";
}

.linearicons-finger-tap:before {
    content: "\ecc4";
}

.linearicons-fingers-tap:before {
    content: "\ecc5";
}

.linearicons-reminder:before {
    content: "\ecc6";
}

.linearicons-fingers-crossed:before {
    content: "\ecc7";
}

.linearicons-fingers-victory:before {
    content: "\ecc8";
}

.linearicons-gesture-zoom:before {
    content: "\ecc9";
}

.linearicons-gesture-pinch:before {
    content: "\ecca";
}

.linearicons-fingers-scroll-horizontal:before {
    content: "\eccb";
}

.linearicons-fingers-scroll-vertical:before {
    content: "\eccc";
}

.linearicons-fingers-scroll-left:before {
    content: "\eccd";
}

.linearicons-fingers-scroll-right:before {
    content: "\ecce";
}

.linearicons-hand2:before {
    content: "\eccf";
}

.linearicons-pointer-up2:before {
    content: "\ecd0";
}

.linearicons-pointer-right2:before {
    content: "\ecd1";
}

.linearicons-pointer-down2:before {
    content: "\ecd2";
}

.linearicons-pointer-left2:before {
    content: "\ecd3";
}

.linearicons-finger-tap2:before {
    content: "\ecd4";
}

.linearicons-fingers-tap2:before {
    content: "\ecd5";
}

.linearicons-reminder2:before {
    content: "\ecd6";
}

.linearicons-gesture-zoom2:before {
    content: "\ecd7";
}

.linearicons-gesture-pinch2:before {
    content: "\ecd8";
}

.linearicons-fingers-scroll-horizontal2:before {
    content: "\ecd9";
}

.linearicons-fingers-scroll-vertical2:before {
    content: "\ecda";
}

.linearicons-fingers-scroll-left2:before {
    content: "\ecdb";
}

.linearicons-fingers-scroll-right2:before {
    content: "\ecdc";
}

.linearicons-fingers-scroll-vertical3:before {
    content: "\ecdd";
}

.linearicons-border-style:before {
    content: "\ecde";
}

.linearicons-border-all:before {
    content: "\ecdf";
}

.linearicons-border-outer:before {
    content: "\ece0";
}

.linearicons-border-inner:before {
    content: "\ece1";
}

.linearicons-border-top:before {
    content: "\ece2";
}

.linearicons-border-horizontal:before {
    content: "\ece3";
}

.linearicons-border-bottom:before {
    content: "\ece4";
}

.linearicons-border-left:before {
    content: "\ece5";
}

.linearicons-border-vertical:before {
    content: "\ece6";
}

.linearicons-border-right:before {
    content: "\ece7";
}

.linearicons-border-none:before {
    content: "\ece8";
}

.linearicons-ellipsis:before {
    content: "\ece9";
}

/* http://graphicburger.com/simple-line-icons-webfont/ */
@font-face {
    font-family: 'Simple-Line-Icons';
    src: url('../fonts/Simple-Line-Icons.eot');
    src: url('../fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.woff2') format('woff2'), url('../fonts/Simple-Line-Icons.woff') format('woff'), url('../fonts/Simple-Line-Icons.ttf') format('truetype'), url('../fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'Simple-Line-Icons';
        src: url('../fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
    }
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'Simple-Line-Icons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-user-female, .icon-user-follow, .icon-user-following, .icon-user-unfollow, .icon-trophy, .icon-screen-smartphone, .icon-screen-desktop, .icon-plane, .icon-notebook, .icon-moustache, .icon-mouse, .icon-magnet, .icon-energy, .icon-emoticon-smile, .icon-disc, .icon-cursor-move, .icon-crop, .icon-credit-card, .icon-chemistry, .icon-user, .icon-speedometer, .icon-social-youtube, .icon-social-twitter, .icon-social-tumblr, .icon-social-facebook, .icon-social-dropbox, .icon-social-dribbble, .icon-shield, .icon-screen-tablet, .icon-magic-wand, .icon-hourglass, .icon-graduation, .icon-ghost, .icon-game-controller, .icon-fire, .icon-eyeglasses, .icon-envelope-open, .icon-envelope-letter, .icon-bell, .icon-badge, .icon-anchor, .icon-wallet, .icon-vector, .icon-speech, .icon-puzzle, .icon-printer, .icon-present, .icon-playlist, .icon-pin, .icon-picture, .icon-map, .icon-layers, .icon-handbag, .icon-globe-alt, .icon-globe, .icon-frame, .icon-folder-alt, .icon-film, .icon-feed, .icon-earphones-alt, .icon-earphones, .icon-drop, .icon-drawer, .icon-docs, .icon-directions, .icon-direction, .icon-diamond, .icon-cup, .icon-compass, .icon-call-out, .icon-call-in, .icon-call-end, .icon-calculator, .icon-bubbles, .icon-briefcase, .icon-book-open, .icon-basket-loaded, .icon-basket, .icon-bag, .icon-action-undo, .icon-action-redo, .icon-wrench, .icon-umbrella, .icon-trash, .icon-tag, .icon-support, .icon-size-fullscreen, .icon-size-actual, .icon-shuffle, .icon-share-alt, .icon-share, .icon-rocket, .icon-question, .icon-pie-chart, .icon-pencil, .icon-note, .icon-music-tone-alt, .icon-music-tone, .icon-microphone, .icon-loop, .icon-logout, .icon-login, .icon-list, .icon-like, .icon-home, .icon-grid, .icon-graph, .icon-equalizer, .icon-dislike, .icon-cursor, .icon-control-start, .icon-control-rewind, .icon-control-play, .icon-control-pause, .icon-control-forward, .icon-control-end, .icon-calendar, .icon-bulb, .icon-bar-chart, .icon-arrow-up, .icon-arrow-right, .icon-arrow-left, .icon-arrow-down, .icon-ban, .icon-bubble, .icon-camcorder, .icon-camera, .icon-check, .icon-clock, .icon-close, .icon-cloud-download, .icon-cloud-upload, .icon-doc, .icon-envelope, .icon-eye, .icon-flag, .icon-folder, .icon-heart, .icon-info, .icon-key, .icon-link, .icon-lock, .icon-lock-open, .icon-magnifier, .icon-magnifier-add, .icon-magnifier-remove, .icon-paper-clip, .icon-paper-plane, .icon-plus, .icon-pointer, .icon-power, .icon-refresh, .icon-reload, .icon-settings, .icon-star, .icon-symbol-female, .icon-symbol-male, .icon-target, .icon-volume-1, .icon-volume-2, .icon-volume-off, .icon-users {
    font-family: 'Simple-Line-Icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

    .icon-user-female:before {
        content: "\e000";
    }

    .icon-user-follow:before {
        content: "\e002";
    }

    .icon-user-following:before {
        content: "\e003";
    }

    .icon-user-unfollow:before {
        content: "\e004";
    }

    .icon-trophy:before {
        content: "\e006";
    }

    .icon-screen-smartphone:before {
        content: "\e010";
    }

    .icon-screen-desktop:before {
        content: "\e011";
    }

    .icon-plane:before {
        content: "\e012";
    }

    .icon-notebook:before {
        content: "\e013";
    }

    .icon-moustache:before {
        content: "\e014";
    }

    .icon-mouse:before {
        content: "\e015";
    }

    .icon-magnet:before {
        content: "\e016";
    }

    .icon-energy:before {
        content: "\e020";
    }

    .icon-emoticon-smile:before {
        content: "\e021";
    }

    .icon-disc:before {
        content: "\e022";
    }

    .icon-cursor-move:before {
        content: "\e023";
    }

    .icon-crop:before {
        content: "\e024";
    }

    .icon-credit-card:before {
        content: "\e025";
    }

    .icon-chemistry:before {
        content: "\e026";
    }

    .icon-user:before {
        content: "\e005";
    }

    .icon-speedometer:before {
        content: "\e007";
    }

    .icon-social-youtube:before {
        content: "\e008";
    }

    .icon-social-twitter:before {
        content: "\e009";
    }

    .icon-social-tumblr:before {
        content: "\e00a";
    }

    .icon-social-facebook:before {
        content: "\e00b";
    }

    .icon-social-dropbox:before {
        content: "\e00c";
    }

    .icon-social-dribbble:before {
        content: "\e00d";
    }

    .icon-shield:before {
        content: "\e00e";
    }

    .icon-screen-tablet:before {
        content: "\e00f";
    }

    .icon-magic-wand:before {
        content: "\e017";
    }

    .icon-hourglass:before {
        content: "\e018";
    }

    .icon-graduation:before {
        content: "\e019";
    }

    .icon-ghost:before {
        content: "\e01a";
    }

    .icon-game-controller:before {
        content: "\e01b";
    }

    .icon-fire:before {
        content: "\e01c";
    }

    .icon-eyeglasses:before {
        content: "\e01d";
    }

    .icon-envelope-open:before {
        content: "\e01e";
    }

    .icon-envelope-letter:before {
        content: "\e01f";
    }

    .icon-bell:before {
        content: "\e027";
    }

    .icon-badge:before {
        content: "\e028";
    }

    .icon-anchor:before {
        content: "\e029";
    }

    .icon-wallet:before {
        content: "\e02a";
    }

    .icon-vector:before {
        content: "\e02b";
    }

    .icon-speech:before {
        content: "\e02c";
    }

    .icon-puzzle:before {
        content: "\e02d";
    }

    .icon-printer:before {
        content: "\e02e";
    }

    .icon-present:before {
        content: "\e02f";
    }

    .icon-playlist:before {
        content: "\e030";
    }

    .icon-pin:before {
        content: "\e031";
    }

    .icon-picture:before {
        content: "\e032";
    }

    .icon-map:before {
        content: "\e033";
    }

    .icon-layers:before {
        content: "\e034";
    }

    .icon-handbag:before {
        content: "\e035";
    }

    .icon-globe-alt:before {
        content: "\e036";
    }

    .icon-globe:before {
        content: "\e037";
    }

    .icon-frame:before {
        content: "\e038";
    }

    .icon-folder-alt:before {
        content: "\e039";
    }

    .icon-film:before {
        content: "\e03a";
    }

    .icon-feed:before {
        content: "\e03b";
    }

    .icon-earphones-alt:before {
        content: "\e03c";
    }

    .icon-earphones:before {
        content: "\e03d";
    }

    .icon-drop:before {
        content: "\e03e";
    }

    .icon-drawer:before {
        content: "\e03f";
    }

    .icon-docs:before {
        content: "\e040";
    }

    .icon-directions:before {
        content: "\e041";
    }

    .icon-direction:before {
        content: "\e042";
    }

    .icon-diamond:before {
        content: "\e043";
    }

    .icon-cup:before {
        content: "\e044";
    }

    .icon-compass:before {
        content: "\e045";
    }

    .icon-call-out:before {
        content: "\e046";
    }

    .icon-call-in:before {
        content: "\e047";
    }

    .icon-call-end:before {
        content: "\e048";
    }

    .icon-calculator:before {
        content: "\e049";
    }

    .icon-bubbles:before {
        content: "\e04a";
    }

    .icon-briefcase:before {
        content: "\e04b";
    }

    .icon-book-open:before {
        content: "\e04c";
    }

    .icon-basket-loaded:before {
        content: "\e04d";
    }

    .icon-basket:before {
        content: "\e04e";
    }

    .icon-bag:before {
        content: "\e04f";
    }

    .icon-action-undo:before {
        content: "\e050";
    }

    .icon-action-redo:before {
        content: "\e051";
    }

    .icon-wrench:before {
        content: "\e052";
    }

    .icon-umbrella:before {
        content: "\e053";
    }

    .icon-trash:before {
        content: "\e054";
    }

    .icon-tag:before {
        content: "\e055";
    }

    .icon-support:before {
        content: "\e056";
    }

    .icon-size-fullscreen:before {
        content: "\e057";
    }

    .icon-size-actual:before {
        content: "\e058";
    }

    .icon-shuffle:before {
        content: "\e059";
    }

    .icon-share-alt:before {
        content: "\e05a";
    }

    .icon-share:before {
        content: "\e05b";
    }

    .icon-rocket:before {
        content: "\e05c";
    }

    .icon-question:before {
        content: "\e05d";
    }

    .icon-pie-chart:before {
        content: "\e05e";
    }

    .icon-pencil:before {
        content: "\e05f";
    }

    .icon-note:before {
        content: "\e060";
    }

    .icon-music-tone-alt:before {
        content: "\e061";
    }

    .icon-music-tone:before {
        content: "\e062";
    }

    .icon-microphone:before {
        content: "\e063";
    }

    .icon-loop:before {
        content: "\e064";
    }

    .icon-logout:before {
        content: "\e065";
    }

    .icon-login:before {
        content: "\e066";
    }

    .icon-list:before {
        content: "\e067";
    }

    .icon-like:before {
        content: "\e068";
    }

    .icon-home:before {
        content: "\e069";
    }

    .icon-grid:before {
        content: "\e06a";
    }

    .icon-graph:before {
        content: "\e06b";
    }

    .icon-equalizer:before {
        content: "\e06c";
    }

    .icon-dislike:before {
        content: "\e06d";
    }

    .icon-cursor:before {
        content: "\e06e";
    }

    .icon-control-start:before {
        content: "\e06f";
    }

    .icon-control-rewind:before {
        content: "\e070";
    }

    .icon-control-play:before {
        content: "\e071";
    }

    .icon-control-pause:before {
        content: "\e072";
    }

    .icon-control-forward:before {
        content: "\e073";
    }

    .icon-control-end:before {
        content: "\e074";
    }

    .icon-calendar:before {
        content: "\e075";
    }

    .icon-bulb:before {
        content: "\e076";
    }

    .icon-bar-chart:before {
        content: "\e077";
    }

    .icon-arrow-up:before {
        content: "\e078";
    }

    .icon-arrow-right:before {
        content: "\e079";
    }

    .icon-arrow-left:before {
        content: "\e07a";
    }

    .icon-arrow-down:before {
        content: "\e07b";
    }

    .icon-ban:before {
        content: "\e07c";
    }

    .icon-bubble:before {
        content: "\e07d";
    }

    .icon-camcorder:before {
        content: "\e07e";
    }

    .icon-camera:before {
        content: "\e07f";
    }

    .icon-check:before {
        content: "\e080";
    }

    .icon-clock:before {
        content: "\e081";
    }

    .icon-close:before {
        content: "\e082";
    }

    .icon-cloud-download:before {
        content: "\e083";
    }

    .icon-cloud-upload:before {
        content: "\e084";
    }

    .icon-doc:before {
        content: "\e085";
    }

    .icon-envelope:before {
        content: "\e086";
    }

    .icon-eye:before {
        content: "\e087";
    }

    .icon-flag:before {
        content: "\e088";
    }

    .icon-folder:before {
        content: "\e089";
    }

    .icon-heart:before {
        content: "\e08a";
    }

    .icon-info:before {
        content: "\e08b";
    }

    .icon-key:before {
        content: "\e08c";
    }

    .icon-link:before {
        content: "\e08d";
    }

    .icon-lock:before {
        content: "\e08e";
    }

    .icon-lock-open:before {
        content: "\e08f";
    }

    .icon-magnifier:before {
        content: "\e090";
    }

    .icon-magnifier-add:before {
        content: "\e091";
    }

    .icon-magnifier-remove:before {
        content: "\e092";
    }

    .icon-paper-clip:before {
        content: "\e093";
    }

    .icon-paper-plane:before {
        content: "\e094";
    }

    .icon-plus:before {
        content: "\e095";
    }

    .icon-pointer:before {
        content: "\e096";
    }

    .icon-power:before {
        content: "\e097";
    }

    .icon-refresh:before {
        content: "\e098";
    }

    .icon-reload:before {
        content: "\e099";
    }

    .icon-settings:before {
        content: "\e09a";
    }

    .icon-star:before {
        content: "\e09b";
    }

    .icon-symbol-female:before {
        content: "\e09c";
    }

    .icon-symbol-male:before {
        content: "\e09d";
    }

    .icon-target:before {
        content: "\e09e";
    }

    .icon-volume-1:before {
        content: "\e09f";
    }

    .icon-volume-2:before {
        content: "\e0a0";
    }

    .icon-volume-off:before {
        content: "\e0a1";
    }

    .icon-users:before {
        content: "\e001";
    }

@font-face {
    font-family: boxicons;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/boxicons.eot);
    src: url(../fonts/boxicons.eot) format('embedded-opentype'),url(../fonts/boxicons.woff2) format('woff2'),url(../fonts/boxicons.woff) format('woff'),url(../fonts/boxicons.ttf) format('truetype'),url(../fonts/boxicons.svg?#boxicons) format('svg')
}

.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.bx-ul {
    margin-left: 2em;
    padding-left: 0;
    list-style: none
}

    .bx-ul > li {
        position: relative
    }

    .bx-ul .bx {
        font-size: inherit;
        line-height: inherit;
        position: absolute;
        left: -2em;
        width: 2em;
        text-align: center
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes burst {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    90% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes burst {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    90% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes flashing {
    0% {
        opacity: 1
    }

    45% {
        opacity: 0
    }

    90% {
        opacity: 1
    }
}

@keyframes flashing {
    0% {
        opacity: 1
    }

    45% {
        opacity: 0
    }

    90% {
        opacity: 1
    }
}

@-webkit-keyframes fade-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0
    }
}

@keyframes fade-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0
    }
}

@-webkit-keyframes fade-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 0
    }
}

@keyframes fade-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 0
    }
}

@-webkit-keyframes fade-up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0
    }
}

@keyframes fade-up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0
    }
}

@-webkit-keyframes fade-down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0
    }
}

@keyframes fade-down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    75% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0
    }
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    10%,20% {
        -webkit-transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);
        transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1,1,1) rotate3d(0,0,1,10deg);
        transform: scale3d(1,1,1) rotate3d(0,0,1,10deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1,1,1) rotate3d(0,0,1,-10deg);
        transform: scale3d(1,1,1) rotate3d(0,0,1,-10deg)
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    10%,20% {
        -webkit-transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);
        transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1,1,1) rotate3d(0,0,1,10deg);
        transform: scale3d(1,1,1) rotate3d(0,0,1,10deg)
    }

    40%,60%,80% {
        -webkit-transform: rotate3d(0,0,1,-10deg);
        transform: rotate3d(0,0,1,-10deg)
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

.bx-spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.bx-spin-hover:hover {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.bx-tada {
    -webkit-animation: tada 1.5s ease infinite;
    animation: tada 1.5s ease infinite
}

.bx-tada-hover:hover {
    -webkit-animation: tada 1.5s ease infinite;
    animation: tada 1.5s ease infinite
}

.bx-flashing {
    -webkit-animation: flashing 1.5s infinite linear;
    animation: flashing 1.5s infinite linear
}

.bx-flashing-hover:hover {
    -webkit-animation: flashing 1.5s infinite linear;
    animation: flashing 1.5s infinite linear
}

.bx-burst {
    -webkit-animation: burst 1.5s infinite linear;
    animation: burst 1.5s infinite linear
}

.bx-burst-hover:hover {
    -webkit-animation: burst 1.5s infinite linear;
    animation: burst 1.5s infinite linear
}

.bx-fade-up {
    -webkit-animation: fade-up 1.5s infinite linear;
    animation: fade-up 1.5s infinite linear
}

.bx-fade-up-hover:hover {
    -webkit-animation: fade-up 1.5s infinite linear;
    animation: fade-up 1.5s infinite linear
}

.bx-fade-down {
    -webkit-animation: fade-down 1.5s infinite linear;
    animation: fade-down 1.5s infinite linear
}

.bx-fade-down-hover:hover {
    -webkit-animation: fade-down 1.5s infinite linear;
    animation: fade-down 1.5s infinite linear
}

.bx-fade-left {
    -webkit-animation: fade-left 1.5s infinite linear;
    animation: fade-left 1.5s infinite linear
}

.bx-fade-left-hover:hover {
    -webkit-animation: fade-left 1.5s infinite linear;
    animation: fade-left 1.5s infinite linear
}

.bx-fade-right {
    -webkit-animation: fade-right 1.5s infinite linear;
    animation: fade-right 1.5s infinite linear
}

.bx-fade-right-hover:hover {
    -webkit-animation: fade-right 1.5s infinite linear;
    animation: fade-right 1.5s infinite linear
}

.bx-xs {
    font-size: 1rem !important
}

.bx-sm {
    font-size: 1.55rem !important
}

.bx-md {
    font-size: 2.25rem !important
}

.bx-fw {
    font-size: 1.2857142857em;
    line-height: .8em;
    width: 1.2857142857em;
    height: .8em;
    margin-top: -.2em !important;
    vertical-align: middle
}

.bx-lg {
    font-size: 3rem !important
}

.bx-pull-left {
    float: left;
    margin-right: .3em !important
}

.bx-pull-right {
    float: right;
    margin-left: .3em !important
}

.bx-rotate-90 {
    transform: rotate(90deg)
}

.bx-rotate-180 {
    transform: rotate(180deg)
}

.bx-rotate-270 {
    transform: rotate(270deg)
}

.bx-flip-horizontal {
    transform: scaleX(-1)
}

.bx-flip-vertical {
    transform: scaleY(-1)
}

.bx-border {
    padding: .25em;
    border: .07em solid rgba(0,0,0,.1);
    border-radius: .25em
}

.bx-border-circle {
    padding: .25em;
    border: .07em solid rgba(0,0,0,.1);
    border-radius: 50%
}

.bxl-500px:before {
    content: "\e900"
}

.bxl-airbnb:before {
    content: "\e901"
}

.bxl-amazon:before {
    content: "\e902"
}

.bxl-android:before {
    content: "\e903"
}

.bxl-angular:before {
    content: "\e904"
}

.bxl-apple:before {
    content: "\e905"
}

.bxl-baidu:before {
    content: "\e906"
}

.bxl-behance:before {
    content: "\e907"
}

.bxl-bing:before {
    content: "\e908"
}

.bxl-bitcoin:before {
    content: "\e909"
}

.bxl-blogger:before {
    content: "\e90a"
}

.bxl-bootstrap:before {
    content: "\e90b"
}

.bxl-chrome:before {
    content: "\e90c"
}

.bxl-codepen:before {
    content: "\e90d"
}

.bxl-creative-commons:before {
    content: "\e90e"
}

.bxl-css3:before {
    content: "\e90f"
}

.bxl-dailymotion:before {
    content: "\e910"
}

.bxl-deviantart:before {
    content: "\e911"
}

.bxl-digg:before {
    content: "\e912"
}

.bxl-digitalocean:before {
    content: "\e913"
}

.bxl-discord:before {
    content: "\e914"
}

.bxl-discourse:before {
    content: "\e915"
}

.bxl-dribbble:before {
    content: "\e916"
}

.bxl-dropbox:before {
    content: "\e917"
}

.bxl-drupal:before {
    content: "\e918"
}

.bxl-ebay:before {
    content: "\e919"
}

.bxl-edge:before {
    content: "\e91a"
}

.bxl-facebook:before {
    content: "\e91b"
}

.bxl-facebook-square:before {
    content: "\e91c"
}

.bxl-firefox:before {
    content: "\e91d"
}

.bxl-flickr:before {
    content: "\e91e"
}

.bxl-flickr-square:before {
    content: "\e91f"
}

.bxl-foursquare:before {
    content: "\e920"
}

.bxl-git:before {
    content: "\e921"
}

.bxl-github:before {
    content: "\e922"
}

.bxl-google:before {
    content: "\e923"
}

.bxl-google-plus:before {
    content: "\e924"
}

.bxl-google-plus-circle:before {
    content: "\e925"
}

.bxl-html5:before {
    content: "\e926"
}

.bxl-instagram:before {
    content: "\e927"
}

.bxl-instagram-alt:before {
    content: "\e928"
}

.bxl-internet-explorer:before {
    content: "\e929"
}

.bxl-invision:before {
    content: "\e92a"
}

.bxl-javascript:before {
    content: "\e92b"
}

.bxl-joomla:before {
    content: "\e92c"
}

.bxl-jsfiddle:before {
    content: "\e92d"
}

.bxl-kickstarter:before {
    content: "\e92e"
}

.bxl-less:before {
    content: "\e92f"
}

.bxl-linkedin:before {
    content: "\e930"
}

.bxl-linkedin-square:before {
    content: "\e931"
}

.bxl-magento:before {
    content: "\e932"
}

.bxl-mailchimp:before {
    content: "\e933"
}

.bxl-mastercard:before {
    content: "\e934"
}

.bxl-medium:before {
    content: "\e935"
}

.bxl-medium-old:before {
    content: "\e936"
}

.bxl-medium-square:before {
    content: "\e937"
}

.bxl-messenger:before {
    content: "\e938"
}

.bxl-microsoft:before {
    content: "\e939"
}

.bxl-nodejs:before {
    content: "\e93a"
}

.bxl-opera:before {
    content: "\e93b"
}

.bxl-paypal:before {
    content: "\e93c"
}

.bxl-periscope:before {
    content: "\e93d"
}

.bxl-pinterest:before {
    content: "\e93e"
}

.bxl-play-store:before {
    content: "\e93f"
}

.bxl-pocket:before {
    content: "\e940"
}

.bxl-product-hunt:before {
    content: "\e941"
}

.bxl-quora:before {
    content: "\e942"
}

.bxl-react:before {
    content: "\e943"
}

.bxl-reddit:before {
    content: "\e944"
}

.bxl-redux:before {
    content: "\e945"
}

.bxl-sass:before {
    content: "\e946"
}

.bxl-shopify:before {
    content: "\e947"
}

.bxl-skype:before {
    content: "\e948"
}

.bxl-slack:before {
    content: "\e949"
}

.bxl-slack-old:before {
    content: "\e94a"
}

.bxl-snapchat:before {
    content: "\e94b"
}

.bxl-soundcloud:before {
    content: "\e94c"
}

.bxl-spotify:before {
    content: "\e94d"
}

.bxl-squarespace:before {
    content: "\e94e"
}

.bxl-stack-overflow:before {
    content: "\e94f"
}

.bxl-stripe:before {
    content: "\e950"
}

.bxl-telegram:before {
    content: "\e951"
}

.bxl-trello:before {
    content: "\e952"
}

.bxl-tumblr:before {
    content: "\e953"
}

.bxl-twitch:before {
    content: "\e954"
}

.bxl-twitter:before {
    content: "\e955"
}

.bxl-unsplash:before {
    content: "\e956"
}

.bxl-vimeo:before {
    content: "\e957"
}

.bxl-visa:before {
    content: "\e958"
}

.bxl-vk:before {
    content: "\e959"
}

.bxl-vuejs:before {
    content: "\e95a"
}

.bxl-whatsapp:before {
    content: "\e95b"
}

.bxl-whatsapp-square:before {
    content: "\e95c"
}

.bxl-wikipedia:before {
    content: "\e95d"
}

.bxl-windows:before {
    content: "\e95e"
}

.bxl-wix:before {
    content: "\e95f"
}

.bxl-wordpress:before {
    content: "\e960"
}

.bxl-yahoo:before {
    content: "\e961"
}

.bxl-yelp:before {
    content: "\e962"
}

.bxl-youtube:before {
    content: "\e963"
}

.bx-archive-in:before {
    content: "\e964"
}

.bx-archive-out:before {
    content: "\e965"
}

.bx-archive:before {
    content: "\e966"
}

.bx-tone:before {
    content: "\e967"
}

.bx-bolt-circle:before {
    content: "\e968"
}

.bx-check-shield:before {
    content: "\e969"
}

.bx-face:before {
    content: "\e96a"
}

.bx-file-find:before {
    content: "\e96b"
}

.bx-label:before {
    content: "\e96c"
}

.bx-exit:before {
    content: "\e96d"
}

.bx-extension:before {
    content: "\e96e"
}

.bx-cake:before {
    content: "\e96f"
}

.bx-dish:before {
    content: "\e970"
}

.bx-fridge:before {
    content: "\e971"
}

.bx-spa:before {
    content: "\e972"
}

.bx-image-add:before {
    content: "\e973"
}

.bx-image-alt:before {
    content: "\e974"
}

.bx-alarm-add:before {
    content: "\e975"
}

.bx-space-bar:before {
    content: "\e976"
}

.bx-add-to-queue:before {
    content: "\e977"
}

.bx-border-radius:before {
    content: "\e978"
}

.bx-map-alt:before {
    content: "\e979"
}

.bx-message-dots:before {
    content: "\e97a"
}

.bx-downvote:before {
    content: "\e97b"
}

.bx-upvote:before {
    content: "\e97c"
}

.bx-briefcase:before {
    content: "\e97d"
}

.bx-dollar:before {
    content: "\e97e"
}

.bx-wallet-alt:before {
    content: "\e97f"
}

.bx-shuffle:before {
    content: "\e980"
}

.bx-building-house:before {
    content: "\e981"
}

.bx-comment:before {
    content: "\e982"
}

.bx-comment-dots:before {
    content: "\e983"
}

.bx-book-content:before {
    content: "\e984"
}

.bx-chat:before {
    content: "\e985"
}

.bx-detail:before {
    content: "\e986"
}

.bx-message-rounded-dots:before {
    content: "\e987"
}

.bx-buildings:before {
    content: "\e988"
}

.bx-edit-alt:before {
    content: "\e989"
}

.bx-notepad:before {
    content: "\e98a"
}

.bx-briefcase-alt-2:before {
    content: "\e98b"
}

.bx-gas-pump:before {
    content: "\e98c"
}

.bx-sort-z-a:before {
    content: "\e98d"
}

.bx-brush-alt:before {
    content: "\e98e"
}

.bx-printer:before {
    content: "\e98f"
}

.bx-radio:before {
    content: "\e990"
}

.bx-sort-a-z:before {
    content: "\e991"
}

.bx-credit-card-alt:before {
    content: "\e992"
}

.bx-message-alt:before {
    content: "\e993"
}

.bx-message-alt-dots:before {
    content: "\e994"
}

.bx-id-card:before {
    content: "\e995"
}

.bx-move-horizontal:before {
    content: "\e996"
}

.bx-move-vertical:before {
    content: "\e997"
}

.bx-sort-down:before {
    content: "\e998"
}

.bx-sort-up:before {
    content: "\e999"
}

.bx-money:before {
    content: "\e99a"
}

.bx-movie:before {
    content: "\e99b"
}

.bx-code-block:before {
    content: "\e99c"
}

.bx-photo-album:before {
    content: "\e99d"
}

.bx-restaurant:before {
    content: "\e99e"
}

.bx-rewind-circle:before {
    content: "\e99f"
}

.bx-briefcase-alt:before {
    content: "\e9a0"
}

.bx-wallet:before {
    content: "\e9a1"
}

.bx-window-close:before {
    content: "\e9a2"
}

.bx-chalkboard:before {
    content: "\e9a3"
}

.bx-world:before {
    content: "\e9a4"
}

.bx-purchase-tag:before {
    content: "\e9a5"
}

.bx-hdd:before {
    content: "\e9a6"
}

.bx-rename:before {
    content: "\e9a7"
}

.bx-skip-previous-circle:before {
    content: "\e9a8"
}

.bx-chip:before {
    content: "\e9a9"
}

.bx-images:before {
    content: "\e9aa"
}

.bx-news:before {
    content: "\e9ab"
}

.bx-skip-next-circle:before {
    content: "\e9ac"
}

.bx-closet:before {
    content: "\e9ad"
}

.bx-ruler:before {
    content: "\e9ae"
}

.bx-tv:before {
    content: "\e9af"
}

.bx-battery:before {
    content: "\e9b0"
}

.bx-task:before {
    content: "\e9b1"
}

.bx-repeat:before {
    content: "\e9b2"
}

.bx-flag:before {
    content: "\e9b3"
}

.bx-repost:before {
    content: "\e9b4"
}

.bx-support:before {
    content: "\e9b5"
}

.bx-reply-all:before {
    content: "\e9b6"
}

.bx-subdirectory-left:before {
    content: "\e9b7"
}

.bx-subdirectory-right:before {
    content: "\e9b8"
}

.bx-reply:before {
    content: "\e9b9"
}

.bx-wrench:before {
    content: "\e9ba"
}

.bx-credit-card:before {
    content: "\e9bb"
}

.bx-notification:before {
    content: "\e9bc"
}

.bx-paragraph:before {
    content: "\e9bd"
}

.bx-diamond:before {
    content: "\e9be"
}

.bx-screenshot:before {
    content: "\e9bf"
}

.bx-sort:before {
    content: "\e9c0"
}

.bx-check:before {
    content: "\e9c1"
}

.bx-minus:before {
    content: "\e9c2"
}

.bx-x:before {
    content: "\e9c3"
}

.bx-plus:before {
    content: "\e9c4"
}

.bx-shopping-bag:before {
    content: "\e9c5"
}

.bx-edit:before {
    content: "\e9c6"
}

.bx-bold:before {
    content: "\e9c7"
}

.bx-columns:before {
    content: "\e9c8"
}

.bx-cut:before {
    content: "\e9c9"
}

.bx-font-family:before {
    content: "\e9ca"
}

.bx-crop:before {
    content: "\e9cb"
}

.bx-font-size:before {
    content: "\e9cc"
}

.bx-paste:before {
    content: "\e9cd"
}

.bx-underline:before {
    content: "\e9ce"
}

.bx-heading:before {
    content: "\e9cf"
}

.bx-italic:before {
    content: "\e9d0"
}

.bx-text:before {
    content: "\e9d1"
}

.bx-font:before {
    content: "\e9d2"
}

.bx-pulse:before {
    content: "\e9d3"
}

.bx-dashboard:before {
    content: "\e9d4"
}

.bx-desktop:before {
    content: "\e9d5"
}

.bx-sitemap:before {
    content: "\e9d6"
}

.bx-terminal:before {
    content: "\e9d7"
}

.bx-laptop:before {
    content: "\e9d8"
}

.bx-usb:before {
    content: "\e9d9"
}

.bx-windows:before {
    content: "\e9da"
}

.bx-message:before {
    content: "\e9db"
}

.bx-message-rounded:before {
    content: "\e9dc"
}

.bx-book-bookmark:before {
    content: "\e9dd"
}

.bx-mobile-alt:before {
    content: "\e9de"
}

.bx-tag:before {
    content: "\e9df"
}

.bx-book:before {
    content: "\e9e0"
}

.bx-bookmark-minus:before {
    content: "\e9e1"
}

.bx-bus:before {
    content: "\e9e2"
}

.bx-window:before {
    content: "\e9e3"
}

.bx-window-open:before {
    content: "\e9e4"
}

.bx-bookmark-plus:before {
    content: "\e9e5"
}

.bx-sidebar:before {
    content: "\e9e6"
}

.bx-table:before {
    content: "\e9e7"
}

.bx-clipboard:before {
    content: "\e9e8"
}

.bx-copy:before {
    content: "\e9e9"
}

.bx-play-circle:before {
    content: "\e9ea"
}

.bx-stop-circle:before {
    content: "\e9eb"
}

.bx-bookmarks:before {
    content: "\e9ec"
}

.bx-coffee:before {
    content: "\e9ed"
}

.bx-fast-forward-circle:before {
    content: "\e9ee"
}

.bx-rectangle:before {
    content: "\e9ef"
}

.bx-fullscreen:before {
    content: "\e9f0"
}

.bx-bookmark:before {
    content: "\e9f1"
}

.bx-accessibility:before {
    content: "\e9f2"
}

.bx-adjust:before {
    content: "\e9f3"
}

.bx-alarm:before {
    content: "\e9f4"
}

.bx-alarm-off:before {
    content: "\e9f5"
}

.bx-album:before {
    content: "\e9f6"
}

.bx-align-justify:before {
    content: "\e9f7"
}

.bx-align-left:before {
    content: "\e9f8"
}

.bx-align-middle:before {
    content: "\e9f9"
}

.bx-align-right:before {
    content: "\e9fa"
}

.bx-ambulance:before {
    content: "\e9fb"
}

.bx-analyse:before {
    content: "\e9fc"
}

.bx-anchor:before {
    content: "\e9fd"
}

.bx-aperture:before {
    content: "\e9fe"
}

.bx-area:before {
    content: "\e9ff"
}

.bx-arrow-back:before {
    content: "\ea00"
}

.bx-at:before {
    content: "\ea01"
}

.bx-award:before {
    content: "\ea02"
}

.bx-badge:before {
    content: "\ea03"
}

.bx-badge-check:before {
    content: "\ea04"
}

.bx-ball:before {
    content: "\ea05"
}

.bx-band-aid:before {
    content: "\ea06"
}

.bx-bar-chart:before {
    content: "\ea07"
}

.bx-bar-chart-alt:before {
    content: "\ea08"
}

.bx-bar-chart-alt-2:before {
    content: "\ea09"
}

.bx-bar-chart-square:before {
    content: "\ea0a"
}

.bx-barcode:before {
    content: "\ea0b"
}

.bx-basket:before {
    content: "\ea0c"
}

.bx-basketball:before {
    content: "\ea0d"
}

.bx-bath:before {
    content: "\ea0e"
}

.bx-bed:before {
    content: "\ea0f"
}

.bx-bell:before {
    content: "\ea10"
}

.bx-bell-minus:before {
    content: "\ea11"
}

.bx-bell-off:before {
    content: "\ea12"
}

.bx-bell-plus:before {
    content: "\ea13"
}

.bx-bicycle:before {
    content: "\ea14"
}

.bx-block:before {
    content: "\ea15"
}

.bx-bluetooth:before {
    content: "\ea16"
}

.bx-body:before {
    content: "\ea17"
}

.bx-book-open:before {
    content: "\ea18"
}

.bx-border-all:before {
    content: "\ea19"
}

.bx-border-bottom:before {
    content: "\ea1a"
}

.bx-border-left:before {
    content: "\ea1b"
}

.bx-border-right:before {
    content: "\ea1c"
}

.bx-border-top:before {
    content: "\ea1d"
}

.bx-bot:before {
    content: "\ea1e"
}

.bx-bowling-ball:before {
    content: "\ea1f"
}

.bx-box:before {
    content: "\ea20"
}

.bx-brightness:before {
    content: "\ea21"
}

.bx-brightness-half:before {
    content: "\ea22"
}

.bx-broadcast:before {
    content: "\ea23"
}

.bx-brush:before {
    content: "\ea24"
}

.bx-bug:before {
    content: "\ea25"
}

.bx-bug-alt:before {
    content: "\ea26"
}

.bx-building:before {
    content: "\ea27"
}

.bx-bulb:before {
    content: "\ea28"
}

.bx-bullseye:before {
    content: "\ea29"
}

.bx-buoy:before {
    content: "\ea2a"
}

.bx-calculator:before {
    content: "\ea2b"
}

.bx-calendar:before {
    content: "\ea2c"
}

.bx-calendar-alt:before {
    content: "\ea2d"
}

.bx-calendar-check:before {
    content: "\ea2e"
}

.bx-calendar-event:before {
    content: "\ea2f"
}

.bx-calendar-minus:before {
    content: "\ea30"
}

.bx-calendar-plus:before {
    content: "\ea31"
}

.bx-calendar-x:before {
    content: "\ea32"
}

.bx-camera:before {
    content: "\ea33"
}

.bx-camera-off:before {
    content: "\ea34"
}

.bx-captions:before {
    content: "\ea35"
}

.bx-car:before {
    content: "\ea36"
}

.bx-card:before {
    content: "\ea37"
}

.bx-caret-down:before {
    content: "\ea38"
}

.bx-caret-left:before {
    content: "\ea39"
}

.bx-caret-right:before {
    content: "\ea3a"
}

.bx-caret-up:before {
    content: "\ea3b"
}

.bx-carousel:before {
    content: "\ea3c"
}

.bx-cart:before {
    content: "\ea3d"
}

.bx-cart-alt:before {
    content: "\ea3e"
}

.bx-cast:before {
    content: "\ea3f"
}

.bx-certification:before {
    content: "\ea40"
}

.bx-chart:before {
    content: "\ea41"
}

.bx-checkbox:before {
    content: "\ea42"
}

.bx-checkbox-checked:before {
    content: "\ea43"
}

.bx-checkbox-square:before {
    content: "\ea44"
}

.bx-check-circle:before {
    content: "\ea45"
}

.bx-check-double:before {
    content: "\ea46"
}

.bx-check-square:before {
    content: "\ea47"
}

.bx-chevron-down:before {
    content: "\ea48"
}

.bx-chevron-left:before {
    content: "\ea49"
}

.bx-chevron-right:before {
    content: "\ea4a"
}

.bx-chevrons-down:before {
    content: "\ea4b"
}

.bx-chevrons-left:before {
    content: "\ea4c"
}

.bx-chevrons-right:before {
    content: "\ea4d"
}

.bx-chevrons-up:before {
    content: "\ea4e"
}

.bx-chevron-up:before {
    content: "\ea4f"
}

.bx-circle:before {
    content: "\ea50"
}

.bx-cloud:before {
    content: "\ea51"
}

.bx-cloud-download:before {
    content: "\ea52"
}

.bx-cloud-drizzle:before {
    content: "\ea53"
}

.bx-cloud-lightning:before {
    content: "\ea54"
}

.bx-cloud-light-rain:before {
    content: "\ea55"
}

.bx-cloud-rain:before {
    content: "\ea56"
}

.bx-cloud-snow:before {
    content: "\ea57"
}

.bx-cloud-upload:before {
    content: "\ea58"
}

.bx-code:before {
    content: "\ea59"
}

.bx-code-alt:before {
    content: "\ea5a"
}

.bx-code-curly:before {
    content: "\ea5b"
}

.bx-cog:before {
    content: "\ea5c"
}

.bx-collapse:before {
    content: "\ea5d"
}

.bx-collection:before {
    content: "\ea5e"
}

.bx-command:before {
    content: "\ea5f"
}

.bx-compass:before {
    content: "\ea60"
}

.bx-conversation:before {
    content: "\ea61"
}

.bx-copy-alt:before {
    content: "\ea62"
}

.bx-copyright:before {
    content: "\ea63"
}

.bx-crosshair:before {
    content: "\ea64"
}

.bx-crown:before {
    content: "\ea65"
}

.bx-cube:before {
    content: "\ea66"
}

.bx-cube-alt:before {
    content: "\ea67"
}

.bx-cuboid:before {
    content: "\ea68"
}

.bx-customize:before {
    content: "\ea69"
}

.bx-cycling:before {
    content: "\ea6a"
}

.bx-cylinder:before {
    content: "\ea6b"
}

.bx-data:before {
    content: "\ea6c"
}

.bx-devices:before {
    content: "\ea6d"
}

.bx-dialpad:before {
    content: "\ea6e"
}

.bx-dialpad-alt:before {
    content: "\ea6f"
}

.bx-directions:before {
    content: "\ea70"
}

.bx-disc:before {
    content: "\ea71"
}

.bx-dislike:before {
    content: "\ea72"
}

.bx-dna:before {
    content: "\ea73"
}

.bx-dock-bottom:before {
    content: "\ea74"
}

.bx-dock-left:before {
    content: "\ea75"
}

.bx-dock-right:before {
    content: "\ea76"
}

.bx-dock-top:before {
    content: "\ea77"
}

.bx-dollar-circle:before {
    content: "\ea78"
}

.bx-dots-horizontal:before {
    content: "\ea79"
}

.bx-dots-horizontal-rounded:before {
    content: "\ea7a"
}

.bx-dots-vertical:before {
    content: "\ea7b"
}

.bx-dots-vertical-rounded:before {
    content: "\ea7c"
}

.bx-doughnut-chart:before {
    content: "\ea7d"
}

.bx-down-arrow:before {
    content: "\ea7e"
}

.bx-down-arrow-alt:before {
    content: "\ea7f"
}

.bx-down-arrow-circle:before {
    content: "\ea80"
}

.bx-download:before {
    content: "\ea81"
}

.bx-droplet:before {
    content: "\ea82"
}

.bx-dumbbell:before {
    content: "\ea83"
}

.bx-duplicate:before {
    content: "\ea84"
}

.bx-envelope:before {
    content: "\ea85"
}

.bx-equalizer:before {
    content: "\ea86"
}

.bx-error:before {
    content: "\ea87"
}

.bx-error-alt:before {
    content: "\ea88"
}

.bx-error-circle:before {
    content: "\ea89"
}

.bx-exit-fullscreen:before {
    content: "\ea8a"
}

.bx-expand:before {
    content: "\ea8b"
}

.bx-export:before {
    content: "\ea8c"
}

.bx-fast-forward:before {
    content: "\ea8d"
}

.bx-female:before {
    content: "\ea8e"
}

.bx-file:before {
    content: "\ea8f"
}

.bx-file-blank:before {
    content: "\ea90"
}

.bx-film:before {
    content: "\ea91"
}

.bx-filter:before {
    content: "\ea92"
}

.bx-filter-alt:before {
    content: "\ea93"
}

.bx-fingerprint:before {
    content: "\ea94"
}

.bx-first-aid:before {
    content: "\ea95"
}

.bx-first-page:before {
    content: "\ea96"
}

.bx-folder:before {
    content: "\ea97"
}

.bx-folder-minus:before {
    content: "\ea98"
}

.bx-folder-open:before {
    content: "\ea99"
}

.bx-folder-plus:before {
    content: "\ea9a"
}

.bx-font-color:before {
    content: "\ea9b"
}

.bx-football:before {
    content: "\ea9c"
}

.bx-ghost:before {
    content: "\ea9d"
}

.bx-gift:before {
    content: "\ea9e"
}

.bx-git-branch:before {
    content: "\ea9f"
}

.bx-git-commit:before {
    content: "\eaa0"
}

.bx-git-compare:before {
    content: "\eaa1"
}

.bx-git-merge:before {
    content: "\eaa2"
}

.bx-git-pull-request:before {
    content: "\eaa3"
}

.bx-git-repo-forked:before {
    content: "\eaa4"
}

.bx-globe:before {
    content: "\eaa5"
}

.bx-globe-alt:before {
    content: "\eaa6"
}

.bx-grid:before {
    content: "\eaa7"
}

.bx-grid-alt:before {
    content: "\eaa8"
}

.bx-grid-horizontal:before {
    content: "\eaa9"
}

.bx-grid-small:before {
    content: "\eaaa"
}

.bx-grid-vertical:before {
    content: "\eaab"
}

.bx-group:before {
    content: "\eaac"
}

.bx-handicap:before {
    content: "\eaad"
}

.bx-hash:before {
    content: "\eaae"
}

.bx-headphone:before {
    content: "\eaaf"
}

.bx-heart:before {
    content: "\eab0"
}

.bx-help-circle:before {
    content: "\eab1"
}

.bx-hide:before {
    content: "\eab2"
}

.bx-highlight:before {
    content: "\eab3"
}

.bx-history:before {
    content: "\eab4"
}

.bx-hive:before {
    content: "\eab5"
}

.bx-home:before {
    content: "\eab6"
}

.bx-home-alt:before {
    content: "\eab7"
}

.bx-home-circle:before {
    content: "\eab8"
}

.bx-horizontal-center:before {
    content: "\eab9"
}

.bx-hotel:before {
    content: "\eaba"
}

.bx-hourglass:before {
    content: "\eabb"
}

.bx-image:before {
    content: "\eabc"
}

.bx-import:before {
    content: "\eabd"
}

.bx-infinite:before {
    content: "\eabe"
}

.bx-info-circle:before {
    content: "\eabf"
}

.bx-joystick:before {
    content: "\eac0"
}

.bx-joystick-alt:before {
    content: "\eac1"
}

.bx-joystick-button:before {
    content: "\eac2"
}

.bx-key:before {
    content: "\eac3"
}

.bx-landscape:before {
    content: "\eac4"
}

.bx-last-page:before {
    content: "\eac5"
}

.bx-layer:before {
    content: "\eac6"
}

.bx-layout:before {
    content: "\eac7"
}

.bx-left-arrow:before {
    content: "\eac8"
}

.bx-left-arrow-alt:before {
    content: "\eac9"
}

.bx-left-arrow-circle:before {
    content: "\eaca"
}

.bx-left-down-arrow-circle:before {
    content: "\eacb"
}

.bx-left-indent:before {
    content: "\eacc"
}

.bx-left-top-arrow-circle:before {
    content: "\eacd"
}

.bx-like:before {
    content: "\eace"
}

.bx-line-chart:before {
    content: "\eacf"
}

.bx-link:before {
    content: "\ead0"
}

.bx-link-alt:before {
    content: "\ead1"
}

.bx-link-external:before {
    content: "\ead2"
}

.bx-list-check:before {
    content: "\ead3"
}

.bx-list-ol:before {
    content: "\ead4"
}

.bx-list-plus:before {
    content: "\ead5"
}

.bx-list-ul:before {
    content: "\ead6"
}

.bx-list-x:before {
    content: "\ead7"
}

.bx-loader:before {
    content: "\ead8"
}

.bx-loader-alt:before {
    content: "\ead9"
}

.bx-loader-circle:before {
    content: "\eada"
}

.bx-lock:before {
    content: "\eadb"
}

.bx-lock-alt:before {
    content: "\eadc"
}

.bx-lock-open:before {
    content: "\eadd"
}

.bx-lock-open-alt:before {
    content: "\eade"
}

.bx-log-in:before {
    content: "\eadf"
}

.bx-log-in-circle:before {
    content: "\eae0"
}

.bx-log-out:before {
    content: "\eae1"
}

.bx-log-out-circle:before {
    content: "\eae2"
}

.bx-magnet:before {
    content: "\eae3"
}

.bx-mail-send:before {
    content: "\eae4"
}

.bx-male:before {
    content: "\eae5"
}

.bx-map:before {
    content: "\eae6"
}

.bx-map-pin:before {
    content: "\eae7"
}

.bx-memory-card:before {
    content: "\eae8"
}

.bx-menu:before {
    content: "\eae9"
}

.bx-menu-alt-left:before {
    content: "\eaea"
}

.bx-menu-alt-right:before {
    content: "\eaeb"
}

.bx-message-square:before {
    content: "\eaec"
}

.bx-message-square-dots:before {
    content: "\eaed"
}

.bx-microphone:before {
    content: "\eaee"
}

.bx-microphone-off:before {
    content: "\eaef"
}

.bx-minus-circle:before {
    content: "\eaf0"
}

.bx-mobile:before {
    content: "\eaf1"
}

.bx-mobile-landscape:before {
    content: "\eaf2"
}

.bx-mobile-vibration:before {
    content: "\eaf3"
}

.bx-moon:before {
    content: "\eaf4"
}

.bx-mouse:before {
    content: "\eaf5"
}

.bx-mouse-alt:before {
    content: "\eaf6"
}

.bx-move:before {
    content: "\eaf7"
}

.bx-music:before {
    content: "\eaf8"
}

.bx-navigation:before {
    content: "\eaf9"
}

.bx-no-entry:before {
    content: "\eafa"
}

.bx-note:before {
    content: "\eafb"
}

.bx-notification-off:before {
    content: "\eafc"
}

.bx-package:before {
    content: "\eafd"
}

.bx-paint:before {
    content: "\eafe"
}

.bx-paint-roll:before {
    content: "\eaff"
}

.bx-palette:before {
    content: "\eb00"
}

.bx-paperclip:before {
    content: "\eb01"
}

.bx-paper-plane:before {
    content: "\eb02"
}

.bx-pause:before {
    content: "\eb03"
}

.bx-pause-circle:before {
    content: "\eb04"
}

.bx-pen:before {
    content: "\eb05"
}

.bx-pencil:before {
    content: "\eb06"
}

.bx-phone:before {
    content: "\eb07"
}

.bx-phone-call:before {
    content: "\eb08"
}

.bx-phone-incoming:before {
    content: "\eb09"
}

.bx-phone-outgoing:before {
    content: "\eb0a"
}

.bx-pie-chart:before {
    content: "\eb0b"
}

.bx-pie-chart-alt:before {
    content: "\eb0c"
}

.bx-pie-chart-alt-2:before {
    content: "\eb0d"
}

.bx-pin:before {
    content: "\eb0e"
}

.bx-planet:before {
    content: "\eb0f"
}

.bx-play:before {
    content: "\eb10"
}

.bx-plug:before {
    content: "\eb11"
}

.bx-plus-circle:before {
    content: "\eb12"
}

.bx-plus-medical:before {
    content: "\eb13"
}

.bx-poll:before {
    content: "\eb14"
}

.bx-polygon:before {
    content: "\eb15"
}

.bx-power-off:before {
    content: "\eb16"
}

.bx-purchase-tag-alt:before {
    content: "\eb17"
}

.bx-pyramid:before {
    content: "\eb18"
}

.bx-question-mark:before {
    content: "\eb19"
}

.bx-radar:before {
    content: "\eb1a"
}

.bx-radio-circle:before {
    content: "\eb1b"
}

.bx-radio-circle-marked:before {
    content: "\eb1c"
}

.bx-receipt:before {
    content: "\eb1d"
}

.bx-redo:before {
    content: "\eb1e"
}

.bx-reset:before {
    content: "\eb1f"
}

.bx-revision:before {
    content: "\eb20"
}

.bx-rewind:before {
    content: "\eb21"
}

.bx-right-arrow:before {
    content: "\eb22"
}

.bx-right-arrow-alt:before {
    content: "\eb23"
}

.bx-right-arrow-circle:before {
    content: "\eb24"
}

.bx-right-down-arrow-circle:before {
    content: "\eb25"
}

.bx-right-indent:before {
    content: "\eb26"
}

.bx-right-top-arrow-circle:before {
    content: "\eb27"
}

.bx-rocket:before {
    content: "\eb28"
}

.bx-rotate-left:before {
    content: "\eb29"
}

.bx-rotate-right:before {
    content: "\eb2a"
}

.bx-rss:before {
    content: "\eb2b"
}

.bx-run:before {
    content: "\eb2c"
}

.bx-save:before {
    content: "\eb2d"
}

.bx-search:before {
    content: "\eb2e"
}

.bx-search-alt:before {
    content: "\eb2f"
}

.bx-search-alt-2:before {
    content: "\eb30"
}

.bx-selection:before {
    content: "\eb31"
}

.bx-select-multiple:before {
    content: "\eb32"
}

.bx-send:before {
    content: "\eb33"
}

.bx-server:before {
    content: "\eb34"
}

.bx-shape-circle:before {
    content: "\eb35"
}

.bx-shape-square:before {
    content: "\eb36"
}

.bx-shape-triangle:before {
    content: "\eb37"
}

.bx-share:before {
    content: "\eb38"
}

.bx-share-alt:before {
    content: "\eb39"
}

.bx-shield:before {
    content: "\eb3a"
}

.bx-shield-alt:before {
    content: "\eb3b"
}

.bx-shield-alt-2:before {
    content: "\eb3c"
}

.bx-show:before {
    content: "\eb3d"
}

.bx-show-alt:before {
    content: "\eb3e"
}

.bx-skip-next:before {
    content: "\eb3f"
}

.bx-skip-previous:before {
    content: "\eb40"
}

.bx-slider:before {
    content: "\eb41"
}

.bx-slider-alt:before {
    content: "\eb42"
}

.bx-slideshow:before {
    content: "\eb43"
}

.bx-spreadsheet:before {
    content: "\eb44"
}

.bx-square:before {
    content: "\eb45"
}

.bx-square-rounded:before {
    content: "\eb46"
}

.bx-star:before {
    content: "\eb47"
}

.bx-station:before {
    content: "\eb48"
}

.bx-stats:before {
    content: "\eb49"
}

.bx-stop:before {
    content: "\eb4a"
}

.bx-stopwatch:before {
    content: "\eb4b"
}

.bx-store:before {
    content: "\eb4c"
}

.bx-store-alt:before {
    content: "\eb4d"
}

.bx-street-view:before {
    content: "\eb4e"
}

.bx-strikethrough:before {
    content: "\eb4f"
}

.bx-sun:before {
    content: "\eb50"
}

.bx-swim:before {
    content: "\eb51"
}

.bx-sync:before {
    content: "\eb52"
}

.bx-tab:before {
    content: "\eb53"
}

.bx-target-lock:before {
    content: "\eb54"
}

.bx-taxi:before {
    content: "\eb55"
}

.bx-tennis-ball:before {
    content: "\eb56"
}

.bx-test-tube:before {
    content: "\eb57"
}

.bx-time:before {
    content: "\eb58"
}

.bx-time-five:before {
    content: "\eb59"
}

.bx-timer:before {
    content: "\eb5a"
}

.bx-toggle-left:before {
    content: "\eb5b"
}

.bx-toggle-right:before {
    content: "\eb5c"
}

.bx-traffic-barrier:before {
    content: "\eb5d"
}

.bx-train:before {
    content: "\eb5e"
}

.bx-transfer:before {
    content: "\eb5f"
}

.bx-transfer-alt:before {
    content: "\eb60"
}

.bx-trash:before {
    content: "\eb61"
}

.bx-trash-alt:before {
    content: "\eb62"
}

.bx-trending-down:before {
    content: "\eb63"
}

.bx-trending-up:before {
    content: "\eb64"
}

.bx-trophy:before {
    content: "\eb65"
}

.bx-truck:before {
    content: "\eb66"
}

.bx-undo:before {
    content: "\eb67"
}

.bx-unlink:before {
    content: "\eb68"
}

.bx-up-arrow:before {
    content: "\eb69"
}

.bx-up-arrow-alt:before {
    content: "\eb6a"
}

.bx-up-arrow-circle:before {
    content: "\eb6b"
}

.bx-upload:before {
    content: "\eb6c"
}

.bx-user:before {
    content: "\eb6d"
}

.bx-user-check:before {
    content: "\eb6e"
}

.bx-user-circle:before {
    content: "\eb6f"
}

.bx-user-minus:before {
    content: "\eb70"
}

.bx-user-pin:before {
    content: "\eb71"
}

.bx-user-plus:before {
    content: "\eb72"
}

.bx-user-voice:before {
    content: "\eb73"
}

.bx-user-x:before {
    content: "\eb74"
}

.bx-vertical-center:before {
    content: "\eb75"
}

.bx-video:before {
    content: "\eb76"
}

.bx-video-off:before {
    content: "\eb77"
}

.bx-video-plus:before {
    content: "\eb78"
}

.bx-video-recording:before {
    content: "\eb79"
}

.bx-voicemail:before {
    content: "\eb7a"
}

.bx-volume:before {
    content: "\eb7b"
}

.bx-volume-full:before {
    content: "\eb7c"
}

.bx-volume-low:before {
    content: "\eb7d"
}

.bx-volume-mute:before {
    content: "\eb7e"
}

.bx-walk:before {
    content: "\eb7f"
}

.bx-water:before {
    content: "\eb80"
}

.bx-wifi:before {
    content: "\eb81"
}

.bx-wifi-off:before {
    content: "\eb82"
}

.bx-wind:before {
    content: "\eb83"
}

.bx-x-circle:before {
    content: "\eb84"
}

.bx-zoom-in:before {
    content: "\eb85"
}

.bx-zoom-out:before {
    content: "\eb86"
}

.bxs-archive:before {
    content: "\eb87"
}

.bxs-archive-out:before {
    content: "\eb88"
}

.bxs-archive-in:before {
    content: "\eb89"
}

.bxs-city:before {
    content: "\eb8a"
}

.bxs-cake:before {
    content: "\eb8b"
}

.bxs-spa:before {
    content: "\eb8c"
}

.bxs-dish:before {
    content: "\eb8d"
}

.bxs-fridge:before {
    content: "\eb8e"
}

.bxs-image-add:before {
    content: "\eb8f"
}

.bxs-alarm-add:before {
    content: "\eb90"
}

.bxs-add-to-queue:before {
    content: "\eb91"
}

.bxs-bolt-circle:before {
    content: "\eb92"
}

.bxs-check-shield:before {
    content: "\eb93"
}

.bxs-file-find:before {
    content: "\eb94"
}

.bxs-label:before {
    content: "\eb95"
}

.bxs-exit:before {
    content: "\eb96"
}

.bxs-extension:before {
    content: "\eb97"
}

.bxs-face:before {
    content: "\eb98"
}

.bxs-downvote:before {
    content: "\eb99"
}

.bxs-upvote:before {
    content: "\eb9a"
}

.bxs-user-circle:before {
    content: "\eb9b"
}

.bxs-cart:before {
    content: "\eb9c"
}

.bxs-magnet:before {
    content: "\eb9d"
}

.bxs-briefcase:before {
    content: "\eb9e"
}

.bxs-book:before {
    content: "\eb9f"
}

.bxs-watch:before {
    content: "\eba0"
}

.bxs-wallet-alt:before {
    content: "\eba1"
}

.bxs-edit:before {
    content: "\eba2"
}

.bxs-shield-alt-2:before {
    content: "\eba3"
}

.bxs-building-house:before {
    content: "\eba4"
}

.bxs-star:before {
    content: "\eba5"
}

.bxs-bar-chart-alt-2:before {
    content: "\eba6"
}

.bxs-message-rounded-dots:before {
    content: "\eba7"
}

.bxs-message-rounded:before {
    content: "\eba8"
}

.bxs-brush-alt:before {
    content: "\eba9"
}

.bxs-message-alt-dots:before {
    content: "\ebaa"
}

.bxs-message-alt:before {
    content: "\ebab"
}

.bxs-brush:before {
    content: "\ebac"
}

.bxs-gas-pump:before {
    content: "\ebad"
}

.bxs-megaphone:before {
    content: "\ebae"
}

.bxs-ship:before {
    content: "\ebaf"
}

.bxs-bath:before {
    content: "\ebb0"
}

.bxs-bed:before {
    content: "\ebb1"
}

.bxs-photo-album:before {
    content: "\ebb2"
}

.bxs-grid-alt:before {
    content: "\ebb3"
}

.bxs-sort-alt:before {
    content: "\ebb4"
}

.bxs-wallet:before {
    content: "\ebb5"
}

.bxs-categories:before {
    content: "\ebb6"
}

.bxs-movie:before {
    content: "\ebb7"
}

.bxs-watch-alt:before {
    content: "\ebb8"
}

.bxs-buildings:before {
    content: "\ebb9"
}

.bxs-chat:before {
    content: "\ebba"
}

.bxs-briefcase-alt:before {
    content: "\ebbb"
}

.bxs-book-content:before {
    content: "\ebbc"
}

.bxs-message-dots:before {
    content: "\ebbd"
}

.bxs-edit-alt:before {
    content: "\ebbe"
}

.bxs-notepad:before {
    content: "\ebbf"
}

.bxs-briefcase-alt-2:before {
    content: "\ebc0"
}

.bxs-credit-card:before {
    content: "\ebc1"
}

.bxs-credit-card-alt:before {
    content: "\ebc2"
}

.bxs-no-entry:before {
    content: "\ebc3"
}

.bxs-battery-charging:before {
    content: "\ebc4"
}

.bxs-battery-full:before {
    content: "\ebc5"
}

.bxs-hdd:before {
    content: "\ebc6"
}

.bxs-news:before {
    content: "\ebc7"
}

.bxs-ruler:before {
    content: "\ebc8"
}

.bxs-filter-alt:before {
    content: "\ebc9"
}

.bxs-purchase-tag:before {
    content: "\ebca"
}

.bxs-battery-low:before {
    content: "\ebcb"
}

.bxs-chip:before {
    content: "\ebcc"
}

.bxs-rename:before {
    content: "\ebcd"
}

.bxs-battery:before {
    content: "\ebce"
}

.bxs-flag:before {
    content: "\ebcf"
}

.bxs-wrench:before {
    content: "\ebd0"
}

.bxs-t-shirt:before {
    content: "\ebd1"
}

.bxs-paste:before {
    content: "\ebd2"
}

.bxs-share:before {
    content: "\ebd3"
}

.bxs-bolt:before {
    content: "\ebd4"
}

.bxs-coffee-alt:before {
    content: "\ebd5"
}

.bxs-pin:before {
    content: "\ebd6"
}

.bxs-shopping-bag:before {
    content: "\ebd7"
}

.bxs-shopping-bag-alt:before {
    content: "\ebd8"
}

.bxs-trophy:before {
    content: "\ebd9"
}

.bxs-coupon:before {
    content: "\ebda"
}

.bxs-discount:before {
    content: "\ebdb"
}

.bxs-inbox:before {
    content: "\ebdc"
}

.bxs-widget:before {
    content: "\ebdd"
}

.bxs-printer:before {
    content: "\ebde"
}

.bxs-radio:before {
    content: "\ebdf"
}

.bxs-terminal:before {
    content: "\ebe0"
}

.bxs-message:before {
    content: "\ebe1"
}

.bxs-tag:before {
    content: "\ebe2"
}

.bxs-tag-x:before {
    content: "\ebe3"
}

.bxs-building:before {
    content: "\ebe4"
}

.bxs-book-bookmark:before {
    content: "\ebe5"
}

.bxs-bus:before {
    content: "\ebe6"
}

.bxs-copy-alt:before {
    content: "\ebe7"
}

.bxs-coffee:before {
    content: "\ebe8"
}

.bxs-copy:before {
    content: "\ebe9"
}

.bxs-x-circle:before {
    content: "\ebea"
}

.bxs-zoom-out:before {
    content: "\ebeb"
}

.bxs-adjust:before {
    content: "\ebec"
}

.bxs-adjust-alt:before {
    content: "\ebed"
}

.bxs-alarm:before {
    content: "\ebee"
}

.bxs-alarm-off:before {
    content: "\ebef"
}

.bxs-album:before {
    content: "\ebf0"
}

.bxs-ambulance:before {
    content: "\ebf1"
}

.bxs-analyse:before {
    content: "\ebf2"
}

.bxs-area:before {
    content: "\ebf3"
}

.bxs-award:before {
    content: "\ebf4"
}

.bxs-badge:before {
    content: "\ebf5"
}

.bxs-badge-check:before {
    content: "\ebf6"
}

.bxs-ball:before {
    content: "\ebf7"
}

.bxs-band-aid:before {
    content: "\ebf8"
}

.bxs-bank:before {
    content: "\ebf9"
}

.bxs-bar-chart-square:before {
    content: "\ebfa"
}

.bxs-barcode:before {
    content: "\ebfb"
}

.bxs-basket:before {
    content: "\ebfc"
}

.bxs-bell:before {
    content: "\ebfd"
}

.bxs-bell-minus:before {
    content: "\ebfe"
}

.bxs-bell-off:before {
    content: "\ebff"
}

.bxs-bell-plus:before {
    content: "\ec00"
}

.bxs-bell-ring:before {
    content: "\ec01"
}

.bxs-bookmark:before {
    content: "\ec02"
}

.bxs-bookmark-minus:before {
    content: "\ec03"
}

.bxs-bookmark-plus:before {
    content: "\ec04"
}

.bxs-bookmarks:before {
    content: "\ec05"
}

.bxs-bookmark-star:before {
    content: "\ec06"
}

.bxs-book-open:before {
    content: "\ec07"
}

.bxs-bot:before {
    content: "\ec08"
}

.bxs-bowling-ball:before {
    content: "\ec09"
}

.bxs-box:before {
    content: "\ec0a"
}

.bxs-brightness:before {
    content: "\ec0b"
}

.bxs-brightness-half:before {
    content: "\ec0c"
}

.bxs-bug:before {
    content: "\ec0d"
}

.bxs-bug-alt:before {
    content: "\ec0e"
}

.bxs-bulb:before {
    content: "\ec0f"
}

.bxs-buoy:before {
    content: "\ec10"
}

.bxs-calculator:before {
    content: "\ec11"
}

.bxs-calendar:before {
    content: "\ec12"
}

.bxs-calendar-alt:before {
    content: "\ec13"
}

.bxs-calendar-check:before {
    content: "\ec14"
}

.bxs-calendar-event:before {
    content: "\ec15"
}

.bxs-calendar-minus:before {
    content: "\ec16"
}

.bxs-calendar-plus:before {
    content: "\ec17"
}

.bxs-calendar-x:before {
    content: "\ec18"
}

.bxs-camera:before {
    content: "\ec19"
}

.bxs-camera-off:before {
    content: "\ec1a"
}

.bxs-capsule:before {
    content: "\ec1b"
}

.bxs-captions:before {
    content: "\ec1c"
}

.bxs-car:before {
    content: "\ec1d"
}

.bxs-card:before {
    content: "\ec1e"
}

.bxs-carousel:before {
    content: "\ec1f"
}

.bxs-cart-alt:before {
    content: "\ec20"
}

.bxs-certification:before {
    content: "\ec21"
}

.bxs-chalkboard:before {
    content: "\ec22"
}

.bxs-chart:before {
    content: "\ec23"
}

.bxs-checkbox:before {
    content: "\ec24"
}

.bxs-checkbox-checked:before {
    content: "\ec25"
}

.bxs-check-circle:before {
    content: "\ec26"
}

.bxs-check-square:before {
    content: "\ec27"
}

.bxs-circle:before {
    content: "\ec28"
}

.bxs-cloud:before {
    content: "\ec29"
}

.bxs-cloud-download:before {
    content: "\ec2a"
}

.bxs-cloud-lightning:before {
    content: "\ec2b"
}

.bxs-cloud-rain:before {
    content: "\ec2c"
}

.bxs-cloud-upload:before {
    content: "\ec2d"
}

.bxs-cog:before {
    content: "\ec2e"
}

.bxs-collection:before {
    content: "\ec2f"
}

.bxs-color-fill:before {
    content: "\ec30"
}

.bxs-comment:before {
    content: "\ec31"
}

.bxs-comment-add:before {
    content: "\ec32"
}

.bxs-comment-detail:before {
    content: "\ec33"
}

.bxs-comment-dots:before {
    content: "\ec34"
}

.bxs-comment-error:before {
    content: "\ec35"
}

.bxs-compass:before {
    content: "\ec36"
}

.bxs-component:before {
    content: "\ec37"
}

.bxs-contact:before {
    content: "\ec38"
}

.bxs-conversation:before {
    content: "\ec39"
}

.bxs-crown:before {
    content: "\ec3a"
}

.bxs-cube:before {
    content: "\ec3b"
}

.bxs-cube-alt:before {
    content: "\ec3c"
}

.bxs-cuboid:before {
    content: "\ec3d"
}

.bxs-customize:before {
    content: "\ec3e"
}

.bxs-cylinder:before {
    content: "\ec3f"
}

.bxs-dashboard:before {
    content: "\ec40"
}

.bxs-data:before {
    content: "\ec41"
}

.bxs-detail:before {
    content: "\ec42"
}

.bxs-devices:before {
    content: "\ec43"
}

.bxs-direction-left:before {
    content: "\ec44"
}

.bxs-direction-right:before {
    content: "\ec45"
}

.bxs-directions:before {
    content: "\ec46"
}

.bxs-disc:before {
    content: "\ec47"
}

.bxs-dislike:before {
    content: "\ec48"
}

.bxs-dock-bottom:before {
    content: "\ec49"
}

.bxs-dock-left:before {
    content: "\ec4a"
}

.bxs-dock-right:before {
    content: "\ec4b"
}

.bxs-dock-top:before {
    content: "\ec4c"
}

.bxs-dollar-circle:before {
    content: "\ec4d"
}

.bxs-doughnut-chart:before {
    content: "\ec4e"
}

.bxs-down-arrow:before {
    content: "\ec4f"
}

.bxs-down-arrow-circle:before {
    content: "\ec50"
}

.bxs-down-arrow-square:before {
    content: "\ec51"
}

.bxs-download:before {
    content: "\ec52"
}

.bxs-drink:before {
    content: "\ec53"
}

.bxs-droplet:before {
    content: "\ec54"
}

.bxs-droplet-half:before {
    content: "\ec55"
}

.bxs-duplicate:before {
    content: "\ec56"
}

.bxs-eject:before {
    content: "\ec57"
}

.bxs-envelope:before {
    content: "\ec58"
}

.bxs-eraser:before {
    content: "\ec59"
}

.bxs-error:before {
    content: "\ec5a"
}

.bxs-error-alt:before {
    content: "\ec5b"
}

.bxs-error-circle:before {
    content: "\ec5c"
}

.bxs-eyedropper:before {
    content: "\ec5d"
}

.bxs-factory:before {
    content: "\ec5e"
}

.bxs-fast-forward-circle:before {
    content: "\ec5f"
}

.bxs-file:before {
    content: "\ec60"
}

.bxs-file-blank:before {
    content: "\ec61"
}

.bxs-file-css:before {
    content: "\ec62"
}

.bxs-file-doc:before {
    content: "\ec63"
}

.bxs-file-gif:before {
    content: "\ec64"
}

.bxs-file-html:before {
    content: "\ec65"
}

.bxs-file-image:before {
    content: "\ec66"
}

.bxs-file-jpg:before {
    content: "\ec67"
}

.bxs-file-js:before {
    content: "\ec68"
}

.bxs-file-json:before {
    content: "\ec69"
}

.bxs-file-md:before {
    content: "\ec6a"
}

.bxs-file-pdf:before {
    content: "\ec6b"
}

.bxs-file-plus:before {
    content: "\ec6c"
}

.bxs-file-png:before {
    content: "\ec6d"
}

.bxs-file-txt:before {
    content: "\ec6e"
}

.bxs-film:before {
    content: "\ec6f"
}

.bxs-first-aid:before {
    content: "\ec70"
}

.bxs-flag-alt:before {
    content: "\ec71"
}

.bxs-flame:before {
    content: "\ec72"
}

.bxs-flask:before {
    content: "\ec73"
}

.bxs-folder:before {
    content: "\ec74"
}

.bxs-folder-minus:before {
    content: "\ec75"
}

.bxs-folder-open:before {
    content: "\ec76"
}

.bxs-folder-plus:before {
    content: "\ec77"
}

.bxs-ghost:before {
    content: "\ec78"
}

.bxs-gift:before {
    content: "\ec79"
}

.bxs-graduation:before {
    content: "\ec7a"
}

.bxs-grid:before {
    content: "\ec7b"
}

.bxs-group:before {
    content: "\ec7c"
}

.bxs-heart:before {
    content: "\ec7d"
}

.bxs-help-circle:before {
    content: "\ec7e"
}

.bxs-hide:before {
    content: "\ec7f"
}

.bxs-home:before {
    content: "\ec80"
}

.bxs-home-circle:before {
    content: "\ec81"
}

.bxs-hot:before {
    content: "\ec82"
}

.bxs-hotel:before {
    content: "\ec83"
}

.bxs-hourglass:before {
    content: "\ec84"
}

.bxs-hourglass-bottom:before {
    content: "\ec85"
}

.bxs-hourglass-top:before {
    content: "\ec86"
}

.bxs-id-card:before {
    content: "\ec87"
}

.bxs-image:before {
    content: "\ec88"
}

.bxs-image-alt:before {
    content: "\ec89"
}

.bxs-info-circle:before {
    content: "\ec8a"
}

.bxs-institution:before {
    content: "\ec8b"
}

.bxs-joystick:before {
    content: "\ec8c"
}

.bxs-joystick-alt:before {
    content: "\ec8d"
}

.bxs-joystick-button:before {
    content: "\ec8e"
}

.bxs-key:before {
    content: "\ec8f"
}

.bxs-keyboard:before {
    content: "\ec90"
}

.bxs-landmark:before {
    content: "\ec91"
}

.bxs-landscape:before {
    content: "\ec92"
}

.bxs-layer:before {
    content: "\ec93"
}

.bxs-layout:before {
    content: "\ec94"
}

.bxs-left-arrow:before {
    content: "\ec95"
}

.bxs-left-arrow-circle:before {
    content: "\ec96"
}

.bxs-left-arrow-square:before {
    content: "\ec97"
}

.bxs-left-down-arrow-circle:before {
    content: "\ec98"
}

.bxs-left-top-arrow-circle:before {
    content: "\ec99"
}

.bxs-like:before {
    content: "\ec9a"
}

.bxs-lock:before {
    content: "\ec9b"
}

.bxs-lock-alt:before {
    content: "\ec9c"
}

.bxs-lock-open:before {
    content: "\ec9d"
}

.bxs-lock-open-alt:before {
    content: "\ec9e"
}

.bxs-log-in:before {
    content: "\ec9f"
}

.bxs-log-in-circle:before {
    content: "\eca0"
}

.bxs-log-out:before {
    content: "\eca1"
}

.bxs-log-out-circle:before {
    content: "\eca2"
}

.bxs-magic-wand:before {
    content: "\eca3"
}

.bxs-map:before {
    content: "\eca4"
}

.bxs-map-alt:before {
    content: "\eca5"
}

.bxs-map-pin:before {
    content: "\eca6"
}

.bxs-memory-card:before {
    content: "\eca7"
}

.bxs-message-square:before {
    content: "\eca8"
}

.bxs-message-square-dots:before {
    content: "\eca9"
}

.bxs-microphone:before {
    content: "\ecaa"
}

.bxs-microphone-alt:before {
    content: "\ecab"
}

.bxs-microphone-off:before {
    content: "\ecac"
}

.bxs-minus-circle:before {
    content: "\ecad"
}

.bxs-minus-square:before {
    content: "\ecae"
}

.bxs-mobile:before {
    content: "\ecaf"
}

.bxs-mobile-vibration:before {
    content: "\ecb0"
}

.bxs-moon:before {
    content: "\ecb1"
}

.bxs-mouse:before {
    content: "\ecb2"
}

.bxs-mouse-alt:before {
    content: "\ecb3"
}

.bxs-music:before {
    content: "\ecb4"
}

.bxs-navigation:before {
    content: "\ecb5"
}

.bxs-note:before {
    content: "\ecb6"
}

.bxs-notification:before {
    content: "\ecb7"
}

.bxs-notification-off:before {
    content: "\ecb8"
}

.bxs-package:before {
    content: "\ecb9"
}

.bxs-paint:before {
    content: "\ecba"
}

.bxs-paint-roll:before {
    content: "\ecbb"
}

.bxs-palette:before {
    content: "\ecbc"
}

.bxs-paper-plane:before {
    content: "\ecbd"
}

.bxs-parking:before {
    content: "\ecbe"
}

.bxs-pen:before {
    content: "\ecbf"
}

.bxs-pencil:before {
    content: "\ecc0"
}

.bxs-phone:before {
    content: "\ecc1"
}

.bxs-phone-call:before {
    content: "\ecc2"
}

.bxs-phone-incoming:before {
    content: "\ecc3"
}

.bxs-phone-outgoing:before {
    content: "\ecc4"
}

.bxs-pie-chart:before {
    content: "\ecc5"
}

.bxs-pie-chart-alt:before {
    content: "\ecc6"
}

.bxs-pie-chart-alt-2:before {
    content: "\ecc7"
}

.bxs-plane:before {
    content: "\ecc8"
}

.bxs-plane-alt:before {
    content: "\ecc9"
}

.bxs-plane-land:before {
    content: "\ecca"
}

.bxs-planet:before {
    content: "\eccb"
}

.bxs-plane-take-off:before {
    content: "\eccc"
}

.bxs-playlist:before {
    content: "\eccd"
}

.bxs-plug:before {
    content: "\ecce"
}

.bxs-plus-circle:before {
    content: "\eccf"
}

.bxs-plus-square:before {
    content: "\ecd0"
}

.bxs-polygon:before {
    content: "\ecd1"
}

.bxs-purchase-tag-alt:before {
    content: "\ecd2"
}

.bxs-pyramid:before {
    content: "\ecd3"
}

.bxs-quote-alt-left:before {
    content: "\ecd4"
}

.bxs-quote-alt-right:before {
    content: "\ecd5"
}

.bxs-quote-left:before {
    content: "\ecd6"
}

.bxs-quote-right:before {
    content: "\ecd7"
}

.bxs-quote-single-left:before {
    content: "\ecd8"
}

.bxs-quote-single-right:before {
    content: "\ecd9"
}

.bxs-receipt:before {
    content: "\ecda"
}

.bxs-rectangle:before {
    content: "\ecdb"
}

.bxs-report:before {
    content: "\ecdc"
}

.bxs-rewind-circle:before {
    content: "\ecdd"
}

.bxs-right-arrow:before {
    content: "\ecde"
}

.bxs-right-arrow-circle:before {
    content: "\ecdf"
}

.bxs-right-arrow-square:before {
    content: "\ece0"
}

.bxs-right-down-arrow-circle:before {
    content: "\ece1"
}

.bxs-right-top-arrow-circle:before {
    content: "\ece2"
}

.bxs-rocket:before {
    content: "\ece3"
}

.bxs-save:before {
    content: "\ece4"
}

.bxs-school:before {
    content: "\ece5"
}

.bxs-search:before {
    content: "\ece6"
}

.bxs-search-alt-2:before {
    content: "\ece7"
}

.bxs-select-multiple:before {
    content: "\ece8"
}

.bxs-send:before {
    content: "\ece9"
}

.bxs-server:before {
    content: "\ecea"
}

.bxs-share-alt:before {
    content: "\eceb"
}

.bxs-shield:before {
    content: "\ecec"
}

.bxs-show:before {
    content: "\eced"
}

.bxs-skip-next-circle:before {
    content: "\ecee"
}

.bxs-skip-previous-circle:before {
    content: "\ecef"
}

.bxs-skull:before {
    content: "\ecf0"
}

.bxs-slideshow:before {
    content: "\ecf1"
}

.bxs-smiley-happy:before {
    content: "\ecf2"
}

.bxs-smiley-meh:before {
    content: "\ecf3"
}

.bxs-smiley-sad:before {
    content: "\ecf4"
}

.bxs-spreadsheet:before {
    content: "\ecf5"
}

.bxs-square:before {
    content: "\ecf6"
}

.bxs-square-rounded:before {
    content: "\ecf7"
}

.bxs-star-half:before {
    content: "\ecf8"
}

.bxs-stopwatch:before {
    content: "\ecf9"
}

.bxs-store:before {
    content: "\ecfa"
}

.bxs-store-alt:before {
    content: "\ecfb"
}

.bxs-sun:before {
    content: "\ecfc"
}

.bxs-taxi:before {
    content: "\ecfd"
}

.bxs-tennis-ball:before {
    content: "\ecfe"
}

.bxs-thermometer:before {
    content: "\ecff"
}

.bxs-time:before {
    content: "\ed00"
}

.bxs-time-five:before {
    content: "\ed01"
}

.bxs-timer:before {
    content: "\ed02"
}

.bxs-toggle-left:before {
    content: "\ed03"
}

.bxs-toggle-right:before {
    content: "\ed04"
}

.bxs-torch:before {
    content: "\ed05"
}

.bxs-to-top:before {
    content: "\ed06"
}

.bxs-traffic:before {
    content: "\ed07"
}

.bxs-traffic-barrier:before {
    content: "\ed08"
}

.bxs-train:before {
    content: "\ed09"
}

.bxs-trash:before {
    content: "\ed0a"
}

.bxs-trash-alt:before {
    content: "\ed0b"
}

.bxs-tree:before {
    content: "\ed0c"
}

.bxs-truck:before {
    content: "\ed0d"
}

.bxs-up-arrow:before {
    content: "\ed0e"
}

.bxs-up-arrow-circle:before {
    content: "\ed0f"
}

.bxs-up-arrow-square:before {
    content: "\ed10"
}

.bxs-user:before {
    content: "\ed11"
}

.bxs-user-badge:before {
    content: "\ed12"
}

.bxs-user-check:before {
    content: "\ed13"
}

.bxs-user-detail:before {
    content: "\ed14"
}

.bxs-user-minus:before {
    content: "\ed15"
}

.bxs-user-pin:before {
    content: "\ed16"
}

.bxs-user-plus:before {
    content: "\ed17"
}

.bxs-user-rectangle:before {
    content: "\ed18"
}

.bxs-user-voice:before {
    content: "\ed19"
}

.bxs-user-x:before {
    content: "\ed1a"
}

.bxs-vial:before {
    content: "\ed1b"
}

.bxs-video:before {
    content: "\ed1c"
}

.bxs-video-off:before {
    content: "\ed1d"
}

.bxs-video-plus:before {
    content: "\ed1e"
}

.bxs-video-recording:before {
    content: "\ed1f"
}

.bxs-videos:before {
    content: "\ed20"
}

.bxs-volume:before {
    content: "\ed21"
}

.bxs-volume-full:before {
    content: "\ed22"
}

.bxs-volume-low:before {
    content: "\ed23"
}

.bxs-volume-mute:before {
    content: "\ed24"
}

.bxs-wine:before {
    content: "\ed25"
}

.bxs-x-square:before {
    content: "\ed26"
}

.bxs-yin-yang:before {
    content: "\ed27"
}

.bxs-zap:before {
    content: "\ed28"
}

.bxs-zoom-in:before {
    content: "\ed29"
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: manipulation;
        -moz-backface-visibility: hidden
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item {
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-touch-callout: none
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%
        }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: none
    }

    .no-js .owl-carousel, .owl-carousel.owl-loaded {
        display: block
    }

    .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
        background: 0 0;
        color: inherit;
        border: none;
        padding: 0 !important;
        font: inherit
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block
    }

    .owl-carousel.owl-hidden {
        opacity: 0
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden
    }

    .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab
    }

    .owl-carousel.owl-rtl {
        direction: rtl
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right
        }

    .owl-carousel .animated {
        animation-duration: 1s;
        animation-fill-mode: both
    }

    .owl-carousel .owl-animated-in {
        z-index: 0
    }

    .owl-carousel .owl-animated-out {
        z-index: 1
    }

    .owl-carousel .fadeOut {
        animation-name: fadeOut
    }

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

    .owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
        max-height: 0
    }

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3,1.3);
        transform: scale(1.3,1.3)
    }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/

.owl-theme .owl-controls {
    display: none !important;
    margin-top: 10px;
    text-align: center;
}

    /* Styling Next and Prev buttons */

    .owl-theme .owl-controls .owl-buttons div {
        color: #FFF;
        display: inline-block;
        zoom: 1;
        *display: inline; /*IE7 life-saver */
        margin: 5px;
        padding: 3px 10px;
        font-size: 12px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        background: #869791;
        filter: Alpha(Opacity=50); /*IE7 fix*/
        opacity: 0.5;
    }
    /* Clickable class fix problem with hover on touch devices */
    /* Use it for non-touch hover action */
    .owl-theme .owl-controls.clickable .owl-buttons div:hover {
        filter: Alpha(Opacity=100); /*IE7 fix*/
        opacity: 1;
        text-decoration: none;
    }

    /* Styling Pagination*/

    .owl-theme .owl-controls .owl-page {
        display: inline-block;
        zoom: 1;
        *display: inline; /*IE7 life-saver */
    }

        .owl-theme .owl-controls .owl-page span {
            display: none;
            width: 6px;
            height: 6px;
            margin: 5px 7px;
            filter: Alpha(Opacity=50); /*IE7 fix*/
            opacity: 0.5;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            background: #869791;
        }

        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls.clickable .owl-page:hover span {
            filter: Alpha(Opacity=100); /*IE7 fix*/
            opacity: 1;
        }

        /* If PaginationNumbers is true */

        .owl-theme .owl-controls .owl-page span.owl-numbers {
            height: auto;
            width: auto;
            color: #FFF;
            padding: 2px 10px;
            font-size: 12px;
            -webkit-border-radius: 30px;
            -moz-border-radius: 30px;
            border-radius: 30px;
        }

/* preloading images */
.owl-item.loading {
    min-height: 150px;
    background: url(AjaxLoader.gif) no-repeat center center
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

    .owl-theme .owl-nav [class*=owl-] {
        color: #FFF;
        font-size: 14px;
        margin: 5px;
        padding: 4px 7px;
        background: #D6D6D6;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px
    }

        .owl-theme .owl-nav [class*=owl-]:hover {
            background: #869791;
            color: #FFF;
            text-decoration: none
        }

    .owl-theme .owl-nav .disabled {
        opacity: .5;
        cursor: default
    }

        .owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 10px
        }

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 7px;
        background: #D6D6D6;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity .2s ease;
        border-radius: 30px
    }

    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: #869791
    }
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

    .mfp-preloader a {
        color: #CCC;
    }

        .mfp-preloader a:hover {
            color: #FFF;
        }

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

    .mfp-close:hover,
    .mfp-close:focus {
        opacity: 1;
    }

    .mfp-close:active {
        top: 1px;
    }

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

    .mfp-arrow:active {
        margin-top: -54px;
    }

    .mfp-arrow:hover,
    .mfp-arrow:focus {
        opacity: 1;
    }

    .mfp-arrow:before,
    .mfp-arrow:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent;
    }

    .mfp-arrow:after {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px;
    }

    .mfp-arrow:before {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: 0.7;
    }

.mfp-arrow-left {
    left: 0;
}

    .mfp-arrow-left:after {
        border-right: 17px solid #FFF;
        margin-left: 31px;
    }

    .mfp-arrow-left:before {
        margin-left: 25px;
        border-right: 27px solid #3F3F3F;
    }

.mfp-arrow-right {
    right: 0;
}

    .mfp-arrow-right:after {
        border-left: 17px solid #FFF;
        margin-left: 39px;
    }

    .mfp-arrow-right:before {
        border-left: 27px solid #3F3F3F;
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px;
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px;
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000;
    }

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

    .mfp-figure:after {
        content: '';
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #444;
    }

    .mfp-figure small {
        color: #BDBDBD;
        display: block;
        font-size: 12px;
        line-height: 14px;
    }

    .mfp-figure figure {
        margin: 0;
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0;
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: transparent;
        outline: none;
        background: transparent;
    }

        .slick-prev:hover:before,
        .slick-prev:focus:before,
        .slick-next:hover:before,
        .slick-next:focus:before {
            opacity: 1;
        }

    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: .25;
    }

    .slick-prev:before,
    .slick-next:before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 1;
        opacity: .75;
        color: white;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '←';
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '→';
}

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 20px;
            height: 20px;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            background: transparent;
        }

            .slick-dots li button:hover,
            .slick-dots li button:focus {
                outline: none;
            }

                .slick-dots li button:hover:before,
                .slick-dots li button:focus:before {
                    opacity: 1;
                }

            .slick-dots li button:before {
                font-family: 'slick';
                font-size: 6px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: black;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

        .slick-dots li.slick-active button:before {
            opacity: .75;
            color: black;
        }

@charset "UTF-8";
/*------------------------     slider     ------------------------*/
.cs-l-mainKv {
    position: relative;
    background-color: rgba(255, 96, 0, 0.8);
}

    .cs-l-mainKv:before,
    .cs-l-mainKv:after {
        content: " ";
        display: table;
    }

    .cs-l-mainKv:after {
        clear: both;
    }

.cs-l-mainKv__nav {
    position: absolute;
    bottom: 60px;
    z-index: 55;
    width: 100%;
    text-align: center;
}

@media all and (max-width: 1960px) {
    .cs-l-mainKv__nav {
        left: 3%;
    }
}

@media all and (max-width: 1280px) {
    .cs-l-mainKv__nav {
        left: 4.3%;
    }
}

@media all and (max-width: 960px) {
    .cs-l-mainKv__nav {
        bottom: 15px;
        left: 0%;
    }
}

@media only screen and (min-width: 960px) {
    .cs-l-mainKv--pd\@t {
        padding: 0 15px;
    }

    .cs-l-mainKv__nav {
        position: absolute;
    }

    .cs-l-mainKv__nav--sm {
        bottom: 20px;
    }

    .cs-l-mainKv__nav--xs {
        bottom: 10px;
    }
}

.cs-c-banner {
    position: relative;
    float: left;
    width: 100%;
}

.cs-c-banner__background {
    width: 100%;
    height: 335px;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}

.cs-c-banner__text {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 0 0 40px;
}

.cs-c-banner__text--right {
    text-align: right;
    padding: 0 40px 0 0;
}

.cs-c-banner--sm .cs-c-banner__background {
    height: 207px;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}

.cs-c-banner--sm .cs-c-banner__text {
    width: 100%;
    position: absolute;
    top: 42%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 0 0 20px;
}

.cs-c-banner--sm .cs-c-banner__text--right {
    text-align: right;
    padding: 0 20px 0 0;
}

.cs-c-banner--xs .cs-c-banner__background {
    height: 170px;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}

.cs-c-banner--xs .cs-c-banner__text {
    width: 100%;
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 0 0 20px;
}

.cs-c-banner--xs .cs-c-banner__text--right {
    text-align: right;
    padding: 0 20px 0 0;
}

@media only screen and (min-width: 960px) {
    .cs-c-banner__background {
        width: 100%;
        height: 400px;
        background-position: center center;
        -webkit-background-size: cover;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .cs-c-banner__text {
        position: absolute;
        left: 0;
        top: 48%;
        padding: 0 0 0 60px;
    }

    .cs-c-banner__text--right {
        padding: 0 60px 0 0;
    }

    .cs-c-banner--sm .cs-c-banner__background {
        height: 250px;
    }

    .cs-c-banner--sm .cs-c-banner__text {
        position: absolute;
        left: 0;
        padding: 0 0 0 60px;
    }

    .cs-c-banner--sm .cs-c-banner__text--right {
        padding: 0 60px 0 0;
    }

    .cs-c-banner--xs .cs-c-banner__background {
        height: 200px;
    }

    .cs-c-banner--xs .cs-c-banner__text {
        position: absolute;
        left: 0;
        top: 48%;
        padding: 0 0 0 40px;
    }

    .cs-c-banner--xs .cs-c-banner__text--right {
        padding: 0 40px 0 0;
    }
}

.cs-c-bannerText {
    display: inline-block;
    max-width: 195px;
    text-align: left;
}

.cs-c-bannerText__title {
    margin-bottom: 5px;
    font-size: 24px;
    color: #333333;
}

.cs-c-bannerText__slogan {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    overflow: hidden;
    margin-bottom: 18px;
    color: #333333;
}

.cs-c-bannerText--sm {
    max-width: 190px;
}

    .cs-c-bannerText--sm .cs-c-bannerText {
        color: #333333;
    }

    .cs-c-bannerText--sm .cs-c-bannerText__title {
        margin-bottom: 5px;
        font-size: 20px;
    }

    .cs-c-bannerText--sm .cs-c-bannerText__slogan {
        display: block;
        font-size: 14px;
        line-height: 1.35;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .cs-c-bannerText--sm
    .cs-c-bannerText--light
    .cs-c-bannerText--sm
    .cs-c-bannerText__title,
    .cs-c-bannerText--sm
    .cs-c-bannerText--light
    .cs-c-bannerText--sm
    .cs-c-bannerText__slogan {
        color: #fff;
    }

.cs-c-bannerText--xs .cs-c-bannerText {
    color: #333333;
}

.cs-c-bannerText--xs .cs-c-bannerText__title {
    margin-bottom: 5px;
    font-size: 20px;
}

.cs-c-bannerText--xs .cs-c-bannerText__slogan {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    overflow: hidden;
    margin-bottom: 10px;
}

.cs-c-bannerText--xs
.cs-c-bannerText--light
.cs-c-bannerText--xs
.cs-c-bannerText__title,
.cs-c-bannerText--xs
.cs-c-bannerText--light
.cs-c-bannerText--xs
.cs-c-bannerText__slogan {
    color: #fff;
}

.cs-c-bannerText--light .cs-c-bannerText__title,
.cs-c-bannerText--light .cs-c-bannerText__slogan {
    color: #fff;
}

.cs-c-bannerText--light .cs-c-bannerText__title {
    border-color: #fff;
}

.cs-c-bannerText--grn .cs-c-bannerText__title,
.cs-c-bannerText--grn .cs-c-bannerText__slogan {
    color: #fc7c2e;
}

.cs-c-bannerText--grn .cs-c-bannerText__title {
    border-color: #fc7c2e;
}

@media only screen and (min-width: 960px) {
    .cs-c-bannerText {
        max-width: 320px;
    }

    .cs-c-bannerText__title {
        margin-bottom: 10px;
        font-size: 40px;
    }

    .cs-c-bannerText__slogan {
        display: block;
        font-size: 20px;
        overflow: hidden;
        margin-bottom: 40px;
        color: #333333;
    }

    .cs-c-bannerText--sm {
        width: 300px;
    }

        .cs-c-bannerText--sm .cs-c-bannerText__title {
            margin-bottom: 10px;
            font-size: 30px;
            line-height: normal;
        }

        .cs-c-bannerText--sm .cs-c-bannerText__slogan {
            display: block;
            font-size: 18px;
            line-height: 1.5;
            overflow: hidden;
            margin-bottom: 18px;
        }

    .cs-c-bannerText--xs {
        width: 270px;
    }

        .cs-c-bannerText--xs .cs-c-bannerText__title {
            margin-bottom: 10px;
            font-size: 30px;
            line-height: normal;
        }

        .cs-c-bannerText--xs .cs-c-bannerText__slogan {
            display: block;
            font-size: 16px;
            line-height: 1.5;
            overflow: hidden;
            margin-bottom: 10px;
        }
}

@media only screen and (min-width: 960px) {
    .cs-l-windDirectionSlider {
        padding: 0 40px;
    }
}

/* ==========================================================================
   slick 套件修改
   ========================================================================== */
.actitvity_wrap {
    opacity: 0;
    visibility: hidden;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
}

    .actitvity_wrap.slick-initialized {
        visibility: visible;
        opacity: 1;
    }

.slick-initialized .slick-slide {
    outline: 0;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.slick-dots {
    margin: 0;
    padding: 0;
    position: static;
    line-height: 0;
}

    /* the parent */
    .slick-dots li {
        display: inline-block;
        font-size: 0;
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }

        .slick-dots li button {
            border: transparent;
            outline: none;
            background: transparent;
            width: 10px;
            height: 10px;
            cursor: pointer;
            position: relative;
        }

            .slick-dots li button:before {
                content: "";
                display: block;
                width: 10px;
                height: 10px;
                opacity: 1;
                -webkit-border-radius: 5px;
                border-radius: 5px;
                border: 1px solid #606060;
                background-color: #606060;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                position: absolute;
                left: 0;
                top: 0;
            }

        .slick-dots li.slick-active {
            width: 10px;
        }

            .slick-dots li.slick-active button {
                cursor: default;
                width: 10px;
                background: transparent;
            }

                .slick-dots li.slick-active button:before {
                    border: 1px solid #fffeea;
                    background-color: #fffeea;
                }

@media all and (max-width: 960px) {
    .slick-dots li.slick-active button:before {
        border: 1px solid #ff6000;
        background-color: #ff6000;
    }
}

@media only screen and (min-width: 960px) {
    .slick-dots li {
        margin: 0 10px;
    }
}

.slick-dotted.slick-slider {
    margin: 0 auto;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 45%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

button.slick-next.slick-arrow,
button.slick-prev.slick-arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    /* top: calc(50% + 48px); */
    z-index: 48;
}

    button.slick-next.slick-arrow:before,
    button.slick-prev.slick-arrow:before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        opacity: 1;
        background-repeat: no-repeat;
    }

button.slick-next.slick-arrow {
    right: 0px;
}

    button.slick-next.slick-arrow:before {
        background-image: url(../images/icons/arrows/slider-arrow-right.svg);
    }

    button.slick-next.slick-arrow:hover:before {
        background-image: url(../images/icons/arrows/slider-arrow-right-hover.svg);
    }

button.slick-prev.slick-arrow {
    left: 10px;
}

    button.slick-prev.slick-arrow:before {
        background-image: url(../images/icons/arrows/slider-arrow-left.svg);
    }

    button.slick-prev.slick-arrow:hover:before {
        background-image: url(../images/icons/arrows/slider-arrow-left-hover.svg);
    }

button.slick-prev.slick-disabled:before,
button.slick-next.slick-disabled:before {
    opacity: 0;
}

.slick-dots {
    text-align: left;
}

@media all and (max-width: 960px) {
    .slick-dots {
        text-align: center;
    }
}

.slick-dots li {
    margin: 0 10px;
}

    .slick-dots li button:before {
        background-color: #fcc494;
        border: 1px solid #fcc494;
    }

@media all and (max-width: 960px) {
    .slick-dots li button:before {
        background-color: #666;
        border: 1px solid #666;
    }
}

@media all and (max-width: 960px) {
    .bgGradient {
        position: relative;
    }

        .bgGradient:before {
            content: "";
            position: absolute;
            left: 0;
            display: block;
            width: 100%;
            z-index: 45;
            height: 40px;
            bottom: -1px;
            background: -webkit-gradient( linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#f9fbf7) );
            background: -webkit-linear-gradient( top, rgba(255, 255, 255, 0) 0%, #f9fbf7 100% );
            background: -o-linear-gradient( top, rgba(255, 255, 255, 0) 0%, #f9fbf7 100% );
            background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, #f9fbf7 100% );
        }
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

    nav ul,
    ul {
        list-style: none;
    }

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

a {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 100%;
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
    outline: none;
}

    a:hover {
        color: #fc7c2e;
        text-decoration: underline;
    }

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

@media all and (min-width: 1280px) {
    .container {
        min-width: 1240px;
    }
}

.container.full-screen {
    width: 100%;
}

.container-fluid {
    margin: 0 auto;
    position: relative;
}

@media screen and (min-width: 1100px) {
    .container-fluid {
        width: 80%;
        min-width: 960px;
        max-width: 1240px;
    }
}

@media screen and (max-width: 1100px) {
    .container-fluid {
        max-width: 940px;
        min-width: 940px;
    }
}

html,
body {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    font-family: "微軟正黑體", Verdana, "Microsoft JhengHei", sans-serif;
}

@media only screen and (min-width: 1100px) {
    header.header.flexible .container {
        width: 80%;
        max-width: 1240px;
    }
}

@media only screen and (min-width: 1100px) {
    .rwd header.header .container {
        width: 80%;
        max-width: 1240px;
    }
}

header.header.sticky {
    position: fixed;
    top: -104px;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
}

    header.header.sticky .first-level {
        padding-left: 60px;
    }

    header.header.sticky a.logo {
        display: block;
        text-indent: -9999px;
        position: absolute;
        top: 7px;
        left: 0;
        width: 35px;
        height: 26px;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAaCAYAAAA9rOU8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RDMyMDAzN0ExNUVBMTFFNkJDNkJFNzY1OTMxMUFENTAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RDMyMDAzNzkxNUVBMTFFNkJDNkJFNzY1OTMxMUFENTAiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0Qjg4OEJDMDE1MTgxMUU2QUUwOURGODZEOEQzNEM1MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0Qjg4OEJDMTE1MTgxMUU2QUUwOURGODZEOEQzNEM1MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlmueCwAAAe/SURBVHjatFZrbBxXFT73zp3Hvrz27tqO7cRtusY2tkJUwERJobQqAUSFSIBKUIGglZAQopUQQvCnFUUC8YuioAipKeJHUaGI8hBSoUgISigKaalkx3EcG8fBzrb2xuvZx+y8Zy7n3pkGJy0JKspdj2bXc+fc737nO9895MT8r0CMvJqFRXMV5ptLYCgK3Dt6EKbLY3B6cxb++upJsPwmHByagYpRhovtFYhjH6zAfPiyU/sM8HBSpeTVslF+Lq8Wvl3Qio09hb1AIIaV5iwwqkBBL8PhPfeBG0bww/PPwGW3AZO9Y7CvNI1xLImBwXVGzGPIKAZkmAFbtvuRhe1zd+aYEbqhBW3P/EQnaE7qCDyjqAgunFjrrE3k1MyDg5nBJ52w1eY8zPtRd65XLz1tKJkYbjDeAIan9ywCGMz2w0ubs8UzjcWf89j74LZrAiGRZE5XGN5zQClAiKAVwkBjKoRxVFyz1r5KeACUxDJO3b70zYxaeLCglf5Cwca5Cm6U3xiMQghEPIJ1qw6V9jo8s/ybU3XbnBzJV4AiVIrPFQIIKpYgWIw/BKIYgxMOKn43aAYYyeB3jncOXtSpztX/9MLBwfePKUplpRva+Ey5PhiOH4G6rBfgpfpZ+OWF3z272qlNjmR3QRBHCASfow6AE/xDaDRGXSAAvDQiEAJE+DjAu9g4wQ/FeRotgRea8LPzx37fmx1/B4Dm5NWcXO9NwYgHGlVBx2vT2frUorn8cNtrHawYFfAQiCKAcASAjGB8XBxZwo8fx9AJCc5BEAg1QKCCpEQgIn04C8FpdACWneZYhs0v78rd8oOiVnhcp5q/ExDTUXxiFFgWharTU/Uzv2h6zaMZRYOi0Ycpi1GcggxMj4Is4D3E9+s+gB1RcGMFfEEDJ5I5hkDlRUACEYAEQyEG4dCDwP2RbnP1u7ipL1R79h7IsUzDxrSJOWzD2ZaURni9uDH36EqrdnS0MIjBCATIuQisC1YwuI0MbEUAFoLwYpLsmKSLUy5/45+8OKQygoRNFYXPcAJD5hlRoeHVq0ut+R/t66seETFi1Ck737qE5FJYtTbUVxr//FJR60MmcCcCRKrLViAYINBFEBHnUpgqSRcX+oCErUTgACoHmVamiP8JHRGwYhFLFAeRmSAwAH++tPoxBU7vxzVn3cgF1g09aXhtvzu67Xf7M4ouX2C4qIWILKkHKoWqMZBCJZJ8LhmVF+WyCilJQAiWbR/Ziwg4+L6L9yBO5iYSSflzutCn23dPV4Zma1YH2AdG3gNvL90KJ8799sNtuwW5nn4pvkYgmEirgSR5R/lARJLyF5F5mhaaloCN79i4AZHOIAKpo4QGvnNiikhcPoaJPnTs0Oe/v2E3gdTsBvxk8Q8jj5164pyisoKGjtvFQAHOFelQBAwiMy8ByQqWQkX2iOQHLR4BYCr91wHQdPEbDbE7pwVfmbn//kcPfPan7EzjQu47Lz/1N9t3Cj3GMOojlIGEWYE8XRCENI0kVUpKcohxXEyfg9PDKF2Z7vTw/2FQzLueg8dfOP40Gui/lOVD+rGVzYV71J5RzG0kzZSSHRQLCCTxIeG+YriYBgtT4odEFq4EQeAtDKF0tBZ048XWa3corcO7T/hUK8TCnJJEJDhSQMJfSLpeiL9FSoJ4Rw2/JRDXAGIayiLWmRV4fYCGR6RsuSw/cmUxLtMvho/ueyUd/zeAawYSEceRQjOq3oXQlQB5alevlyyk2fLRX8KdbNyMgWKm1fzAU2BvY+6UBBBP/RPRCLPyIwIx3MQhjgxrC0aypWV6pHrHN4x8pcm7eCzQ1DF4AiDmcHOHEGOIh1zgwOfG736IfnHfvd7xux46kKHKOngdZMuXlcP/41Bv7g/XW0A8l3P+W05FrxEAeDaWZhuO7j/ywMfH7zzJ/MiHifKtSzO3zEwuNS4+ZkfB4S4PB/C0jhPr3KF6YTfYVRFCR0VLCkS5xlfSRfCuMrUWROhGJG10rorDWVHLdbJMPYl90vemKredjTAXTDRNdccUPNi7i0NfM/BUfaVxQbU7mzFouUTTcZjkVviwovJ391enFs3ai53AKcLOjg1PXpUoznuHpj45Z64933A2sKFRk3NEvC8u3DwQptw+NBVkVQP+Xl8C07Pw+AiT5kp4i+hb3MADM+qCbZtBuTiM7zJQUEd57G2yeJgySuVZNZwrn73YqW91vM7VYJCVfK5s7avc9pzgx8qVsfmKeDewIQJxbnno4Bwutzbimm3C7lxJlPQV3liW6bIJ2uya4GCw8b7d8MDUPbhgCZ6Yfx7BKFDt2YWdGpMM4g7KG9blj3Z8e6+082vs3Qmc/lOvLXyrbBSe7M1X1gpqRvbKHd+V7981NA2GZsDC9jqsd+pg4gEpspNDlpiHtBW1LNz3tvfBcL4E7+wfg4m+PfDHtX8YDXv7XSiQcdNtT1uBux/bjCk78of9wE3OFQmGXwXGxeo4XZt7hOq5R/JMb+e17JyhaPOYvgU3tM8Fcfjy0dGZ5u3lKiyYazDROwKj2Ow3nA6QQ7/+uux9B7JFmaqW10U2kIVu49Nn6ss/RrXoUjNiTeFFQrRU6eI5FSTO+MaKER0oj6MCxMKkohSoItM41rfneLU0+mVH9lEZyYiJVdz2Hfi3AAMAccC5t4KvazsAAAAASUVORK5CYII=");
        background-repeat: no-repeat;
    }

header.header a.logo {
    display: none;
}

header.header nav li {
    display: block;
    float: left;
}

header.header nav a {
    text-decoration: none;
}

header.header .site-menu {
    width: 100%;
    display: block;
    background: #11a847;
    height: 24px;
    font-size: 1em;
}

    header.header .site-menu a {
        text-decoration: none;
        color: #fff;
        padding: 0 12px;
        text-decoration: none;
        line-height: 24px;
        border-left: 1px dotted #8ad29d;
    }

        header.header .site-menu a:hover,
        header.header .site-menu a:hover {
            color: #fff437;
        }

        header.header .site-menu a.active,
        header.header .site-menu a.active {
            color: #fff437;
        }

.ie10 header.header .site-menu a {
    line-height: 27px;
}

.ie11 header.header .site-menu a {
    line-height: 27px;
}

header.header .site-menu a.lang {
    display: block;
    height: 18px;
    font-size: 1.08333em;
    line-height: 17px;
    margin: 2px;
    text-align: center;
    width: 26px;
    background: #0a874e;
    border-radius: 1px;
}

    header.header .site-menu a.lang:hover {
        color: #008852;
        background: #fff200;
    }

header.header .site-menu ul {
    float: right;
}

    header.header .site-menu ul li {
        height: 24px;
    }

        header.header .site-menu ul li:first-child a {
            border-left: none;
        }

        header.header .site-menu ul li.lang {
            margin-left: 18px;
        }

            header.header .site-menu ul li.lang a {
                padding: 0;
                border-left: none;
                line-height: 20px;
            }

.ie11 header.header .site-menu ul li.lang a {
    line-height: 17px;
}

.ie10 header.header .site-menu ul li.lang a {
    line-height: 17px;
}

header.header .info-menu {
    height: 66px;
    background-color: #fff;
    position: relative;
}

    header.header .info-menu ul {
        float: right;
        margin-top: 12px;
        margin-right: 154px;
    }

    header.header .info-menu a {
        text-decoration: none;
        color: #333;
    }

        header.header .info-menu a:hover {
            color: #fc7c2e;
        }

        header.header .info-menu a.active {
            color: #fc7c2e;
        }

        header.header .info-menu a .fa-caret-right {
            margin-left: 14px;
            margin-right: 5px;
            color: #c1c1c1;
        }

        header.header .info-menu a:hover .fa-caret-right {
            color: #fc7c2e;
        }

    header.header .info-menu .search {
        position: absolute;
        right: 0;
        height: 20px;
        top: 8px;
    }

        header.header .info-menu .search input.text {
            width: 100px;
            margin-right: -2px;
            float: left;
        }

            header.header .info-menu .search input.text:focus ~ a .icon_search {
                background-color: #fc7c2e;
            }

        header.header .info-menu .search a {
            position: relative;
            width: 40px;
        }

        header.header .info-menu .search .icon_search {
            color: #ffffff;
            display: block;
            float: right;
            height: 20px;
            line-height: 20px;
            padding: 0 2px;
            text-align: center;
            width: 34px;
            color: #fff;
            border-radius: 2px;
            margin: 0;
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAQAAAA3IEfJAAAAoElEQVQoFQXBIUrDARjA0Z86hAW7ZdnqCWyGHWHVE1iWTTuBxQtYDYbBgkH4B2Ew+E70fC9Jcm0lSVKSB0djLLaSlLwYZ+8OFuNTUu6NL7eSKwdjK+XNuJMkVxaLlF+LJEkOxko5+pMkybtxo+yNjSS5dfYjZe1isZHc+TKepOTRxfizGGOcrJRkbe9o8WFjZ5yskiRJkp3xnSRJkuTZ6z+LU8RRsFJegwAAAABJRU5ErkJggg==) center center no-repeat #b2b2b2;
        }

        header.header .info-menu .search > input[type="text"] {
            padding: 1px 5px 1px 7px;
            color: #333;
            border: 1px solid #d8d8d8;
            background: #ebebeb;
            font-size: 1.08333em;
            height: 20px;
        }

            header.header .info-menu .search > input[type="text"]:focus,
            header.header .info-menu .search > input[type="text"]:hover {
                border: 1px solid #fc7c2e;
            }

    header.header .info-menu .logo {
        left: 0;
        position: absolute;
    }

    header.header .info-menu .toggle {
        float: none;
        position: absolute;
        margin: 0;
        bottom: 20px;
        right: 0;
    }

        header.header .info-menu .toggle .icon-dotted-border {
            border-color: #333;
        }

header.header .sub-menu .change-unit-menu {
    position: absolute;
    right: 0;
    bottom: 40px;
    font-size: 13px;
    line-height: 13px;
}

    header.header .sub-menu .change-unit-menu li {
        padding-bottom: 15px;
    }

        header.header .sub-menu .change-unit-menu li.active {
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAGCAYAAAAVMmT4AAAARUlEQVQoFQXBARHAQBADIXLz/sXWwBbWNwTARoUBMOQIMKBiEGMD8IAhLACgZMAcA4gQAgwCOIKAAWAAWOQQ2BAAIACsH46rHfnSck3UAAAAAElFTkSuQmCC) center bottom no-repeat transparent;
        }

.footer a {
    color: #fff;
    font-size: 12px;
}

body,
html {
    min-width: 0;
    font-family: "微軟正黑體", Verdana, "Microsoft JhengHei", sans-serif;
}

.info-menu .container,
.site-menu .container {
    font-size: 12px;
    line-height: 1;
}

.copyright {
    font-size: 12px;
}

header.header .sub-menu {
    height: auto;
    background: none;
    border-bottom: 0;
    position: static;
}

    header.header .sub-menu .change-unit-menu {
        position: absolute;
        bottom: 1px;
    }

.go_sell {
    margin-top: -1px;
    border-bottom: 1px solid #4da3f5 !important;
}

@media all and (max-width: 960px) {
    .go_sell {
        margin-top: 0px;
        border-bottom: solid 1px #dfdfdf !important;
    }
}

@media only screen and (min-width: 960px) {
    header.header .l-menu .c-menuLv1 > li,
    header.header .l-menu .c-menuLv2 > li {
        float: left;
        position: relative;
    }
}

header.header .l-menu .c-menuLv1 .c-menuLv1__logo {
    display: none;
}

header.header .l-menu .c-quickLink > li {
    float: left;
}

header.header nav.l-menu li {
    float: none;
}

header.header .sub-menu .change-unit-menu li .o-icoMenuLink--login {
    border: 1px solid #00994e;
    padding: 4px 5px !important;
    margin-top: -10px;
    color: #00994e;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

header.header .sub-menu .change-unit-menu li .o-icoMenuLink--logout {
    border: 1px solid #00994e;
    padding: 4px 5px !important;
    margin-top: -10px;
    color: #00994e;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    header.header .sub-menu .change-unit-menu li .o-icoMenuLink--logout > span {
        vertical-align: top;
    }

header.header .sub-menu .change-unit-menu li div {
    border-left: 1px dotted #444;
    padding: 0 20px 0;
    height: 13px;
}

header.header .sub-menu .change-unit-menu li:first-of-type div {
    border-left: none;
}

.l-cubHeader {
    display: none;
}

@media only screen and (min-width: 960px) {
    header.header {
        position: relative;
    }

    .l-cubHeader {
        display: block;
        padding: 10px 15px;
    }

    .l-mobileHeader {
        display: none;
    }
}

.l-menu {
    position: absolute;
    padding-top: 50px;
    top: 0;
    left: -85%;
    width: 85%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: left ease 0.3s;
    -o-transition: left ease 0.3s;
    transition: left ease 0.3s;
    background-color: #f8fbf7;
}

.l-menu__container {
    margin: 0 auto;
}

@media only screen and (min-width: 960px) {
    header.header .info-menu .logo {
        top: 12px;
    }

    .l-menu {
        position: relative;
        top: 0;
        left: 0;
        background-color: #f8f8f8;
        border-bottom: 1px solid #d8d8d8;
        padding-top: 0;
        width: 100%;
        overflow: visible;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .sticky .l-menu {
        -webkit-box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
        box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
    }

    .l-menu__container {
        width: 80%;
        max-width: 1240px;
        min-width: 320px;
    }
}

.c-menuLv1 {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .c-menuLv1 > li {
        border-bottom: solid 1px #dfdfdf;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

.c-menuLv1__name {
    display: block;
    padding: 20px 50px 20px 30px;
    background-color: #eaf4e5;
    position: relative;
}

    .c-menuLv1__name.direct:after {
        display: none;
    }

    .c-menuLv1__name:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -10px;
        -webkit-background-size: 20px 40px;
        background-size: 20px 40px;
        background-position: 0 0;
    }

    .c-menuLv1__name.on:after {
        background-position: 0 -20px;
    }

.c-menuLv1__child {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.8s;
    -o-transition: max-height 0.8s;
    transition: max-height 0.8s;
    -webkit-box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
    box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
}

.c-menuLv1__name.on + .c-menuLv1__child {
    max-height: 5000px;
}

.c-menuLv1__logo {
    display: none;
}

@media only screen and (min-width: 960px) {
    .c-menuLv1 {
        width: 320px;
    }

        .c-menuLv1:after,
        .c-menuLv1:before {
            content: " ";
            display: table;
        }

        .c-menuLv1:after {
            clear: both;
        }

        .c-menuLv1 > li {
            float: left;
            width: 14.28571%;
            border-bottom: 0;
            border-left: 1px solid #dfdfdf;
            text-align: center;
        }

            .c-menuLv1 > li:last-of-type {
                border-right: 1px solid #dfdfdf;
            }

            .c-menuLv1 > li:hover .c-menuLv1__name {
                background-color: #fff;
            }

            .c-menuLv1 > li:hover .c-menuLv1__child {
                visibility: visible;
                opacity: 1;
                -webkit-transition: visibility 0s, opacity 0.5s;
                -o-transition: visibility 0s, opacity 0.5s;
                transition: visibility 0s, opacity 0.5s;
            }

    .c-menuLv1__name {
        background-color: #f8f8f8;
        border-bottom: 0;
        padding: 10px;
        line-height: 1.3;
        color: #333333;
    }

        .c-menuLv1__name:after {
            content: none;
        }

        .c-menuLv1__name:hover {
            color: #333333;
        }

    .c-menuLv1__child {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: visibility 0.3s, opacity 0.3s;
        -o-transition: visibility 0.3s, opacity 0.3s;
        transition: visibility 0.3s, opacity 0.3s;
        /* width: 80%; */
        max-width: 1240px;
        margin: 0 auto;
        max-height: 5000px;
        position: absolute;
        left: 0;
        top: 41px;
        /* -webkit-transform: translateX(-50%); */
        /* transform: translateX(-50%); */
        z-index: 999;
        background-color: #fff;
        border-bottom: 2px solid #00994e;
    }

    .c-menuLv1__wrap {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 0 20px;
    }

        .c-menuLv1__wrap:after,
        .c-menuLv1__wrap:before {
            content: " ";
            display: table;
        }

        .c-menuLv1__wrap:after {
            clear: both;
        }

    .c-menuLv1__logo {
        display: none;
    }

        .c-menuLv1__logo a {
            padding: 5px;
        }
}

header.header.sticky .c-menuLv1 li.c-menuLv1__logo {
    display: block;
    width: 77px;
}

.c-menuLv2 {
    margin: 0 0 0 40px;
    padding: 0;
    list-style: none;
    display: block;
}

    .c-menuLv2 > li {
        border-bottom: solid 1px #dfdfdf;
    }

.c-menuLv2__name {
    display: block;
    padding: 20px 50px 20px 0;
    background-color: #f9fbf7;
    position: relative;
}

    .c-menuLv2__name.direct:after {
        display: none;
    }

    .c-menuLv2__name:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -10px;
        -webkit-background-size: 20px 40px;
        background-size: 20px 40px;
        background-position: 0 0;
    }

    .c-menuLv2__name.on:after {
        background-position: 0 -20px;
    }

.c-menuLv2__child {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.8s;
    -o-transition: max-height 0.8s;
    transition: max-height 0.8s;
}

.c-menuLv2__name.on + .c-menuLv2__child {
    max-height: 5000px;
}

@media only screen and (min-width: 960px) {
    .c-menuLv2 {
        display: block;
        /* float: left; */
        margin: 0;
        padding: 20px 0;
        /* width: calc(100% - 212px); */
    }

        .c-menuLv2:after,
        .c-menuLv2:before {
            content: " ";
            display: table;
        }

        .c-menuLv2:after {
            clear: both;
        }

        .c-menuLv2 > li {
            border-bottom: 0;
            float: left;
            width: 102px;
            width: calc(100% / 6);
            padding-right: 25px;
            text-align: left;
        }

            .c-menuLv2 > li:nth-of-type(6n) {
                margin-right: 0;
            }

            .c-menuLv2 > li:nth-of-type(6n + 1) {
                clear: both;
            }

    .c-menuLv2__name {
        padding: 0 0 15px 0;
        background-color: transparent;
        color: #00994e;
        font-weight: bold;
    }

        .c-menuLv2__name:after {
            content: none;
        }

    .c-menuLv2__child {
        max-height: 5000px;
    }
}

.c-menuLv3 {
    margin: 0 0 0 40px;
    padding: 0;
    list-style: none;
}

.c-menuLv3__name {
    display: block;
    padding: 10px 10px 10px 0;
    background-color: #f9fbf7;
    position: relative;
}

.c-menuLv3__name--blank:after,
.c-menuLv3__name--pc:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    background-image: url(../images/layout/deco-link.png);
    -webkit-background-size: 20px 40px;
    background-size: 20px 40px;
}

.c-menuLv3__name--pc:after {
    background-position: 0 0;
}

.c-menuLv3__name--blank:after {
    background-position: 0 -20px;
}

@media only screen and (min-width: 960px) {
    .c-menuLv3 {
        margin: 0;
    }

        .c-menuLv3 > li {
            text-align: left;
        }

    .c-menuLv3__name {
        background-color: transparent;
        font-size: 14px;
        padding: 0 0 15px 0;
        color: #333333;
    }

    .c-menuLv3__name--blank:after,
    .c-menuLv3__name--pc:after {
        content: none;
    }
}

.cub-text-wrapper a.cub-button {
    background-color: #fffee0;
    color: #e85200;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    min-width: 190px;
    display: inline-block;
    border-radius: 4px;
    width: 140px;
    margin-top: 20px;
}

    .cub-text-wrapper a.cub-button:hover {
        background-color: #feffb3;
        color: #dc4e00;
    }

@media all and (max-width: 960px) {
    .cub-text-wrapper a.cub-button {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
        min-width: 80px;
        margin-top: 10px;
        width: 88px;
        font-size: 14px;
        font-weight: normal;
        padding: 7px;
    }

        .cub-text-wrapper a.cub-button:hover {
            background-color: transparent;
            color: #fff;
        }
}

.displayRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 25px;
}

.normalButton {
    border-radius: 70px;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#51be77), to(#27ae58) );
    background-image: -webkit-linear-gradient(top, #51be77, #27ae58);
    background-image: -o-linear-gradient(top, #51be77, #27ae58);
    background-image: linear-gradient(to bottom, #51be77, #27ae58);
    width: 140px;
    height: 40px;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-align: center;
    margin: 10px auto 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

    .normalButton:hover {
        background: #fc7c2e;
    }

    .normalButton a {
        color: #fff;
    }

a.header-small-btn {
    width: 100px;
    height: 30px;
    border-radius: 5px;
    border: solid 1px #ff6000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    padding: 6px;
    letter-spacing: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ff6000;
}

    a.header-small-btn:hover {
        background-color: #ff6000;
        color: #fff;
    }

        a.header-small-btn:hover .bx-user {
            color: #fff;
        }

    a.header-small-btn .bx-user {
        font-size: 18px;
        color: #ff6000;
    }

    a.header-small-btn.active {
        background-color: #ff6000;
        color: #fff;
    }

#side-nav li a.nav-link {
    border: 0px;
    padding: 0px;
    display: inline;
    cursor: pointer;
}

#side-nav .nav-link.active .bx:before {
    color: #ff6000;
}

.side-nav {
    position: fixed;
    right: 20px;
    z-index: 999;
    bottom: 0;
    display: inline-block;
}

@media all and (min-width: 960px) {
    .side-nav {
        top: calc(50% - 135px);
    }
}

@media all and (max-width: 960px) {
    .side-nav {
        right: 10px;
    }
}

@media all and (max-width: 960px) {
    .side-nav {
        right: 0px;
        bottom: 0px;
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
}

.side-nav .alignment {
    position: absolute;
    top: 0px;
    right: 0;
    border-radius: 28px;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 10px 0 10px;
}

    .side-nav .alignment > div {
        display: inline-block;
    }

@media all and (max-width: 960px) {
    .side-nav .alignment {
        top: auto;
        bottom: 20%;
    }
}

@media all and (max-width: 960px) {
    .side-nav .alignment {
        bottom: 0vh;
        width: 100%;
        height: auto;
        border-radius: 0;
        -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.side-nav .alignment a {
    position: relative;
    width: 100px;
}

@media all and (max-width: 960px) {
    .side-nav .alignment a {
        display: inline-block;
        width: auto;
    }
}

.side-nav .alignment a .bx {
    font-size: 27px;
    padding: 17px;
}

    .side-nav .alignment a .bx:before {
        color: #909191;
    }

@media all and (max-width: 960px) {
    .side-nav .alignment a .bx {
        padding: 8px;
    }
}

.side-nav .alignment a.active .icon:before {
    color: #004b31;
}

.side-nav .alignment a.active .hover {
    display: block;
    position: absolute;
    right: 60px;
    top: 20px;
    border-radius: 20px;
    background-color: #878787;
    font-size: 12px;
    color: #fff;
    width: 100%;
    text-align: center;
    width: 100%;
    min-width: 80px;
    line-height: 25px;
    padding: 0 5px;
}

@media all and (max-width: 960px) {
    .side-nav .alignment a.active .hover {
        display: block;
        position: initial;
        background-color: transparent;
        color: #ff6000;
        line-height: normal;
        min-width: auto;
        padding: 0px;
    }
}

.scaling-svg-container {
    display: none;
}

@media all and (min-width: 960px) {
    .scaling-svg-container:hover .hover {
        display: block;
        position: absolute;
        right: 60px;
        top: 17px;
        border-radius: 20px;
        background-color: #878787;
        font-size: 12px;
        color: #fff;
        width: 100%;
        cursor: pointer;
        text-align: center;
        width: 100%;
        min-width: 80px;
        line-height: 25px;
        padding: 0 5px;
    }
}

.scaling-svg-container .hover {
    display: none;
}

@media all and (max-width: 960px) {
    .scaling-svg-container .hover {
        display: block;
        position: initial;
        font-size: 12px;
        background-color: transparent;
        color: #606060;
        line-height: normal;
    }
}

.scaling-svg-container {
    position: relative;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 17px;
    position: relative;
    width: 100%;
    display: inline-block;
}

@media all and (max-width: 960px) {
    .scaling-svg-container {
        width: 100%;
        padding: 17px 0;
        padding-bottom: 10px;
    }
}

.scaling-svg-container .scaling-svg {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.icon:before,
.icon:after {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.scroll-top {
    right: 20px;
    bottom: 6%;
    z-index: 64;
}

@media all and (max-width: 960px) {
    .scroll-top {
        bottom: 70px;
    }
}

.o-iconLogo,
.o-iconManuQL,
.o-iconSocial {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

    .o-iconLogo:after,
    .o-iconLogo:before,
    .o-iconManuQL:after,
    .o-iconManuQL:before,
    .o-iconSocial:after,
    .o-iconSocial:before {
        display: inline-block;
        vertical-align: middle;
        background-position: 0 0;
        background-repeat: no-repeat;
    }

    .o-iconLogo:before,
    .o-iconManuQL:before,
    .o-iconSocial:before {
        content: "";
    }

    .o-iconLogo > span,
    .o-iconManuQL > span,
    .o-iconSocial > span {
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
        font-size: 1rem;
    }

    .o-iconManuQL:after,
    .o-iconManuQL:before {
        width: 30px;
        height: 30px;
        background-image: url(../image/icon-menuQL.png);
        -webkit-background-size: 30px 180px;
        background-size: 30px 180px;
    }

.o-iconManuQL--app:after,
.o-iconManuQL--app:before {
    background-position: 0 0;
}

.o-iconManuQL--apply:after,
.o-iconManuQL--apply:before {
    background-position: 0 -30px;
}

.o-iconManuQL--caculate:after,
.o-iconManuQL--caculate:before {
    background-position: 0 -60px;
}

.o-iconManuQL--rate:after,
.o-iconManuQL--rate:before {
    background-position: 0 -90px;
}

.o-iconManuQL--location:after,
.o-iconManuQL--location:before {
    background-position: 0 -120px;
}

.o-iconManuQL--pay:after,
.o-iconManuQL--pay:before {
    background-position: 0 -150px;
}

.o-iconSocial:after,
.o-iconSocial:before {
    width: 40px;
    height: 40px;
    background-image: url(../image/icon-social.png);
    -webkit-background-size: 40px 160px;
    background-size: 40px 160px;
}

.o-iconSocial--fb:after,
.o-iconSocial--fb:before {
    background-position: 0 0;
}

.o-iconSocial--line:after,
.o-iconSocial--line:before {
    background-position: 0 -40px;
}

.o-iconSocial--youtube:after,
.o-iconSocial--youtube:before {
    background-position: 0 -80px;
}

.o-iconSocial--mail:after,
.o-iconSocial--mail:before {
    background-position: 0 -120px;
}

.o-iconLogo:after,
.o-iconLogo:before {
    width: 40px;
    height: 30px;
    background-image: url(../image/logo-sm.png);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 13 / 10), (-o-min-device-pixel-ratio: 13/10), (min-resolution: 1.3dppx) {
    .o-iconLogo:after,
    .o-iconLogo:before {
        background-image: url(../image/logo-sm@3x.png);
    }
}

body,
html {
    min-width: 0;
    font-family: "微軟正黑體", Verdana, "Microsoft JhengHei", sans-serif;
}

.info-menu .container,
.site-menu .container {
    font-size: 12px;
    line-height: 1;
}

.copyright {
    font-size: 12px;
}

header.header .sub-menu {
    height: auto;
    background: 0 0;
    border-bottom: 0;
    position: static;
}

    header.header .sub-menu .change-unit-menu {
        position: absolute;
        bottom: 1px;
    }

@media only screen and (min-width: 960px) {
    header.header .l-menu .c-menuLv1 > li,
    header.header .l-menu .c-menuLv2 > li {
        float: left;
    }
}

header.header .l-menu .c-menuLv1 .c-menuLv1__logo {
    display: none;
}

header.header .l-menu .c-quickLink > li {
    float: left;
}

header.header nav.l-menu li {
    float: none;
}

header.header .sub-menu .change-unit-menu li a {
    padding: 0;
}

header.header .sub-menu .change-unit-menu li .o-icoMenuLink--login {
    border: 1px solid #00994e;
    padding: 4px 5px !important;
    margin-top: -10px;
    color: #00994e;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

header.header .sub-menu .change-unit-menu li .o-icoMenuLink--logout {
    border: 1px solid #00994e;
    padding: 4px 5px !important;
    margin-top: -10px;
    color: #00994e;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    header.header .sub-menu .change-unit-menu li .o-icoMenuLink--logout > span {
        vertical-align: top;
    }

header.header .sub-menu .change-unit-menu li div {
    border-left: 1px dotted #444;
    padding: 0 20px 0;
    height: 13px;
}

.l-cubHeader {
    display: none;
}

.l-mobileHeader {
    display: block;
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
    text-align: center;
    background-color: #00994e;
}

.l-mobileHeader--transparent {
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    background-color: #fff;
}

.l-mobileHeader__burger,
.l-mobileHeader__contact {
    float: left;
    width: 60px;
    height: 50px;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.l-mobileHeader__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-background-size: 160px 22px;
    /* background-size: 160px 22px; */
}

.l-mobileHeader__burger {
    float: left;
}

.l-mobileHeader__contact {
    float: right;
    background-image: url(../image/icon-24hr.png);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px;
}

.o-icoMenuLink {
    display: inline-block;
    text-decoration: none;
}

    .o-icoMenuLink:after,
    .o-icoMenuLink:before {
        display: inline-block;
        vertical-align: middle;
        background-position: 0 0;
        background-repeat: no-repeat;
    }

    .o-icoMenuLink:before {
        content: "";
    }

    .o-icoMenuLink > i,
    .o-icoMenuLink > span {
        display: inline-block;
        vertical-align: middle;
        color: #333;
    }

        .o-icoMenuLink > i:hover,
        .o-icoMenuLink > span:hover {
            color: #00994e;
        }

.o-icoMenuLink--suffix:before {
    content: none;
}

.o-icoMenuLink--suffix:after {
    content: "";
}

.o-icoMenuLink--suffix > i,
.o-icoMenuLink--suffix > span {
    margin-left: 0;
    margin-right: 3px;
}

.o-icoMenuLink--arrowRightGn:after,
.o-icoMenuLink--arrowRightGn:before {
    width: 16px;
    height: 16px;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url(../image/menu-arrowRight-green.svg);
}

.o-icoMenuLink--login {
    border: 1px solid #00994e;
    padding: 5px;
}

    .o-icoMenuLink--login:after,
    .o-icoMenuLink--login:before {
        width: 13px;
        height: 13px;
        -webkit-background-size: contain;
        background-size: contain;
        background-image: url(../image/menu-login.svg);
    }

.o-icoMenuLink--logout:after,
.o-icoMenuLink--logout:before {
    width: 13px;
    height: 13px;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url(../image/menu-logout.svg);
}

.c-loginMsg a > span,
.c-loginMsg__status {
    color: #00994e;
}

.c-loginMsg__remaining {
    color: #6d6d6d;
    padding: 0 15px;
}

.c-loginMsg__second {
    color: #ff6000;
}

.c-logout {
    display: inline-block;
    padding: 4px 10px !important;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #00994e !important;
}

.is-fixHeader .l-mobileHeader--transparent {
    background-color: #fff;
}

@media only screen and (min-width: 960px) {
    header.header {
        position: relative;
        width: 100%;
    }

    .cubinvest-l-main {
        margin-top: 128px;
    }

    .l-cubHeader {
        display: block;
    }

    .l-mobileHeader {
        display: none;
    }
}

.l-menu {
    position: absolute;
    padding-top: 50px;
    z-index: 90;
    top: 0;
    left: -85%;
    width: 85%;
    height: auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: left ease 0.3s;
    -o-transition: left ease 0.3s;
    transition: left ease 0.3s;
    background-color: #f8fbf7;
}

.l-menu__container {
    margin: 0 auto;
}

@media only screen and (min-width: 960px) {
    .l-menu {
        position: relative;
        top: 0;
        left: 0;
        background-color: #f8f8f8;
        border-bottom: 1px solid #d8d8d8;
        padding-top: 0;
        width: 100%;
        overflow: visible;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .sticky .l-menu {
        -webkit-box-shadow: 0 3px 8px rgba(2, 2, 2, 0.15);
        box-shadow: 0 3px 8px rgba(2, 2, 2, 0.15);
    }

    .l-menu__container {
        width: 80%;
        max-width: 1280px;
    }
}

.c-menuLv1 {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .c-menuLv1 > li {
        border-bottom: solid 1px #dfdfdf;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

.c-menuLv1__name {
    display: block;
    padding: 20px 50px 20px 30px;
    background-color: #eaf4e5;
    position: relative;
}

@media all and (max-width: 960px) {
    .c-menuLv1__name {
        padding: 15px 30px;
    }
}

.c-menuLv1__name.direct:after {
    display: none;
}

.c-menuLv1__name:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -10px;
    background-image: url(../images/icons/deco-menu.png);
    -webkit-background-size: 20px 40px;
    background-size: 20px 40px;
    background-position: 0 0;
}

.c-menuLv1__name.on:after {
    background-position: 0 -20px;
}

.c-menuLv1__logo {
    display: none;
}

@media only screen and (min-width: 960px) {
    .c-menuLv1 {
        width: 960px;
    }

        .c-menuLv1:after,
        .c-menuLv1:before {
            content: " ";
            display: table;
        }

        .c-menuLv1:after {
            clear: both;
        }

        .c-menuLv1 > li {
            float: left;
            width: 14.28571%;
            border-bottom: 0;
            border-left: 1px solid #dfdfdf;
            text-align: center;
        }

            .c-menuLv1 > li:last-of-type {
                border-right: 1px solid #dfdfdf;
            }

            .c-menuLv1 > li:hover .c-menuLv1__name {
                background-color: #fff;
            }

    .c-menuLv1__name {
        background-color: #f8f8f8;
        border-bottom: 0;
        padding: 10px;
        line-height: 1.3;
        color: #333;
    }

        .c-menuLv1__name:after {
            content: none;
        }

        .c-menuLv1__name:hover {
            color: #333;
        }

    .c-menuLv1__wrap {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 0 20px;
    }

        .c-menuLv1__wrap:after,
        .c-menuLv1__wrap:before {
            content: " ";
            display: table;
        }

        .c-menuLv1__wrap:after {
            clear: both;
        }

    .c-menuLv1__logo {
        display: none;
    }

        .c-menuLv1__logo a {
            padding: 5px;
        }
}

header.header.sticky .c-menuLv1 > li {
    width: calc((100% - 77px) / 7);
}

header.header.sticky .c-menuLv1 li.c-menuLv1__logo {
    display: block;
    width: 77px;
}

.c-menuLv2 {
    margin: 0 0 0 40px;
    padding: 0;
    list-style: none;
    display: block;
}

    .c-menuLv2 > li {
        border-bottom: solid 1px #dfdfdf;
    }

.c-menuLv2__name {
    display: block;
    padding: 20px 50px 20px 0;
    background-color: #f9fbf7;
    position: relative;
}

@media all and (max-width: 960px) {
    .c-menuLv2__name {
        padding: 13px 0px;
    }
}

.c-menuLv2__name.direct:after {
    display: none;
}

.c-menuLv2__name:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -10px;
    background-image: url(../image/deco-menu.png);
    -webkit-background-size: 20px 40px;
    background-size: 20px 40px;
    background-position: 0 0;
}

.c-menuLv2__name.on:after {
    background-position: 0 -20px;
}

.c-menuLv2__child {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.8s;
    -o-transition: max-height 0.8s;
    transition: max-height 0.8s;
}

.c-menuLv2__name.on + .c-menuLv2__child {
    max-height: 5000px;
}

@media only screen and (min-width: 960px) {
    .c-menuLv2 {
        display: block;
        float: left;
        margin: 0;
        padding: 20px 0;
        width: calc(100% - 212px);
    }

        .c-menuLv2:after,
        .c-menuLv2:before {
            content: " ";
            display: table;
        }

        .c-menuLv2:after {
            clear: both;
        }

        .c-menuLv2 > li {
            border-bottom: 0;
            float: left;
            width: 102px;
            width: calc(100% / 6);
            padding-right: 25px;
            text-align: left;
        }

            .c-menuLv2 > li:nth-of-type(6n) {
                margin-right: 0;
            }

            .c-menuLv2 > li:nth-of-type(6n + 1) {
                clear: both;
            }

    .c-menuLv2__name {
        padding: 0 0 15px 0;
        background-color: transparent;
        color: #00994e;
        font-weight: 700;
    }

        .c-menuLv2__name:after {
            content: none;
        }

    .c-menuLv2__child {
        max-height: 5000px;
    }
}

.c-menuLv3 {
    margin: 0 0 0 40px;
    padding: 0;
    list-style: none;
}

.c-menuLv3__name {
    display: block;
    padding: 10px 10px 10px 0;
    background-color: #f9fbf7;
    position: relative;
}

.c-menuLv3__name--blank:after,
.c-menuLv3__name--pc:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    background-image: url(../image/deco-link.png);
    -webkit-background-size: 20px 40px;
    background-size: 20px 40px;
}

.c-menuLv3__name--pc:after {
    background-position: 0 0;
}

.c-menuLv3__name--blank:after {
    background-position: 0 -20px;
}

@media only screen and (min-width: 960px) {
    .c-menuLv3 {
        margin: 0;
    }

        .c-menuLv3 > li {
            text-align: left;
        }

    .c-menuLv3__name {
        background-color: transparent;
        font-size: 14px;
        padding: 0 0 15px 0;
        color: #333;
    }

    .c-menuLv3__name--blank:after,
    .c-menuLv3__name--pc:after {
        content: none;
    }
}

.c-quickLink {
    margin: 0;
    padding: 0;
    list-style: none;
    border-collapse: collapse;
}

    .c-quickLink:after,
    .c-quickLink:before {
        content: " ";
        display: table;
    }

    .c-quickLink:after {
        clear: both;
    }

    .c-quickLink > li {
        float: left;
        width: 33.33333%;
        border-right: 1px solid #dfdfdf;
        border-bottom: 1px solid #dfdfdf;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .c-quickLink > li:nth-of-type(3n) {
            border-right: none;
        }

        .c-quickLink > li:nth-of-type(3n + 1) {
            clear: left;
        }

.c-quickLink__box {
    text-align: center;
    padding: 20px 0;
}

.c-quickLink__box__text {
    margin-top: 10px;
}

.c-menuSocial {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #dfdfdf;
}

    .c-menuSocial > a {
        margin: 0 10px;
    }

.c-promote {
    display: none;
}

@media only screen and (min-width: 960px) {
    .c-promote {
        display: block;
        float: right;
        width: 212px;
        margin: 20px 0;
    }

    .c-promote__main {
        border: 1px solid #e2e2e2;
    }

    .c-promote__links {
        text-align: right;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .c-promote__title {
        padding: 10px;
        font-size: 16px;
    }
}

.c-burger {
    position: relative;
}

.c-burger--bottom,
.c-burger--middle,
.c-burger--top {
    display: block;
    position: absolute;
    height: 2px;
    width: 30px;
    background: #606060;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.c-burger--top {
    top: 4px;
}

.c-burger--middle {
    top: 13px;
}

.c-burger--bottom {
    top: 22px;
}

.is-openMenu {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .is-openMenu .l-menu {
        left: 0;
    }

    .is-openMenu .l-mobileHeader--transparent {
        background-color: #fff;
    }

    .is-openMenu .o-menuMask {
        display: block;
    }

    .is-openMenu .c-burger--bottom,
    .is-openMenu .c-burger--middle,
    .is-openMenu .c-burger--top {
        left: 4px;
    }

    .is-openMenu .c-burger--top {
        top: 3px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .is-openMenu .c-burger--middle {
        width: 0%;
        opacity: 0;
    }

    .is-openMenu .c-burger--bottom {
        top: 24px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

@media only screen and (min-width: 960px) {
    .is-openMenu .o-menuMask {
        display: none;
    }
}

.o-menuMask {
    background-color: rgba(51, 51, 51, 0.6);
    display: none;
    position: absolute;
    top: 50px;
    left: -100%;
    width: 300%;
    height: 100%;
    z-index: 65;
}

@media only screen and (min-width: 960px) {
    .c-menuSocial,
    .c-quickLink {
        display: none;
    }

    #mobile_menu_login {
        display: none;
    }
}

@media all and (max-width: 960px) {
    .l-cubHeader {
        display: none;
    }
}

#mobile_menu_login {
    padding: 15px 20px;
}

@media all and (max-width: 960px) {
    .mobile-login-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .mobile-login-btn .header-small-btn {
            margin-right: 16px;
            margin-bottom: 10px;
        }
}

.f-footerContactUs-icon a {
    color: #333;
}

    .f-footerContactUs-icon a:hover {
        color: #ff6000;
    }

.footerGoTop img {
    width: 40px;
    cursor: pointer;
}

.footer .f-footerContactUs {
    background-color: #f8f8f8;
}

.f-contactWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 25px;
}

.footer .f-footerContactUs img {
    max-width: 65px;
}

.f-footerContactUs-icon {
    text-align: center;
}

    .f-footerContactUs-icon:hover {
        color: #ff6000;
        cursor: pointer;
    }

        .f-footerContactUs-icon:hover img {
            -webkit-box-shadow: 0px 0px 8px #e6e6e6;
            box-shadow: 0px 0px 8px #e6e6e6;
            border-radius: 30px;
        }

    .f-footerContactUs-icon p {
        padding-top: 10px;
    }

.f-warningWord {
    text-align: center;
    background-color: #fff;
    padding: 20px;
}

    .f-warningWord p {
        font-size: 15px;
        letter-spacing: 0.1px;
        text-align: center;
        color: #6d6d6d;
        line-height: 2;
    }

        .f-warningWord p.f-bigWarning {
            font-size: 18px;
            padding: 10px 0px 20px 0px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: normal;
            letter-spacing: 0.1px;
            text-align: center;
            color: #6d6d6d;
        }

.f-recommandLink {
    background-color: #ff6000;
}

@media all and (min-width: 1024px) {
    .f-recommandLink {
        padding: 0px 40px;
    }
}

.f-recommandLink ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-recommandFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pt-30 {
    padding-top: 30px;
}

.f-recommandLink .allRightReserve {
    color: #fff;
    float: right;
    font-size: 14px;
}

.f-recommandLink .iconSpan:before {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    background-size: contain;
}

.footer .back-to-top:hover {
    background-image: url(../image/top-hover.png);
}

.footer .back-to-top.sticky {
    right: 50px;
}

.footer .back-to-top:hover {
    background-position: 0px;
}

.footer .back-to-top a {
    display: block;
    width: 50px;
    height: 50px;
}

.footer {
    display: block;
    min-width: 100%;
}

    .footer a {
        font-size: 14px;
        line-height: 2.14;
    }

@media all and (min-width: 1280px) {
    .footer {
        min-width: 1280px;
    }
}

@media all and (min-width: 959.91px) {
    .footer {
        display: block;
        position: absolute;
        width: 100%;
    }
}

.footerWrap {
    min-width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

@media all and (min-width: 1280px) {
    .footerWrap {
        min-width: 1240px;
    }
}

@media all and (max-width: 960px) {
    .footerWrap {
        display: block;
        padding: 28px;
    }
}

.cs-l-content--fixTop {
    padding-top: 128px;
}

footer.footer {
    padding: 0px;
}

@media all and (max-width: 960px) {
    footer.footer {
        padding-bottom: 70px;
    }
}

.cus_time {
    color: white;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    padding: 8px 0 16px;
}

.f-recommandLinkLogo {
    width: 158px;
}

.f-logo-white {
    width: 110px;
    margin-left: 10px;
}

footer .footer_function_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 33%;
}

    footer .footer_function_link ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

@media all and (max-width: 960px) {
    footer .footer_function_link {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.footer-img-icon {
    width: 30px;
    margin: 0px 7px;
}

.footerWrap.footer_all_rights_reserve {
    min-height: 55px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (max-width: 960px) {
    .footerWrap.footer_all_rights_reserve {
        min-height: 40px;
        padding: 11px 20px;
    }

        .footerWrap.footer_all_rights_reserve ul {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            text-align: center;
        }

        .footerWrap.footer_all_rights_reserve a {
            font-size: 12px;
        }
}

.footer_last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media all and (min-width: 1200px) {
    .footer_last .footerQrcode {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .footer_last .QrcodeText {
        margin-left: 1rem;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        font-size: 13px;
    }
}

@media all and (max-width: 1200px) {
    .footer_last .footerQrcode {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.cs-l-main {
    position: relative;
    min-height: calc(100vh - 330px);
}

@media all and (max-width: 960px) {
    .cs-l-main {
        margin-top: 50px;
    }
}

.fade:not(.show) {
    opacity: 1 !important;
}

.global-announcement {
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 0px;
    color: #2f2f2f !important;
    padding-left: 15px;
    border: solid 1px #ffeba2;
}

.global-alert {
    background-color: #fffaea;
    position: absolute;
    top: 0;
    z-index: 22;
    width: 100%;
    opacity: 0.95;
}

.global-alert-wrapper.container {
    max-width: 1240px;
    width: 100%;
    font-size: 14px;
}

.global-alert-wrapper {
    padding: 10px 20px;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.global-alert-wrapper .badge {
    background-color: #ff6000;
    font-size: 14px;
    padding: 4px 10px;
    margin-right: 12px;
    color: #fff !important;
    border-radius: 3px;
    font-weight: 100;
}

@media all and (max-width: 960px) {
    .global-alert-wrapper .badge {
        font-weight: normal;
    }
}

.iconLogin {
    margin: 0px 6px;
    padding: 0px;
}

.block_section_title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ff6000;
    text-align: left;
    margin-bottom: 6px;
    min-height: 33px;
}

.cs-l-container {
    width: 100%;
}

@media all and (min-width: 1280px) {
    .cs-l-container {
        min-width: 1280px;
    }
}

.act_title,
.best_seller_title {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #4a4a4a;
    text-align: left;
}

@media all and (max-width: 960px) {
    .act_title,
    .best_seller_title {
        font-size: 20px;
    }
}

.activity_text {
    padding-left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media all and (max-width: 960px) {
    .activity_text {
        padding: 13px 20px;
    }
}

.act_content {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 4.5em;
}

@media all and (max-width: 960px) {
    .act_content {
        height: auto;
    }
}

.act_content,
.best_seller_content {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #767676;
    line-height: 1.5em;
}

.best_seller_content {
    font-size: 16px;
}

button.close {
    width: 15px;
    color: #f7b54e;
}

    button.close:hover,
    button.close:active,
    button.close:focus {
        color: #f7b54e;
    }

.act_note,
.best_seller_note {
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.69;
    letter-spacing: normal;
    color: #ff6000;
    text-align: left;
    right: 30px;
    bottom: 15px;
    line-break: anywhere;
}

.best_seller_title {
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 12px;
}

@media all and (max-width: 960px) {
    .best_seller_title {
        font-size: 20px;
        margin-top: 0px;
    }
}

.best_seller_text {
    padding: 0px 25px;
    position: relative;
}

@media all and (max-width: 960px) {
    .best_seller_text {
        padding: 13px 20px;
    }
}

@media all and (max-width: 768px) {
    .best_seller_text {
        display: block;
    }
}

.block_section {
    max-width: 600px;
    width: 100%;
}

@media all and (max-width: 1280px) {
    .block_section {
        max-width: 49%;
    }
}

@media all and (max-width: 960px) {
    .block_section {
        max-width: 100%;
    }
}

.block_section-lg {
    width: 100%;
}

@media all and (max-width: 960px) {
    .best_seller_outer {
        max-width: 100%;
        margin: 0px auto;
        overflow: hidden;
    }
}

@media all and (max-width: 640px) {
    .best_seller_outer {
        max-width: 640px;
    }
}

@media all and (max-width: 960px) {
    .best_seller_swiper {
        margin: 10px 0px;
        -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    }
}

.best_seller .img-responsive {
    max-width: 410px;
}

@media all and (max-width: 960px) {
    .best_seller .img-responsive {
        max-width: 100%;
    }
}

.best_seller .slick-list {
    max-width: 870px;
    margin: 0 auto;
    max-height: 240px;
    border: 1px solid #e2e2e2;
}

@media all and (max-width: 960px) {
    .best_seller .slick-list {
        overflow: initial;
        border: 0px;
    }
}

.best_seller .slick-slide {
    margin: 0px;
}

.activity_swiper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media all and (max-width: 640px) {
    .activity_swiper {
        display: block !important;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.actitvity_wrap {
    background-color: #ededed;
    padding: 36px 45px 42px;
}

@media all and (max-width: 1280px) {
    .actitvity_wrap {
        padding: 60px 45px 42px;
    }
}

@media all and (max-width: 640px) {
    .actitvity_wrap {
        padding: 0px;
        background: #fff;
    }

        .actitvity_wrap.slick-slider {
            margin: 0 -10px;
        }

        .actitvity_wrap .slick-slide {
            -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
            margin: 10px 10px;
        }
}

.actitvity_wrap .img-responsive {
    width: 100%;
    max-width: 257px;
    height: 100%;
}

@media all and (max-width: 1280px) {
    .actitvity_wrap .img-responsive {
        width: 200px;
    }
}

@media all and (max-width: 640px) {
    .actitvity_wrap .img-responsive {
        max-width: 100%;
        width: 100%;
    }
}

@media all and (min-width: 640px) {
    .actitvity_wrap .img-responsive:hover {
        -webkit-animation-name: pulse;
        animation-name: pulse;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
    }
}

.news_wrap {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    padding: 14px 22px;
    font-size: 14px;
}

    .news_wrap li {
        position: relative;
        padding: 17px 0px;
        border-bottom: 1px solid #e2e2e2;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        padding-left: 15px;
    }

        .news_wrap li:last-child {
            border-bottom: 0px;
        }

        .news_wrap li:hover {
            background-color: #f5f6f7;
        }

        .news_wrap li span.newsDay {
            color: #c75501;
            padding-right: 7px;
        }

    .news_wrap ul li::before {
        content: "\2022";
        color: #c7550e;
        display: inline-block;
        width: 8px;
        position: absolute;
        left: 0px;
    }

.news_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (max-width: 960px) {
    .news_title {
        margin-top: 30px;
    }
}

a.link_more {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #9b9b9b;
}

    a.link_more:hover {
        color: #ff6000;
    }

        a.link_more:hover i {
            color: #ff6000;
        }

.FlexColumnTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media all and (max-width: 960px) {
    .new-content-text {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
}

.sideFunction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 150;
    position: fixed;
    right: 0px;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

    .sideFunction .sideFixedBtn {
        background-color: #848484;
        width: 70px;
        height: 70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        cursor: pointer;
    }

        .sideFunction .sideFixedBtn.active {
            background-color: #ff6000;
        }

        .sideFunction .sideFixedBtn:hover {
            background-color: #ff6000;
        }

        .sideFunction .sideFixedBtn img {
            max-width: 25px;
        }

        .sideFunction .sideFixedBtn p {
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            color: #ffffff;
            padding: 3px;
        }

.sideRemark {
    font-size: 13px;
    padding-top: 7px;
}

.vaildNumber {
    margin-left: 10px;
    padding: 0px;
}

.sideFunctionBox {
    width: 360px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
    padding: 22px 30px 0px;
    min-height: 370px;
}

    .sideFunctionBox .sideFunctionTitle {
        font-size: 24px;
        padding-bottom: 8px;
        color: #ff6000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

        .sideFunctionBox .sideFunctionTitle span {
            font-size: 13px;
        }

        .sideFunctionBox .sideFunctionTitle a.editor span {
            color: #00994e;
            text-decoration: underline;
        }

        .sideFunctionBox .sideFunctionTitle .editorActice i:before {
            content: "\e906";
        }

    .sideFunctionBox .sideFunctionClose {
        font-size: 25px;
        cursor: pointer;
        position: absolute;
        right: 12px;
        top: 12px;
    }

    .sideFunctionBox .sideFunctionIcon {
        padding: 15px;
        background-color: #d8d8d8;
        border-radius: 50px;
        color: #ff6000;
    }

.sideFunctionSubTitle {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #4a4a4a;
    margin-top: 17px;
    margin-bottom: 9px;
}

.secondTitle {
    margin-top: 13px;
}

@media all and (max-width: 640px) {
    .myFavorBox {
        padding: 30px 7px;
    }

        .myFavorBox .sideFunctionTitle {
            margin: 0px 28px;
        }
}

@media all and (max-width: 374px) {
    .rateExchangeBox {
        padding: 30px 5px;
    }
}

.favorFunction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .favorFunction i {
        font-size: 30px;
    }

    .favorFunction .smallDelete {
        display: none;
        font-size: 12px;
    }

    .favorFunction .favorOuter {
        width: 33%;
    }

    .favorFunction .choosedFavor {
        position: relative;
        cursor: pointer;
        height: 115px;
        margin: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 15px;
    }

        .favorFunction .choosedFavor:hover {
            background-color: #fff;
            border-radius: 8px;
        }

            .favorFunction .choosedFavor:hover .sideFunctionIcon {
                background-color: #ff6000;
                color: #fff;
            }

            .favorFunction .choosedFavor:hover .smallDelete {
                display: block;
                position: absolute;
                width: 23px;
                height: 23px;
                top: 5px;
                padding: 4px;
                border: 2px solid #9b9b9b;
                border-radius: 20px;
                right: 5px;
            }

    .favorFunction .choosedFavorHover {
        background-color: #fff;
        border-radius: 8px;
    }

        .favorFunction .choosedFavorHover .sideFunctionIcon {
            background-color: #edf3e9;
        }

        .favorFunction .choosedFavorHover .smallDelete {
            display: block;
            position: absolute;
            width: 23px;
            height: 23px;
            top: 5px;
            padding: 4px;
            border: 2px solid #9b9b9b;
            border-radius: 20px;
            right: 5px;
        }

    .favorFunction p {
        padding: 5px;
        font-size: 14px;
        line-height: 1.29;
        text-align: center;
        color: #4a4a4a;
    }

    .favorFunction .addSetting {
        height: 115px;
    }

        .favorFunction .addSetting p {
            color: #00994e;
        }

.closeFunction {
    right: -360px;
}

.mt-30 {
    margin-top: 30px;
}

button:focus {
    outline: none;
}

.btn-light-blue {
    background-color: #66aaf1;
    color: #fff;
    cursor: pointer;
}

    .btn-light-blue:hover {
        color: #fff;
    }

.queryItemBtn {
    text-align: center;
    margin: 33px auto;
}

    .queryItemBtn .btn-light-blue {
        padding: 8px 33px;
    }

.sell_logo {
    width: 27px;
    height: 20px;
    margin-right: 5px;
    vertical-align: text-bottom;
}

@media all and (max-width: 960px) {
    .sell_logo {
        display: none;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .footerWrap.footer_all_rights_reserve {
        margin-top: 20px;
    }

    .actitvity_wrap {
        margin-right: 30px;
    }

        .actitvity_wrap .img-responsive {
            width: auto;
        }

    .activity_text {
        display: inline-block;
    }

        .activity_text .act_title {
            margin-bottom: 12px;
        }

        .activity_text .act_note {
            margin-top: 30px;
        }
}

/*!
AniCollection - http://anicollection.github.io/
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Dariel Noel

Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 Daniel Eden
*/
.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.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

.duration-xs {
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

.duration-sm {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.duration-md {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.duration-lg {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.duration-xl {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}

/*animation-timing-function: sets the animation speed
( linear | ease | ease-in | ease-out | ease-in-out | cubic-bezier ).*/
.timing-linear {
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.timing-ease-in {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.timing-ease-out {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.timing-ease-in-out {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.timing-cubic-bezier {
    -webkit-animation-timing-function: cubic-bezier;
    animation-timing-function: cubic-bezier;
}

/*animation-delay: the delay before our animation will start.*/
.delay-xs {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.delay-sm {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-md {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-lg {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay-xl {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

/*how many times it will iterate through animation.*/
.iteration-infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.iteration-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.iteration-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
}

.iteration-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
}

.iteration-4 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
}

.iteration-5 {
    -webkit-animation-iteration-count: 4;
    animation-iteration-count: 4;
}

/* animation-direction: gives you the ability to change the loop direction, from start to end ,
or from end to start, or both.*/
.direction-normal {
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.direction-reverse {
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.direction-alternate {
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.direction-alternate-reverse {
    -webkit-animation-direction: alternate-reverse;
    animation-direction: alternate-reverse;
}

/* animation-fill-mode: specifies which styles will be applied to the element when our animation is finished*/
.fill-mode-none {
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
}

.fill-mode-forwards {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fill-mode-backwards {
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

.fill-mode-both {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*
 *@name bounce
 *@className bounce animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

/*
 *@name flash
 *@className flash animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes flash {
    0%, 100%, 50% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 100%, 50% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/*
 *@name pulse
 *@className pulse animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Nick Pettit
 *@source Glide
 *@sourceUrl https://github.com/nickpettit/glide
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -ms-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

/*
 *@name rubberBand
 *@className rubberBand animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        -ms-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        -ms-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        -ms-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        -ms-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        -ms-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

/*
 *@name shake
 *@className shake animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

/*
 *@name swing
 *@className swing animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -ms-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -ms-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

/*
 *@name tada
 *@className tada animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/*
 *@name wobble
 *@className wobble animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Nick Pettit
 *@source Glide
 *@sourceUrl https://github.com/nickpettit/glide
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

/*
 *@name bounceIn
 *@className bounceIn animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        -ms-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        -ms-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

/*
 *@name bounceInDown
 *@className bounceInDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

/*
 *@name bounceInLeft
 *@className bounceInLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

/*
 *@name bounceInRight
 *@className bounceInRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

/*
 *@name bounceInUp
 *@className bounceInUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

/*
 *@name bounceOut
 *@className bounceOut animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        -ms-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

/*
 *@name bounceOutDown
 *@className bounceOutDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

/*
 *@name bounceOutLeft
 *@className bounceOutLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        -ms-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

/*
 *@name bounceOutRight
 *@className bounceOutRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        -ms-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

/*
 *@name bounceOutUp
 *@className bounceOutUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

/*
 *@name fadeIn
 *@className fadeIn animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

/*
 *@name fadeInDown
 *@className fadeInDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/*
 *@name fadeInDownBig
 *@className fadeInDownBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

/*
 *@name fadeInLeft
 *@className fadeInLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

/*
 *@name fadeInLeftBig
 *@className fadeInLeftBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

/*
 *@name fadeInRight
 *@className fadeInRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/*
 *@name fadeInRightBig
 *@className fadeInRightBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

/*
 *@name fadeInUp
 *@className fadeInUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/*
 *@name fadeInUpBig
 *@className fadeInUpBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

/*
 *@name fadeOut
 *@className fadeOut animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

/*
 *@name fadeOutDown
 *@className fadeOutDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

/*
 *@name fadeOutDownBig
 *@className fadeOutDownBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

/*
 *@name fadeOutLeft
 *@className fadeOutLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

/*
 *@name fadeOutLeftBig
 *@className fadeOutLeftBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

/*
 *@name fadeOutRight
 *@className fadeOutRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

/*
 *@name fadeOutRightBig
 *@className fadeOutRightBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

/*
 *@name fadeOutUp
 *@className fadeOutUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

/*
 *@name fadeOutUpBig
 *@className fadeOutUpBig animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

/*
 *@name flip
 *@className flip animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

/*
 *@name flipInX
 *@className flipInX animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        -o-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        -o-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

/*
 *@name flipInY
 *@className flipInY animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        -o-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        -o-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

/*
 *@name flipOutX
 *@className flipOutX animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

/*
 *@name flipOutY
 *@className flipOutY animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

/*
 *@name lightSpeedIn
 *@className lightSpeedIn animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        -ms-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        -ms-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/*
 *@name lightSpeedOut
 *@className lightSpeedOut animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
        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;
}

/*
 *@name rotate
 *@className rotate animated
 *@cssCode
 *@editionLink codepen.io
 *@author Quinn Keaveney
 *@source AniCollection
 *@sourceUrl https://github.com/anicollection/anicollection/
 *@issues https://github.com/anicollection/anicollection/issues
 *@license MIT
 */
@-webkit-keyframes rotate {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotate {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rotate {
    -webkit-animation-name: rotate;
    animation-name: rotate;
}

/*
 *@name rotateDownLeft
 *@className rotateDownLeft animated
 *@cssCode
 *@editionLink codepen.io
 *@author Quinn Keaveney
 *@source AniCollection
 *@sourceUrl https://github.com/anicollection/anicollection
 *@issues https://github.com/anicollection/anicollection/issues
 *@license MIT
 */
@-webkit-keyframes rotateDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rotateDownLeft {
    -webkit-animation-name: rotateDownLeft;
    animation-name: rotateDownLeft;
}

/*
 *@name rotateDownRight
 *@className rotateDownRight animated
 *@cssCode
 *@editionLink codepen.io
 *@author Quinn Keaveney
 *@source AniCollection
 *@sourceUrl https://github.com/anicollection/anicollection
 *@issues https://github.com/anicollection/anicollection/issues
 *@license MIT
 */
@-webkit-keyframes rotateDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rotateDownRight {
    -webkit-animation-name: rotateDownRight;
    animation-name: rotateDownRight;
}

/*
 *@name rotateUpLeft
 *@className rotateUpLeft animated
 *@cssCode
 *@editionLink codepen.io
 *@author Quinn Keaveney
 *@source AniCollection
 *@sourceUrl https://github.com/anicollection/anicollection
 *@issues https://github.com/anicollection/anicollection/issues
 *@license MIT
 */
@-webkit-keyframes rotateUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rotateUpLeft {
    -webkit-animation-name: rotateUpLeft;
    animation-name: rotateUpLeft;
}

/*
 *@name rotateUpRight
 *@className rotateUpRight animated
 *@cssCode
 *@editionLink codepen.io
 *@author Quinn Keaveney
 *@source AniCollection
 *@sourceUrl https://github.com/anicollection/anicollection
 *@issues https://github.com/anicollection/anicollection/issues
 *@license MIT
 */
@-webkit-keyframes rotateUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rotateUpRight {
    -webkit-animation-name: rotateUpRight;
    animation-name: rotateUpRight;
}

/*
 *@name rotateIn
 *@className rotateIn animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

/*
 *@name rotateInDownLeft
 *@className rotateInDownLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

/*
 *@name rotateInDownRight
 *@className rotateInDownRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

/*
 *@name rotateInUpLeft
 *@className rotateInUpLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

/*
 *@name rotateInUpRight
 *@className rotateInUpRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

/*
 *@name rotateOut
 *@className rotateOut animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        -ms-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

/*
 *@name rotateOutDownLeft
 *@className rotateOutDownLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

/*
 *@name rotateOutDownRight
 *@className rotateOutDownRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

/*
 *@name rotateOutUpLeft
 *@className rotateOutUpLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

/*
 *@name rotateOutUpRight
 *@className rotateOutUpRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        -ms-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

/*
 *@name hinge
 *@className hinge animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        -ms-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/*
 *@name rollIn
 *@className rollIn animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Nick Pettit
 *@source Glide
 *@sourceUrl https://github.com/nickpettit/glide
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/*
 *@name rollOut
 *@className rollOut animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Nick Pettit
 *@source Glide
 *@sourceUrl https://github.com/nickpettit/glide
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

/*
 *@name zoomIn
 *@className zoomIn animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/*
 *@name zoomInDown
 *@className zoomInDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

/*
 *@name zoomInLeft
 *@className zoomInLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

/*
 *@name zoomInRight
 *@className zoomInRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

/*
 *@name zoomInUp
 *@className zoomInUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

/*
 *@name zoomOut
 *@className zoomOut animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

/*
 *@name zoomOutDown
 *@className zoomOutDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

/*
 *@name zoomOutLeft
 *@className zoomOutLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

/*
 *@name zoomOutRight
 *@className zoomOutRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

/*
 *@name zoomOutUp
 *@className zoomOutUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

/*
 *@name slideInDown
 *@className slideInDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

/*
 *@name slideInLeft
 *@className slideInLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

/*
 *@name slideInRight
 *@className slideInRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

/*
 *@name slideInUp
 *@className slideInUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

/*
 *@name slideOutDown
 *@className slideOutDown animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

/*
 *@name slideOutLeft
 *@className slideOutLeft animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

/*
 *@name slideOutRight
 *@className slideOutRight animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

/*
 *@name slideOutUp
 *@className slideOutUp animated
 *@cssCode true
 *@editionLink codepen.io
 *@author Dan Eden
 *@source Animate.css
 *@sourceUrl http://daneden.github.io/animate.css/
 *@issues https://github.com/daneden/animate.css/issues
 *@license MIT
 */
@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.ani-delay {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.slide-tl {
    -webkit-animation: slide-tl 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
    animation: slide-tl 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

@-webkit-keyframes slide-tl {
    0% {
        -webkit-transform: translateY(0px) translateX(0px);
        transform: translateY(0px) translateX(0px);
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

@keyframes slide-tl {
    0% {
        -webkit-transform: translateY(0px) translateX(0px);
        transform: translateY(0px) translateX(0px);
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

@-webkit-keyframes slide-in-elliptic-left-fwd {
    0% {
        -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
        transform: translateX(-800px) rotateY(30deg) scale(0);
        -webkit-transform-origin: -100% 50%;
        transform-origin: -100% 50%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotateY(0) scale(1);
        transform: translateX(0) rotateY(0) scale(1);
        -webkit-transform-origin: 1800px 50%;
        transform-origin: 1800px 50%;
        opacity: 1;
    }
}

@keyframes slide-in-elliptic-left-fwd {
    0% {
        -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
        transform: translateX(-800px) rotateY(30deg) scale(0);
        -webkit-transform-origin: -100% 50%;
        transform-origin: -100% 50%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotateY(0) scale(1);
        transform: translateX(0) rotateY(0) scale(1);
        -webkit-transform-origin: 1800px 50%;
        transform-origin: 1800px 50%;
        opacity: 1;
    }
}

.slide-in-elliptic-left-fwd {
    -webkit-animation-name: slide-in-elliptic-left-fwd;
    animation-name: slide-in-elliptic-left-fwd;
}

.fade-in-left {
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in-right {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

html body {
    background-color: #fff;
    letter-spacing: initial;
    overflow-x: hidden;
}

    html body p {
        line-height: inherit;
    }

.bx {
    font-size: initial;
}

a,
a:hover {
    text-decoration: none;
}

.sticky .svg-icon g,
.sticky .svg-icon path {
    fill: #fff;
}

li.on .svg-icon g,
li.on .svg-icon path {
    fill: #ff6000;
}

.hrSpan {
    border-top: 1px solid #ea4c04;
    height: 1px;
    display: block;
}

/* 桌機板 */
@media only screen and (min-width: 960px) {
    header.header .info-menu,
    .l-menu {
        background-color: rgba(255, 255, 255, 0.8);
        -webkit-box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
        box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
    }

    .c-menuLv1__name {
        background-color: rgba(255, 255, 255, 0);
        height: 47px;
        line-height: 25px;
    }

    header.header {
        width: 100%;
        /*  overflow: hidden; */
    }

        header.header.sticky {
            position: fixed;
            position: -webkit-sticky;
            position: sticky;
            top: -80px;
            width: 100%;
            background-color: #fff;
            z-index: 1000;
        }

            header.header.sticky .c-menuLv1 > li {
                width: 100%;
            }

        header.header .sub-menu .change-unit-menu li div {
            border: none;
            padding: 0px 0px 0px 12px;
        }

        header.header .sub-menu .change-unit-menu {
            position: absolute;
            bottom: 20px;
        }

            header.header .sub-menu .change-unit-menu li a.translateLanguage {
                padding: 4px 10px !important;
                margin-top: -10px;
                color: #fff;
                background: #ff6000;
                -webkit-border-radius: 3px;
                border-radius: 3px;
                font-weight: 500;
                display: inline-block;
            }

                header.header .sub-menu .change-unit-menu li a.translateLanguage:hover {
                    background: #ff6000;
                }

            header.header .sub-menu .change-unit-menu li.active {
                background: none;
            }

                header.header .sub-menu .change-unit-menu li.active:before {
                    width: 0;
                    content: "";
                    position: absolute;
                    border-style: solid;
                    border-width: 0px 8px 8px 8px;
                    bottom: -19px;
                    left: 32px;
                    border-color: transparent transparent #00994f transparent;
                }

    .c-menuLv1__name span img {
        width: 25px;
        height: 25px;
        margin-right: 3px;
        vertical-align: middle;
    }

    .c-menuLv1 {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .c-menuLv1 > li {
            width: 185px;
        }

    .c-menuLv1__child {
        top: 47px;
        border-bottom: 0px;
        -webkit-box-shadow: 0 0px 8px rgba(2, 2, 2, 0.15);
        box-shadow: 0 0px 8px rgba(2, 2, 2, 0.15);
        min-width: 555px;
    }

    .c-menuLv1 > li:last-of-type .c-menuLv1__name {
        opacity: 1;
        color: #fff;
        background: #4da3f5;
    }

        .c-menuLv1 > li:last-of-type .c-menuLv1__name:hover {
            cursor: pointer;
        }

    .c-menuLv1__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0px;
    }

    .l-menu {
        border-bottom: 0px;
        background-color: #fff;
    }

    .c-menuLv1__name {
        background-color: #fff;
    }

    a.c-menuLv1__name:hover:not(:last-child) {
        border-top: 1px solid #ff6000;
        margin-top: -1px;
        color: #ff6000;
    }

    .c-menuLv2__name {
        padding: 0 0 15px 0;
        background-color: transparent;
        color: #ff6000;
        font-weight: normal;
        border-bottom: 1px solid #ff6000;
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 0.1px;
    }

    .c-menuLv2 {
        padding: 0px;
        width: 100%;
        background-color: #ededed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

        .c-menuLv2 > li {
            border-bottom: 0;
            float: left;
            width: 100%;
            padding: 15px 12px;
            /* height: 100%; */
            text-align: left;
        }

    a.c-menuLv3__name.cs-o-link.cs-o-link--menu {
        line-height: 1.2;
    }

    .c-fastEntry {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0px 2px;
        width: 14.285714%;
        max-height: 275px;
    }

    .c-fastEntryIcon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 60px;
        width: 100%;
        margin: 10px 0px;
        border-radius: 30px;
        background-color: #edf3e9;
    }

        .c-fastEntryIcon:hover {
            background-image: -webkit-gradient( linear, left top, left bottom, from(#51be77), to(#27ae58) );
            background-image: -webkit-linear-gradient(top, #51be77, #27ae58);
            background-image: -o-linear-gradient(top, #51be77, #27ae58);
            background-image: linear-gradient(to bottom, #51be77, #27ae58);
            cursor: pointer;
        }

            .c-fastEntryIcon:hover p {
                color: #fff;
            }

        .c-fastEntryIcon img {
            width: 30px;
            height: 30px;
            margin: 5px;
        }

        .c-fastEntryIcon .iconSpan:before {
            content: "";
            margin: 5px;
            width: 30px;
            height: 30px;
            position: absolute;
            background-size: contain;
        }

        .c-fastEntryIcon p {
            word-break: keep-all;
            padding-right: 5px;
            font-size: 13px;
            color: #ff6000;
        }

    .c-fastEntryIcon {
        height: 45px;
    }

    .rwd header.header .container,
    .l-menu__container,
    .c-menuLv1__child {
        width: 100%;
    }

    .l-menu__container {
        max-width: 1240px;
    }

    .c-menuLv1 > li:last-of-type {
        border: 0px solid #dfdfdf;
    }
    /* fixxheader */
    header.is-fixHeader.sticky .l-menu,
    header.is-fixHeader.sticky .c-menuLv1__name,
    header.is-fixHeader.sticky .c-menuLv1__child:hover .c-menuLv1__name {
        background-color: #ff6000;
        color: #fff;
    }

        header.is-fixHeader.sticky .c-menuLv1__name:hover {
            background-color: #fff;
        }

    header.is-fixHeader.sticky
    .c-menuLv1 > li:not(:last-child):hover
    .c-menuLv1__name {
        color: #ff6000;
        background-attachment: #fff;
    }
    /* icon */
    .c-menuLv1 > li:not(:last-child):hover .c-menuLv1__name {
        color: #ff6000;
    }

    .c-menuLv1__name span:before {
        content: "";
        width: 25px;
        height: 25px;
        position: absolute;
        background-size: cover;
    }

    .c-menuLv1 > li:not(:last-child):hover .c-menuLv1__name {
        border-top: 4px solid #ff6000;
        margin-top: -1px;
        padding-top: 7px;
        -webkit-box-shadow: 0px -1px 1px rgba(2, 2, 2, 0.15);
        box-shadow: 0px -1px 1px rgba(2, 2, 2, 0.15);
        z-index: 9999;
    }

    header.is-fixHeader.sticky
    .c-menuLv1 > li:not(:last-child):hover
    .c-menuLv1__name {
        color: #ff6000;
        background: #fff;
        border-top: 4px solid #ff6000;
        margin-top: -1px;
    }

    header.is-fixHeader.sticky .c-menuLv1 > li:last-child .c-menuLv1__name {
        background: #ff6000;
    }
}

.rwd-mobile {
    display: none !important;
}

.rwd-desktop {
    display: block !important;
}

@media only screen and (min-width: 1080px) {
    .c-fastEntryIcon {
        height: 50px;
    }

        .c-fastEntryIcon p {
            padding-left: 3px;
            font-size: 14px;
        }

        .c-fastEntryIcon img {
            width: 35px;
            height: 35px;
            margin: 5px;
        }

        .c-fastEntryIcon .iconSpan:before {
            content: "";
            margin: 5px 5px 5px 8px;
            width: 35px;
            height: 35px;
            position: absolute;
            background-size: contain;
        }
}

@media only screen and (min-width: 1280px) {
    .c-fastEntryIcon {
        width: 100%;
    }

        .c-fastEntryIcon p {
            padding-left: 5px;
            font-size: 15px;
        }

        .c-fastEntryIcon .iconSpan:before {
            content: "";
            margin: 5px 5px 5px 10px;
            width: 35px;
            height: 35px;
            position: absolute;
            background-size: contain;
        }
}

/* 手機版 */
@media only screen and (max-width: 959.68px) {
    .back-to-top {
        float: right;
        text-align: right;
        width: 50px;
        position: fixed;
        height: 50px;
        right: 15px;
        cursor: pointer;
        background-size: contain;
        background-image: url(../image/top.png);
    }

    .rwd-mobile {
        display: block !important;
    }

    .rwd-desktop {
        display: none !important;
    }

    .c-menuLv1 li:hover > a {
        color: #ff6000;
    }

    .c-fastEntryIcon {
        text-align: center;
    }

        .c-fastEntryIcon p {
            padding-top: 10px;
        }
}

header.header {
    z-index: 999;
    width: 100%;
    min-width: 100%;
}

@media all and (min-width: 1280px) {
    header.header {
        min-width: 1280px;
    }
}

header.header .info-menu,
.l-menu {
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
    box-shadow: 0px 3px 8px rgba(2, 2, 2, 0.15);
    color: #6d6d6d;
}

.c-menuLv1__name {
    background-color: rgba(255, 255, 255, 0);
    height: 47px;
    line-height: 25px;
}

@media all and (max-width: 960px) {
    .c-menuLv1__name {
        height: 50px;
        background-color: #fff6f1;
        color: #6d6d6d;
    }
}

.l-menu .c-menuLv2 > li {
    float: left;
}

@media only screen and (min-width: 960px) {
    .cs-l-content--fixTop {
        padding-top: 128px;
    }
}

.is-fixHeader.sticky + .container {
    padding-top: 128px;
}

/*  */
.cs-l-mainKv {
    min-width: 100%;
    overflow: hidden;
    height: 420px;
}

@media all and (max-width: 640px) {
    .cs-l-mainKv {
        height: 280px;
    }
}

.cs-l-mainKv:before {
    content: "";
    background-image: url(../images/banner-bg.png);
    position: absolute;
    z-index: 1;
    height: 420px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    min-width: 45%;
}

@media all and (max-width: 960px) {
    .cs-l-mainKv:before {
        display: none;
    }
}

@media all and (max-width: 640px) {
    .cs-l-mainKv:before {
        height: 280px;
    }
}

.cs-c-banner {
    height: 420px;
    background-size: cover;
}

@media all and (max-width: 1440px) {
    .cs-c-banner {
        background-position-x: -220px;
    }
}

@media all and (max-width: 1360px) {
    .cs-c-banner {
        background-position-x: -150px;
    }
}

@media all and (max-width: 1280px) {
    .cs-c-banner {
        background-position-x: -360px;
    }
}

@media all and (max-width: 960px) {
    .cs-c-banner {
        background-position-x: 0px;
    }
}

@media all and (max-width: 640px) {
    .cs-c-banner {
        height: 280px;
    }
}

@media all and (max-width: 960px) {
    .mobile-text-black {
        color: #000 !important;
    }

        .mobile-text-black h2,
        .mobile-text-black span {
            color: #000 !important;
        }

        .mobile-text-black a.cub-button {
            color: #000 !important;
            border: 1px solid #000 !important;
        }
}

[data-banner="cs-banner-1"] {
    background-image: url(../images/banner/banner.jpg);
}

@media all and (max-width: 960px) {
    [data-banner="cs-banner-1"] {
        background-image: url(../images/banner/mobile-banner-1.png);
    }
}

[data-banner="cs-banner-2"] {
    background-image: url(../images/banner/banner2.jpg);
}

@media all and (max-width: 960px) {
    [data-banner="cs-banner-2"] {
        background-image: url(../images/banner/mobile-banner-2.jpg);
    }
}

[data-banner="cs-banner-3"] {
    background-image: url(../images/banner/banner3.jpg);
}

@media all and (max-width: 960px) {
    [data-banner="cs-banner-3"] {
        background-image: url(../images/banner/mobile-banner-3.jpg);
    }
}

[data-banner="cs-banner-4"] {
    background-image: url(../images/banner/banner4.jpg);
}

@media all and (max-width: 960px) {
    [data-banner="cs-banner-4"] {
        background-image: url(../images/banner/mobile-banner-4.jpg);
    }
}

button.slick-next.slick-arrow:before {
    background-image: url(../images/banner-arrow-right.png);
    width: 30px;
    height: 30px;
    background-size: contain;
}

button.slick-next.slick-arrow:hover:before {
    background-image: url(../images/banner-arrow-right.png);
}

button.slick-prev.slick-arrow:before {
    background-image: url(../images/banner-arrow-left.png);
    width: 30px;
    height: 30px;
    background-size: contain;
}

button.slick-prev.slick-arrow:hover:before {
    background-image: url(../images/banner-arrow-left.png);
}

.cs-l-mainKv__text {
    position: absolute;
    top: 0px;
    z-index: 3;
    height: 100%;
    width: 100%;
    padding: 0px 20px;
    margin-top: -530px;
}

@media all and (max-width: 640px) {
    .cs-l-mainKv__text {
        margin-top: -420px;
    }
}

@media all and (max-width: 1280px) {
    .cs-l-mainKv__text {
        padding: 0px 10px;
    }
}

.cub-text-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    min-height: 220px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin: 200px 20px 0px;
}

@media all and (max-width: 960px) {
    .cub-text-wrapper {
        margin-top: 195px;
    }
}

.cub-text-wrapper h2 {
    width: 360px;
    font-size: 38px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1px;
    color: #ffffff;
}

@media all and (max-width: 960px) {
    .cub-text-wrapper h2 {
        font-size: 24px;
        width: 175px;
    }
}

.cub-text-wrapper span {
    width: 360px;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0px;
    color: #ffffff;
    margin-top: 23px;
    display: block;
}

@media all and (max-width: 960px) {
    .cub-text-wrapper span {
        font-size: 16px;
        width: 150px;
        font-weight: normal;
        margin-top: 8px;
    }
}

.cs-l-wrap {
    max-width: 1240px;
    margin: 0 auto;
}

@media all and (max-width: 1920px) {
    .cs-l-wrap {
        max-width: 1240px;
    }
}

.cs-l-mainBlock {
    margin-top: 50px;
    padding: 0px 2.5% 0;
}

@media all and (min-width: 1280px) {
    .cs-l-mainBlock {
        min-width: 1240px;
    }
}

@media all and (max-width: 1024px) {
    .cs-l-mainBlock {
        padding: 0px 40px;
    }
}

@media all and (max-width: 960px) {
    .cs-l-mainBlock {
        padding: 0px 10px;
        margin-top: 30px;
    }

        .cs-l-mainBlock .m-flex-column {
            -webkit-box-orient: vertical !important;
            -webkit-box-direction: normal !important;
            -ms-flex-direction: column !important;
            flex-direction: column !important;
        }

        .cs-l-mainBlock .d-flex-reverse-m {
            -webkit-box-orient: vertical !important;
            -webkit-box-direction: reverse !important;
            -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
        }
}

.cs-l-mainBlock-small {
    padding: 20px 0 40px;
}

.cs-l-mainBlock--bglightGrn {
    background-color: #edf3e9;
}

.mainBlockWrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: inline-block;
}

@media all and (min-width: 1280px) {
    .mainBlockWrap {
        min-width: 1240px;
    }
}

@media all and (max-width: 1100px) {
    .mainBlockWrap {
        padding: 0 10px;
    }
}

@media all and (max-width: 960px) {
    .mainBlockWrap {
        padding: 0px;
    }
}

body:not(.isScrolled) .card:hover .cardText {
    -webkit-animation: slideInUp 0.3s ease-in-out;
    animation: slideInUp 0.3s ease-in-out;
}

body.isScrolled .card a.cardInside:hover .cardImage img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card {
    width: 390px;
    height: 465px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media all and (max-width: 1920px) {
    .card {
        width: 390px;
        height: 465px;
    }
}

@media all and (max-width: 1280px) {
    .card {
        width: 330px;
        height: auto;
    }
}

@media all and (max-width: 1080px) {
    .card {
        width: 300px;
        height: auto;
    }
}

.card:hover {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

.card img {
    max-width: 390px;
    max-height: 232px;
    width: 100%;
    height: 100%;
}

    .card img.serviceIcon {
        position: absolute;
        z-index: 3;
        width: 75px;
        height: 75px;
        left: calc(50% - 37.5px);
        top: calc(50% - 37.5px);
    }

@media all and (max-width: 1920px) {
    .card img.serviceIcon {
        width: 75px;
        height: 75px;
        left: calc(50% - 37.5px);
        top: calc(50% - 37.5px);
    }
}

@media all and (max-width: 1280px) {
    .card img.serviceIcon {
        width: 65px;
        height: 65px;
        left: calc(50% - 33.5px);
        top: calc(50% - 50px);
    }
}

@media all and (max-width: 1080px) {
    .card img.serviceIcon {
        width: 60px;
        height: 60px;
        left: calc(50% - 30px);
        top: calc(50% - 55px);
    }
}

.card .cardText {
    padding: 35px 35px 30px 35px;
}

@media all and (max-width: 1920px) {
    .card .cardText {
        padding: 35px 35px 30px 35px;
        height: 235px;
    }
}

@media all and (max-width: 1280px) {
    .card .cardText {
        padding: 35px 15px 30px;
    }
}

@media all and (max-width: 1080px) {
    .card .cardText {
        padding: 35px 10px 30px;
    }
}

.card .cardText .cardTitle {
    height: 30px;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.5px;
    text-align: center;
    color: #00994e;
    border-bottom: 1px solid #00994e;
    width: 90px;
    margin: 0 auto 15px;
}

.card .cardText .cardSubTitle {
    color: #00994e;
    letter-spacing: 0.4px;
    font-size: 18px;
    height: 27px;
    overflow: hidden;
}

@media all and (max-width: 1920px) {
    .card .cardText .cardSubTitle {
        font-size: 18px;
    }
}

@media all and (max-width: 1280px) {
    .card .cardText .cardSubTitle {
        font-size: 17px;
    }
}

@media all and (max-width: 1080px) {
    .card .cardText .cardSubTitle {
        font-size: 16px;
    }
}

.card .cardText .cardContentText {
    max-height: 50px;
    overflow: hidden;
    height: 50px;
}

.card .cardText .cardButton {
    border-radius: 70px;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#51be77), to(#27ae58) );
    background-image: -webkit-linear-gradient(top, #51be77, #27ae58);
    background-image: -o-linear-gradient(top, #51be77, #27ae58);
    background-image: linear-gradient(to bottom, #51be77, #27ae58);
    width: 140px;
    height: 40px;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-align: center;
    margin: 10px auto 0px;
}

a.goOutlink {
    color: #ff6000;
    text-decoration: underline;
}

.nav.nav-pills .nav-item {
    margin: 0px;
}

.nav.nav-pills ~ .tab-content {
    padding: 0px;
}

.text_emphasize {
    color: #c75501;
}

.step-block-title {
    padding-top: 50px;
    font-size: 34px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.91;
    letter-spacing: normal;
    text-align: center;
}

@media all and (max-width: 960px) {
    .step-block-title {
        font-size: 27px;
    }

        .step-block-title span {
            font-size: 21px;
        }

        .step-block-title .text-black {
            font-size: 24px;
            display: block;
        }
}

.step-sub-title {
    font-size: 24px;
    padding-top: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.04px;
    color: #434343;
    text-align: center;
}

.step-1-work-tab {
    padding: 44px 0px;
    margin: 0 auto;
    max-width: 980px;
}

    .step-1-work-tab .nav {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

#step-1-work-tab.nav-tabs {
    border-bottom: 0px;
}

    #step-1-work-tab.nav-tabs .nav-item.current:before,
    #step-1-work-tab.nav-tabs .nav-item.current:after {
        display: none;
    }

    #step-1-work-tab.nav-tabs .nav-link {
        font-size: 24px;
        padding: 10px 40px;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.04px;
        color: #434343;
        background-color: #fff;
        border-radius: 2px;
        border: solid 1px #848f93;
    }

        #step-1-work-tab.nav-tabs .nav-link.active {
            background-color: #ff6000;
            color: #fff;
            border: 0px;
        }

@media all and (max-width: 960px) {
    #step-1-work-tab.nav-tabs .nav-link {
        font-size: 16px;
        padding: 10px 0px;
    }
}

.work-tab-title {
    color: #434343;
    font-size: 24px;
    font-weight: bold;
}

.work-tab-sub-title {
    font-size: 21px;
    line-height: normal;
}

.work-tab-ul {
    color: #ff6000;
}

    .work-tab-ul .bx {
        font-size: 35px;
    }

    .work-tab-ul li {
        padding: 20px 0px;
        border-bottom: solid 1px #d3d3d3;
    }

        .work-tab-ul li:last-child {
            border-bottom: 0px;
        }

.text-black {
    color: #434343;
}

@media all and (max-width: 991px) {
    .work-tab-main-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.step1-Block {
    background-color: #fef4e9;
    max-width: 100%;
}

.step2-Block {
    margin-top: 2px;
    background-color: #fdf8e2;
    max-width: 100%;
}

.step3-Block {
    margin-top: 2px;
    background-color: #eef9f3;
    max-width: 100%;
}

.step4-Block {
    margin-top: 2px;
    background-color: #f0f8e2;
    max-width: 100%;
}

.step5-Block {
    margin-top: 2px;
    background-color: #feefea;
    max-width: 100%;
}

.step6-Block {
    margin-top: 0px;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(39%, rgba(255, 229, 210, 0.63)), to(rgba(255, 244, 229, 0)) );
    background: -webkit-linear-gradient( top, rgba(255, 229, 210, 0.63) 39%, rgba(255, 244, 229, 0) );
    background: -o-linear-gradient( top, rgba(255, 229, 210, 0.63) 39%, rgba(255, 244, 229, 0) );
    background: linear-gradient( to bottom, rgba(255, 229, 210, 0.63) 39%, rgba(255, 244, 229, 0) );
    max-width: 100%;
    padding-top: 14px;
}

    .step6-Block .promote-content {
        width: auto;
    }

.promote-content {
    width: 460px;
}

@media all and (max-width: 960px) {
    .promote-content {
        width: auto;
        padding: 15px 0px 25px;
        text-align: center;
    }
}

.promote-ul {
    text-align: left;
}

.promote-content-2 .know-more-btn {
    border: solid 1px #cc9901;
    color: #cc9901;
}

    .promote-content-2 .know-more-btn:hover {
        border: solid 1px #fff;
        color: #fff;
        background-color: #cc9901;
    }

.promote-content-2 .promote-title2 {
    color: #cc9901;
}

.promote-content-2 .promote-ul-2 li:before {
    content: "";
    background-image: url(../images/icons/tick-1.png);
}

.promote-content-3 .know-more-btn {
    border: solid 1px #1ab6b7;
    color: #1ab6b7;
}

    .promote-content-3 .know-more-btn:hover {
        border: solid 1px #fff;
        color: #fff;
        background-color: #1ab6b7;
    }

.promote-content-3 .promote-title3 {
    color: #1ab6b7;
}

.promote-content-3 .promote-ul-3 li:before {
    content: "";
    background-image: url(../images/icons/tick-2.png);
}

.promote-content-4 .know-more-btn {
    border: solid 1px #32ae65;
    color: #32ae65;
}

    .promote-content-4 .know-more-btn:hover {
        border: solid 1px #fff;
        color: #fff;
        background-color: #32ae65;
    }

.promote-content-4 .promote-title4 {
    color: #32ae65;
}

.promote-content-4 .promote-ul-4 li:before {
    content: "";
    background-image: url(../images/icons/tick-3.png);
}

.promote-content-5 .know-more-btn {
    border: solid 1px #f16776;
    color: #f16776;
}

    .promote-content-5 .know-more-btn:hover {
        border: solid 1px #fff;
        color: #fff;
        background-color: #f16776;
    }

.promote-content-5 .promote-title5 {
    color: #f16776;
}

.promote-content-5 .promote-ul-5 li:before {
    content: "";
    background-image: url(../images/icons/tick-4.png);
}

.promote-content-6 .know-more-btn {
    border: solid 1px #ff6000;
    color: #ff6000;
    margin-top: 8px;
}

    .promote-content-6 .know-more-btn:hover {
        border: solid 1px #fff;
        color: #fff;
        background-color: #ff6000;
    }

.promote-content-6 .promote-title6 {
    color: #ff6000;
    font-size: 30px;
}

.promote-content-6 .promote-sub-title {
    font-size: 18px;
    color: #ff6000;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
}

.promote-title {
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

@media all and (max-width: 640px) {
    .promote-title {
        font-size: 21px;
    }
}

.promote-sub-title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6d6d6d;
    margin-top: 10px;
}

@media all and (max-width: 640px) {
    .promote-sub-title {
        font-size: 16px;
    }
}

.promote-ul li {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.78;
    letter-spacing: normal;
    color: #888888;
    padding-left: 40px;
    position: relative;
}

@media all and (max-width: 960px) {
    .promote-ul li {
        line-height: 2.16;
    }
}

.promote-ul li:before {
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: contain;
    left: 0px;
    top: 11px;
}

@media all and (max-width: 960px) {
    .promote-ul li:before {
        top: 4px;
    }
}

.know-more-btn {
    border-radius: 4px;
    background-color: #ffffff;
    padding: 15px 100px;
    margin-top: 30px;
    font-size: 18px;
    display: inline-block;
}

.bottom-banner {
    line-height: 0px;
    position: relative;
    z-index: 1;
}

    .bottom-banner img {
        max-width: 570px;
    }

@media all and (max-width: 960px) {
    .bottom-banner img {
        max-width: 100%;
    }
}

@media all and (max-width: 960px) {
    .bottom-banner {
        position: absolute;
        bottom: 0px;
    }
}

.bottom-banner-content {
    padding: 0px 112px;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media all and (max-width: 1280px) {
    .bottom-banner-content {
        padding: 0px 25px;
    }
}

.hidden-phone {
    display: block;
}

@media all and (max-width: 960px) {
    .hidden-phone {
        display: none !important;
    }
}

.hidden-pc {
    display: none !important;
}

@media all and (max-width: 960px) {
    .hidden-pc {
        display: block !important;
    }
}

@media all and (min-width: 1200px) {
    .qrcodeImg {
        height: 100%;
    }
}

@media all and (min-width: 1360px) {
    .cus-pl-25 {
        padding-left: 25px;
    }
}

.row {
    margin: 0px;
}

/* -------------------------------------------------
  (min-width: 1680px)
---------------------------------------------------*/
@media only screen and (min-width: 1680px) {
    .custom-container {
        max-width: 1650px;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

/* -------------------------------------------------
  (max-width: 1250px)
---------------------------------------------------*/
@media only screen and (max-width: 1250px) {
    .nav_style1.owl-theme .owl-nav .owl-next {
        right: -40px;
    }

    .nav_style1.owl-theme .owl-nav .owl-prev {
        left: -40px;
    }
}

/* -------------------------------------------------
  (min-width: 991px) and (max-width: 1199px)
---------------------------------------------------*/
@media only screen and (min-width: 991px) and (max-width: 1199px) {
    .nav_cat > ul > li > a, .nav_cat > ul > li > ul > li > a {
        font-size: 14px;
        padding: 5px 10px;
    }

    .countdown_style4 .countdown_box .countdown-wrap {
        padding: 5px;
    }

    .deal_wrap .countdown_time .cd_text {
        font-size: 12px;
    }
}

/* -------------------------------------------------
  (min-width: 767px) and (max-width: 1199px)
---------------------------------------------------*/
@media only screen and (min-width: 767px) and (max-width: 1199px) {
    .shopping_info .icon_box_style2 {
        text-align: center;
        display: block;
    }

        .shopping_info .icon_box_style2 .icon {
            float: none;
            margin: 0 auto 10px;
        }
}

/* -------------------------------------------------
  (min-width: 767px) and (max-width: 991px)
---------------------------------------------------*/
@media only screen and (min-width: 767px) and (max-width: 991px) {
    .fb_info {
        top: 5px;
        left: 5px;
    }

    .fb_info2 {
        left: 15px;
    }
}

/* -------------------------------------------------
  max-width: 1199px
---------------------------------------------------*/
@media only screen and (max-width: 1199px) {
    .h1, h1 {
        font-size: 34px;
    }

    .h2, h2 {
        font-size: 30px;
    }

    .h3, h3 {
        font-size: 26px;
    }

    .h4, h4 {
        font-size: 22px;
    }

    .h5, h5 {
        font-size: 18px;
    }

    .section {
        padding: 80px 0;
    }

        .section.small_pt, .footer_top.small_pt {
            padding-top: 40px;
        }

        .section.small_pb, .footer_top.small_pb {
            padding-bottom: 40px;
        }

        .section.pb_70, .pb_70 {
            padding-bottom: 50px;
        }

        .section.pb_85, .pb_85 {
            padding-bottom: 65px;
        }

        .section.pb_20, .pb_20, .footer_top.pb_20 {
            padding-bottom: 10px;
        }

    .large_divider {
        height: 80px;
    }

    .medium_divider {
        height: 40px;
    }

    .small_divider {
        height: 20px;
    }

    .shop_title {
        font-size: 32px;
    }

    .banner_half_content {
        padding: 100px 0 80px;
    }

    .banner_section:not(.full_screen),
    .banner_section:not(.full_screen) .carousel-item,
    .banner_section:not(.full_screen) .banner_content_wrap,
    .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
        height: 600px;
    }

    .banner_section.slide_medium,
    .banner_section.slide_medium .carousel-item,
    .banner_section.slide_medium .banner_content_wrap,
    .banner_section.slide_medium .banner_content_wrap .carousel-item,
    .banner_section.shop_el_slider,
    .banner_section.shop_el_slider .carousel-item,
    .banner_section.shop_el_slider .banner_content_wrap,
    .banner_section.shop_el_slider .banner_content_wrap .carousel-item {
        height: 400px;
    }

    .banner_content h2 {
        font-size: 52px;
    }

    .banner_content1 h2 {
        font-size: 64px;
    }

    .banner_content2 h2 {
        font-size: 60px;
    }

    .header_wrap.transparent_header + .breadcrumb_section {
        padding-top: 150px;
    }

    .header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
        padding-top: 200px;
    }

    .breadcrumb_section {
        padding: 100px 0;
    }

    .footer_top {
        padding: 80px 0 50px;
    }

    .blog_meta li {
        margin-right: 10px;
    }

    .blog_meta a {
        font-size: 14px;
    }

    .blog_title {
        line-height: 26px;
    }

    .newsletter_small {
        padding: 60px 0;
    }

    .pr_content {
        padding: 0 30px;
    }

    .widget_contact_form {
        margin-top: -160px;
    }

    .icon_box_style4 {
        padding: 30px;
    }

    .compare_box table {
        width: 1050px;
    }

    .shop_bn_content {
        padding: 30px 25px;
    }

        .shop_bn_content .btn {
            padding: 8px 25px;
        }

    .tab-content.shop_info_tab {
        margin-top: 30px;
    }

    .single_post .blog_title {
        font-size: 26px;
    }

    .icon_box_style1 {
        padding: 0 20px;
    }

    .product_search_form {
        max-width: 480px;
    }

    #navCatContent {
        padding: 0;
    }

        #navCatContent li a i {
            font-size: 20px;
            line-height: 28px;
        }

    .more_categories {
        padding: 10px 15px;
        margin-top: 0;
    }

    .nav_style1.owl-theme .owl-nav .owl-next {
        right: 0;
    }

    .nav_style1.owl-theme .owl-nav .owl-prev {
        left: 0px;
    }

    .icon_box.icon_box_style3 {
        padding: 15px;
    }

    .icon_box_style3 .icon {
        margin-right: 15px;
    }

        .icon_box_style3 .icon i {
            font-size: 32px;
        }

    .furniture_banner .single_bn_title1 {
        font-size: 70px;
    }

    .shop_container.list .pr_desc {
        min-height: 56px;
        max-height: 56px;
    }

    .add-to-cart .btn {
        padding: 10px 20px;
    }

    .shop_banner2 {
        height: 185px;
    }

    .el_banner2 .el_img img {
        max-width: 100px;
    }

    .el_banner1 .el_title h6 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .el_banner1 .el_title span {
        font-size: 20px;
    }

    .el_banner2 .el_title h6 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .el_banner2 .el_title span {
        font-size: 12px;
    }

    .deal_wrap .product_img {
        max-width: 200px;
    }

    .deal_content {
        padding: 20px 20px 20px 0;
    }

    #navCatContent ul li .dropdown-menu {
        min-width: 750px;
    }

    .mfp-ajax-holder .compare_box {
        width: 100%;
        padding: 30px 20px;
    }
}

/* -------------------------------------------------
  min-width: 992px
---------------------------------------------------*/
@media only screen and (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .navbar .navbar-nav li > .dropdown-menu,
    #navCatContent ul > li .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        margin-top: 20px;
        pointer-events: none;
    }

    .navbar .navbar-nav li:hover > .dropdown-menu,
    #navCatContent ul > li:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0px;
        pointer-events: auto;
    }

    .cart_dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0px !important;
    }

        .cart_dropdown:hover > .dropdown-menu.cart_box {
            -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
        }

    .navbar .navbar-nav li:hover > .dropdown-menu .mega-menu ul li .dropdown-menu {
        margin-top: 10px;
    }

    .navbar .navbar-nav .dropdown-menu .dropdown-menu {
        left: 100%;
        top: 0;
    }

    .navbar .navbar-nav .dropdown-menu.dropdown-reverse .dropdown-menu {
        left: auto;
        right: 100%;
        margin-left: 0;
    }

    .navbar .navbar-nav .dropdown-menu.dropdown-reverse li:hover > .dropdown-item::after {
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .dropdown-menu.dropdown-reverse {
        left: auto;
        right: 0;
    }

    .dd_dark_skin .navbar .navbar-nav .dropdown-item,
    .dd_dark_skin .navbar .navbar-nav .dropdown-header,
    .sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu li a,
    .sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-header,
    .dd_dark_skin .cart_list a, .dd_dark_skin .cart_quantity, .dd_dark_skin .cart_total,
    .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_list a, .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_quantity, .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_total {
        color: #333;
    }

    .dd_dark_skin .item_remove,
    .sticky_dd_dark_skin.header_wrap.nav-fixed .item_remove {
        color: #333 !important;
    }

    .dd_dark_skin .navbar-nav .dropdown-menu,
    .dd_dark_skin .navbar-nav .dropdown-menu .dropdown-menu,
    .dd_dark_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
    .sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu,
    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu,
    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu,
    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
        background-color: #fff;
        box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
    }

    .dd_dark_skin .mega-menu-col,
    .sticky_dd_dark_skin.nav-fixed .mega-menu-col,
    .sticky_dd_dark_skin.nav-fixed .navbar-nav .mega-menu-col,
    .dd_dark_skin .cart_list li,
    .sticky_dd_dark_skin.nav-fixed .cart_list li {
        border-color: #ddd;
    }

    .dd_light_skin .navbar .navbar-nav li > .dropdown-item,
    .dd_light_skin .navbar .navbar-nav .dropdown-header,
    .sticky_dd_light_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu li a,
    .sticky_dd_light_skin.header_wrap.nav-fixed .navbar-nav .dropdown-header,
    .dd_light_skin .cart_list a, .dd_light_skin .cart_quantity, .dd_light_skin .cart_total,
    .sticky_dd_light_skin.header_wrap.nav-fixed .cart_list a, .sticky_dd_light_skin.header_wrap.nav-fixed .cart_quantity, .sticky_dd_light_skin, .sticky_dd_light_skin.header_wrap.nav-fixed .cart_total {
        color: #fff;
    }

        .dd_light_skin .item_remove,
        .sticky_dd_light_skin.header_wrap.nav-fixed .item_remove {
            color: #fff !important;
        }

        .dd_light_skin .cart_list li,
        .sticky_dd_light_skin.nav-fixed .cart_list li {
            border-color: #3f3f3f;
        }

        .dd_light_skin .navbar-nav .dropdown-menu,
        .sticky_dd_light_skin.nav-fixed .navbar-nav .dropdown-menu {
            background-color: #252A2C;
            border-color: #252A2C;
        }

            .dd_light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
            .dd_light_skin .navbar-nav .dropdown-menu .dropdown-menu,
            .sticky_dd_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
                background-color: #303537;
            }

        .dd_light_skin .mega-menu-col,
        .sticky_dd_light_skin.nav-fixed .mega-menu-col,
        .sticky_dd_light_skin.nav-fixed .navbar-nav .mega-menu-col {
            border-right: 1px solid #3f3f3f;
        }

    .header_banner_title,
    .header_banner_text,
    .header_banner_content a,
    .header_banner_content .shop_subtitle,
    .header_banner_content .shop_title {
        opacity: 0;
        -moz-transform: translateY(25%);
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
        -webkit-transition: ease transform 200ms, ease opacity 200ms;
        transition: ease transform 200ms, ease opacity 200ms;
    }

    .header_banner_title,
    .header_banner_content .shop_subtitle {
        -webkit-transition-delay: 400ms;
        transition-delay: 400ms;
    }

    .header_banner_text,
    .header_banner_content .shop_title {
        -webkit-transition-delay: 500ms;
        transition-delay: 500ms;
    }

    .header_banner_content a {
        -webkit-transition-delay: 600ms;
        transition-delay: 600ms;
    }

        .header_banner_content a:hover {
            transition: all 0.5s ease-in-out;
        }

    .header_banner_content .banner_img img {
        -webkit-filter: blur(5px);
        filter: blur(5px);
        -webkit-transition-delay: 500ms;
        transition-delay: 500ms;
        transition: all 0.8s ease-in-out;
        position: relative;
        z-index: -1;
    }

    .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_title, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_text, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content a, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content .shop_title, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content .shop_subtitle {
        opacity: 1;
        -moz-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_content .banner_img img {
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    .banner_content_inner {
        padding: 30px;
    }

    .nav_cat ul li .dropdown-menu {
        min-width: 700px;
    }

    .pr_search_icon {
        display: none;
    }
}
/* -------------------------------------------------
  max-width: 991px
---------------------------------------------------*/
@media only screen and (max-width: 991px) {
    .md-height-300 {
        height: 300px !important;
    }

    .heading_s1, .heading_s4 {
        margin-bottom: 20px;
    }

    .header_wrap .navbar .navbar-nav.attr-nav {
        display: block;
        float: right;
    }

    .header_wrap .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 999;
    }

    .navbar .navbar-collapse .navbar-nav {
        max-height: 80vh;
        overflow-y: auto;
    }

    .header_wrap .navbar-collapse.mobile_side_menu {
        position: fixed;
        right: -280px;
        display: block;
        top: 0;
        bottom: 0;
        width: 270px;
        left: auto;
        height: auto !important;
        transition: all 0.3s ease-in-out;
    }

        .header_wrap .navbar-collapse.mobile_side_menu.show {
            right: 0;
        }

        .header_wrap .navbar-collapse.mobile_side_menu .navbar-nav {
            height: 100%;
            max-height: 100vh;
        }

    .navbar .navbar-nav > li > .nav-link,
    .nav-fixed .navbar .navbar-nav > li > .nav-link {
        padding: 10px 10px;
    }

    .navbar .navbar-nav.attr-nav li {
        float: left;
    }

        .navbar .navbar-nav.attr-nav li .nav-link {
            padding: 20px 10px;
        }

            .navbar .navbar-nav.attr-nav li .nav-link.search_trigger,
            .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger {
                padding: 16px 6px;
            }

    .cart_count, .wishlist_count {
        top: 0;
    }

    .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
        background-color: #fff;
        box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    }

    .light_skin.transparent_header .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]),
    .light_skin .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
        background-color: #252A2C;
    }

    .sticky_dark_skin.nav-fixed.header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]),
    .dark_skin.header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
        background-color: #fff;
        box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
        border: 1px solid #e6e6e6;
    }

    .navbar-nav .navbar-collapse .dropdown-menu,
    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu,
    .sticky_dark_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu,
    .light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
    .dark_skin:not([class*="bg_"]):not([class*="bg-"]) .navbar-nav .navbar-collapse .dropdown-menu,
    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu, .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        border: 0;
    }

    .dark_skin:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-collapse .navbar-nav {
        background-color: #252A2C;
        border-color: #252A2C;
    }

    .light_skin .mega-menu {
        padding: 0;
    }

    .hover_menu_style1 .navbar-collapse .navbar-nav > li > a,
    .hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
        padding: 10px;
        margin: 0;
    }

        .hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
            content: normal;
        }

    .header_banner,
    .header_banner_wrap {
        display: none;
    }

    .dropdown-menu .dropdown-toggler::after {
        right: 0px;
    }

    .menu_banners {
        display: none;
    }

    .search_wrap {
        max-width: 100%;
        margin: 0 30px;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar-nav > li > .dropdown-menu,
    .navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mega-menu-col {
        padding: 0px;
        border-right: 0 !important;
    }

    .dropdown-toggler::after {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .navbar .attr-nav li.nav-btn {
        margin-top: 8px;
    }

    .navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"], .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger [class*="linearicons-"] {
        margin-top: 5px;
        display: inline-block;
    }

    .navbar .navbar-nav .dropdown-item {
        padding: 8px 10px 8px 10px;
    }

    .navbar .navbar-nav .dropdown-header {
        padding: 10px;
    }

    .sidetoggle_icon::after {
        bottom: -8px;
    }

    .sidetoggle_icon::before {
        top: -6px;
    }

    .nav_cat.collapse:not(.show) {
        display: block;
    }

    .banner_section:not(.full_screen),
    .banner_section:not(.full_screen) .carousel-item,
    .banner_section:not(.full_screen) .banner_content_wrap,
    .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
        height: 600px;
    }

        .banner_section:not(.full_screen),
        .banner_section:not(.full_screen) .carousel-item,
        .banner_section:not(.full_screen) .banner_content_wrap,
        .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
            height: 500px;
        }

            .banner_section.full_screen.banner_half_content,
            .banner_section:not(.full_screen).banner_half_content,
            .banner_section:not(.full_screen).banner_half_content .banner_content_wrap {
                height: auto;
            }

    .banner_section.slide_medium,
    .banner_section.slide_medium .carousel-item,
    .banner_section.slide_medium .banner_content_wrap,
    .banner_section.slide_medium .banner_content_wrap .carousel-item {
        height: 350px;
    }

    .banner_content h2 {
        font-size: 44px;
    }

    .banner_content1 h2 {
        font-size: 54px;
    }

    .banner_content2 h2 {
        font-size: 50px;
    }

    .banner_center_content {
        margin-top: 0;
    }

    .full_screen, .full_screen .carousel-item {
        min-height: 35rem;
    }

    div.banner_large_pad {
        padding: 200px 0 100px;
    }

    .banner_content_border {
        padding: 30px;
    }

    .header_wrap.transparent_header + .breadcrumb_section {
        padding-top: 100px;
    }

    .breadcrumb_section {
        padding: 80px 0;
    }

    .highlight_text {
        font-size: 18px;
    }

    .grid_col4 > li {
        width: 33.33%;
    }

    .banner_shape {
        width: 100%;
    }

    .single_banner_info {
        padding: 15px;
        width: 55%;
    }

    .single_bn_title {
        font-size: 22px;
    }

    .price_tage h2 {
        font-size: 34px;
    }

    .single_bn_title1 {
        font-size: 18px;
    }

    .widget_contact_form {
        margin-top: 0;
    }

    .background_shape,
    .background_shape::before {
        width: 150px;
    }

    .page-title + span {
        font-size: 15px;
    }

    .padding_eight_all {
        padding: 6%;
    }

    .cs_title {
        line-height: 40px;
        margin-bottom: 15px;
    }

    .cs_logo {
        margin-bottom: 20px;
    }

    .cs_content .countdown_time, .cs_content .newsletter_form {
        margin-bottom: 20px;
    }

    .contact_info_style2 li i {
        margin-right: 6px;
        font-size: 20px;
    }

    .team_email,
    .contact_info_style2 i + * {
        font-size: 16px;
    }

    .social_style3 li a {
        font-size: 18px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }

    .order_review {
        padding: 20px;
    }

    .product-add-to-cart {
        white-space: nowrap;
    }

        .product-add-to-cart .btn {
            padding: 10px 24px;
        }

    .load_more_wrap {
        margin-top: 0px;
    }

    .header_btn {
        float: right;
        margin: 9px 0;
    }

    .instagram_icon i {
        font-size: 40px;
    }

    .contact_form {
        max-width: 400px;
    }

    #tabmenubar {
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 999;
        display: block;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        padding: 15px;
        opacity: 0;
        visibility: hidden;
        height: auto !important;
    }

        #tabmenubar.show {
            opacity: 1;
            visibility: visible;
            margin-top: 0;
        }

        #tabmenubar li a {
            text-align: left;
        }

    .tab-style2 .nav-tabs li.nav-item a {
        padding: 5px 0;
    }

    .icon_box_style1::before {
        content: normal;
    }

    .newsletter_form button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .banner_content_inner {
        padding: 30px;
    }

    .product_search_form {
        max-width: 100%;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -146px;
        z-index: 9;
        right: 0;
        width: 100%;
        padding: 15px 15px;
        background-color: #fff;
    }

        .product_search_form.show {
            display: block;
        }

    .heading_tab_header .navbar-toggler {
        margin: 0;
    }

    #navCatContent {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        display: block;
        max-width: 270px;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }

        #navCatContent.show {
            left: 0;
        }

        #navCatContent ul li .dropdown-menu {
            left: 0;
            top: auto;
            min-width: auto;
            position: relative;
            box-shadow: none;
        }

        #navCatContent .mega-menu {
            padding: 0;
        }

    .follow_box {
        max-width: 350px;
        padding: 20px;
    }

    .furniture_banner .single_bn_title1 {
        font-size: 64px;
    }

    .countdown_box .countdown {
        font-size: 34px;
    }

    .contact_map2 {
        height: 500px;
    }

    .product-thumbnail img {
        max-width: 80px;
    }

    .contact_support {
        margin: 18px 0;
    }

    .deal_wrap {
        display: block;
        padding: 20px;
    }

        .deal_wrap .product_img {
            margin: 0 auto;
        }

    .deal_content .product_info {
        text-align: center;
    }

    .deal_content {
        padding: 10px 0 0px;
    }

    .newsletter_text::before {
        font-size: 50px;
    }

    .newsletter_text {
        padding-left: 60px;
    }

    .subscribe_popup .modal-dialog {
        max-width: 700px;
    }

    .popup_content {
        padding: 30px;
    }

    .toggle_info {
        margin-bottom: 10px;
        padding: 15px;
    }

    .login_form .panel-body, .coupon_form .panel-body {
        margin-top: 0;
    }

    .login_form {
        margin-bottom: 10px;
    }
}
/* -------------------------------------------------
  min-width: 768px
---------------------------------------------------*/
@media only screen and (min-width: 768px) {
    .blog_thumbs .blog_img {
        float: left;
        width: 40%;
    }

    .blog_thumbs .blog_content {
        padding: 0 0 0 20px;
        overflow: hidden;
    }
}

/* -------------------------------------------------
  max-width: 767px
---------------------------------------------------*/
@media only screen and (max-width: 767px) {
    .h1, h1 {
        font-size: 32px;
    }

    .h2, h2 {
        font-size: 28px;
    }

    .h3, h3 {
        font-size: 24px;
    }

    .h4, h4 {
        font-size: 20px;
    }

    .section, .newsletter_small {
        padding: 50px 0;
    }

        .section.small_pt, .footer_top.small_pt {
            padding-top: 25px;
        }

        .section.small_pb, .footer_top.small_pb {
            padding-bottom: 25px;
        }

        .section.pb_70, .pb_70 {
            padding-bottom: 20px;
        }

        .section.pb_20, .pb_20, .footer_top.pb_20 {
            padding-bottom: 0px;
        }

    .large_divider {
        height: 50px;
    }

    .medium_divider {
        height: 25px;
    }

    .small_divider {
        height: 10px;
    }

    .section.pb_85, .pb_85 {
        padding-bottom: 35px;
    }

    .sm-height-300 {
        height: 300px !important;
    }

    .banner_content h2 {
        font-size: 36px;
    }

    .full_screen, .full_screen .carousel-item {
        min-height: 100%;
    }

    .banner_content_border {
        padding: 30px;
    }

    .breadcrumb_section.page-title-mini {
        padding: 50px 0;
    }

    .footer_top {
        padding: 50px 0 20px;
    }

    .grid_col4 > li,
    .grid_col3 > li {
        width: 50%;
    }

    .banner_half_content {
        padding: 100px 0 50px;
    }

    .banner_section:not(.full_screen),
    .banner_section:not(.full_screen) .carousel-item,
    .banner_section:not(.full_screen) .banner_content_wrap,
    .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
        height: 500px;
    }

        .banner_section:not(.full_screen),
        .banner_section:not(.full_screen) .carousel-item,
        .banner_section:not(.full_screen) .banner_content_wrap,
        .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
            height: 400px;
        }

    .banner_section.slide_medium,
    .banner_section.slide_medium .carousel-item,
    .banner_section.slide_medium .banner_content_wrap,
    .banner_section.slide_medium .banner_content_wrap .carousel-item {
        height: 350px;
    }

    .banner_content1 h2 {
        font-size: 44px;
    }

    .banner_content2 h2 {
        font-size: 40px;
    }

    .carousel-indicators.vertical_center_right {
        right: 25px;
    }

    .newsletter_box {
        padding: 40px;
    }

    .banner_half_content .background_shape {
        left: 55%;
        -moz-transform: skewX(20deg);
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
    }

    .single_banner_info {
        width: 50%;
    }

    .error_txt {
        font-size: 130px;
    }

    .team_single_content {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #eee;
        margin-top: 15px;
        padding-top: 15px;
    }

    #Additional-info table td:first-child {
        width: 35%;
    }

    .product_heaader_right {
        margin-top: 20px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
    }

    .shop_container.list .product_img {
        float: none;
        width: 100%;
        max-width: 100%;
    }

    .compare_box table {
        width: 900px;
    }

    .row_title {
        width: 200px;
    }

    .shop_cart_table td,
    .wishlist_table .table td {
        display: block;
        width: 100%;
        text-align: right;
    }

    .shop_cart_table thead,
    .wishlist_table thead {
        display: none;
    }

    .shop_cart_table td::before,
    .wishlist_table td::before {
        content: attr(data-title) " ";
        float: left;
        text-transform: capitalize;
        margin-right: 15px;
        font-weight: bold;
    }

    .shop_cart_table td.product-quantity::before {
        margin-top: 10px;
    }

    .shop_cart_table td.product-name,
    .wishlist_table td.product-name {
        text-align: right;
    }

    .shop_cart_table td.product-thumbnail, .shop_cart_table td.product-add-to-cart,
    .wishlist_table td.product-thumbnail, .wishlist_table td.product-add-to-cart {
        text-align: center;
    }

    .shop_cart_table .quantity {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .order_review {
        margin-top: 20px;
    }

    .payment_method {
        margin-bottom: 15px;
    }

    .post_nav span, .post_nav .nav_meta {
        display: none;
    }

    .blog_thumbs .blog_img {
        float: none;
        width: 100%;
    }

    .single_post .blog_title {
        font-size: 24px;
    }

    blockquote {
        font-size: 18px;
        line-height: 32px;
    }

        blockquote p {
            line-height: 32px;
        }

    .author_img img {
        max-width: 80px;
    }

    .comment_user img {
        max-width: 70px;
    }

    .nav-tabs li.nav-item a {
        padding: 5px 15px;
        font-size: 14px;
    }

    .header_with_topbar.transparent_header + .banner_section .banner_slide_content {
        margin-top: 70px;
    }

    footer .widget_title {
        margin-top: 0px;
    }

    .testimonial_wrp .testimonial_desc {
        margin-top: 10px;
    }

    .contact_form {
        max-width: 100%;
        margin-right: 15px;
        margin-left: 15px;
        margin-bottom: 30px;
        float: none;
    }

    .contact_box {
        padding: 0;
    }

        .contact_box .map {
            position: relative;
        }

            .contact_box .map iframe {
                height: 400px;
            }

    .tab-content {
        margin-top: 20px;
    }

    .trading_img {
        margin-top: 0;
    }

    .header_topbar_info {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .banner_content_inner {
        padding: 0px;
    }

    .shopping_info .icon_box {
        padding-top: 15px;
        margin-bottom: 15px;
    }

    .bottom_footer {
        padding: 15px 0;
    }

    .icon_box_style2 .icon {
        max-width: 68px;
        height: 68px;
        line-height: 68px;
        -ms-flex: 0 0 78px;
        flex: 0 0 68px;
    }

        .icon_box_style2 .icon i {
            font-size: 36px;
            line-height: 68px;
        }

    .nav_style3.owl-theme .owl-nav [class*="owl-"], .nav_style4.owl-theme .owl-nav [class*="owl-"] {
        top: -70px;
    }

    .cat_overlap {
        margin-top: -40px;
    }

    .furniture_banner .single_bn_title1 {
        font-size: 52px;
    }

    .furniture_banner .countdown_time .countdown_box {
        padding: 0 5px;
    }

    .furniture_banner .countdown_style3 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .testimonial_wrap {
        padding: 0px;
    }

    .testimonial_style1 .testimonial_desc {
        margin-bottom: 20px;
    }

    .page-title {
        margin-bottom: 15px;
    }

    .blog_thumbs .blog_content {
        padding: 15px 0 0 0;
    }

    .shop_container.list .product_info {
        padding: 15px;
    }

    .mfp-ajax-holder .mfp-content .ajax_quick_view {
        max-width: 600px;
    }

    .deal_wrap {
        padding: 15px;
    }

    .countdown_style4 .countdown_box .countdown-wrap {
        padding: 5px;
    }

    .deal_wrap .countdown_time .cd_text {
        font-size: 12px;
    }

    .newsletter_text {
        margin-bottom: 15px;
    }

    .subscribe_popup .modal-dialog {
        max-width: 95%;
    }

    .popup-text p {
        font-size: 14px;
        line-height: normal;
        margin-bottom: 15px;
    }

    .popup-text .heading_s1 {
        margin-bottom: 15px;
    }

    .popup_content {
        padding: 25px;
    }
}

/* -------------------------------------------------
  max-width: 575px
---------------------------------------------------*/
@media only screen and (max-width: 575px) {
    .header_wrap .navbar-collapse {
        left: -15px;
        right: -15px;
    }

    .btn {
        padding: 10px 28px;
        font-size: 14px;
    }

        .btn + .btn {
            margin-left: 5px;
        }

    .btn-group-lg > .btn, .btn-lg {
        padding: 14px 38px;
        font-size: 18px;
    }

    .btn.btn-lg i {
        font-size: 20px;
    }

    .btn-group-sm > .btn, .btn-sm {
        padding: 6px 18px;
    }

    .btn-xs {
        padding: 2px 14px;
        font-size: 12px;
    }

    .section.pb_70, .pb_70 {
        padding-bottom: 15px;
    }

    .section, .newsletter_small {
        padding: 30px 0;
    }

        .section.small_pt, .footer_top.small_pt {
            padding-top: 15px;
        }

        .section.small_pb, .footer_top.small_pb {
            padding-bottom: 15px;
        }

    .large_divider {
        height: 30px;
    }

    .medium_divider {
        height: 15px;
    }

    .small_divider {
        height: 5px;
    }

    .section.pb_85, .pb_85 {
        padding-bottom: 15px;
    }

    .breadcrumb_section {
        padding: 50px 0;
    }

        .breadcrumb_section.page-title-mini {
            padding: 30px 0;
        }

    .footer_top {
        padding: 30px 0 15px;
    }

    .navbar .attr-nav li.nav-btn {
        margin-top: 10px;
    }

    .heading_s1 {
        margin-bottom: 15px;
    }

    .banner_section.slide_medium, .banner_section.slide_medium .carousel-item, .banner_section.slide_medium .banner_content_wrap, .banner_section.slide_medium .banner_content_wrap .carousel-item {
        height: 250px;
    }

    .banner_section:not(.full_screen), .banner_section:not(.full_screen) .carousel-item, .banner_section:not(.full_screen) .banner_content_wrap, .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
        height: 350px;
    }

    .banner_content h2 {
        font-size: 28px;
    }

    .banner_content1 h2 {
        font-size: 34px;
    }

    .banner_content2 h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .banner_content2 p {
        margin-bottom: 15px;
    }

    .banner_content3 h2 {
        font-size: 30px;
    }

    .banner_half_content {
        padding: 100px 0 30px;
    }

    div.banner_large_pad {
        padding: 200px 0 80px;
    }

    .leads {
        margin-bottom: 20px;
    }

    .grid_filter {
        margin-bottom: 25px;
    }

    .gutter_medium > li .portfolio_item {
        margin-bottom: 15px;
    }

    .icon_box,
    .blog_post,
    .pricing_box,
    .team_box,
    .heading_tab_header,
    .sale_banner,
    .contact_style3,
    .product_list .product,
    .product_list .product_wrap {
        margin-bottom: 15px;
    }

    .pr_title {
        padding: 20px 15px 20px;
    }

    .pr_footer {
        padding: 15px 20px 20px;
    }

    footer .widget_title {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    footer .widget {
        margin-bottom: 20px;
    }

    .widget_contact_form {
        padding: 20px;
        margin-top: 10px;
    }

    .newsletter_box {
        padding: 30px;
    }

    .map iframe {
        height: 300px;
    }

    footer .background_shape, footer .background_shape::before {
        width: 120px;
    }

    footer .background_shape {
        -moz-transform: skewX(20deg);
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
    }

    .error_txt {
        font-size: 100px;
        margin-bottom: 10px;
    }

    .sidebar .widget + .widget {
        margin-top: 20px;
        padding-top: 20px;
    }

    .widget_title {
        margin-bottom: 20px;
    }

    .tab-content.shop_info_tab {
        margin-top: 20px;
    }

    .blog_thumbs .blog_post {
        padding-bottom: 15px;
    }

    .blockquote_style1 {
        margin: 20px 0;
    }

    blockquote {
        font-size: 16px;
        line-height: 28px;
    }

        blockquote p {
            line-height: 28px;
        }

    .blockquote_style4 {
        padding: 15px;
        font-size: 16px;
    }

    .blog_post_footer {
        padding-bottom: 20px;
        padding-top: 5px;
    }

    .post_author {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .comment-area .comment_list {
        margin-bottom: 30px;
    }

    .content_title * {
        margin-bottom: 20px;
    }

    .banner_content_border {
        padding: 20px;
    }

    .testimonial_wrap {
        padding: 0;
    }

        .testimonial_wrap .testimonial_box::before {
            font-size: 40px;
            line-height: normal;
        }

    .instagram_icon i {
        font-size: 30px;
    }

    .testimonial_wrp {
        padding: 20px;
    }

    .contact_form {
        padding: 20px;
    }

    .single_banner {
        margin-bottom: 15px;
    }

    .categories_btn {
        width: auto;
    }

        .categories_btn span {
            display: none;
        }

        .categories_btn i {
            margin-right: 0;
        }

    .indicators_style1 {
        margin-bottom: 5px;
    }

        .indicators_style1 li {
            width: 7px;
            height: 7px;
            margin: 6px;
        }

    .indicators_style2 li {
        width: 6px;
        height: 6px;
    }

    .nav_style3.owl-theme .owl-nav [class*="owl-"] {
        top: -66px;
    }

    .follow_box {
        max-width: 310px;
        padding: 15px;
    }

        .follow_box i {
            font-size: 70px;
        }

    .cat_overlap {
        padding: 20px;
    }

    .furniture_banner .single_bn_title1 {
        font-size: 44px;
    }

    .form-control,
    .form-control:focus {
        height: 44px;
    }

    .product_header {
        display: block;
    }

    .product_header_right {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .newsletter_form2 input, .newsletter_form2 input:focus {
        height: 52px;
    }

    .subscribe_popup .modal-dialog {
        max-width: 100%;
    }
}

/* -------------------------------------------------
  max-width: 480px
---------------------------------------------------*/
@media only screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    p {
        line-height: 24px;
    }

    .heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
        line-height: 30px;
    }

    .h1, h1 {
        font-size: 24px;
    }

    .h2, h2 {
        font-size: 22px;
    }

    .h3, h3 {
        font-size: 20px;
    }

    .h4, h4 {
        font-size: 18px;
    }

    .h5, h5 {
        font-size: 16px;
    }

    .h6, h6 {
        font-size: 14px;
    }

    .sidebar_menu {
        padding: 30px 20px 20px;
        width: 320px;
        right: -320px;
    }

    .sidebar_left .sidebar_menu,
    .sidebar_left_push .sidebar_menu {
        left: -320px;
    }

    .sidebar_left_push.sidetoggle_active {
        left: 320px;
    }

        .sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
            left: 320px;
            right: -320px;
        }

    .sidebar_right_push.sidetoggle_active {
        right: 320px;
    }

    .navbar .attr-nav li .nav-link i[class*="linearicons-"],
    .navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"], .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger [class*="linearicons-"] {
        font-size: 18px;
    }

    .banner_content1 h2 {
        font-size: 30px;
    }

    .banner_content p {
        margin-bottom: 25px;
    }

    .banner_content2 h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .carousel-control-next, .carousel-control-prev {
        font-size: 16px;
        height: 38px;
        width: 38px;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0px;
    }

    .carousel_style1 .carousel-control-next,
    .carousel_style2 .carousel-control-next {
        right: 10px;
    }

    .carousel_style1 .carousel-control-prev,
    .carousel_style2 .carousel-control-prev {
        left: 10px;
    }

    .heading_s1
    footer .widget_title,
    .leads {
        margin-bottom: 15px;
    }

    .heading_icon {
        margin-bottom: -10px;
    }

    .highlight_text {
        font-size: 16px;
    }

    .grid_col2 > li,
    .grid_col4 > li,
    .grid_col3 > li {
        width: 100%;
    }

    .grid_filter li a {
        padding: 5px 10px;
    }

    .grid_filter.filter_style1 li a {
        padding: 5px 15px;
    }

    .product {
        margin-bottom: 15px;
    }

    .blog_title {
        margin-bottom: 10px;
    }

    .ripple {
        margin-right: 20px;
        margin-left: -10px;
    }

        .ripple::before, .ripple::after {
            margin: -15px;
        }

    .newsletter_box {
        padding: 20px;
    }

    .newsletter_form input, .newsletter_form input:focus {
        padding: 10px 140px 10px 20px;
    }

        .newsletter_form input.form-control-sm {
            padding: 10px 130px 10px 18px;
        }

    .newsletter_wrap {
        margin: 15px 0;
    }

        .newsletter_wrap::after {
            content: normal;
        }

    .profile_info > li {
        margin-bottom: 15px;
    }

    .count_pr {
        font-size: 14px;
    }

    .contact_icon {
        margin-right: 15px;
    }

    .contact_style3 {
        padding: 30px 20px;
    }

        .contact_style3 .contact_icon {
            height: 70px;
            width: 70px;
        }

            .contact_style3 .contact_icon i {
                line-height: 68px;
            }

    .contact_icon i {
        font-size: 30px;
    }

    .divider i {
        font-size: 26px;
        padding: 0 25px;
    }

    .page-title-mini .page-title h1 {
        font-size: 24px;
    }

    .countdown_box .countdown {
        font-size: 30px;
    }

    .cart_extra {
        display: block;
    }

    .pr_detail .rating_wrap {
        float: none;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .pr_detail .product_price {
        float: none;
    }

    .mfp-ajax-holder .ajax_quick_view {
        padding: 30px 20px;
    }

    .ajax_quick_view .social_icons li a {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .ajax_quick_view .product_share > span {
        margin-right: 10px;
    }

    .shop_container.list .product .rating_wrap, .shop_container.list .product_price {
        float: none;
    }

    .shop_container.list .product .rating_wrap {
        margin-bottom: 5px;
    }

    .shop_container.list .product .product_title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #Additional-info table td:first-child {
        width: auto;
    }

    .comment_img img {
        max-width: 50px;
    }

    .comment_block {
        padding-left: 65px;
    }

    .compare_box {
        width: 95%;
        padding: 30px 10px 10px;
    }

    .order_complete i {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .empty_icon {
        height: 70px;
        width: 70px;
        line-height: 70px;
        margin-bottom: 15px;
    }

        .empty_icon img {
            max-width: 35px;
        }

    .single_post .blog_title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .post_author .author_img {
        float: none;
        padding-right: 0;
        margin: 0 auto;
        display: table;
    }

    .author_info {
        text-align: center;
        margin-top: 15px;
    }

    .comment_user img {
        max-width: 60px;
    }

    .comment_content {
        padding-left: 15px;
    }

    .children {
        margin-left: 20px;
    }

    .process_step_content {
        margin-top: 20px;
    }

    .pr_list li {
        padding: 10px 0;
    }

    .pr_icon {
        width: 80px;
        height: 80px;
    }

        .pr_icon i {
            font-size: 40px;
            line-height: 80px;
        }

    .price_tage {
        padding-top: 5px;
    }

    .contact_box .map iframe {
        height: 300px;
    }

    .single_bn_title {
        font-size: 20px;
    }

    .single_banner_info {
        width: 55%;
    }

    .product_search_form select {
        width: 120px;
        padding: 8px 25px 8px 5px;
        overflow: hidden;
    }

    .search_btn {
        padding: 0px 10px;
        font-size: 18px;
    }

    .deal_timer::before {
        font-size: 14px;
    }

    .deal_timer {
        padding-left: 8px;
    }

        .deal_timer .countdown_style1 .countdown_box::before {
            font-size: 18px;
        }

        .deal_timer .countdown_box .countdown {
            font-size: 18px;
        }

    .follow_box {
        max-width: 250px;
    }

        .follow_box i {
            font-size: 60px;
        }

    .bg_strip {
        font-size: 14px;
        height: 34px;
    }

        .bg_strip::before,
        .bg_strip::after {
            border-width: 17px;
        }

    .categories_box a {
        padding: 25px 15px;
    }

    .furniture_banner .single_bn_title1 {
        font-size: 34px;
    }

    .countdown_style3 .cd_text {
        font-size: 12px;
    }

    .countdown_style3 .countdown-wrap {
        padding: 10px;
    }

    .shop_container.list .pr_desc {
        min-height: 50px;
        max-height: 50px;
    }

    .shop_container.list .pr_action_btn li.add-to-cart a {
        padding: 12px 20px;
    }

    .tab-style3 .nav-tabs {
        display: block;
    }

    .shop_container .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .mfp-ajax-holder .mfp-content .ajax_quick_view {
        padding: 30px 15px 15px;
    }

    .cart_trigger .amount {
        display: none;
    }

    .popup_content {
        padding: 40px 20px;
    }

    .popup-text .heading_s1 {
        margin-bottom: 10px;
    }

        .popup-text .heading_s1 * {
            line-height: normal;
        }

    .login_form .panel-body, .coupon_form .panel-body {
        padding: 15px;
    }
}

/* -------------------------------------------------
  max-width: 380px
---------------------------------------------------*/
@media only screen and (max-width: 380px) {
    .btn {
        padding: 8px 24px;
    }

    .btn-group-lg > .btn, .btn-lg {
        padding: 12px 34px;
        font-size: 16px;
    }

    .btn.btn-lg i {
        font-size: 18px;
    }

    .btn-group-sm > .btn, .btn-sm {
        padding: 4px 16px;
    }

    .btn-xs {
        padding: 2px 14px;
        font-size: 12px;
    }

    .sidebar_menu {
        padding: 30px 15px 15px;
        width: 290px;
        right: -290px;
    }

    .sidebar_left .sidebar_menu,
    .sidebar_left_push .sidebar_menu {
        left: -290px;
    }

    .sidebar_left_push.sidetoggle_active {
        left: 290px;
    }

        .sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
            left: 290px;
            right: -290px;
        }

    .sidebar_right_push.sidetoggle_active {
        right: 290px;
    }

    .navbar-brand img {
        max-width: 140px;
    }

    .fb_style1::before {
        width: 220px;
    }

    .banner_content h2 {
        margin-bottom: 15px;
    }

    .banner_content p {
        margin-bottom: 20px;
    }

    .newsletter_form input, .newsletter_form input:focus {
        height: 44px;
    }

    .newsletter_form button {
        padding: 10px 15px;
        font-size: 14px;
    }

    .first_img,
    .second_img {
        max-width: 230px;
    }

    .ripple {
        line-height: 32px;
        height: 32px;
        width: 32px;
    }

        .ripple i {
            font-size: 14px;
        }

    .header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
        padding-top: 220px;
    }

    .form-control, .form-control:focus {
        height: 40px;
    }

    .form-control {
        font-size: 14px;
    }

    .input_icon, .rounded_input .input_icon {
        top: 10px;
    }

    .custom-file-label, .custom-file, .custom-file-input {
        height: 40px;
        line-height: 28px;
    }

        .custom-file-label::after {
            height: 38px;
            line-height: 30px;
        }

    .error_txt {
        font-size: 80px;
    }

    .btn-login li a {
        padding: 8px 16px;
    }

    .login_footer a {
        font-size: 13px;
    }

    .countdown_box .countdown {
        font-size: 26px;
    }

    .cs_title {
        line-height: 28px;
        font-size: 16px;
    }

    .shop_container.list .list_product_action_box .pr_action_btn li.add-to-cart a {
        padding: 10px 17px;
        font-size: 14px;
    }

    .shop_container.list .list_product_action_box .pr_action_btn li a {
        width: 27px;
        height: 27px;
    }

    .shop_container.list .pr_action_btn li a i {
        line-height: 27px;
        font-size: 16px;
    }

    .order_complete i {
        font-size: 50px;
    }

    .comment_user img {
        max-width: 50px;
    }

    .heading_s2 .sub_heading {
        font-size: 30px;
        line-height: 30px;
    }

    .ddcommon .ddTitleText {
        padding: 5px 5px 5px 5px;
    }

    .contact_detail > li, .header_list > li {
        padding: 2px 10px 2px 0;
    }

    .navbar-nav .dropdown-menu.cart_box.show {
        right: -15px;
        width: 310px;
    }

        .navbar-nav .dropdown-menu.cart_box.show.cart_right {
            right: -10px;
        }

    .post_content {
        margin-top: 0;
    }

    .contact_phone i {
        font-size: 20px;
        margin-right: 5px;
    }

    .categories_btn {
        padding: 20px 10px;
    }

    .fb_info {
        padding: 0px;
    }

    .fb_info2 {
        left: 0;
        width: 50%;
    }

    .newsletter_form .btn-send {
        font-size: 18px;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .product_search_form.rounded_input input {
        padding: 10px 15px;
    }

    .contact_support {
        margin: 20px 0;
    }

    .newsletter_form2 input, .newsletter_form2 input:focus {
        height: 48px;
    }
}

/*=========================================================
Author       : Bestwebcreator.
Template Name: Shopwise - eCommerce Bootstrap 4 HTML Template
Version      : 1.0
==============================================================*/

/*=============================================================
    CSS INDEX
    =============================
    01.GENERAL STYLE (body, link color, section-title, buttons, overlay, section-padding etc...)
    02.START HEADER STYLE
	03.START BANNER,SLIDER STYLE
	04.START SHOP BANNER STYLE
	05.START CATEGORIES STYLE
	06.START ICON BOX STYLE
	07.START PORTFOLIO STYLE
	08.START TESTIMONIAL STYLE
	09.START BLOG STYLE
	10.START NEWLETTER STYLE
	12.START MAP STYLE
	13.START TEAM STYLE
	14.START CLIENT LOGO STYLE
	15.START BREADCRUMB STYLE
	16.START CONTACT STYLE
	17.START DIVIDER STYLE
	18.START ACCORDION STYLE
	19.START 404 ERROR STYLE
	20.START LOGIN REGISTER STYLE
	21.START COMMING SOON STYLE
	22.START DEAL OF THE DAY STYLE
	23.START SHOP DESIGN
	24.START ELEMENT DESIGN
		
*=============================================================*/

/*===================================*
  01.GENERAL STYLE
*===================================*/
body {
    background: #ffffff none repeat scroll 0 0;
    color: #687188;
    font-family: 'Microsoft Jhenghei', sans-serif;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: #292b2c;
    font-family: 'Microsoft Jhenghei', 'Roboto';
}

p {
    color: #687188;
    line-height: 28px;
    word-break: break-all;
}

a {
    color: #292b2c;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all .3s ease-in-out;
}

    a:hover {
        color: #ff6000;
        text-decoration: none;
    }

    a:focus {
        outline: none;
    }

img {
    max-width: 100%;
}

button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul, li, ol {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

label {
    color: #6c757d;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

iframe {
    border: 0;
    display: block;
}

video {
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
}

    .section.small_pt,
    .footer_top.small_pt {
        padding-top: 0px;
    }

    .section.small_pb,
    .footer_top.small_pb {
        padding-bottom: 50px;
    }

    .section.pb_20, .pb_20,
    .footer_top.pb_20 {
        padding-bottom: 20px;
    }

    .section.pb_70, .pb_70,
    .footer_top.pb_70 {
        padding-bottom: 70px;
    }

    .section.pb_85, .pb_85,
    .footer_top.pb_85 {
        padding-bottom: 85px;
    }

    .section.pt_10 {
        padding-top: 10px;
    }

@media all and (max-width:768px) {
    .section.pt_10 {
        padding-top: 10px;
    }
}

.section.pb_5 {
    padding-bottom: 5px;
}

div.banner_large_pad {
    padding: 200px 0;
}

.small_padding {
    padding: 30px;
}

.medium_padding {
    padding: 50px;
}

.large_padding {
    padding: 100px;
}

.small_divider {
    height: 30px;
}

.medium_divider {
    height: 50px;
}

.large_divider {
    height: 100px;
}

.padding_eight_all {
    padding: 8%;
}

.padding_eight_lr {
    padding: 0 8%;
}

.padding_eight_tb {
    padding: 8% 0;
}

.list_none li {
    list-style: none;
}

.order_list,
.disc_list {
    padding-left: 15px;
}

.btn:focus, .btn:hover, .btn.active {
    box-shadow: none;
    outline: medium none;
}

button:focus {
    outline: none;
}

.border-2 {
    border-width: 2px !important;
}

.btn {
    border-width: 1px;
    cursor: pointer;
    line-height: normal;
    padding: 12px 35px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

    .btn.active:focus, .btn:active:focus {
        box-shadow: none !important;
    }

.btn-fill-out {
    background-color: transparent;
    border: 1px solid #ff6000;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-fill-out::before,
    .btn-fill-out::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #ff6000;
        z-index: -1;
        transition: all 0.3s ease-in-out;
        width: 51%;
    }

    .btn-fill-out::after {
        right: 0;
        left: auto;
    }

    .btn-fill-out:hover:before,
    .btn-fill-out:hover:after {
        width: 0;
    }

    .btn-fill-out:hover {
        color: #ff6000 !important;
    }

.btn-fill-line {
    background-color: transparent;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    color: #fff !important;
    transition: all 0.8s ease 0s;
    z-index: 1;
}

    .btn-fill-line:before, .btn-fill-line:after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #333;
        z-index: -1;
        transition: all 0.3s ease-in-out;
        width: 50%;
    }

    .btn-fill-line::after {
        right: 0;
        left: auto;
    }

    .btn-fill-line:hover:before,
    .btn-fill-line:hover:after {
        width: 0;
    }

    .btn-fill-line:hover {
        color: #333 !important;
    }

.btn-border-fill {
    border: 1px solid #ff6000;
    color: #ff6000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-border-fill::before,
    .btn-border-fill::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #ff6000;
        z-index: -1;
        transition: all 0.3s ease-in-out;
        width: 0;
    }

    .btn-border-fill::after {
        right: 0;
        left: auto;
    }

    .btn-border-fill:hover:before,
    .btn-border-fill:hover:after {
        width: 50%;
    }

    .btn-border-fill:hover {
        color: #fff !important;
    }

.btn-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #292b2c !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-white::before,
    .btn-white::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #fff;
        z-index: -1;
        transition: all 0.5s ease-in-out;
        width: 50%;
    }

    .btn-white::after {
        right: 0;
        left: auto;
    }

    .btn-white:hover:before,
    .btn-white:hover:after {
        width: 0;
    }

    .btn-white:hover {
        color: #fff !important;
    }

.btn-fill-out-dark {
    background-color: transparent;
    border: 1px solid #333;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-fill-out-dark:hover {
        color: #333 !important;
    }

    .btn-fill-out-dark::before {
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        z-index: -1;
        content: '';
        background-color: #333;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }

.btn-line-fill {
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    color: #333 !important;
    transition: all 0.8s ease 0s;
    z-index: 1;
}

    .btn-line-fill:hover {
        color: #fff !important;
    }

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 450px;
        height: 450px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 450px;
        height: 450px;
    }
}

.btn-line-fill:before, .btn-line-fill:after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    z-index: -1;
}

.btn-line-fill:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-line-fill:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.btn-line-fill:hover:before {
    -webkit-animation: criss-cross-left 0.7s both;
    animation: criss-cross-left 0.7s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.btn-line-fill:hover:after {
    -webkit-animation: criss-cross-right 0.7s both;
    animation: criss-cross-right 0.7s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.btn-line-white {
    border: 1px solid #fff;
    color: #fff !important;
}

    .btn-line-white:hover {
        color: #333 !important;
    }

.btn-line-fill.btn-line-white:before, .btn-line-fill.btn-line-white:after {
    background-color: #fff;
}

.btn-tran-light {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

    .btn-tran-light:hover {
        background-color: #fff;
    }

.btn-radius {
    border-radius: 40px;
}

.btn + .btn {
    margin-left: 10px;
}

.btn i {
    font-size: 25px;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}

.btn span {
    vertical-align: middle;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 8px 25px;
}

.btn-group-lg > .btn, .btn-lg {
    padding: 16px 45px;
}

.btn-xs {
    padding: 4px 20px;
    font-size: 12px;
}

.btn-md {
    padding: 12px 35px;
    font-size: 16px;
}

.btn.btn-xs i {
    font-size: 10px;
}

.btn.btn-sm i {
    font-size: 12px;
}

.btn.btn-lg i {
    font-size: 22px;
}

.btn-ripple {
    padding-right: 0 !important;
    border: 0;
}

.btn-link {
    position: relative;
    z-index: 2;
    text-decoration: none;
}

    .btn-link:hover {
        text-decoration: none;
    }

    .btn-link::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0px;
        height: 1px;
        background-color: #ff6000;
        z-index: -1;
    }

.text_white * {
    color: #fff;
}

.text_dark * {
    color: #333;
}

.text_default {
    color: #ff6000 !important;
}

.bg_default {
    background-color: #ff6000 !important;
}

.bg_gray {
    background-color: #f7f8fb !important;
}

.bg_light_blue {
    background-color: #EBF5FF !important;
}

.bg_light_blue2 {
    background-color: #F4F9FC !important;
}

.bg_blue {
    background-color: #4382FF !important;
}

.bg_linen {
    background-color: #F9F5F0 !important;
}

.bg_redon {
    background-color: #FFF1F1 !important;
}

.bg_dark {
    background-color: #1D2224 !important;
}

.bg_dark2 {
    background-color: #131d24 !important;
}

.bg_dark3 {
    background-color: #233645 !important;
}

.bg_dark4 {
    background-color: #1B1E20 !important;
}

.bg_apricot {
    background-color: #fde0ca !important;
}

.radius_all_5,
.radius_all_5:before,
.radius_all_5:after {
    border-radius: 5px;
}

.radius_all_10,
.radius_all_10:before,
.radius_all_10:after {
    border-radius: 10px;
}

.radius_lb_10,
.radius_lb_10:after,
.radius_lb_10:before {
    border-radius: 10px 0 0 10px;
}

.radius_rb_10,
.radius_rb_10:before,
.radius_rb_10:after {
    border-radius: 0 10px 10px 0;
}

.radius_lbrb_10,
.radius_lbrb_10:before,
.radius_lbrb_10:after {
    border-radius: 0 0 10px 10px;
}

.radius_ltrt_10,
.radius_ltrt_10:before,
.radius_ltrt_10:after {
    border-radius: 10px 10px 0 0;
}

.scrollup {
    bottom: 20px;
    position: fixed;
    cursor: pointer;
}

@media all and (max-width:960px) {
    .scrollup {
        bottom: 80px;
    }
}

.background_bg {
    background-position: center center;
    background-size: cover;
}

.bg_size_auto {
    background-size: auto !important;
}

.bg_size_contain {
    background-size: contain !important;
}

.bg_norepeat {
    background-repeat: no-repeat !important;
}

.position_top_center {
    background-position: top center !important;
}

.position_center_bottom {
    background-position: center bottom !important;
}

.position_right_center {
    background-position: right center !important;
}

.position_right_bottom {
    background-position: right bottom !important;
}

.fixed_bg {
    background-attachment: fixed !important;
}

[class*=overlay_bg_] {
    position: relative;
}

    [class*=overlay_bg_]::before {
        background-color: #000;
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 0;
    }

[class*=overlay_bg_default_]::before {
    background-color: #ff6000;
}

[class*=overlay_bg_blue_]::before {
    background-color: #031B4E;
}

[class*=overlay_bg_white_]::before {
    background-color: #fff;
}

.overlay_bg_90::before,
.overlay_bg_default_90::before,
.overlay_bg_blue_90::before,
.overlay_bg_white_90::before {
    opacity: 0.9;
}

.overlay_bg_80::before,
.overlay_bg_default_80::before,
.overlay_bg_blue_80::before,
.overlay_bg_white_80::before {
    opacity: 0.8;
}

.overlay_bg_70::before,
.overlay_bg_default_70::before,
.overlay_bg_blue_70::before,
.overlay_bg_white_70::before {
    opacity: 0.7;
}

.overlay_bg_60::before,
.overlay_bg_default_60::before,
.overlay_bg_blue_60::before,
.overlay_bg_white_60::before {
    opacity: 0.6;
}

.overlay_bg_50::before,
.overlay_bg_default_50::before,
.overlay_bg_blue_50::before,
.overlay_bg_white_50::before {
    opacity: 0.5;
}

.overlay_bg_40::before,
.overlay_bg_default_40::before,
.overlay_bg_blue_40::before,
.overlay_bg_white_40::before {
    opacity: 0.4;
}

.overlay_bg_30::before,
.overlay_bg_default_30::before,
.overlay_bg_blue_30::before,
.overlay_bg_white_30::before {
    opacity: 0.3;
}

.overlay_bg_20::before,
.overlay_bg_default_20::before,
.overlay_bg_blue_20::before,
.overlay_bg_white_20::before {
    opacity: 0.2;
}

.overlay_bg_10::before,
.overlay_bg_default_10::before,
.overlay_bg_blue_10::before,
.overlay_bg_white_10::before {
    opacity: 0.1;
}

.ripple {
    background-color: #ff6000;
    border-radius: 100%;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-right: 25px;
    line-height: 50px;
    font-size: 22px !important;
    vertical-align: middle;
    margin-left: -15px;
    height: 50px;
    width: 50px;
    text-align: center;
}

    .ripple i {
        margin-right: 0;
        margin-left: 3px;
        font-size: 22px;
    }

    .ripple::before, .ripple::after {
        -webkit-animation: ripple 1.8s infinite;
        -moz-animation: ripple 1.8s infinite;
        -o-animation: ripple 1.8s infinite;
        -ms-transition: ripple 1.8s infinite;
        animation: ripple 1.8s infinite;
        background-color: #ff6000;
        border-radius: 100%;
        margin: -20px;
        bottom: 0px;
        content: "";
        display: block;
        left: 0px;
        opacity: 0;
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: -1;
    }

    .ripple::before {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        -o-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .ripple::after {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        -o-animation-delay: 1s;
        animation-delay: 1s;
    }

@-webkit-keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.btn-ripple-white .ripple::before,
.btn-ripple-white .ripple::after,
.btn-ripple-white .ripple {
    background-color: #fff;
}

.btn-ripple-white .ripple {
    color: #ff6000;
}

.bg_transparent_20 {
    background-color: rgba(0,0,0,0.2);
}

.box_shadow1 {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.border-top-tran {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.border_bottom_tran {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/*Title Css*/
.heading_s1 {
    margin-bottom: 25px;
}

    .heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
        font-weight: 700;
        margin: 0;
        text-transform: capitalize;
    }

.heading_s2 {
    position: relative;
}

    .heading_s2 h1, .heading_s2 h2, .heading_s2 h3, .heading_s2 h4, .heading_s2 h5, .heading_s2 h6,
    .heading_s3 h1, .heading_s3 h2, .heading_s3 h3, .heading_s3 h4, .heading_s3 h5, .heading_s3 h6 {
        font-weight: 700;
        margin: 0;
        text-transform: capitalize;
    }

    .heading_s2 h1,
    .heading_s2 h2,
    .heading_s2 h3,
    .heading_s2 h4,
    .heading_s2 h5,
    .heading_s2 h6 {
        position: relative;
        z-index: 9;
    }

    .heading_s2 .sub_heading {
        font-size: 100px;
        font-weight: bold;
        padding: 0;
        margin-bottom: -15px;
        z-index: 0;
        position: relative;
        line-height: 100px;
        background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.1) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(255,255,255,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(255,255,255,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#1affffff',GradientType=0 );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .heading_s2.heading_light .sub_heading {
        background: -moz-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.01) 100%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(0,0,0,0.01) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.01) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dffffff', endColorstr='#1a000000',GradientType=0 );
        background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

.heading_s3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

    .heading_s3::before {
        content: "";
        position: absolute;
        left: 0;
        width: 50px;
        height: 1px;
        background-color: #ff6000;
        bottom: 0;
        right: 0;
    }

.heading_light.heading_s3::before {
    background-color: #fff;
}

.heading_s3.text-center::before {
    margin: 0 auto;
}

.heading_s3.text-right::before {
    left: auto;
    right: 0;
}

.heading_s4 {
    margin-bottom: 15px;
}

    .heading_s4 h1, .heading_s4 h2, .heading_s4 h3, .heading_s4 h4, .heading_s4 h5, .heading_s4 h6 {
        font-weight: 700;
        margin: 0;
        text-transform: capitalize;
        line-height: normal;
    }

    .heading_s4 .heading_icon i {
        color: #20E076;
        font-size: 30px;
        position: relative;
        z-index: 3;
        width: 50px;
        display: block;
        height: 50px;
        line-height: 50px;
    }

.heading_icon {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 30px;
    text-align: center;
}

    .heading_icon::after {
        content: "";
        position: absolute;
        right: 0;
        width: 30px;
        top: 50%;
        border-top: 1px solid #999;
        z-index: -1;
        border-bottom: 1px solid #999;
        height: 5px;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .heading_icon::before {
        content: "";
        position: absolute;
        left: 0;
        width: 30px;
        top: 50%;
        border-top: 1px solid #999;
        z-index: -1;
        border-bottom: 1px solid #999;
        height: 5px;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.heading_light .heading_icon i {
    color: #fff !important;
}

.heading_light * {
    color: #fff;
}

.sub_heading {
    color: #ff6000;
    margin-bottom: 10px;
    display: block;
}

.highlight_text {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.leads {
    margin-bottom: 30px;
}

/*Loader Css*/
.preloader {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 64px;
    text-align: center;
    z-index: 9999;
}

    .lds-ellipsis span {
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #ff6000;
        -webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
        animation: ball-pulse-sync .6s 0s infinite ease-in-out;
    }

        .lds-ellipsis span:nth-child(1) {
            -webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
            animation: ball-pulse-sync .6s -.14s infinite ease-in-out
        }

        .lds-ellipsis span:nth-child(2) {
            -webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
            animation: ball-pulse-sync .6s -70ms infinite ease-in-out
        }

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.custom-container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/*===================================*
  01.END GENERAL STYLE
*===================================*/

/*===================================*
  02.START HEADER STYLE
*===================================*/
.navbar-brand {
    padding: 10px 0;
    vertical-align: top;
    margin: 0;
}

.dark_skin .logo_light, .dark_skin .logo_default,
.light_skin .logo_default, .light_skin .logo_dark,
.logo_light, .logo_dark {
    display: none;
}

.dark_skin .logo_dark,
.light_skin .logo_light {
    display: block;
}

.light_skin .navbar-nav a,
.light_skin .navbar-toggler,
.light_skin .navbar a.pr_search_trigger {
    color: #ffffff;
}

.middle-header {
    padding: 10px 0;
    position: relative;
}

.navbar {
    padding: 0;
}

.header_wrap {
    transition: all 0.5s ease 0s;
}

    .header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
        background-color: #fff;
    }

        .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header {
            background-color: transparent;
        }

            .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed {
                background-color: #fff;
            }

                .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.light_skin.nav-fixed,
                .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed .light_skin {
                    background-color: #1D2224;
                }

            .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.sticky_dark_skin.nav-fixed,
            .light_skin .sidetoggle_icon::after,
            .light_skin .sidetoggle_icon::before,
            .light_skin .toggle_center_line {
                background-color: #fff;
            }

.navbar .navbar-nav li {
    position: relative;
    list-style: none;
    transition: all 0.3s ease 0s;
}

.navbar-nav .dropdown-menu {
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: 14rem;
}

.navbar-nav .dropdown-menu {
    background-color: #252A2C;
}

.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
.light_skin .navbar-nav .dropdown-menu .dropdown-menu {
    background-color: #303537;
}

.dark_skin .navbar-nav .dropdown-menu {
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
}

.dark_skin .mega-menu-col,
.dark_skin .cart_list li {
    border-color: #ddd;
}

.dark_skin .navbar .navbar-nav .dropdown-menu li a.active,
.dark_skin .navbar .navbar-nav .dropdown-menu li a:hover,
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > li:hover > a,
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
    color: #ff6000;
}

.dark_skin .navbar .navbar-nav li > .dropdown-item,
.dark_skin .navbar .navbar-nav .dropdown-header,
.dark_skin .cart_quantity,
.dark_skin .cart_total {
    color: #333333;
}

.dropdown-toggle::after, .dropdown-toggler::after {
    border: 0 none;
    content: "\f3d0";
    font-family: "Ionicons";
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-toggler::after {
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dropdown-menu .dropdown-toggler::after {
    position: absolute;
    right: 15px;
    top: 10px;
}

.navbar .navbar-nav > li > .nav-link {
    font-weight: 500;
    padding: 22px 10px;
    text-transform: capitalize;
    font-size: 14px;
}

.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li > a.active,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li:hover > a,
.transparent_header.nav-fixed .light_skin .navbar .navbar-nav > li > a.active,
.transparent_header.nav-fixed .light_skin .navbar .navbar-nav > li:hover > a {
    color: #ff6000;
}

.light_skin .navbar .navbar-nav .dropdown-item,
.light_skin .navbar .navbar-nav .dropdown-header {
    color: #fff;
}

.light_skin .item_remove {
    color: #fff !important;
}

.light_skin .mega-menu-col {
    border-right: 1px solid #3f3f3f;
}

.navbar .navbar-nav .dropdown-item {
    padding: 8px 20px 8px 20px;
    color: #333;
    font-size: 14px;
    text-transform: capitalize;
}

    .navbar .navbar-nav .dropdown-item.dropdown-toggler {
        padding-right: 30px;
    }

.navbar .navbar-nav .dropdown-header {
    color: #333;
    padding: 10px 20px;
    font-weight: bold;
}

.navbar-nav.attr-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

    .navbar-nav.attr-nav li .nav-link {
        padding: 20px 10px;
        position: relative;
        white-space: nowrap;
    }

.navbar .attr-nav li.nav-btn {
    margin-left: 10px;
}

.navbar-nav.attr-nav li .nav-link i {
    font-size: 20px;
}

.hover_menu_style2 .navbar .navbar-nav.attr-nav > li > .nav-link {
    margin: 0;
    padding: 20px 10px;
}

.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
    background-color: transparent;
}

.navbar .navbar-nav.attr-nav .dropdown-menu li a.active,
.navbar .navbar-nav.attr-nav .dropdown-menu li a:hover,
.navbar .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a {
    background-color: rgba(0,0,0,0);
}

.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a,
.navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item:hover {
    color: #ff6000;
}

.sticky_dark_skin.nav-fixed .logo_light {
    display: none;
}

.sticky_dark_skin.nav-fixed .logo_dark {
    display: block;
}

.sticky_dark_skin.nav-fixed .navbar-nav li > a,
.sticky_dark_skin.nav-fixed .navbar-toggler,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-header,
.sticky_dark_skin.nav-fixed .cart_quantity, .sticky_dark_skin.nav-fixed .cart_total {
    color: #333;
}

    .sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item.active {
        color: #ff6000;
    }

.sticky_dark_skin.nav-fixed .item_remove {
    color: #333 !important;
}

.sticky_dark_skin.nav-fixed .navbar-nav .dropdown-menu,
.sticky_dark_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
}

.sticky_dark_skin.nav-fixed .mega-menu-col,
.sticky_dark_skin.nav-fixed .cart_list li {
    border-color: #ddd;
}

.sticky_dark_skin.nav-fixed.header_wrap[class*="bg_"], .sticky_dark_skin.nav-fixed.header_wrap[class*="bg-"] {
    background-color: #fff !important;
}

.sticky_light_skin.nav-fixed .logo_dark {
    display: none;
}

.sticky_light_skin.nav-fixed .logo_light {
    display: block;
}

.sticky_light_skin.nav-fixed.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header,
.sticky_light_skin.nav-fixed.header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
    background-color: #1D2224;
}

.sticky_light_skin.nav-fixed.header_wrap[class*="bg_"], .sticky_light_skin.nav-fixed.header_wrap[class*="bg-"] {
    background-color: #1D2224 !important;
}

.sticky_light_skin.nav-fixed .navbar-nav a,
.sticky_light_skin.nav-fixed .navbar-toggler,
.sticky_light_skin.nav-fixed .navbar .navbar-nav .dropdown-item,
.sticky_light_skin.nav-fixed .navbar .navbar-nav .dropdown-header,
.sticky_light_skin.nav-fixed .cart_quantity, .sticky_light_skin.nav-fixed .cart_total {
    color: #fff;
}

.sticky_light_skin.nav-fixed .item_remove {
    color: #fff !important;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu {
    background-color: #252A2C;
    border-color: #252A2C;
}

    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
        background-color: #303537;
    }

.sticky_light_skin.nav-fixed .mega-menu-col {
    border-right: 1px solid #3f3f3f;
}

.sticky_light_skin.nav-fixed .cart_list li {
    border-color: #3f3f3f;
}

.sticky_dark_skin.nav-fixed .btn-tran-light {
    background-color: #333;
    color: #fff !important;
}

    .sticky_dark_skin.nav-fixed .btn-tran-light:hover {
        background-color: transparent;
        color: #333 !important;
        border-color: #333;
    }

.search_overlay {
    content: "";
    background-color: #000;
    height: 100%;
    top: 0;
    position: fixed;
    text-align: center;
    opacity: 0.5;
    right: 0;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    width: 0;
    z-index: 99;
}

    .search_overlay.open {
        left: 0;
        right: auto;
        width: 100%;
    }

.search-overlay.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.search_trigger.open i::before {
    content: "\f129";
    font-family: "Ionicons";
}

.search_wrap {
    position: fixed;
    left: 0;
    right: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    z-index: 9999;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
}

    .search_wrap.open {
        opacity: 1;
        visibility: visible;
        -webkit-animation: slideInLeft 1s both;
        animation: slideInLeft 1s both;
    }

    .search_wrap form {
        position: relative;
        width: 100%;
    }

    .search_wrap .form-control:focus {
        background-color: transparent;
        color: #fff;
    }

.search_icon {
    font-size: 24px;
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    color: #fff;
}

.search_wrap .form-control {
    background-color: transparent;
    border-bottom: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 10px 0;
    color: #fff;
}

    .search_wrap .form-control::-webkit-input-placeholder {
        color: #ffffff;
    }

    .search_wrap .form-control::-moz-placeholder {
        color: #ffffff;
    }

    .search_wrap .form-control:-ms-input-placeholder {
        color: #ffffff;
    }

    .search_wrap .form-control::-ms-input-placeholder {
        color: #ffffff;
    }

    .search_wrap .form-control::placeholder {
        color: #ffffff;
    }

.close-search {
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 25%;
}

.navbar .attr-nav li .search_trigger i {
    font-size: 20px;
    vertical-align: middle;
    color: #fff;
    position: absolute;
    line-height: 1;
    left: 15px;
    top: 13px;
}

.navbar .attr-nav li.cart_wrap .nav-link i {
    font-size: 20px;
}

.navbar .attr-nav li.cart_wrap .nav-link {
    padding: 35px 5px;
}

.navbar .attr-nav li .nav-link.sidetoggle i {
    font-size: 28px;
}

.pr_search_icon {
    float: right;
}

.pr_search_trigger.show i::before {
    content: "\ec2a";
}

.pr_search_trigger {
    padding: 17px 10px;
    font-size: 20px;
}

.header_wrap.fixed-top {
    position: relative;
    padding-right: 0 !important;
}

.header_wrap.transparent_header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
}

.header_wrap.nav-fixed {
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1041;
    -webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
}

.nav-fixed.border_bottom_tran {
    border: 0;
}

.header_wrap.fixed-top.transparent_header.nav-fixed.no-sticky {
    position: absolute;
}

.header_wrap.fixed-top.nav-fixed.no-sticky {
    position: relative;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed.no-sticky {
    background-color: transparent;
    box-shadow: none;
}

.mega-menu {
    display: table;
    padding: 15px 0;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .mega-menu ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.navbar .navbar-nav li.dropdown-mega-menu {
    position: static;
}

    .navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
        right: 0;
        padding-left: 0;
        padding-right: 0;
    }

.mega-menu-col {
    border-right: 1px solid #ddd;
    padding: 0;
}

    .mega-menu-col:last-child {
        border-right: 0 !important;
    }

.dropdown-menu li a i {
    font-size: 14px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

.navbar .navbar-nav > li > .nav-link.cart_trigger i {
    font-size: 20px;
}

.cart_list li {
    list-style: outside none none;
}

.cart_count, .wishlist_count {
    position: relative;
    top: -3px;
    left: 0;
    font-size: 11px;
    background-color: #ff6000;
    border-radius: 50px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    min-width: 16px;
    text-align: center;
    padding: 0 5px;
    display: inline-block;
    vertical-align: top;
    margin-left: -5px;
    margin-right: -5px;
}

.cart_trigger .amount {
    margin-left: 8px;
    font-weight: 600;
    vertical-align: top;
    margin-right: -10px;
}

.navbar-nav .dropdown-menu.cart_box {
    width: 320px;
    position: absolute !important;
    -webkit-transform: scale(0) !important;
    transform: scale(0) !important;
    -webkit-transform-origin: -webkit-calc(100% - 30px) 0;
    transform-origin: calc(100% - 30px) 0;
    display: block;
    transition: all 0.25s ease-in-out;
    padding: 0;
    top: 100% !important;
    left: auto !important;
    right: 0;
}

    .navbar-nav .dropdown-menu.cart_box.show {
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }

.cart_list li {
    border-bottom: 1px solid #3f3f3f;
    padding: 15px;
    width: 100%;
}

.item_remove {
    float: right;
    margin-left: 5px;
    color: #333 !important;
}

.cart_list img {
    border: 1px solid #ddd;
    background-color: #ffffff;
    float: left;
    margin-right: 10px;
    max-width: 90px;
    height: 90px;
}

.cart_list a {
    font-size: 14px;
    vertical-align: top;
    padding: 0 !important;
    text-transform: capitalize;
    font-weight: 600;
}

.cart_quantity {
    color: #ffffff;
    display: table;
    margin-top: 5px;
    font-weight: 500;
}

.cart_total .cart_amount {
    float: right;
    color: #F32B56;
}

.cart_box .cart_list {
    width: 100%;
    padding: 0 !important;
    max-height: 275px;
    overflow-y: auto;
}

.cart_list li {
    display: inline-block;
    width: 100%;
}

.dropdown-menu .cart_list li a i {
    width: auto;
}

.cart_total {
    color: #ffffff;
    margin: 0;
    padding: 10px 15px;
    font-weight: 600;
    text-align: right;
}

    .cart_total strong {
        float: left;
        font-weight: 600;
    }

.cart_buttons {
    margin: 0;
    padding: 10px 15px 20px;
    text-align: center;
}

    .cart_buttons .view-cart, .cart_buttons .checkout {
        padding: 8px 20px !important;
    }

.top-header {
    border-bottom: 1px solid #eee;
}

    .top-header.light_skin {
        border-color: rgba(255,255,255,0.2);
    }

.top-header {
    padding: 0px 15px;
    transition: all 0.5s ease-in-out;
}

    .top-header[class*="bg_"], .top-header[class*="bg-"] {
        border: 0;
    }

    .top-header span {
        font-size: 14px;
        vertical-align: middle;
        color: #666;
    }

.header_wrap .social_icons li {
    padding-bottom: 0;
}

.social_icons, .contact_detail {
    font-size: 0;
}

    .contact_detail > li:last-child,
    .header_list > li:last-child {
        padding-right: 0;
    }

    .social_icons li {
        display: inline-block;
        padding: 0px 5px 5px 0;
    }

        .social_icons li a {
            font-size: 18px;
            color: #687188;
            height: 36px;
            width: 36px;
            line-height: 36px;
            display: inline-block;
            text-align: center;
            vertical-align: middle;
            overflow: hidden;
        }

            .social_icons li a:hover,
            .header_wrap .social_icons li a:hover {
                color: #ff6000;
            }

    .social_icons.social_small li a {
        height: 25px;
        width: 25px;
        line-height: 26px;
        font-size: 16px;
    }

.social_white .social_icons li a, .social_white.social_icons li a,
.header_wrap .social_white .social_icons li a, .header_wrap .social_white.social_icons li a {
    color: #fff;
    border-color: #fff;
}

    .social_white .social_icons li a:hover, .social_white.social_icons li a:hover {
        color: #ff6000;
    }

.border_social .social_icons li a:hover, .border_social.social_icons li a:hover {
    background-color: #ff6000;
    border-color: #ff6000;
    color: #fff;
}

.border_social.social_white .social_icons li a:hover, .social_white.border_social.social_icons li a:hover {
    color: #fff;
}

.border_social li a {
    border: 1px solid #687188;
    line-height: 35px;
}

.social_icons li:last-child a {
    margin-right: 0px;
}

.radius_social li a {
    border-radius: 5px;
}

.rounded_social li a {
    border-radius: 50px;
}

.social_icons.social_style1 li a {
    background-color: #fff;
    color: #ff6000;
}

    .social_icons.social_style1 li a:hover {
        background-color: #ff6000;
        color: #fff !important;
    }

.social_style2 li a {
    background-color: #FFF;
    box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.3);
}

.social_style3 li a {
    background-color: #F6F8F9;
    color: #B2B2B7;
    font-size: 20px;
    height: 50px;
    width: 50px;
    line-height: 50px;
}

.social_style4 li a {
    background-color: #fff;
    color: #ff6000;
}

    .social_style4 li a:hover {
        background-color: #ff6000;
        color: #fff;
    }

    .social_style4 li a:hover {
        background-color: #ff6000;
        color: #fff !important;
    }

.vertical_social li {
    display: block;
}

.header_wrap .social_icons li a {
    color: #333;
}

.contact_detail i {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 16px;
}

.contact_detail span {
    vertical-align: middle;
}

.contact_detail > li,
.header_list > li {
    color: #333;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 15px 2px 0;
}

    .header_list > li i {
        margin-right: 6px;
        vertical-align: middle;
    }

.icon_list > li {
    color: #333;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 10px 2px 0;
}

    .icon_list > li > i {
        font-size: 16px;
    }

    .icon_list > li a {
        color: #bfbfbf;
    }

.header_list > li .dropdown-item:hover,
.custome_dropdown .ddChild li:hover,
.contact_detail > li a:hover {
    color: #F32B56;
}

.header_dropdown .dropdown-menu {
    border-radius: 0;
    padding: 0;
    margin-top: 0px;
    border: 0;
    transform: none !important;
    top: 100% !important;
    will-change: auto !important;
}

    .header_dropdown .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="top"] {
        right: 0;
        left: auto !important;
    }

.header_dropdown .dropdown-item {
    padding: 5px 10px;
    border-bottom: 1px solid #e6e6e6;
    text-transform: capitalize;
}

.contact_detail li:first-child {
    margin-left: 0px;
}

.contact_detail li a span {
    vertical-align: middle;
}

.top-header.light_skin .contact_detail li,
.top-header.light_skin .contact_detail li a,
.top-header.light_skin .widget_text span {
    color: #fff;
}

.top-header.dark_skin .contact_detail li {
    color: #000;
}

.nav-fixed .top-header,
.nav-fixed .middle-header {
    display: none !important;
}

.navbar-toggler {
    float: right;
    margin: 13px 0 0 3px;
    font-size: 28px;
    color: #333;
    transition: all 0.5s ease 0s;
    border-radius: 0;
    height: 35px;
    width: 35px;
    padding: 0;
    line-height: 36px;
    transition: none;
}

    .navbar-toggler[aria-expanded="true"] span::before {
        content: "\f129";
        font-size: 16px;
    }

    .navbar-toggler[aria-expanded="true"] {
        line-height: 32px;
        font-size: 20px;
    }

header .attr-nav + .social_icons {
    border-left: 1px solid #333;
    margin-left: 5px;
    padding-left: 5px;
}

    header .attr-nav + .social_icons li {
        padding: 0;
    }

header.light_skin .attr-nav + .social_icons {
    border-color: #fff;
}

header.light_skin.nav-fixed .attr-nav + .social_icons {
    border-color: #333;
}

header.light_skin.nav-fixed .social_icons li a {
    color: #000;
}

    header.light_skin.nav-fixed .social_icons li a:hover {
        color: #0E93D8;
    }

.search_box {
    position: relative;
}

    .search_box input {
        padding-right: 30px;
    }

    .search_box button {
        border: 0;
        padding: 0 10px;
        background-color: transparent;
        font-size: 22px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
    }

.top-header.light_skin .header_list li a,
.top-header.light_skin .ddArrow::before,
.top-header.light_skin .ddcommon .ddTitle .ddlabel,
.light_skin.top-header span,
.light_skin .icon_list > li a {
    color: #fff;
}

.top-header.light_skin .header_list > li::before {
    background-color: #fff;
}

.top-header .custome_dropdown .ddChild {
    background-color: #fff;
    border: 0 !important;
    min-width: 10rem;
    left: -10px;
}

.top-header.light_skin .header_list li a:hover,
.top-header.light_skin .contact_detail li a:hover,
.top-header.light_skin .header_list li a:hover span {
    color: #ff6000;
}

.main_menu_weight_100 .navbar .navbar-nav > li > .nav-link {
    font-weight: 100;
}

.main_menu_weight_200 .navbar .navbar-nav > li > .nav-link {
    font-weight: 200;
}

.main_menu_weight_300 .navbar .navbar-nav > li > .nav-link {
    font-weight: 300;
}

.main_menu_weight_400 .navbar .navbar-nav > li > .nav-link {
    font-weight: 400;
}

.main_menu_weight_500 .navbar .navbar-nav > li > .nav-link {
    font-weight: 500;
}

.main_menu_weight_600 .navbar .navbar-nav > li > .nav-link {
    font-weight: 600;
}

.main_menu_weight_700 .navbar .navbar-nav > li > .nav-link {
    font-weight: 700;
}

.main_menu_weight_800 .navbar .navbar-nav > li > .nav-link {
    font-weight: 800;
}

.main_menu_weight_900 .navbar .navbar-nav > li > .nav-link {
    font-weight: 900;
}

.main_menu_size_16 .navbar .navbar-nav > li > .nav-link,
.dd_menu_size_16 .navbar .navbar-nav .dropdown-item,
.dd_menu_size_16 .cart_list a {
    font-size: 16px;
}

.header_banner_wrap {
    padding: 15px;
    height: 100%;
}

.header-banner2 {
    margin: 0 15px;
}

.header-banner,
.header-banner2 {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

    .header-banner img {
        width: 100%;
    }

.banne_info {
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 15px;
}

    .banne_info a {
        text-transform: capitalize;
        position: relative;
        padding-bottom: 3px;
        color: #292b2c !important;
    }

        .banne_info a:hover {
            color: #ff6000 !important;
        }

        .banne_info a::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            width: 50%;
            background-color: #292B2C;
            transition: all 0.5s ease-in-out;
        }

        .banne_info a:hover::before {
            width: 100%;
        }

.header_banner {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
}

.header_banner_wrap .header_banner {
    -ms-flex-align: center;
    align-items: center;
}

.header_banner_content {
    position: relative;
}

.header_banner_text {
    color: #fff;
}

.header_banner_title {
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.banner_img {
    position: relative;
}

.shop_bn_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}

.shop_bn_content2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.shop_bn_content * {
    color: #fff;
}

.shop_title {
    font-weight: bold;
    margin-bottom: 10px;
}

.shop_banner {
    position: relative;
    display: table;
    margin: 0 auto;
}

.shop_banner2 {
    margin-bottom: 30px;
    height: 235px;
    overflow: hidden;
}

.el_banner1 {
    background-color: #FDBB99;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.el_img {
    text-align: center;
    width: 100%;
}

.shop_banner2 a {
    position: relative;
    z-index: 9;
    padding: 15px;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.el_title {
    width: 100%;
}

.el_banner1::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -80px;
    background-color: rgba(255,255,255,0.2);
    width: 250px;
    height: 250px;
    border-radius: 100%;
    z-index: -1;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.el_banner2::before {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    background-color: rgba(255,255,255,0.15);
    width: 250px;
    height: 250px;
    border-radius: 100%;
    z-index: -1;
}

.el_banner2 .el_title h6 {
    font-weight: 600;
    font-size: 18px;
}

.el_banner1 .el_title span {
    font-size: 20px;
    font-weight: 600;
}

.el_banner1 .el_img img {
    max-width: 180px;
    margin-top: 20px;
    width: 100%;
}

.el_banner2 {
    background-color: #53C0E9;
    text-align: right;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.shop_banner2:last-child {
    margin-bottom: 0;
}

.el_banner2 .el_img img {
    max-width: 165px;
    width: 100%;
}

.sidebar_menu {
    padding: 50px 30px 30px;
    position: fixed;
    top: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: -3px 0 3px rgba(0,0,0,.04);
    bottom: 0;
    width: 400px;
    overflow-y: auto;
    right: -400px;
    visibility: hidden;
    height: 100vh;
    transition: all 0.5s ease;
    z-index: 99999;
}

    .sidebar_menu.active {
        right: 0;
        visibility: visible;
    }

.side_panel_close {
    position: absolute;
    right: 30px;
    top: 30px;
}

    .side_panel_close i {
        font-size: 24px;
    }

.sidebar_menu .widget {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar_left .sidebar_menu,
.sidebar_left_push .sidebar_menu {
    right: auto;
    left: -400px;
}

    .sidebar_left .sidebar_menu.active,
    .sidebar_left_push .sidebar_menu.active {
        left: 0;
    }

.sidebar_left_push.sidetoggle_active {
    overflow-y: hidden;
    left: 400px;
}

.sidebar_left_push {
    overflow-x: hidden;
    position: relative;
    transition: all 0.5s ease;
    left: 0;
}

    .sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
        left: 400px;
        right: -400px;
    }

.sidebar_right_push.sidetoggle_active {
    overflow-y: hidden;
    right: 400px;
}

.sidebar_right_push {
    overflow-x: hidden;
    position: relative;
    transition: all 0.5s ease;
    right: 0;
}

    .sidebar_right_push.sidetoggle_active .header_wrap.nav-fixed {
        left: -400px;
        right: 400px;
    }

.sidebar_dark {
    background-color: #222;
}

    .sidebar_dark .sidemenu_close,
    .sidebar_dark p {
        color: #fff;
    }

.header-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    top: 0;
    transition: all 0.5s ease-in-out;
    cursor: url("../images/close.png"), pointer;
}

body.active {
    overflow: hidden;
    padding-right: 17px;
}

.sidetoggle_icon {
    width: 22px;
    display: block;
    margin: 10px 0;
    position: relative;
    transition: all 0.5s ease-in-out;
    height: 1px;
}

    .sidetoggle_icon::before {
        content: "";
        background-color: #333;
        display: block;
        height: 1px;
        width: 100%;
        position: absolute;
        top: -7px;
        right: 0;
        transition-duration: .3s,.3s;
        transition-delay: .3s,0s;
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .sidetoggle_icon::after {
        content: "";
        background-color: #333;
        display: block;
        height: 1px;
        width: 15px;
        position: absolute;
        bottom: -7px;
        right: 0;
        transition-duration: .3s,.3s;
        transition-delay: .3s,0s;
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

.sidetoggle.open .sidetoggle_icon::before {
    top: 0;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-property: top,transform;
    transition-delay: 0s,.3s;
}

.sidetoggle.open .sidetoggle_icon::after {
    bottom: 0;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition-delay: 0s,.3s;
    transition-property: bottom,transform;
    width: 100%;
}

.toggle_center_line {
    background-color: #333;
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transition: all 0.6s ease-in-out;
}

.sidetoggle.open .toggle_center_line {
    opacity: 0;
}

.sidetoggle_icon:hover:after {
    width: 22px;
}

.widget_text p:last-child {
    margin-bottom: 0;
}

.widget_contact_info .contact_wrap li:last-child {
    margin-bottom: 0;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li > a {
    position: relative;
    padding: 30px 0px;
    margin: 0 10px;
}

.hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
    padding: 20px 0px;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 0px;
    height: 2px;
    width: 0;
    z-index: 0;
    content: '';
    background-color: #ff6000;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.hover_menu_style1.nav-fixed .navbar-collapse .navbar-nav > li > a::before {
    bottom: 10px;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li:hover > a::before,
.hover_menu_style1 .navbar-collapse .navbar-nav > li > a.active::before {
    left: 0;
    right: auto;
    width: 100%;
}

input.text {
    display: none;
}

.dd.ddcommon {
    cursor: pointer;
    padding-right: 10px;
    position: relative;
    width: auto !important;
    outline: none;
}

.ddcommon .ddTitleText img {
    border-radius: 100%;
    height: 16px;
    width: 16px;
    margin-right: 6px;
}

.ddcommon .ddTitleText {
    padding: 5px 7px 5px 10px;
    display: inline-block;
}

.ddcommon .ddlabel {
    text-transform: capitalize;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    vertical-align: middle;
}

.ddcommon .ddChild li .ddlabel {
    color: #333;
}

.ddArrow::before {
    content: "\f3d0";
    color: #878787;
    font-family: ionicons;
    position: absolute;
    right: 0;
    top: 6px;
}

.ddcommon .ddChild {
    background-color: #fff;
    height: auto !important;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    display: block !important;
    opacity: 0;
    visibility: hidden !important;
    left: 0;
}

.ddcommon.borderRadiusTp .ddChild {
    opacity: 1;
    visibility: visible !important;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.ddcommon .ddChild li {
    cursor: pointer;
    line-height: normal;
    list-style: outside none none;
    padding: 5px 10px 5px 10px;
    position: relative;
}

.lng_dropdown .ddcommon .ddChild li {
    padding-left: 33px;
}

.ddcommon .ddChild li img {
    position: absolute;
    left: 10px;
    border-radius: 100%;
    max-width: 16px;
    top: 12px;
}

.nav_block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.categories_wrap {
    position: relative;
}

.categories_btn i {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.categories_menu i {
    margin-right: 0;
    float: right;
}

.categories_btn.categories_menu {
    padding: 12px 15px;
    border-radius: 4px;
}

.categories_btn span {
    vertical-align: middle;
    font-weight: 500;
}

.categories_btn {
    background-color: #ff6000;
    border: 1px solid #ff6000;
    padding: 20px 15px;
    color: #fff;
    text-align: left;
    width: 100%;
}

#navCatContent li {
    list-style: none;
}

#navCatContent {
    background-color: #fff;
    position: absolute;
    padding: 5px 0px 0;
    top: 100%;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    z-index: 99;
}

.nav_cat {
    display: block;
    height: auto !important;
}

    .nav_cat.collapse:not(.show) {
        display: block;
    }

#navCatContent ul {
    width: 100%;
}

#navCatContent li a {
    text-transform: capitalize;
    font-size: 14px;
}

    #navCatContent li a i {
        font-size: 22px;
        vertical-align: middle;
        margin-right: 10px;
        line-height: 30px;
    }

    #navCatContent li a span {
        vertical-align: middle;
    }

    #navCatContent li a:hover {
        color: #ff6000;
    }

    #navCatContent li a.dropdown-toggler::after {
        position: absolute;
        right: 15px;
        top: 15px;
    }

#navCatContent ul li .dropdown-menu {
    left: 100%;
    top: 0;
    margin: 0;
    border: 0;
    min-width: 800px;
    width: 100%;
    right: 0;
    box-shadow: 10px 16px 49px 0px rgba(38,42,46,0.05);
    border-radius: 0;
    padding: 0;
}

    #navCatContent ul li .dropdown-menu .dropdown-header {
        color: #333;
        padding: 10px 15px;
        font-weight: bold;
    }

#navCatContent .mega-menu-col {
    border: 0;
}

.more_categories {
    padding: 12px 15px;
    display: block;
    font-size: 16px;
    color: #ff6000;
    border-top: 1px solid #ddd;
    margin-top: 5px;
    position: relative;
    cursor: pointer;
    width: 100%;
}

    .more_categories::before {
        content: "\ec36";
        position: absolute;
        right: 15px;
        top: 50%;
        font-family: Linearicons;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .more_categories.show::before {
        content: "\ec37";
    }

.product_search_form {
    position: relative;
    max-width: 600px;
    width: 100%;
}

    .product_search_form input {
        height: 50px;
        padding-right: 60px !important;
    }

.search_form_btn .form-control {
    padding-right: 120px !important;
}

.search_btn {
    position: absolute;
    right: 1px;
    background-color: #fff;
    border: 0;
    padding: 0px 15px;
    font-size: 20px;
    top: 1px;
    bottom: 1px;
    z-index: 9;
}

.search_btn2 {
    position: absolute;
    right: 5px;
    background-color: #ff6000;
    border: 0;
    border-radius: 100%;
    font-size: 14px;
    top: 5px;
    color: #fff;
    z-index: 9;
    width: 40px;
    height: 40px;
    z-index: 9;
}

.search_btn3 {
    background-color: #ff6000;
    color: #fff;
    border: 0;
    padding: 10px 30px;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 9;
}

    .search_btn3:hover {
        background-color: #333;
    }

.search_btn:hover {
    color: #ff6000;
}

.search_btn i {
    vertical-align: middle;
}

.product_search_form select {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_search_form.rounded_input select {
    border-radius: 30px 0 0 30px;
    padding: 8px 35px 8px 15px;
}

.product_search_form.rounded_input input {
    border-radius: 0 30px 30px 0 !important;
}

.product_search_form.radius_input {
    border-radius: 4px;
    overflow: hidden;
}

    .product_search_form.radius_input select {
        border-radius: 4px 0 0 4px;
    }

    .product_search_form.radius_input input {
        border-radius: 0 4px 4px 0 !important;
    }

.header_offer {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid #ddd;
}

.contact_phone span, .contact_phone i {
    vertical-align: middle;
}

.contact_phone i {
    font-size: 30px;
    margin-right: 10px;
    color: #ff6000;
}

.contact_phone span {
    color: #16181b;
}

.banner_content_inner {
    padding: 50px;
}

.header_topbar_info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
}

.download_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
/*===================================*
  02.END HEADER STYLE
*===================================*/

/*===================================*
  03.START BANNER,SLIDER STYLE
*===================================*/
.banner_section {
    position: relative;
}

.banner_content_wrap {
    position: relative;
    z-index: 1;
}

.banner_half_content {
    padding: 100px 0 80px;
    z-index: 0;
}

.full_screen.banner_half_content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner_section:not(.full_screen),
.banner_section:not(.full_screen) .carousel-item,
.banner_section:not(.full_screen) .banner_content_wrap,
.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
    height: 800px;
}

.full_screen, .full_screen .carousel-item {
    height: 100vh;
    min-height: 45rem;
}

.banner_section.slide_medium,
.banner_section.slide_medium .carousel-item,
.banner_section.slide_medium .banner_content_wrap,
.banner_section.slide_medium .banner_content_wrap .carousel-item,
.banner_section.shop_el_slider,
.banner_section.shop_el_slider .carousel-item,
.banner_section.shop_el_slider .banner_content_wrap,
.banner_section.shop_el_slider .banner_content_wrap .carousel-item {
    height: 400px;
}

@media all and (max-width:768px) {
    .banner_section.slide_medium,
    .banner_section.slide_medium .carousel-item,
    .banner_section.slide_medium .banner_content_wrap,
    .banner_section.slide_medium .banner_content_wrap .carousel-item,
    .banner_section.shop_el_slider,
    .banner_section.shop_el_slider .carousel-item,
    .banner_section.shop_el_slider .banner_content_wrap,
    .banner_section.shop_el_slider .banner_content_wrap .carousel-item {
        height: 200px;
    }
}

@media all and (max-width:640px) {

    .banner_section.slide_medium,
    .banner_section.slide_medium .carousel-item,
    .banner_section.slide_medium .banner_content_wrap,
    .banner_section.slide_medium .banner_content_wrap .carousel-item,
    .banner_section.shop_el_slider,
    .banner_section.shop_el_slider .carousel-item,
    .banner_section.shop_el_slider .banner_content_wrap,
    .banner_section.shop_el_slider .banner_content_wrap .carousel-item {
        height: 104px;
    }
}

.banner_section.slide_wrap,
.banner_section.slide_wrap .carousel-item,
.banner_section.slide_wrap .banner_content_wrap,
.banner_section.slide_wrap .banner_content_wrap .carousel-item {
    height: 650px;
}

.banner_section .banner_slide_content {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

@media screen and (max-width:960px) {
    .banner_section.slide_medium .carousel-item {
        background-size: contain;
        background-repeat: no-repeat;
    }
}


.carousel-item img {
    position: relative;
    z-index: -1;
    width: 100%;
}

.carousel-control-next, .carousel-control-prev {
    font-size: 45px;
    height: 50px;
    opacity: 1;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    transition: all 0.3s ease-in-out;
}

    .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
        opacity: 0;
    }

.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
    opacity: 1;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel_style1 .carousel-control-next, .carousel_style1 .carousel-control-prev {
    border-radius: 100%;
}

.carousel_style2 .carousel-control-next, .carousel_style2 .carousel-control-prev {
    font-size: 16px;
    border-radius: 4px;
    height: 40px;
    width: 40px;
}

.light_arrow .carousel-control-next, .light_arrow .carousel-control-prev {
    /* background-color:#fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    color: #fff;
}

    .carousel-control-next:hover, .carousel-control-prev:hover,
    .light_arrow .carousel-control-next:hover, .light_arrow .carousel-control-prev:hover {
        /* background-color: #ff6000;
	color: #fff; */
    }

.indicators_style1,
.indicators_style2,
.indicators_style3 {
    margin-bottom: 15px;
}

    .indicators_style1 li {
        width: 10px;
        height: 10px;
        background-color: #333;
        border: 0;
        margin: 8px;
        position: relative;
    }

        .indicators_style1 li::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            border: 2px solid #333;
            margin: -4px;
        }

    .indicators_style2 li {
        background-color: #333;
        border-radius: 100%;
        width: 10px;
        height: 10px;
        background-clip: inherit;
        border: 0;
        margin: 8px;
        position: relative;
    }

        .indicators_style2 li::before {
            content: "";
            position: absolute;
            border-radius: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            border: 2px solid #333;
            margin: -4px;
        }

    .indicators_style3 li {
        background-color: #333;
        border-radius: 100%;
        width: 10px;
        height: 10px;
        background-clip: inherit;
        border: 0;
        margin: 5px;
        position: relative;
    }

    .indicators_style1 li.active,
    .indicators_style2 li.active {
        background-color: #ff6000;
    }

        .indicators_style2 li.active:before,
        .indicators_style1 li.active:before {
            border-color: #ff6000;
        }

.indicators_style4 li {
    background-color: #fff;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    background-clip: inherit;
    border: 0;
    margin: 5px;
    position: relative;
}

.banner_content .carousel-item {
    padding: 100px 0;
}

.banner_content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_content p,
.banner_content2 p {
    margin-bottom: 30px;
}

.banner_content2 h2 {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_content3 h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    z-index: -1;
}

    .banner_shape img {
        width: 100%;
    }

.wave_shape_bottom::before {
    background-image: url("../images/wave_shape.png");
    display: block;
    height: 100%;
    content: "";
    background-position: bottom center;
    position: absolute;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
}

.banner_content1 h2 {
    font-size: 78px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.background_shape {
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 35%;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1affffff',GradientType=0 );
    -moz-transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    transform: skewX(30deg);
    transform-origin: left bottom;
    pointer-events: none;
}

    .background_shape:before {
        content: "";
        position: absolute;
        width: 200px;
        height: 100%;
        top: 0;
        bottom: 0;
        right: 0;
        left: 100%;
        background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
        background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
        background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1affffff',GradientType=0 );
    }

.banner_center_content {
    margin-top: -70px;
}

.carousel-indicators.vertical_center_right {
    display: block;
    right: 40px;
    top: 50%;
    margin: 0;
    left: auto;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
}

.indicators_style2.vertical_center_right li {
    margin: 15px 0;
}

.banner_content_border {
    border: 10px solid #ff6000;
    padding: 50px;
    position: relative;
}

.slide_banner_img {
    height: 100%;
    position: relative;
    z-index: -1;
}

.zoom-in {
    -webkit-animation: zoomin 5s;
    -moz-animation: zoomin 5s;
    -o-animation: zoomin 5s;
    animation: zoomin 5s;
}

@keyframes zoomin {
    0% {
        -moz-transform: scale(1.2) rotate(3deg);
        -webkit-transform: scale(1.2) rotate(3deg);
        transform: scale(1.2) rotate(3deg);
    }

    100% {
        -moz-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

.header_with_topbar.transparent_header + .banner_section .banner_slide_content {
    margin-top: 45px;
}

.bg_strip {
    background-color: #ff6000;
    color: #fff;
    display: inline-block;
    padding: 8px 0px;
    position: relative;
    white-space: nowrap;
    font-size: 20px;
    height: 40px;
}

    .bg_strip::before {
        content: '';
        position: absolute;
        z-index: -1;
        right: 100%;
        top: 0;
        display: block;
        width: 0;
        height: 0px;
        border: 20px solid #ff6000;
        border-bottom-color: #ff6000;
        border-left-color: transparent;
    }

    .bg_strip::after {
        content: '';
        position: absolute;
        z-index: -1;
        left: 100%;
        top: 0;
        display: block;
        width: 0;
        height: 0px;
        border: 20px solid #ff6000;
        border-bottom-color: #ff6000;
        border-right-color: transparent;
    }
/*===================================*
  03.END BANNER,SLIDER STYLE
*===================================*/

/*===================================*
  04.START SHOP BANNER STYLE
*===================================*/
.single_banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.single_banner_info {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 20px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
}

.single_bn_title {
    font-weight: bold;
    font-size: 32px;
}

.single_bn_link {
    position: relative;
}

    .single_bn_link::before {
        content: "";
        position: absolute;
        bottom: 3px;
        height: 7px;
        background-color: rgba(255,50,77,0.2);
        width: 100%;
        z-index: -1;
    }

.single_banner:hover img {
    -moz-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.single_banner img {
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.sale_banner {
    padding: 0 10px;
    position: relative;
    margin-bottom: 30px;
}

    .sale_banner img {
        width: 100%;
    }

.hover_effect1 {
    overflow: hidden;
    position: relative;
    display: block;
}

    .hover_effect1::before, .hover_effect1::after {
        background-color: rgba(255, 255, 255, 0.6);
        content: "";
        height: 100%;
        left: 0;
        opacity: 1;
        position: absolute;
        top: 0;
        transition: all 0.9s ease 0s;
        width: 100%;
        z-index: 1;
    }

    .hover_effect1::before {
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        -moz-transform: translate(105%, 0%);
        -webkit-transform: translate(105%, 0%);
        transform: translate(105%, 0%);
    }

    .hover_effect1::after {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        -moz-transform: translate(-105%, 0%);
        -webkit-transform: translate(-105%, 0%);
        transform: translate(-105%, 0%);
    }

    .hover_effect1:hover:before, .hover_effect1:hover:after {
        opacity: 0;
        -moz-transform: translate(0px, 0px);
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

.fb_info {
    position: absolute;
    top: 15px;
    padding: 15px;
    left: 15px;
    z-index: 9;
}

.fb_info2 {
    position: absolute;
    top: 50%;
    padding: 15px;
    left: 35px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    width: 40%;
}

.furniture_banner .single_bn_title1 {
    font-size: 80px;
    margin-bottom: 15px;
}

.sale-banner img {
    width: 100%;
}
/*===================================*
  04.END SHOP BANNER STYLE
*===================================*/

/*===================================*
  05.START CATEGORIES STYLE
*===================================*/
.categories_box {
    text-align: center;
}

    .categories_box a {
        display: block;
        padding: 35px 20px;
        background-color: #f7f7f7;
    }

    .categories_box i {
        font-size: 40px;
        display: block;
    }

    .categories_box span {
        text-transform: capitalize;
        margin-top: 5px;
        display: block;
    }

.cat_overlap {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 30px;
    z-index: 1;
    margin-top: -70px;
}

.cat_style1 .categories_box a {
    background-color: transparent;
    padding: 0px;
}

.cat_style1 .categories_box span {
    margin-top: 10px;
}
/*===================================*
  05.END CATEGORIES STYLE
*===================================*/

/*===================================*
  06.START ICON BOX STYLE
*===================================*/
.icon_box {
    margin-bottom: 30px;
}

.icon {
    margin-bottom: 15px;
}

.icon_box_content h1,
.icon_box_content h2,
.icon_box_content h3,
.icon_box_content h4,
.icon_box_content h5,
.icon_box_content h6 {
    text-transform: capitalize;
}

.icon i {
    font-size: 30px;
}

.icon_box p:last-child {
    margin: 0;
    margin-top: 10px;
    text-align: left;
}

.icon_box_content .link i {
    vertical-align: middle;
    margin-left: 2px;
}

.icon_box .icon img {
    width: 60px;
}

.box_img {
    margin-bottom: 15px;
}

.icon_box_style1 {
    text-align: center;
    padding: 0 40px;
    position: relative;
}

    .icon_box_style1 .icon i {
        font-size: 46px;
        line-height: 1;
    }

    .icon_box_style1::before {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        bottom: 15%;
        width: 1px;
        height: 200px;
        background-color: #ddd;
    }

@media only screen and (max-width: 991px) {
    .icon_box_style1::before {
        display: none;
    }
}

[class*="col-"]:last-child .icon_box_style1::before {
    content: normal;
}

.icon_box_style2 .icon {
    background-color: #fff;
    max-width: 78px;
    text-align: center;
    float: left;
    height: 78px;
    border-radius: 100%;
    line-height: 78px;
    position: relative;
    margin: 0px 20px 0px 0px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
    -ms-flex: 0 0 78px;
    flex: 0 0 78px;
}

.icon_box_style2:hover .icon {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: swing;
    animation-name: swing;
}

.icon_box_style2 .icon i {
    font-size: 40px;
    color: #ff6000;
    line-height: 78px;
}

.shopping_info {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

    .shopping_info .icon_box {
        margin-top: 0;
        padding-top: 30px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

.icon_box.icon_box_style3 {
    border: 1px solid #ddd;
    padding: 30px;
    margin-left: -1px;
    margin-top: -1px;
    margin-bottom: 0;
}

.icon_box_style3 .icon {
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
}

.icon_box_style3 .icon_box_content {
    overflow: hidden;
}

.icon_box_style3 .icon i {
    font-size: 36px;
    color: #ff6000;
    line-height: normal;
}

.icon_box_style3 .icon_box_content p {
    font-size: 14px;
    line-height: normal;
}

.icon_box_style4 {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

    .icon_box_style4 .icon i {
        background-color: #ff6000;
        color: #fff;
        width: 60px;
        height: 60px;
        display: inline-block;
        line-height: 60px;
        border-radius: 100%;
        font-size: 24px;
    }
/*===================================*
  06.END ICON BOX STYLE
*===================================*/

/*===================================*
  07.START PORTFOLIO STYLE
*===================================*/
.carousel_slider li {
    list-style: none;
}

.grid_filter {
    margin-bottom: 30px;
}

    .grid_filter li {
        display: inline-block;
    }

        .grid_filter li a {
            padding: 5px 15px;
            display: block;
            font-size: 16px;
            text-transform: capitalize;
        }

            .grid_filter li a.current {
                color: #ff6000;
            }

    .grid_filter.filter_style1 li a {
        padding: 5px 20px;
    }

        .grid_filter.filter_style1 li a.current {
            color: #fff;
            background-color: #ff6000;
        }

    .grid_filter.filter_style2 li a {
        border-bottom: 1px solid transparent;
    }

        .grid_filter.filter_style2 li a.current {
            border-bottom-color: #ff6000;
        }

.grid_container > li {
    list-style: none;
}

.gutter_small {
    margin: 0 -7.5px 0px -7.5px;
}

    .gutter_small > li {
        padding: 0 7.5px 0px 7.5px;
    }

.gutter_medium {
    margin: 0 -15px 0px -15px;
}

    .gutter_medium > li {
        padding: 0px 15px 0px 15px;
    }

        .gutter_medium > li .portfolio_item,
        .gutter_medium > li .image_gallery_item {
            margin-bottom: 30px;
        }

.gutter_small > li .portfolio_item,
.gutter_small > li .image_gallery_item {
    margin-bottom: 15px;
}

.grid_col2 > li {
    width: 50%;
    float: left;
}

.grid_col3 > li {
    width: 33.33%;
    float: left;
}

.grid_col4 > li {
    width: 25%;
    float: left;
}

.loadmore > li {
    transition: all 0.5s ease-in-out;
}
/*===================================*
  07.END PORTFOLIO STYLE
*===================================*/

/*===================================*
  08.START TESTIMONIAL STYLE
*===================================*/
.author_img img {
    max-width: 100px;
}

.author_name {
    overflow: hidden;
}

    .author_name h6 {
        margin-bottom: 5px;
    }

    .author_name span {
        color: #ff6000;
    }

.testimonial_box.box_shadow1 {
    margin: 10px;
}

.testimonial_desc p:last-child {
    margin-bottom: 0;
}

.testimonial_style1 .author_img {
    margin-right: 15px;
}

    .testimonial_style1 .author_img img {
        max-width: 60px;
    }

.testimonial_style1 .testimonial_desc {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.testimonial_style1 .testimonial_box {
    position: relative;
    z-index: 1;
}

.author_wrap {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial_style1 .author_wrap {
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial_wrap {
    padding: 0 60px;
}

/*===================================*
  08.END TESTIMONIAL STYLE
*===================================*/

/*===================================*
  09.START BLOG STYLE
*===================================*/
.blog_post {
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.blog_content {
    padding-top: 15px;
}

.blog_post .blog_img a {
    display: block;
    overflow: hidden;
}

.blog_img {
    position: relative;
    overflow: hidden;
}

    .blog_img img {
        width: 100%;
        transition: all 0.5s ease-in-out;
    }

.blog_meta {
    display: inline-block;
    margin-bottom: 5px;
    width: 100%;
}

    .blog_meta li {
        float: left;
        margin-right: 15px;
    }

        .blog_meta li:last-child {
            margin-right: 0;
        }

        .blog_meta li a {
            text-transform: capitalize;
        }

            .blog_meta li a i {
                margin-right: 5px;
                vertical-align: middle;
                color: #ff6000;
            }

.blog_title {
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

h6.blog_title {
    line-height: 24px;
}

.blog_text p {
    margin-bottom: 15px;
}

    .blog_text p:last-child {
        margin: 0;
    }

.fit-videos {
    background-color: #000000;
}

.blog_style1 {
    border-radius: 10px;
}

    .blog_style1 .blog_content {
        padding: 15px 20px;
        border-radius: 10px;
    }

    .blog_style1 .blog_img + .blog_content {
        border-radius: 0 0 10px 10px;
    }

    .blog_style1 .blog_img {
        border-radius: 10px 10px 0 0;
    }

        .blog_style1 .blog_img img {
            border-radius: 10px 10px 0 0;
            width: 100%;
        }

    .blog_style1:hover .blog_img img,
    .blog_style2:hover .blog_img img {
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .blog_style1.radius_all_5 {
        border-radius: 5px;
    }

        .blog_style1.radius_all_5 .blog_img,
        .blog_style1.radius_all_5 .blog_img img {
            border-radius: 5px 5px 0 0;
        }

        .blog_style1.radius_all_5 .blog_content {
            border-radius: 0 0 5px 5px;
        }

.blog_style2 .blog_content {
    padding: 15px;
}

.blog_post.blog_style3 {
    position: relative;
}

.blog_style3 .blog_content {
    position: absolute;
    bottom: 0;
    padding: 15px;
    left: 0;
    right: 0;
    z-index: 2;
}

.blog_style3 .blog_img img {
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.blog_style3 .blog_img::before {
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.0)), color-stop(100%, rgba(0,0,0,0.7)));
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
    background: -o-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
    background: -ms-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0.0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#000000',GradientType=0 );
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.post_date {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 30px;
    text-align: center;
    background-color: #ff6000;
    min-width: 60px;
    padding: 8px 10px;
    color: #ffffff;
    z-index: 2;
}

.blog_post.blog_style3 .blog_content a:hover {
    color: #ff6000;
}

.post_date strong {
    font-size: 30px;
    line-height: 1;
}

.blog_post.blog_style3 .blog_content a {
    color: #fff;
}

.blog_style4 .blog_title {
    margin-bottom: 10px;
}

.blog_img .owl-dots {
    position: absolute;
    top: 0;
    right: 15px;
}

.blog_thumbs .blog_post {
    display: inline-block;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.single_post .blog_content {
    padding-top: 20px;
}

.single_post .blog_title {
    font-size: 30px;
    line-height: normal;
    margin-bottom: 20px;
}

.single_post .blog_meta {
    padding-bottom: 20px;
    margin-bottom: 0;
    width: 100%;
}

.post_author .author_img {
    float: left;
    padding-right: 15px;
}

.author_info {
    overflow: hidden;
}

    .author_info .author_name {
        font-weight: 600;
    }

    .author_info p {
        font-size: 14px;
        line-height: 26px;
    }

        .author_info p:last-child {
            margin-bottom: 0;
        }

.post_author {
    margin-top: 40px;
    margin-bottom: 40px;
}

.post_nav_home {
    display: table;
    margin: 0 auto;
    font-size: 20px;
}

.post_nav .nav_meta {
    text-transform: capitalize;
    display: block;
    font-size: 14px;
    color: #687188;
}

.post_nav {
    text-transform: capitalize;
}

.post_nav_prev {
    padding-left: 30px;
    position: relative;
}

.post_nav_next {
    padding-right: 30px;
    position: relative;
    text-align: right;
}

    .post_nav_next i {
        right: 0;
        left: auto;
    }

.post_nav i {
    position: absolute;
    left: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.content_title * {
    margin-bottom: 30px;
    font-weight: 600;
}

.comment_user img {
    height: auto;
    max-width: 80px;
}

.comment_content .meta_data h6 {
    font-size: 16px;
}

.comment_info {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

    .comment_info:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

.comment_content p:last-child {
    margin-bottom: 0;
}

.children {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 20px;
    margin-left: 60px;
}

.comment_content {
    padding-left: 20px;
}

.comment-time {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 8px;
    font-style: italic;
}

.comment-reply i {
    margin-right: 5px;
}

.comment-area .comment_list {
    margin-bottom: 40px;
}

.comment-area {
    padding-top: 10px;
}
/*===================================*
  09.END BLOG STYLE
*===================================*/

/*===================================*
  10.START NEWLETTER STYLE
*===================================*/
.newsletter_small {
    padding: 70px 0;
}

.newsletter_form form,
.newsletter_form2 form {
    position: relative;
}

.rounded-input {
    border-radius: 50px;
}

.newsletter_form input,
.newsletter_form input:focus,
.newsletter_form2 input,
.newsletter_form2 input:focus {
    border: 0;
}

    .newsletter_form input.form-control-sm {
        height: 50px;
        padding: 10px 140px 10px 20px;
    }

.newsletter_form button {
    position: absolute;
    right: 0px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.newsletter_form2 input,
.newsletter_form2 input:focus {
    height: 59px;
    padding: 10px 140px 10px 20px;
}

.newsletter_form2 button {
    position: absolute;
    right: 5px;
    top: 4px;
}

.newsletter_box {
    padding: 70px 50px;
    background-color: #fff;
    position: relative;
}

    .newsletter_box::before {
        content: "";
        position: absolute;
        left: 10px;
        right: 0px;
        bottom: 0px;
        top: 10px;
        box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
        z-index: 0;
    }

.newsletter_wrap {
    position: relative;
    margin: 30px 0;
}

    .newsletter_wrap::before {
        content: "";
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: -15px;
        top: -15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        z-index: -1;
        background-color: #fff;
    }

    .newsletter_wrap::after {
        content: "";
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: -30px;
        top: -30px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        z-index: -2;
        background-color: #fff;
    }

.newsletter_form .btn-send {
    background-color: #ff6000;
    color: #fff;
    font-size: 20px;
    right: 5px;
    border: 0;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
}

.newsletter_form .btn-send2 {
    background-color: transparent;
    color: #ff6000;
    font-size: 20px;
    right: 5px;
    width: 50px;
    height: 40px;
    line-height: 40px;
    border-left: 1px solid #ddd;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    padding: 0 0 0 5px;
}

.input_tran_white input, .input_tran_white input:focus {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    box-shadow: none;
}

    .input_tran_white input::-webkit-input-placeholder {
        color: #ffffff;
        opacity: 1
    }

    .input_tran_white input::-moz-placeholder {
        color: #ffffff;
        opacity: 1
    }

    .input_tran_white input:-ms-input-placeholder {
        color: #ffffff;
        opacity: 1
    }

    .input_tran_white input::-ms-input-placeholder {
        color: #ffffff;
        opacity: 1
    }

    .input_tran_white input::placeholder {
        color: #ffffff;
        opacity: 1
    }

.newsletter_text {
    position: relative;
    padding-left: 80px;
}

    .newsletter_text p:last-child {
        margin: 0;
    }

    .newsletter_text::before {
        content: "\e999";
        position: absolute;
        left: 0;
        color: #fff;
        font-family: linearicons;
        font-size: 65px;
        line-height: normal;
        opacity: 0.4;
    }
/*===================================*
  10.END NEWLETTER STYLE
*===================================*/

/*===================================*
  12.START MAP STYLE
*===================================*/
.map iframe {
    height: 460px;
    width: 100%;
    border: 0;
    display: block;
}

.contact_map {
    height: 400px;
}

.contact_map2 {
    height: 100%;
}

.map1 {
    height: 460px;
}
/*===================================*
  12.END MAP STYLE
*===================================*/

/*===================================*
  13.START TEAM STYLE
*===================================*/
.team_img img {
    width: 100%;
}

.team_box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.team_style1 .team_img {
    position: relative;
}

    .team_style1 .team_img::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        transition: all 0.5s ease-in-out;
        opacity: 0;
        z-index: 1;
    }

.team_style1:hover .team_img::before {
    opacity: 1;
}

.team_style1 .social_icons + .team_title {
    margin-top: 10px;
}

.team_style1 .team_content {
    padding-top: 15px;
}

.team_title h1,
.team_title h2,
.team_title h3,
.team_title h4,
.team_title h5,
.team_title h6 {
    font-weight: 600;
}

.team_style1 .team_title span {
    display: block;
}

.team_single_img {
    margin-bottom: 30px;
}

.team_single_info .team_title h3 {
    font-weight: 600;
}

.team_single_content {
    padding-left: 30px;
    border-left: 1px solid #eeeeee;
}

.team_single_info .contact_info {
    margin: 20px 0;
}

.team_email {
    font-size: 20px;
    display: inline-block;
}

.team_style1 .social_icons {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.team_style1:hover .social_icons {
    top: 50%;
    opacity: 1;
}
/*===================================*
  13.END TEAM STYLE
*===================================*/

/*===================================*
  14.START CLIENT LOGO STYLE
*===================================*/
.client_logo .cl_logo img {
    opacity: 0.7;
    width: 163px;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
}

.client_logo .cl_logo:hover img {
    opacity: 1;
}

.client_logo.cl_logo_style1 .cl_logo img {
    opacity: 1;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.client_logo.cl_logo_style1 .cl_logo:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
/*===================================*
  14.END CLIENT LOGO STYLE
*===================================*/

/*===================================*
  15.START BREADCRUMB STYLE
*===================================*/
.breadcrumb_section {
    padding: 150px 0;
    width: 100%;
}

    .breadcrumb_section.page-title-mini {
        padding: 70px 0;
    }

.page-title-mini .page-title h1 {
    font-size: 28px;
}

.page-title-mini .breadcrumb li {
    font-size: 14px;
}

.header_wrap.transparent_header + .breadcrumb_section {
    padding-top: 200px;
}

.header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
    padding-top: 250px;
}

.page-title h1 {
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    line-height: normal;
}

.page_title_light *, .page_title_light .breadcrumb-item, .page_title_light .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f3d1";
    font-family: "Ionicons";
    vertical-align: middle;
}

.page-title + .breadcrumb {
    margin-top: 15px;
}

.page-title + span {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.page_title_video {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

    .page_title_video video {
        object-fit: cover;
        width: 100%;
    }

.breadcrumb-item a i {
    font-size: 26px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}

.page-title-video {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -3;
}

    .page-title-video video {
        object-fit: cover;
        width: 100%;
    }
/*===================================*
  15.END BREADCRUMB STYLE
*===================================*/

/*===================================*
  16.START CONTACT STYLE
*===================================*/
.contact_wrap li {
    list-style: none;
}

.contact_wrap li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 25px;
    -ms-flex-align: center;
    align-items: center;
}

.contact_icon {
    margin-right: 20px;
}

    .contact_icon i {
        font-size: 34px;
        color: #ff6000;
    }

.contact_text span {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contact_text p:last-child {
    margin-bottom: 0;
}

.contact_text a {
    color: #687188;
    line-height: 28px;
}

    .contact_text a:hover {
        color: #ff6000;
    }

.contact_style1 {
    text-align: center;
    padding: 20px;
    border: 2px solid #eee;
    margin-bottom: 30px;
}

    .contact_style1 .contact_text span {
        margin-bottom: 5px;
    }

    .contact_style1 .contact_icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

.contact_style2 {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 40px 20px;
    border-radius: 10px;
}

    .contact_style2 .contact_icon {
        background-color: #DFFFED;
        margin: 0 0 5px;
        height: 90px;
        width: 90px;
        text-align: center;
        display: inline-block;
        overflow: hidden;
        border-radius: 100%;
        position: relative;
        z-index: 1;
    }

        .contact_style2 .contact_icon i {
            line-height: 90px;
        }

.contact_style3 {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 40px 20px;
    border-radius: 10px;
}

    .contact_style3 .contact_icon {
        border: 1px solid #ff6000;
        margin: 0 0 5px;
        height: 80px;
        width: 80px;
        text-align: center;
        display: inline-block;
        overflow: hidden;
        border-radius: 100%;
        position: relative;
        z-index: 1;
    }

        .contact_style3 .contact_icon i {
            line-height: 78px;
            transition: all 0.5s ease-in-out;
        }

        .contact_style3 .contact_icon::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: #ff6000;
            z-index:;
            transition: all 0.5s ease-in-out;
            -moz-transform: scale(0);
            -webkit-transform: scale(0);
            transform: scale(0);
            border-radius: 100%;
            z-index: -1;
        }

    .contact_style3:hover .contact_icon::before {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .contact_style3:hover .contact_icon i {
        color: #fff;
    }

.contact_box {
    position: relative;
    padding: 50px 0px;
    display: table;
    width: 100%;
}

.contact_form {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    float: right;
    margin-right: 30px;
    position: relative;
    z-index: 9;
}

.contact_box .map {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

    .contact_box .map iframe {
        height: 100%;
    }
/*===================================*
  16. END CONTACT STYLE
*===================================*/

/*===================================*
  17.START DIVIDER STYLE
*===================================*/
.divider {
    position: relative;
    overflow: hidden;
    height: 4px;
    z-index: 9;
}

    .divider.center_icon,
    .divider.left_icon,
    .divider.right_icon,
    .divider.text_divider {
        height: auto;
    }

        .divider.left_icon i {
            padding-left: 0;
            padding-right: 20px;
        }

    .divider.center_icon {
        text-align: center;
    }

    .divider.right_icon i {
        padding-right: 0;
        padding-left: 20px;
    }

    .divider.right_icon {
        text-align: right;
    }

    .divider.text_divider {
        text-align: center;
    }

        .divider.text_divider span {
            background-color: #fff;
            position: relative;
            z-index: 1;
            font-size: 30px;
            padding: 0 30px;
        }

    .divider.divider_style1 .divider_icon {
        padding-right: 10px;
        background-color: #fff;
        display: inline-block;
        position: relative;
        z-index: 9;
    }

    .divider.divider_style1.center_icon .divider_icon {
        padding-left: 10px;
    }

    .divider.divider_style1.right_icon .divider_icon {
        padding-right: 0px;
        padding-left: 10px;
    }

    .divider.divider_style1 i {
        background-color: #ff6000;
        border-radius: 100%;
        width: 40px;
        height: 40px;
        font-size: 18px;
        display: block;
        padding: 0;
        text-align: center;
        line-height: 40px;
        color: #fff;
    }

    .divider:before,
    .divider:after {
        content: '';
        position: absolute;
        width: 100%;
        top: 50%;
        left: 0px;
        height: 0;
        border-top: 1px solid #dddddd;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .divider::before {
        margin-top: -1px;
    }

    .divider::after {
        margin-top: 1px;
    }

    .divider i {
        background-color: #fff;
        color: #d9d9d9;
        position: relative;
        z-index: 1;
        font-size: 30px;
        padding: 0 40px;
    }
/*===================================*
  17.END DIVIDER STYLE
*===================================*/

/*===================================*
  18.START ACCORDION STYLE
*===================================*/
.accordion .card .card-header {
    background-color: transparent;
    padding: 0px;
    margin: 0;
}

.accordion .card-header a {
    padding: 15px 40px 15px 15px;
    display: block;
    line-height: normal;
}

.accordion .card-body p:last-child {
    margin: 0;
}

.card-body p {
    margin-bottom: 15px;
}

.accordion_style1.accordion .card {
    background-color: transparent;
    margin-bottom: 15px;
    border-radius: 0;
    border: 0;
}

    .accordion_style1.accordion .card:last-child {
        margin-bottom: 0;
    }

.accordion_style1 .card-body {
    padding: 15px 0 10px 0;
}

.accordion.accordion_style1 .card-header a {
    padding-left: 0;
    padding-top: 0;
    font-weight: 600;
}

.accordion_style1 .card-header a::after {
    content: "\f208";
    font-family: "Ionicons";
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    right: 15px;
    top: 0px;
}

.accordion_style1 .card-header a[aria-expanded="false"]::after {
    content: "\f217";
}

.accordion_style2 .card-header {
    border: 0;
    background-color: transparent;
    padding: 0px;
}

    .accordion_style2 .card-header a {
        padding: 15px 40px 15px 15px;
        display: block;
        font-weight: 600;
    }

.accordion_style2 .card-body {
    padding: 0 15px 15px 15px;
}

.accordion_style2 .card-header a::after {
    content: "\f126";
    font-family: "Ionicons";
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    right: 15px;
    top: 15px;
}

.accordion_style2 .card-header a.collapsed:after {
    content: "\f123";
}

.accordion_style3.accordion .card {
    background-color: transparent;
    margin-bottom: 15px;
    border-radius: 0;
}

.accordion.accordion_style3 .card-header {
    border: 0;
}

    .accordion.accordion_style3 .card-header a {
        font-weight: 600;
    }

.accordion.accordion_style3.accordion > .card {
    border: 1px solid rgba(0,0,0,.125);
}

.accordion.accordion_style3.accordion .card-body {
    border-top: 1px solid rgba(0,0,0,.125);
}

.accordion_style3 .card-header a::after {
    content: "\f208";
    font-family: "Ionicons";
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    right: 15px;
    top: 16px;
}

.accordion_style3 .card-header a[aria-expanded="false"]::after {
    content: "\f217";
}

.accordion_style4 .card-header a {
    padding: 20px 20px 20px 50px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
}

    .accordion_style4 .card-header a::after {
        content: "\f126";
        font-family: "Ionicons";
        font-size: 14px;
        font-weight: normal;
        position: absolute;
        left: 20px;
        top: 25px;
    }

    .accordion_style4 .card-header a.collapsed::after {
        content: "\f123";
    }

.accordion_style4 > .card .card-header {
    margin-bottom: -1px;
}
/*===================================*
  18.END ACCORDION STYLE
*===================================*/

/*===================================*
  19.START 404 ERROR STYLE
*===================================*/
.error_wrap {
    width: 100%;
}

.error_txt {
    color: #333;
    font-size: 150px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.search_form form {
    position: relative;
}

    .search_form form input {
        height: 50px;
        padding: 5px 60px 5px 20px;
    }

        .search_form form input:focus {
            height: 50px;
        }

.search_form .icon_search {
    position: absolute;
    right: 18px;
    top: 50%;
    padding: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-left: 1px solid #ddd;
    border-radius: 0;
    padding-left: 15px;
}

    .search_form .icon_search i {
        font-size: 24px;
        margin-right: 0;
    }

.form-note {
    margin-top: 20px;
}
/*===================================*
  19.END 404 ERROR STYLE
*===================================*/

/*===================================*
  20.START LOGIN REGISTER STYLE
*===================================*/
.login_wrap {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.login_register_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.login_footer {
    margin-bottom: 20px;
    margin-top: 5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

    .login_footer a {
        color: #687188;
    }

.different_login {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

    .different_login span {
        background-color: #fff;
        padding: 0 15px;
        position: relative;
    }

    .different_login::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        right: 0;
        border-top: 1px solid #ddd;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.btn-login li {
    margin: 0px 5px 0;
    display: inline-block;
}

    .btn-login li a {
        border-radius: 5px;
        padding: 10px 20px;
        color: #fff;
        display: block;
    }

        .btn-login li a i {
            margin-right: 10px;
            font-size: 18px;
            margin-left: 0;
        }

.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
}

    .btn-facebook:hover {
        color: #fff;
        background: #344e86;
        border-color: #344e86;
    }

.btn-google {
    background: #d85040;
    border-color: #d85040;
}

    .btn-google:hover {
        color: #fff;
        background: #d33d2b;
        border-color: #d33d2b;
    }
/*===================================*
  20.END LOGIN REGISTER STYLE
*===================================*/

/*===================================*
  21.START COMMING SOON STYLE
*===================================*/
.cs_wrap {
    min-height: 100vh;
    position: relative;
    padding: 30px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.countdown_time {
    display: table;
    width: 100%;
}

    .countdown_time .countdown_box {
        float: left;
        width: 25%;
        font-family: 'Roboto';
        padding: 0 15px;
    }

.countdown-wrap {
    display: inline-block;
    text-align: center;
}

.countdown_time .cd_text {
    display: block;
}

.countdown_box .countdown {
    color: #292b2c;
    font-size: 40px;
}

.countdown_white .countdown_box .countdown, .countdown_white .countdown_box .cd_text {
    color: #fff;
}

.countdown_style1 .countdown_box {
    position: relative;
    text-align: center;
}

    .countdown_style1 .countdown_box::before {
        content: ":";
        font-size: 40px;
        font-weight: bold;
        color: #000;
        position: absolute;
        right: -6px;
    }

.countdown_style1.countdown_white .countdown_box::before {
    color: #fff;
}

.countdown_style1 .countdown_box:last-child:before {
    content: normal;
}

.cs_logo {
    margin-bottom: 30px;
    display: block;
}

.cs_title {
    line-height: 44px;
    margin-bottom: 20px;
}

.cs_content .countdown_time,
.cs_content .newsletter_form {
    margin-bottom: 30px;
}

.countdown_style2,
.countdown_style3 {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    display: -ms-flexbox;
    display: flex;
}

    .countdown_style2 .countdown_box .countdown-wrap {
        text-align: center;
        border: 1px solid #ddd;
        width: 100%;
        padding: 10px;
    }

    .countdown_style3 .countdown-wrap {
        width: 100%;
        background-color: #fff;
        padding: 15px;
        box-shadow: 0 0 5px rgba(0,0,0,0.03);
    }

.countdown_time.countdown_style4 {
    margin: 0 -2px;
    width: auto;
    display: block;
}

    .countdown_time.countdown_style4 .countdown_box {
        padding: 0 2px;
    }

.countdown_style4 .countdown_box .countdown-wrap {
    text-align: center;
    background-color: #f2f2f2;
    width: 100%;
    padding: 10px;
}
/*===================================*
  21.END COMMING SOON STYLE
*===================================*/

/*===================================*
  22.START DEAL OF THE DAY STYLE
*===================================*/
.deal_timer .countdown_time .countdown_box:first-child,
.deal_timer .countdown_time .countdown_box .cd_text {
    display: none;
}

.deal_timer {
    position: relative;
    padding-left: 15px;
}

    .deal_timer::before {
        content: "\e72b";
        position: absolute;
        left: 0;
        top: 3px;
        font-family: 'themify';
        font-size: 20px;
        color: #ff6000;
    }

    .deal_timer .countdown_style1 .countdown_box::before {
        font-size: 24px;
        font-weight: normal;
        right: -10px;
    }

    .deal_timer .countdown_box .countdown {
        font-size: 24px;
    }

    .deal_timer .countdown_box {
        width: auto;
        padding-right: 0;
    }

.deal_wrap {
    border: 2px solid #ff6000;
    border-radius: 20px;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

    .deal_wrap .product_img {
        max-width: 300px;
        width: 100%;
    }

.deal_content {
    width: 100%;
    padding: 30px 30px 30px 0;
}

    .deal_content .product_info {
        padding: 0;
    }

.deal_wrap .countdown_style1 .countdown_box::before {
    font-size: 24px;
    font-weight: normal;
    right: -10px;
}

.deal_wrap .countdown_box .countdown {
    font-size: 24px;
}

.deal_wrap .countdown_time .cd_text {
    font-size: 13px;
}

.deal_progress {
    padding-top: 5px;
    display: block;
}

.stock-available {
    float: right;
}

.deal_progress .progress {
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.deal_progress .progress-bar {
    background-color: #ff6000;
    text-indent: -99999px;
}
/*===================================*
  22.END DEAL OF THE DAY STYLE
*===================================*/

/*===================================*
  23.START SHOP DESIGN
*===================================*/
.shorting_icon {
    font-size: 18px;
    margin-right: 10px;
    height: 45px;
    width: 45px;
    float: left;
    text-align: center;
    line-height: 45px;
    border: 1px solid #CED4DA;
    border-radius: 4px;
}

    .shorting_icon .ti-layout-list-thumb {
        font-size: 24px;
        line-height: 45px;
    }

    .shorting_icon.active {
        background-color: #ff6000;
        color: #fff;
        border-color: #ff6000;
    }

.result_count {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.product_header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.product_header_right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.products_view {
    display: inline-block;
    vertical-align: middle;
}

.product,
.product_wrap {
    background-color: #fff;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 7px rgba(0,0,0,0.1);
}

.product_box {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

    .product_box .product_info {
        position: relative;
    }

    .product_box .add-to-cart {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;
        background-color: #fff;
        padding: 10px 15px 15px 15px;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        visibility: hidden;
    }

    .product_box:hover .add-to-cart {
        bottom: 0px;
        opacity: 1;
        visibility: visible;
    }

    .product_box .pr_action_btn li a {
        border-radius: 100%;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }

.product_wrap .pr_action_btn li a {
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    line-height: 35px;
}

    .product_wrap .pr_action_btn li a i {
        line-height: 35px;
        font-size: 16px;
    }

.carousel_slider .product,
.carousel_slider .product_wrap {
    margin: 5px;
}

.product_img img {
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product_img .product_hover_img {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}

@media all and (min-width:959px) {
    .product:hover .product_img .product_hover_img,
    .product_box:hover .product_img .product_hover_img,
    .product_wrap:hover .product_img .product_hover_img {
        opacity: 1;
        z-index: 0;
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .product:hover .product_img:before,
    .product_box:hover .product_img:before {
        opacity: 1;
    }

    .product:hover .product_action_box li,
    .product_box:hover .product_action_box li,
    .product_wrap:hover .product_action_box li {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }

    .product:hover .pr_switch_wrap {
        opacity: 1;
        visibility: visible;
    }

    .product:hover .product_color_switch span {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

.pr_desc {
    display: none;
}

.pr_flash {
    background-color: #FF9F00;
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff;
    padding: 2px 8px;
    font-size: 13px;
    z-index: 1;
}

.product_info {
    padding: 15px;
}

.price {
    color: #ff6000;
    font-weight: 600;
}

.product_price del {
    font-size: 14px;
    margin-right: 5px;
    margin-left: 3px;
}

.product-price del {
    margin-left: 5px;
    color: #919191;
}

.on_sale {
    display: inline-block;
    color: #388e3c;
    font-size: 14px;
}

.product_price {
    margin-bottom: 5px;
}

.product .rating_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.product.text-center .rating_wrap {
    -ms-flex-pack: center;
    justify-content: center;
}

.rating_num {
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
}

.rating_wrap .rating {
    overflow: hidden;
    position: relative;
    height: 20px;
    font-size: 12px;
    width: 70px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    vertical-align: middle;
}

.rating::before {
    font-size: 12px;
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    position: absolute;
    left: 0;
    float: left;
    color: #F6BC3E;
}

.product_rate {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    color: #F6BC3E;
}

    .product_rate::before {
        font-size: 12px;
        content: "\f005\f005\f005\f005\f005";
        top: 0;
        position: absolute;
        left: 0;
        font-weight: 900;
    }

.product_action_box {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    right: 0;
    text-align: center;
    padding-top: 0;
    transition: all .5s ease-in-out;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media all and (max-width:960px) {
    .product_action_box {
        display: none;
    }
}

.pr_action_btn {
    display: table;
    margin: 0 auto;
}

.product_img {
    height: 295px;
    position: relative;
    overflow: hidden;
}

@media all and (max-width:1280px) {
    .product_img {
        height: auto;
    }
}
/* .product_img::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0,0,0,0.2);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	z-index: 1;
} */

.pr_action_btn li {
    position: relative;
    margin: 0px 5px;
    display: inline-block;
}

.product_wrap .pr_action_btn li {
    display: block;
    margin: 10px 0;
}

.product_wrap .pr_action_btn {
    margin: 0 0 0 10px;
}

.product_action_box li {
    -webkit-transform: translate(0, 15px);
    -ms-transform: translate(0, 15px);
    -o-transform: translate(0, 15px);
    transform: translate(0, 15px);
    opacity: 0;
}

    .product_action_box li:nth-child(1) {
        -webkit-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s;
    }

    .product_action_box li:nth-child(2) {
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .product_action_box li:nth-child(3) {
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

    .product_action_box li:nth-child(4) {
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

.pr_action_btn li a {
    background-color: #fff;
    font-size: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    width: 37px;
    height: 37px;
    padding: 0;
    display: block;
    text-align: center;
}

    .pr_action_btn li a i {
        vertical-align: middle;
        line-height: 37px;
        font-size: 18px;
    }

    .pr_action_btn li a:hover {
        background-color: #ff6000;
        color: #fff;
    }

p.cart_item_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    color: #4a4a4a;
}

span.cart_item_spec {
    min-width: 24px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 2;
    color: #697288;
}

.product .product_title a {
    font-size: 14px;
    height: 38px;
    display: block;
}

.product_title a:hover {
    color: inherit;
}

.product .product_title,
.product_box .product_title,
.product_wrap .product_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    letter-spacing: 0.41px;
    line-height: normal;
}

.product_color_switch span {
    height: 15px;
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    position: relative;
    cursor: pointer;
    border-radius: 100%;
}

.product .product_color_switch span {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
}

.product_color_switch span.active::before {
    content: "";
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: -3px;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.product .pr_switch_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 7px 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.product_color_switch span:first-child {
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.product_color_switch span:nth-child(2) {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.product_color_switch span:nth-child(3) {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.product_color_switch span:nth-child(4) {
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.product_color_switch span:nth-child(5) {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.product_color_switch span:nth-child(6) {
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.product_color_switch span:nth-child(7) {
    -webkit-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}

.product_list .product,
.product_list .product_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    margin-bottom: 30px;
}

.product_list .product_img {
    max-width: 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    width: 100%;
}

.product_list .product_info {
    padding: 0px 0 0 15px;
    text-align: left;
    max-width: 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}

.product_list .product_img::before {
    content: normal;
}

.mfp-ajax-holder .mfp-content .ajax_quick_view {
    max-width: 980px;
    background-color: #fff;
    margin: 6px auto;
    padding: 10px;
    padding-top: 40px;
    position: relative;
}

.mfp-close {
    width: 30px;
    height: 30px;
    line-height: normal;
}

.product-image {
    position: relative;
}

.pr_detail .pr_desc {
    display: inline-block;
}

    .pr_detail .pr_desc p {
        margin-bottom: 15px;
    }

.pr_detail .rating_wrap {
    float: right;
    margin-top: 7px;
}

.pr_detail .product_price {
    float: left;
}

.pr_detail .price {
    vertical-align: middle;
    font-size: 26px;
}

.cart-product-quantity {
    margin: 7px 5px 7px 0;
    display: table;
}

.quantity {
    display: table;
}

    .quantity .minus,
    .quantity .plus,
    .mfp-close-btn-in .mfp-close {
        background-color: #eee;
        display: block;
        float: left;
        border-radius: 50px;
        cursor: pointer;
        border: 0;
        padding: 0;
        width: 34px;
        height: 34px;
        line-height: 36px;
        text-align: center;
        font-size: 20px;
        margin: 4px;
    }

    .quantity .minus {
        padding-left: 4px;
    }

    .quantity .qty {
        float: left;
        width: 55px;
        height: 36px;
        border: 1px solid #ddd;
        background-color: transparent;
        text-align: center;
        padding: 0;
        margin: 3px;
    }

.cart_extra {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
}

.zoomContainer {
    z-index: 99;
}

.zoom_image .zoomContainer {
    z-index: 1043;
}

.zoom_gallery_image .zoomContainer {
    z-index: 0;
}

.switch_lable {
    float: left;
    margin-top: 5px;
}

.pr_detail .pr_switch_wrap {
    margin-bottom: 10px;
}

.product_size_switch {
    padding-left: 45px;
}

    .product_size_switch span {
        cursor: pointer;
        min-width: 24px;
        padding: 0px 3px;
        display: inline-block;
        border: 2px solid #ddd;
        text-align: center;
        line-height: 22px;
        font-size: 13px;
        text-align: left;
        margin: 3px;
    }

        .product_size_switch span.active {
            border-color: #ff6000;
            background-color: #ff6000;
            color: #fff;
        }

.list_brand li {
    list-style: none;
    margin-bottom: 10px;
}

    .list_brand li:last-child {
        margin-bottom: 0;
    }

.list_brand .custome-checkbox .form-check-label {
    color: #292b2c;
}

.cart_btn .add_wishlist, .cart_btn .add_compare {
    font-size: 20px;
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.product_gallery_item a {
    border: 1px solid #ddd;
    display: block;
    padding: 5px;
}

.product-meta li {
    list-style: none;
    margin-top: 10px;
}

.slick-vertical .slick-slide {
    border: 0;
}

.slick-list {
    padding: 0 !important;
}

.product_gallery_item.slick-slider .slick-slide {
    margin-right: 5px;
    margin-left: 5px;
}

.product-image .slick-list {
    margin-right: -5px;
    margin-left: -5px;
}

.product_gallery_item a.active {
    border-color: #ff6000;
}

.vertical_gallery #pr_item_gallery {
    width: 15%;
    float: left;
    margin-right: 10px;
}

.vertical_gallery .slick-list {
    margin-right: 0;
    margin-left: 0;
}

.vertical_gallery .product_gallery_item.slick-slider .slick-slide {
    margin-bottom: 12px;
    margin-right: 0;
    margin-left: 0;
}

.vertical_gallery .slick-prev, .vertical_gallery .slick-next {
    height: 40px;
    width: 100%;
}

.vertical_gallery .slick-prev {
    border-radius: 0 0 5px 5px;
    left: 0;
    right: 0;
    top: -40px;
    margin: 0 auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.vertical_gallery .slick-next {
    border-radius: 5px 5px 0 0;
    right: 0;
    left: 0;
    bottom: -40px;
    top: auto;
    margin: 0 auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.vertical_gallery .slick-prev:before {
    content: "\f10e"
}

.vertical_gallery .slick-next:before {
    content: "\f105"
}

.vertical_gallery .slick_slider:hover .slick-prev {
    top: 0;
}

.vertical_gallery .slick_slider:hover .slick-next {
    bottom: 0px;
    right: 0;
}

.product_img_box {
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.product_img_zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    font-size: 18px;
    background-color: #FAFAFA;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
}

.product_share {
    margin-top: 15px;
}

    .product_share > span {
        margin-right: 10px;
    }

    .product_share > span, .product_share .social_icons {
        vertical-align: middle;
        display: inline-block;
    }

        .product_share .social_icons li {
            padding-bottom: 0;
        }

.product_sort_info {
    margin-bottom: 15px;
}

    .product_sort_info li {
        font-size: 14px;
        color: #292B2C;
        padding-bottom: 10px;
        list-style: none;
        padding-left: 22px;
        position: relative;
    }

        .product_sort_info li i {
            color: #ff6000;
            position: absolute;
            font-size: 16px;
            left: 0;
            top: 3px;
        }

.filter_price .ui-widget.ui-widget-content {
    border: 0;
    border-radius: 0;
    background-color: #ddd;
    height: 4px;
    margin-bottom: 20px;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.filter_price .ui-slider .ui-slider-range {
    background-color: #ff6000;
    border-radius: 0;
}

.filter_price .ui-slider .ui-slider-handle {
    cursor: pointer;
    background-color: #fff;
    border-radius: 100%;
    border: 0;
    height: 18px;
    top: -8px;
    width: 18px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.price_range {
    color: #292b2c;
}

#flt_price {
    margin-left: 5px;
    font-weight: 600;
}

.shop_container {
    position: relative;
}

.loading_pr {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9;
}

.shop_container .loading_pr {
    top: -7px;
}

.shop_container .mfp-preloader {
    top: 100px;
}

.shop_container:not(.list) .list_product_action_box,
.shop_container.list .product_action_box {
    display: none;
}

.shop_container.list .product_img::before {
    content: normal;
}

.shop_container.list [class*="col-"] {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.shop_container.list .grid_item {
    position: static !important;
    transform: none !important;
}

.shop_container.list .product {
    display: inline-block;
    width: 100%;
}

.shop_container.list .product_img {
    float: left;
    width: 100%;
    max-width: 280px;
}

@media all and (max-width:980px) {
    .shop_container.list .product_img {
        max-width: 100%;
    }
}

.shop_container.list .product .product_title {
    font-size: 20px;
    margin-bottom: 15px;
}

    .shop_container.list .product .product_title a {
        min-height: 32px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

.shop_container.list .product_info {
    overflow: hidden;
    text-align: left;
    padding: 15px 30px;
}

.shop_container.list .product_price {
    float: left;
}

.shop_container.list .product .rating_wrap {
    display: block;
    float: right;
}

.shop_container.list .pr_desc {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    min-height: 58px;
    max-height: 84px;
}

    .shop_container.list .pr_desc p {
        margin-bottom: 0px;
    }

.shop_container.list .product_action_box,
.shop_container.list .product .pr_switch_wrap,
.shop_container.list .product .pr_switch_wrap {
    position: static;
}

.shop_container.list .product .pr_switch_wrap {
    padding: 0;
    opacity: 1;
    visibility: visible;
    margin-bottom: 10px;
}

.shop_container.list .product .product_color_switch span {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.shop_container.list .product_action_box li {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
    filter: alpha(opacity=1);
}

.shop_container.list .pr_action_btn {
    display: block;
    margin: 0;
}

    .shop_container.list .pr_action_btn li {
        margin: 0 5px 0 0;
        display: inline-block;
        vertical-align: middle;
    }

        .shop_container.list .pr_action_btn li a {
            box-shadow: none;
        }

            .shop_container.list .pr_action_btn li a:hover {
                background-color: transparent;
                color: #ff6000;
            }

.shop_container.list .list_product_action_box .pr_action_btn li.add-to-cart a {
    font-size: 16px;
    width: auto;
    height: auto;
    padding: 12px 30px;
    background-color: #ff6000;
    border: 1px solid #ff6000;
    color: #fff;
    border-radius: 4px;
}

.shop_container.list .pr_action_btn li.add-to-cart a:hover {
    background-color: transparent;
    color: #ff6000;
}

.shop_container.list .pr_action_btn li.add-to-cart a i {
    line-height: normal;
    margin-right: 5px;
}

#Additional-info table td:first-child {
    width: 25%;
}

.product_tab_title span {
    font-weight: 600;
}

.tab-content.shop_info_tab {
    margin-top: 40px;
}

.comment_list {
    margin-bottom: 20px;
}

.comments li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.comment_img {
    float: left;
}

    .comment_img img {
        border-radius: 100%;
        max-width: 100px;
    }

.comment_block {
    padding-left: 120px;
}

.customer_meta {
    margin-bottom: 5px;
}

.comment_block .rating_wrap {
    float: right;
}

.description p:last-child {
    margin: 0;
}

.review_author {
    display: block;
    color: #292b2c;
    font-weight: 500;
}

.comment-date {
    font-style: italic;
}

.star_rating > span {
    color: #F6BC3E;
}

.star_rating span {
    cursor: pointer;
    display: inline-block;
}

    .star_rating span i {
        font-size: 20px;
    }

.star_rating > span.selected i::before {
    font-weight: 900;
}

.releted_product_slider .item {
    margin: 10px 0px 0px;
}

.releted_product_slider .product {
    margin-bottom: 15px;
}

.mfp-ajax-holder .compare_box {
    width: 90%;
    margin: 6px auto;
    background-color: #fff;
    position: relative;
    padding: 30px;
}

.compare_box .table {
    margin: 0;
    display: block;
}

.compare_box table tr td {
    vertical-align: middle;
    width: 27%;
}

    .compare_box table tr td.product_name {
        text-transform: capitalize;
    }

    .compare_box table tr td.row_title {
        width: 270px;
        font-weight: 600;
    }

.row_remove a, .row_remove a:hover {
    color: #FF0000;
}

.in-stock {
    color: #388e3c;
}

.out-stock {
    color: #dc3545;
}

.product_name a {
    font-weight: 600;
}

.row_color .product_color_switch span {
    pointer-events: none;
}

.product-thumbnail img {
    max-width: 100px;
}

.shop_cart_table th, .shop_cart_table td,
.wishlist_table th, .wishlist_table td {
    vertical-align: middle;
    text-align: center;
}

    .shop_cart_table th.product-name, .shop_cart_table td.product-name,
    .wishlist_table th.product-name, .wishlist_table td.product-name {
        text-align: left;
        text-transform: capitalize;
    }

.shop_cart_table .quantity {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
}

.product-remove a i {
    height: 30px;
    width: 30px;
    color: #292b2c;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    font-size: 14px;
}

    .product-remove a i:hover {
        background-color: #F00;
        color: #fff;
    }

.shop_cart_table td.product-price,
.shop_cart_table td.product-subtotal {
    font-weight: 600;
}

.shop_cart_table .table {
    margin: 0;
}

.toggle_info {
    padding: 20px;
    background-color: #F7F7F7;
}

    .toggle_info span {
        padding-left: 25px;
        display: inline-block;
        width: 100%;
        position: relative;
    }

    .toggle_info i {
        margin-right: 10px;
        color: #ff6000;
        position: absolute;
        left: 0;
        top: 5px;
    }

.login_form .panel-body, .coupon_form .panel-body {
    border: 1px solid #ddd;
    padding: 30px;
    margin-top: 30px;
}

label.label_info {
    color: #292b2c !important;
    font-weight: 600;
}

.ship_detail {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.product-qty {
    font-weight: 600;
}

.product-subtotal {
    font-weight: 600;
}

.order_review {
    background-color: #f7f8fb;
    padding: 30px;
}

.order_table thead th {
    border-bottom-width: 1px;
    font-weight: 600;
}

.order_table tfoot th {
    font-weight: 600;
}

.order_table tbody td {
    border: 0;
}

.payment_method {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.payment_option .custome-radio {
    margin-bottom: 10px;
}

.payment-text {
    display: none;
    margin-top: 5px;
    margin-bottom: 0;
}

.payment_option .custome-radio:first-child .payment-text {
    display: block;
}

.payment_option .custome-radio .form-check-label {
    color: #292b2c;
    font-weight: 600;
}

.wishlist_table .table td {
    border-bottom: 1px solid #dee2e6;
}

.wishlist_table .badge {
    line-height: normal;
    vertical-align: middle;
    padding: 2px 10px;
}

#load-more {
    transition: none;
}

.grid_item_hide .product,
.grid_item_hide .blog_post {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.grid_item_hide {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transform: scale(0);
}

.loading {
    background: url('../images/loading.gif') center center no-repeat;
    font-size: 0 !important;
    background-color: #000 !important;
    border: 0;
    height: 51px;
    width: 50px;
    padding: 0;
}

    .loading::after, .loading::before {
        content: normal;
    }

.load_more_wrap {
    margin-top: 20px;
}

    .load_more_wrap span {
        display: inline-block;
        margin: 0;
        line-height: 1;
        font-size: 14px;
    }

.order_complete i {
    color: #ff6000;
    font-size: 80px;
    margin-bottom: 20px;
}

.empty_icon {
    background-color: #DFFFED;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 100%;
    margin-bottom: 25px;
}

.card-body .comments {
    margin-top: 5px;
}
/*===================================*
  23.END SHOP DESIGN
*===================================*/

/*===================================*
  24.START ELEMENT DESIGN
*===================================*/
.form-control {
    color: #000;
    box-shadow: none;
    height: 50px;
    padding: 8px 15px;
}

    .form-control:focus,
    .custom-file-input:focus ~ .custom-file-label {
        color: #000;
        box-shadow: none;
        height: 50px;
    }

textarea.form-control, textarea.form-control:focus {
    height: auto;
    padding: 12px 15px;
}

.form-control-sm,
.form-control-sm:focus,
.custom_select select.form-control-sm,
.custom_select select.form-control-sm:focus {
    height: 45px;
}

select.not_chosen,
select.first_null option:first-child,
select.not_chosen:focus,
select.form-control.not_chosen,
select.form-control.first_null option:first-child,
select.not_chosen.form-control:focus {
    color: #6c757d;
}

select option {
    color: #000;
}

.custom_select {
    position: relative;
}

    .custom_select select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 1px solid #ced4da;
        padding: 8px 35px 8px 15px;
        width: 100%;
        height: 50px;
    }

    .custom_select::before {
        content: "\e64b";
        font-family: 'themify';
        position: absolute;
        display: block;
        color: #848484;
        top: 50%;
        right: 15px;
        font-weight: 900;
        pointer-events: none;
        font-size: 12px;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.custom-file-label::after {
    height: 48px;
    border: 0;
    line-height: 40px;
    border-radius: 0;
}

.custom-file-label, .custom-file, .custom-file-input {
    height: 50px;
    line-height: 38px;
}

.rounded_input .form-control,
.rounded_input input {
    border-radius: 30px;
    padding: 10px 20px;
}

.rounded_input .custom_select select {
    padding-right: 40px;
}

.rounded_input .custom_select::before {
    right: 20px;
}

.rounded_input textarea.form-control, .rounded_input textarea.form-control:focus {
    padding: 15px 20px;
}

.input_group {
    position: relative;
}

.input_icon {
    position: absolute;
    right: 20px;
    top: 14px;
    pointer-events: none;
    color: #848484;
}

.rounded_input .input_icon {
    top: 12px;
}

.pagination .page-item a {
    color: #0E93D8;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0px;
    z-index: 1;
}

.page-link:focus {
    box-shadow: none;
}

.pagination_style1 li,
.pagination_style2 li,
.pagination_style3 li,
.pagination_style4 li {
    margin-right: 5px;
}

.pagination_style1 .page-item a {
    border: 2px solid #dee2e6;
    border-radius: 0 !important;
    color: #687188;
    margin-left: 0px;
    line-height: 36px;
}

    .pagination_style1 .page-item a i {
        line-height: 36px;
    }

.pagination_style1 .page-item.disabled .page-link,
.pagination_style3 .page-item.disabled .page-link {
    color: #c6c6c6;
    pointer-events: none;
    background-color: #fff;
    border-color: #f4f4f4;
}

.pagination_style1 .page-item.active .page-link,
.pagination_style1 .page-item .page-link:hover {
    background-color: #ff6000;
    border-color: #ff6000;
    color: #fff;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: url("../images/loading.gif") center center no-repeat;
    text-align: center;
    margin-top: -12px;
    margin-left: -12px;
    z-index: 1044;
    text-indent: -9999px;
    background-color: #000;
    padding: 25px;
    border-radius: 5px;
}

.widget_title {
    margin-bottom: 25px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.widget_categories li,
.widget_archive li {
    padding-bottom: 10px;
    list-style: none;
}

    .widget_categories li a,
    .widget_archive li a {
        position: relative;
    }

        .widget_categories li a::before,
        .widget_archive li a:before {
            content: "\f3d1";
            font-family: "Ionicons";
            height: auto;
            line-height: normal;
            margin-right: 10px;
        }

    .widget_categories li:last-child,
    .widget_archive li:last-child {
        padding-bottom: 0;
    }

.widget_categories .categories_num,
.widget_archive .archive_num {
    float: right;
    font-size: 14px;
}

.sidebar .widget + .widget {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 30px;
}

.widget_newsletter p {
    font-size: 14px;
    line-height: normal;
}

.widget_newsletter button {
    padding: 5px 12px;
}

    .widget_newsletter button i, .widget_newsletter .btn i {
        font-size: 18px;
    }

.widget_recent_post li,
.widget_course li {
    list-style: none;
    margin-bottom: 15px;
    width: 100%;
    display: inline-block;
}

.widget_course li {
    display: table;
}

.post_footer {
    display: inline-block;
    vertical-align: top;
}

.widget_recent_post li:last-child,
.widget_course li:last-child {
    margin-bottom: 0px;
}

footer .widget_recent_post .post_img img {
    border: 0;
}

.post_img,
.widget_course li .course_img {
    float: left;
    margin-right: 10px;
}

    .post_img img {
        width: 80px;
    }

.post_content,
.widget_course li .course_content {
    overflow: hidden;
}

    .post_content h6 {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .post_content .product_title {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .post_content .product_price {
        margin-bottom: 0px;
    }

.tags a {
    background-color: #f7f7f7;
    font-size: 14px;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 5px;
    color: #333;
}

    .tags a:hover {
        background-color: #ff6000;
        color: #fff;
    }

.tags_style1 a {
    border-radius: 40px;
}

.widget_tweet_feed li {
    list-style: none;
    position: relative;
    font-size: 14px;
    padding-bottom: 15px;
    padding-left: 25px;
}

    .widget_tweet_feed li::before {
        content: "\e74b";
        font-family: 'themify';
        position: absolute;
        left: 0;
        top: 0;
        color: #292B2C;
    }

.widget_tweet_feed a {
    color: #ff6000;
}

.widget_tweet_feed li:last-child {
    padding-bottom: 0px;
}

.widget_instafeed {
    margin: -2px;
    display: table;
}

    .widget_instafeed li {
        list-style: none;
        float: left;
        width: 33.33%;
        padding: 2px;
        position: relative;
    }

.instafeed_col4 li {
    width: 25%;
}

.widget_instafeed li a {
    display: block;
    position: relative;
    overflow: hidden;
}

    .widget_instafeed li a::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        opacity: 0;
        background-color: rgba(0,0,0,0.8);
        transition: all 0.5s ease-in-out;
        z-index: 1;
    }

.widget_instafeed img {
    width: 100%;
}

.insta_icon {
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    opacity: 0;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.widget_instafeed li:hover a::before, .widget_instafeed li:hover .insta_icon {
    opacity: 1;
}

.insta_img {
    position: relative;
}

.instagram_icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    -moz-transform: translateY(-50%) rotate(30deg) scale(1.8);
    -webkit-transform: translateY(-50%) rotate(30deg) scale(1.8);
    transform: translateY(-50%) rotate(30deg) scale(1.8);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

    .instagram_icon i {
        color: #fff;
        font-size: 50px;
    }

.insta_img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.insta_img:hover:before {
    opacity: 1;
    visibility: visible;
}

.insta_img:hover .instagram_icon {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(-50%) rotate(0deg) scale(1);
    -webkit-transform: translateY(-50%) rotate(0deg) scale(1);
    transform: translateY(-50%) rotate(0deg) scale(1);
}

.follow_box {
    position: absolute;
    top: 50%;
    z-index: 9;
    text-align: center;
    right: 0;
    left: 0;
    max-width: 400px;
    background-color: rgba(255,255,255,01);
    margin: 0 auto;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 25px;
    border-radius: 80px;
}

    .follow_box i {
        position: absolute;
        font-size: 80px;
        left: 0;
        right: 0;
        z-index: -1;
        opacity: 0.1;
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.instafeed_box {
    overflow: hidden;
}

    .instafeed_box a {
        position: relative;
        display: block;
    }

        .instafeed_box a::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            opacity: 0;
            background-color: rgba(0,0,0,0.4);
            z-index: 1;
            display: block;
            transition: all 0.5s ease-in-out;
        }

        .instafeed_box a:hover:before {
            opacity: 1;
        }

        .instafeed_box a img {
            transition: all 0.5s ease-in-out;
        }

        .instafeed_box a:hover img {
            -moz-transform: scale(1.1);
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

.nav-tabs li.nav-item a {
    background-color: transparent;
    border: 0;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    padding: 5px 20px;
}

.tab-content {
    margin-top: 25px;
}

.tab-style1 .nav-tabs,
.tab-style2 .nav-tabs {
    border-bottom: 0;
}

    .tab-style1 .nav-tabs li.nav-item a.active, .tab-style1 .nav-tabs li.nav-item a.active:hover,
    .tab-style2 .nav-tabs li.nav-item a.active, .tab-style2 .nav-tabs li.nav-item a.active:hover {
        color: #ff6000;
    }

    .tab-style2 .nav-tabs li.nav-item a {
        padding: 0px 15px;
    }

    .tab-style2 .nav-tabs li.nav-item:last-child a {
        padding-right: 0;
    }

.tab-style3 .nav-tabs li.nav-item a {
    background-color: transparent;
    display: block;
    padding: .5rem 1rem;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid rgba(0,0,0,0);
    text-align: center;
}

.tab-style3 .nav-tabs .nav-item a.active {
    border-bottom-color: #ff6000;
    color: #ff6000;
}

.tab_slider > .tab-pane {
    display: block;
    height: 0;
}

.tab_slider .tab-pane.active {
    height: auto;
    display: block;
    -webkit-animation-name: moveUp;
    animation-name: moveUp;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: cubic-bezier(.26,.69,.37,.96);
    animation-timing-function: cubic-bezier(.26,.69,.37,.96);
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(25px);
        transform: translateY(25px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes moveUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(25px);
        transform: translateY(25px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.heading_tab_header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

    .heading_tab_header [class*="heading_"] {
        float: left;
    }

.view_all i, .view_all span {
    vertical-align: middle;
}

.custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
    color: #687188;
    padding: 0;
    vertical-align: middle;
}

.custome-checkbox .form-check-input {
    display: none;
}

.custome-checkbox .form-check-label span {
    vertical-align: middle;
}

.custome-checkbox .form-check-label::before {
    content: "";
    border: 2px solid #ced4da;
    height: 17px;
    width: 17px;
    margin: 0px 8px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
    opacity: 1;
}

.custome-checkbox input[type="checkbox"] + .form-check-label::after {
    content: "";
    width: 11px;
    position: absolute;
    top: 50%;
    left: 3px;
    opacity: 0;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -moz-transform: translateY(-65%) rotate(-45deg);
    -webkit-transform: translateY(-65%) rotate(-45deg);
    transform: translateY(-65%) rotate(-45deg);
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
    background-color: #ff6000;
    border-color: #ff6000;
}

.custome-radio .form-check-input, .custome-checkbox .form-check-input {
    display: none;
}

.custome-radio .form-check-label::before {
    content: "";
    border: 1px solid #908f8f;
    height: 16px;
    width: 16px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 8px;
}

.custome-radio input[type="radio"] + .form-check-label::after {
    content: "";
    background-color: #ff6000;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    top: 8px;
    left: 3px;
    opacity: 0;
}

.custome-radio .form-check-label, .custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
}

.custome-radio input[type="radio"]:checked + .form-check-label::before {
    border-color: #ff6000;
}

.custome-radio input[type="radio"]:checked + .form-check-label::after {
    opacity: 1;
}

.custome-checkbox input[disabled] + .form-check-label,
.custome-radio input[disabled] + .form-check-label {
    color: #d0d0d0;
}

    .custome-checkbox input[disabled] + .form-check-label::before,
    .custome-radio input[disabled] + .form-check-label::before {
        border-color: #e8e8e8;
    }

.owl-theme .owl-nav {
    margin-top: 0;
}

body .owl-theme .owl-nav [class*="owl-"] {
    background-color: #fff;
    color: #222;
    font-size: 26px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
    height: 50px;
    padding: 0;
    margin: 0;
    width: 50px;
    text-align: center;
}

.owl-theme .owl-nav [class*="owl-"] i {
    line-height: normal;
}

.owl-theme .owl-dots {
    font-size: 0;
    margin-top: 15px;
}

    .owl-theme .owl-dots .owl-dot span {
        background-color: transparent;
        border: 1px solid #ff6000;
        cursor: pointer;
        margin: 3px;
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background-color: #ff6000;
    }

.dot_style1.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
}

.nav_style1.owl-theme .owl-nav [class*="owl-"],
.nav_style5.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkittransform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 0;
    width: 30px;
}

    .nav_style1.owl-theme .owl-nav [class*="owl-"]:hover {
        background-color: #fff;
        color: #555;
    }

.nav_style1.owl-theme .owl-nav .owl-prev {
    left: -50px;
}

.nav_style1.owl-theme .owl-nav .owl-next {
    right: -50px;
}

.nav_style2.owl-theme .owl-nav [class*="owl-"] {
    background-color: transparent;
    position: absolute;
    bottom: 10px;
}

    .nav_style2.owl-theme .owl-nav [class*="owl-"]:hover,
    .nav_style3.owl-theme .owl-nav [class*="owl-"]:hover,
    .nav_style4.owl-theme .owl-nav [class*="owl-"]:hover {
        color: #555;
    }

.nav_style2.owl-theme .owl-nav .owl-prev,
.nav_style5.owl-theme .owl-nav .owl-prev {
    left: 0px;
}

.nav_style2.owl-theme .owl-nav .owl-next,
.nav_style5.owl-theme .owl-nav .owl-next {
    right: 0px;
}

.nav_style3.owl-theme .owl-nav [class*="owl-"],
.nav_style4.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    top: -90px;
    border-radius: 0;
    right: 0;
    height: auto;
    width: auto;
    background-color: transparent;
}

.nav_style3.owl-theme .owl-nav .owl-prev {
    right: 40px;
}

.nav_style4.owl-theme .owl-nav .owl-prev {
    left: 0px;
    right: auto;
}

    .nav_style4.owl-theme .owl-nav .owl-prev i::before {
        content: "\ec43";
        font-family: 'Linearicons';
    }

.nav_style4.owl-theme .owl-nav .owl-next i::before {
    content: "\ec44";
    font-family: 'Linearicons';
}

.nav_style5.owl-theme .owl-nav .owl-prev, .nav_style5.owl-theme .owl-nav .owl-next {
    opacity: 0;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .nav_style5.owl-theme .owl-nav .owl-prev:hover, .nav_style5.owl-theme .owl-nav .owl-next:hover {
        background-color: #ff6000;
        color: #fff;
    }

.nav_style5.owl-theme:hover .owl-nav .owl-prev {
    left: 20px;
    opacity: 1;
}

.nav_style5.owl-theme:hover .owl-nav .owl-next {
    right: 20px;
    opacity: 1;
}

.dot_white.owl-theme .owl-dots .owl-dot span {
    border-color: #fff;
}

.dot_white.owl-theme .owl-dots .owl-dot.active span, .dot_white.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #fff;
}

.slick-prev.slick-disabled::before, .slick-next.slick-disabled::before {
    opacity: 1;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background-color: #fff;
}

.slick-prev {
    left: -50px;
    border-radius: 0 5px 5px 0;
    opacity: 0;
}

.slick-next {
    right: -50px;
    border-radius: 5px 0 0 5px;
    opacity: 0;
}

.slick-prev::before {
    content: "\f108";
    font-family: "Ionicons";
    color: #fff;
    opacity: 1;
    display: block;
    font-size: 22px;
}

.slick-next::before {
    content: "\f10b";
    font-family: "Ionicons";
    color: #fff;
    opacity: 1;
    display: block;
    font-size: 22px;
}

.slick-prev, .slick-next {
    height: 50px;
    width: 40px;
    /* background-color: #fff; */
    z-index: 9;
    transition: all 0.5s ease-in-out;
}

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        background: none;
    }

button.slick-prev.slick-arrow:before,
button.slick-next.slick-arrow:before {
    width: 20px;
    height: 20px;
    color: #ff6000;
    content: "\f124";
    background: #fff !important;
    font-size: 20px;
    border-radius: 5px;
}

button.slick-next.slick-arrow:before {
    content: "\f125";
}

.side-nav .alignment a .bx {
    padding: 0px;
}

.side-nav .alignment a .scaling-svg-container:hover .bx:before {
    color: #ff6000;
}
/* .slick-prev:hover, .slick-next:hover {
	background-color: #ff6000;
} */
.slick-prev:hover:before, .slick-next:hover:before {
    color: #fff;
}

.slick_slider:hover .slick-prev {
    opacity: 1;
    left: 0;
}

.slick_slider:hover .slick-next {
    opacity: 1;
    right: -2px;
}

.social_icons [class*="sc_"] {
    color: #fff !important;
}

    .social_icons [class*="sc_"] i {
        transition: all 0.3s ease-in-out;
        display: block;
        line-height: 36px;
    }

    .social_icons [class*="sc_"]:hover i {
        -webkit-animation: toLeftFromRight 0.3s forwards;
        -moz-animation: toLeftFromRight 0.3s forwards;
        animation: toLeftFromRight 0.3s forwards;
    }

.sc_facebook {
    background-color: #3b5998 !important;
    border-color: #3b5998 !important;
}

.sc_gplus,
.sc_google {
    background-color: #dd4b39 !important;
    border-color: #dd4b39 !important;
}

.sc_linkedin {
    background-color: #0e76a8 !important;
    border-color: #0e76a8 !important;
}

.sc_rss {
    background-color: #ee802f !important;
    border-color: #ee802f !important;
}

.sc_skype {
    background-color: #00aff0 !important;
    border-color: #00aff0 !important;
}

.sc_twitter {
    background-color: #00acee !important;
    border-color: #00acee !important;
}

.sc_youtube {
    background-color: #c4302b !important;
    border-color: #c4302b !important;
}

.sc_vimeo {
    background-color: #86c9ef !important;
    border-color: #86c9ef !important;
}

.sc_yahoo {
    background-color: #720e9e !important;
    border-color: #720e9e !important;
}

.sc_tumblr {
    background-color: #34526f !important;
    border-color: #34526f !important;
}

.sc_instagram {
    background-color: #3f729b !important;
    border-color: #3f729b !important;
}

.sc_pinterest {
    background-color: #c8232c !important;
    border-color: #c8232c !important;
}

.sc_dribbble {
    background-color: #EA4C89 !important;
    border-color: #EA4C89 !important;
}

.sc_reddit {
    background-color: #C6C6C6 !important;
    border-color: #C6C6C6 !important;
}

.sc_github {
    background-color: #171515 !important;
    border-color: #171515 !important;
}

.sc_android {
    background-color: #A4C639 !important;
    border-color: #A4C639 !important;
}

.sc_windows {
    background-color: #00A7E7 !important;
    border-color: #00A7E7 !important;
}

.sc_tux {
    background-color: #C1C1C1 !important;
    border-color: #C1C1C1 !important;
}

.sc_delicious {
    background-color: #205cc0 !important;
    border-color: #205cc0 !important;
}

.sc_paypal {
    background-color: #00588b !important;
    border-color: #00588b !important;
}

.sc_blogger {
    background-color: #fc4f08 !important;
    border-color: #fc4f08 !important;
}

.sc_flickr {
    background-color: #ff0084 !important;
    border-color: #ff0084 !important;
}

.sc_yahoo {
    background-color: #720e9e !important;
    border-color: #720e9e !important;
}

.sc_dropbox {
    background-color: #3d9ae8 !important;
    border-color: #3d9ae8 !important;
}

.sc_ebay {
    background-color: #89c507 !important;
    border-color: #89c507 !important;
}

.sc_wordpress {
    background-color: #1e8cbe !important;
    border-color: #1e8cbe !important;
}

.sc_yelp {
    background-color: #c41200 !important;
}

blockquote {
    font-size: 20px;
    line-height: 34px;
}

    blockquote p {
        line-height: 34px;
    }

        blockquote p:last-child {
            margin: 0;
        }

.blockquote_style1 {
    padding-left: 20px;
    border-left: 3px solid #ddd;
    margin: 30px 0;
}

    .blockquote_style1 p {
        color: #292B2C;
    }

.blockquote_style2 {
    background-color: #ff6000;
    padding: 20px;
    position: relative;
}

    .blockquote_style2 * {
        color: #fff;
        font-size: 16px;
        line-height: 28px;
    }

    .blockquote_style2::before {
        content: "\f10e";
        position: absolute;
        left: 20px;
        top: 10px;
        color: #fff;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 70px;
        opacity: 0.3;
        line-height: normal;
    }

.blockquote_style3 {
    background-color: #FAFAFA;
    padding: 20px;
    border-left: 2px solid #ff6000;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 28px;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
    position: relative;
}

    .blockquote_style3::before {
        content: "\f10e";
        position: absolute;
        left: 20px;
        top: 10px;
        color: #000;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 70px;
        opacity: 0.05;
        line-height: normal;
        pointer-events: none;
    }

    .blockquote_style3 p {
        line-height: 28px;
    }

.blockquote_style4 {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

    .blockquote_style4::before {
        content: "\f10d";
        position: absolute;
        left: 50px;
        top: 10px;
        color: #000;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 70px;
        opacity: 0.05;
        line-height: normal;
    }

    .blockquote_style4,
    .blockquote_style4 p {
        color: #222;
    }

.blog_post_footer {
    padding-bottom: 30px;
    padding-top: 15px;
}

.mdtp__wrapper {
    bottom: auto;
    top: 50%;
    -moz-transform: translateX(-50%) translateY(-50%) scale(1);
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.modal {
    padding-right: 0 !important;
}

.page_soon {
    font-size: 10px;
    color: #fff;
    padding: 0px 5px;
    border-radius: 20px;
    background-color: #28A745;
    font-weight: 600;
}

.alert .close {
    font-weight: normal;
    margin-left: 10px;
}

.alert_style1 {
    border-radius: 0;
    border-left: 3px solid;
    padding: 20px;
    position: relative;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
}

.alert > i {
    margin-right: 5px;
    font-size: 18px;
    vertical-align: middle;
}

.alert_style2 {
    border-radius: 20px;
    padding: 20px 20px;
    background-color: #fff;
    border-left: 3px solid;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-top: 0;
    border-bottom: 0;
    border-right: 3px solid;
    ;
}

.button_group .btn {
    margin-bottom: 20px;
}

.trading_img {
    margin-top: -40px;
}

.term_conditions h6 {
    margin-bottom: 15px;
}

.term_conditions ul,
.term_conditions ol {
    padding-left: 15px;
}

.term_conditions p,
.term_conditions li {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 28px;
}

.subscribe_popup .modal-body {
    padding: 0;
}

.subscribe_popup .modal-content {
    border: 0;
    border-radius: 0;
}

.popup_content {
    padding: 50px;
    text-align: center;
}

.subscribe_popup .close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    opacity: 1;
    text-shadow: none;
    width: 40px;
    height: 40px;
}

    .subscribe_popup .close i {
        font-size: 40px;
    }

.modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 9999;
}
/* 修改 */
.text-white, footer p {
    color: #FFFFFF !important;
}

.feature-color {
    background-color: #eee;
}

    .feature-color .icon_box {
        color: #ff6000;
    }

footer .footer_function_link {
    justify-content: flex-start;
    width: 50%;
    text-align: left;
}

    footer .footer_function_link ul {
        align-items: flex-start;
    }

.seven-logo {
    width: 132px;
    margin-right: 8px;
}

.seven-logo-two {
    width: 93px;
}

header.header .info-menu,
.l-menu {
    box-shadow: none;
}

.index-title {
    font-size: 24px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.05px;
    color: #6d6d6d;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.mr-30 {
    margin-right: 30px;
}

.text-orange {
    color: #ff6000;
}

p.index-remark {
    margin-bottom: 6px;
}

.back-to-old {
    position: absolute;
    left: 300px;
    top: 35px;
}

.cart_btn .btn {
    padding: 12px 5px;
    margin: 0px 3px;
    width: 130px;
}

.seven-logo {
    width: 170px;
}

.nav-flex {
    margin-right: 30px;
}

.cart-zoom-in i {
    font-size: 25px;
    margin-left: 25px;
}

.scaling-svg-container .cart_count {
    position: absolute;
    right: 15px;
    left: auto;
    top: 15px;
}

@media all and (max-width:960px) {
    .nav-flex {
        margin-right: 0;
        max-width: calc(100% - 100px);
    }

    .scaling-svg-container .cart_count {
        right: 0px;
    }

    .product_img:before {
        display: none;
    }

    .cart-zoom-in {
        display: none;
    }

    .l-cubHeader {
        display: block;
    }

    header.header .info-menu {
        height: 50px;
    }

    .index-title {
        font-size: 15px;
    }

    .nav-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"] {
        margin-top: 0px;
    }

    header.header .sub-menu .change-unit-menu li a {
        width: 70px;
    }

    header.header .sub-menu .change-unit-menu li div {
        border-left: 0px;
        padding: 0px 5px;
    }

    .bottom_header.main_menu_uppercase {
        padding-top: 15px;
    }
}

header.header .sub-menu .change-unit-menu {
    position: absolute;
    bottom: auto;
    top: 20px;
}

@media all and (max-width:640px) {
    .cart_btn .btn {
        width: 116px;
        font-size: 13px;
    }

    .seven-logo {
        width: 170px;
    }

    header.header .sub-menu .change-unit-menu {
        top: 6px;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        justify-content: space-between;
    }
}

.bottom_header {
    border-top: 1px solid #ff6000;
}

header.header .info-menu a {
    padding-left: 0px;
}

.pd-30 {
    padding: 30px;
}

#dislike-modal .mfp-close {
    margin: 10px;
}

#dislike-modal .modal-title {
    font-family: MicrosoftJhengHei;
    font-size: 16px;
    font-weight: bold;
    color: #4a4a4a;
}

/* dropdown */

.dropdown-menu .dropdown-item {
    font-size: 1rem;
    color: #999;
}
/*     Dropdown css   */
/*-------------------*/
.show > .dropdown-menu {
    /*dropdown wrapper has show class dropdown menu display block */
    display: block;
}

/*  dropdown toggle css */
/*---------------------*/
.btn.dropdown-toggle.dropdown-toggle-split {
    padding: 0 1rem;
    border-left-color: rgba(255, 255, 255, 0.2) !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*   dropdown menu  */
/*-----------------*/
.dropdown-menu {
    box-shadow: -7px 8px 16px 0px rgba(55, 70, 95, 0.2);
    left: -50px !important;
}

    .dropdown-menu::before {
        border-top: 1px solid #DFE3E7;
        border-left: 1px solid #DFE3E7;
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        width: .75rem;
        height: .75rem;
        display: block;
        background: #FFFFFF;
        transform: rotate(45deg) translate(-7px);
        z-index: 10;
        box-sizing: border-box;
    }

    .dropdown-menu .dropdown-header {
        font-weight: 500;
    }

    .dropdown-menu .dropdown-item {
        display: flex;
        align-items: center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .dropdown-menu .dropdown-item:hover {
            color: #ff6000;
        }


        .dropdown-menu .dropdown-item .dropdown-item-emoji {
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        .dropdown-menu .dropdown-item:active i,
        .dropdown-menu .dropdown-item.active i {
            color: #FFFFFF;
        }

    .dropdown-menu.dropdown-menu-right::before {
        right: .6rem;
        left: auto;
    }

    .dropdown-menu i {
        color: #fff;
    }

.dropdown .dropdown-toggle::after,
.dropup .dropdown-toggle::after,
.dropright .dropdown-toggle::after,
.dropleft .dropdown-toggle::after {
    border: none !important;
    font-family: 'boxicons';
    content: "\ea48" !important;
    position: relative;
    top: 1px;
    right: 0px;
    left: .714rem;
    padding: 0;
    margin: 0;
    vertical-align: 0;
}

.dropdown .dropdown-toggle.dropdown-toggle-split:after,
.dropup .dropdown-toggle.dropdown-toggle-split:after,
.dropright .dropdown-toggle.dropdown-toggle-split:after,
.dropleft .dropdown-toggle.dropdown-toggle-split:after {
    left: 0;
}

.dropdown .dropdown-toggle.nav-hide-arrow::after,
.dropup .dropdown-toggle.nav-hide-arrow::after,
.dropright .dropdown-toggle.nav-hide-arrow::after,
.dropleft .dropdown-toggle.nav-hide-arrow::after {
    display: none;
}

.dropdown .dropdown-toggle:focus,
.dropup .dropdown-toggle:focus,
.dropright .dropdown-toggle:focus,
.dropleft .dropdown-toggle:focus {
    outline: 0;
}


.dropdown-notification {
    padding: 13px 0;
}

    .dropdown-notification .nav-link-label {
        position: relative;
    }

    .dropdown-notification .media-heading {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
    }

    .dropdown-notification .notification-text {
        margin-bottom: 0.5rem;
        font-size: smaller;
        color: #828D99;
    }

    .dropdown-notification .notification-tag {
        position: relative;
        top: -4px;
    }

    .dropdown-notification .dropdown-menu.dropdown-menu-right {
        right: -2px;
        padding: 0;
    }

        .dropdown-notification .dropdown-menu.dropdown-menu-right::before {
            background: #ff6000;
            border-color: #ff6000;
        }

        .dropdown-notification .dropdown-menu.dropdown-menu-right .scrollable-container .read-notification {
            background-color: #f2f4f4;
        }

    .dropdown-notification .dropdown-menu-header {
        border-top-left-radius: 0.267rem;
        border-top-right-radius: 0.267rem;
        background: #ff6000;
    }

        .dropdown-notification .dropdown-menu-header .dropdown-header {
            color: #FFFFFF;
        }

.dropdown-menu .text-orange {
    color: #ff6000;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
}

.btn-disabled {
    background-color: #ccc;
    border: 2px solid #ccc;
    cursor: default;
    pointer-events: none;
}

.clearfix {
    clear: both;
}

.btn-addtocart:hover .bx-cart:before,
.btn-checkout:hover .bx-dollar-circle:before {
    transition: color 0.3s;
    color: #ff6000;
}

.navbar .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a,
.dark_skin .navbar .navbar-nav .dropdown-menu li a:hover {
    color: #000;
}

.mb-20 {
    margin-bottom: 20px;
}

#loginModal {
    top: 100px;
    padding-right: 17px !important;
}

    #loginModal .modal-content .modal-header .modal-title {
        font-family: "微軟正黑體";
        font-weight: 400;
        font-size: 1.2rem;
    }

    #loginModal .modal-content .modal-header .close {
        padding: 0;
        margin: 0;
        height: auto;
        width: 2.4rem;
        background-color: transparent;
        border-radius: 50%;
        color: #fff;
        float: right;
    }

@media (min-width: 576px) {
    #loginModal .modal-dialog {
        max-width: 540px;
        margin: 1.75rem auto;
    }
}

#loginModal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #FFFFFF;
    background-clip: padding-box;
    border: none solid rgba(0, 0, 0, 0.2);
    border-radius: 0.267rem;
    outline: 0;
}

#loginModal .modal-header {
    padding: 5px 10px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #FF6000;
    color: #fff;
    display: block;
}

    #loginModal .modal-header .close {
        height: auto;
        background-color: transparent;
        color: #fff;
        float: right;
    }

    #loginModal .modal-header .modal-title {
        color: #fff;
    }


#loginModal .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.3rem 2.3rem;
    padding-top: 1.3rem;
    padding-right: 2.3rem;
    padding-bottom: 1.3rem;
    padding-left: 2.3rem;
}

    #loginModal .modal-body .login-op-logo {
        display: block;
        width: 250px;
    }

    #loginModal .modal-body .btn-login {
        border: 0;
        border-radius: 5px;
        color: white;
        height: 40px;
        text-align: center;
        width: 250px;
        margin: 20px 0px;
    }

    #loginModal .modal-body .btn-login-op {
        background: #FC5D28;
    }

    #loginModal .modal-body hr.social-login {
        line-height: 1em;
        position: relative;
        outline: 0;
        border: 0;
        color: black;
        text-align: center;
        height: 1.5em;
        opacity: .5;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        #loginModal .modal-body hr.social-login:before {
            content: '';
            background: black;
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 1px;
        }

        #loginModal .modal-body hr.social-login:after {
            content: attr(data-content);
            position: relative;
            display: inline-block;
            color: black;
            padding: 0 .5em;
            line-height: 1.5em;
            color: black;
            background-color: #fcfcfa;
        }

.btn-soclial-login-facebook {
    background-color: #4267b2;
}

.btn-social-login-line {
    background-color: #00C300;
}

@media only screen and (min-width: 960px) {
    #loginModal {
        top: 0;
    }
}
/* 縮小失敗。正在傳回未縮小的內容。
(31,27): run-time error CSS1046: Expect comma, found '0'
(31,31): run-time error CSS1046: Expect comma, found '/'
 */
.alertify,
.alertify-show,
.alertify-log {
    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275); /* easeOutBack */
}

.alertify-hide {
    -webkit-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045); /* easeInBack */
}

.alertify-log-hide {
    -webkit-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045); /* easeInBack */
}

.alertify-cover {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 50%);
    /* filter: alpha(opacity=0); */
    /* opacity: 0; */
}

.alertify-cover-hidden {
    display: none;
}

.alertify {
    position: fixed;
    z-index: 99999;
    top: 100px;
    left: 50%;
    width: 400px;
    max-width: 90%;
    transform: translateX(-50%);
    /* margin-left: -275px; */
    opacity: 1;
}

.alertify-hidden {
    /* -webkit-transform: translate(0, -150px);
  -moz-transform: translate(0, -150px);
  -ms-transform: translate(0, -150px);
  -o-transform: translate(0, -150px);
  transform: translateY(0, 0px); */
    top: -100px;
    opacity: 0;
    display: none;
}
/* overwrite display: none; for everything except IE6-8 */
:root * > .alertify-hidden {
    pointer-events: none;
    display: block;
    visibility: hidden;
}

.alertify-logs {
    position: fixed;
    z-index: 5000;
    top: 10px;
    right: 10px;
    width: 300px;
}

.alertify-logs-hidden {
    display: none;
}

.alertify-log {
    display: block;
    margin-top: 10px;
    position: relative;
    right: -300px;
    /* opacity: 0; */
}

.alertify-log-show {
    right: 0;
    opacity: 1;
}

.alertify-log-hide {
    -webkit-transform: translate(300px, 0);
    -moz-transform: translate(300px, 0);
    -ms-transform: translate(300px, 0);
    -o-transform: translate(300px, 0);
    transform: translate(300px, 0);
    opacity: 0;
}

.alertify-dialog {
    padding: 20px 30px;
}

.alertify-resetFocus {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/* .alertify-inner {
  text-align: center;
} */
.alertify-text {
    margin-bottom: 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
}

.alertify-button,
.alertify-button:hover,
.alertify-button:active,
.alertify-button:visited {
    background: none;
    text-decoration: none;
    border: none;
    /* line-height and font-size for input button */
    line-height: 1.5;
    font-size: 100%;
    display: inline-block;
    cursor: pointer;
    margin-left: 5px;
}

.alertify-isHidden {
    display: none;
}

/* @media only screen and (max-width: 680px) {
  .alertify,
  .alertify-logs {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .alertify {
    left: 5%;
    margin: 0;
  }
} */

/**
 * Default Look and Feel
 */
.alertify,
.alertify-log {
    font-family: sans-serif;
}

.alertify {
    background: #fff;
    /*border: 1px solid #ddd;*/ /* browsers that don't support rgba */
    border-radius: 5px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
    -webkit-background-clip: padding; /* Safari 4? Chrome 6? */
    -moz-background-clip: padding; /* Firefox 3.6 */
    background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
}

.alertify-message {
    color: #727e8c;
    font-size: 15px;
    color: inherit;
}

.alertify-text {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}

.alertify-buttons {
    text-align: center;
}

.alertify-button {
    min-width: 100px;
    color: white;
    border-radius: 4px;
    /* font-weight: bold; */
    padding: 6px 15px;
    text-decoration: none;
}

    .alertify-button:hover,
    .alertify-button:focus {
        outline: none;
    }

    .alertify-button:focus {
        box-shadow: none;
    }

    .alertify-button:active {
        position: relative;
        /* box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); */
    }

.alertify-button-cancel,
.alertify-button-cancel:hover,
.alertify-button-cancel:focus {
    color: #ff6000;
    background-color: white;
    border: 1px solid #ff6000;
}

.alertify-button-ok,
.alertify-button-ok:hover,
.alertify-button-ok:focus {
    background-color: #ff6000;
    border: 1px solid #ff6000;
}

.alertify-log {
    background: #1f1f1f;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 4px;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.alertify-log-error {
    background: #fe1a00;
    background: rgba(254, 26, 0, 0.9);
}

.alertify-log-success {
    background: rgba(50, 100, 250, 0.9);
}

.alertify-log-custom {
    background: #ff7f00;
}

.seven-modal-body {
    counter-reset: step;
}

    .seven-modal-body p {
        color: #4a4a4a;
    }

    .seven-modal-body > ol {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .seven-modal-body > ol > li {
            color: #4a4a4a;
            font-weight: 600;
            line-height: 20px;
        }

            .seven-modal-body > ol > li:before {
                counter-increment: step;
                content: "STEP" counter(step);
                font-weight: normal;
                background: #4a4a4a;
                color: white;
                border-radius: 4px;
                padding: 0 5px;
                margin-right: 3px;
            }

            .seven-modal-body > ol > li ol {
                padding-top: 8px;
                padding-bottom: 8px;
                padding-left: 65px;
                font-weight: normal;
                counter-reset: index;
                list-style-position: outside;
            }

                .seven-modal-body > ol > li ol li {
                    list-style: none;
                }

                    .seven-modal-body > ol > li ol li:before {
                        counter-increment: index;
                        content: "(" counter(index) ") ";
                    }

    .seven-modal-body .text-hight {
        font-weight: 600;
        color: #ff6000;
    }

.modal-cp {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

    .modal-cp .cp-image {
        position: relative;
        width: 110px;
        height: 100px;
        padding: 0 10px;
        padding-top: 15px;
        margin-right: 5px;
        background-size: cover;
        background-image: url("../../Images/Ticket_01.png");
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        line-height: 16px;
    }

        .modal-cp .cp-image .cp-image-name {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .modal-cp .cp-image .flag {
            z-index: 1;
            position: absolute;
            top: 5px;
            left: -5px;
            width: 65px;
            height: 28px;
            background: #ffbe31;
            color: white;
            font-size: 14px;
            line-height: 14px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-clip-path: polygon(0% 0%, 100% 0, 85% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0, 85% 50%, 100% 100%, 0% 100%);
        }

            .modal-cp .cp-image .flag:after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 6px;
                height: 100%;
                background: #ffa318;
            }

        .modal-cp .cp-image .flag_blue {
            background: #61b3ff;
        }

            .modal-cp .cp-image .flag_blue:after {
                background: #1581e6;
            }

        .modal-cp .cp-image .flag_red {
            background: #ff7c7c;
        }

            .modal-cp .cp-image .flag_red:after {
                background: #ff4949;
            }

    .modal-cp .cp-infos {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 10px;
        position: relative;
    }

        .modal-cp .cp-infos .cp-name {
            color: #4a4a4a;
            font-size: 16px;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .modal-cp .cp-infos .cp-date {
            color: #737373;
            font-size: 14px;
        }

.modal-form > .item {
    padding: 0;
    border-bottom: 1px solid #eee;
}

    .modal-form > .item:last-child {
        border-bottom: none;
    }

.modal-form .item__label,
.modal-form .item__content {
    color: #333333;
    padding: 10px 15px;
    margin: 4px 0;
}

.modal-form .item__label {
    font-size: 14px;
    background-color: #fef1ea;
    text-align: right;
    font-weight: bold;
}

.modal-form .item__content {
    font-size: 14px;
    letter-spacing: 0;
}

.modal-notfiy .close {
    cursor: pointer;
    outline: none;
    margin: auto;
}

.modal-notfiy .modal-notfiy-content {
    text-align: center;
    padding: 40px 0 10px 0;
}

    .modal-notfiy .modal-notfiy-content img {
        margin: auto;
        margin-bottom: 10px;
        max-width: 60px;
    }

.modal-notfiy button {
    margin: auto;
    display: block;
}

.model-note {
    padding: 10px 0;
    max-height: 280px;
    overflow-y: auto;
}

.custom-checkbox label {
    white-space: initial !important;
}

.checkbox-with-input .form-control {
    padding: 5px 10px;
    margin: 0;
    height: 30px;
}

.checkbox-with-input label::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.checkbox-with-input label::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.checkbox-with-input input:checked ~ label:after {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.modal-footer .btn-outline-gray {
    border: 1px solid #e5e5e5;
    color: #727272;
}

.modal-footer .btn-outline-primary {
    background: #ffeee5;
}

.modal-footer i {
    top: 3px !important;
}

@media (max-width: 768px) {
    .modal {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

        .modal .modal-sm {
            max-width: unset;
        }

    .order__table table td:before {
        min-height: 40px !important;
    }

    .modal-cp {
        min-width: 100%;
    }

        .modal-cp .cp-image {
            position: relative;
            width: 90px;
            height: 90px;
            padding: 0 5px;
            margin-right: 3px;
        }

            .modal-cp .cp-image .flag {
                z-index: 1;
                position: absolute;
                top: 5px;
                left: -5px;
                width: 50px;
                height: 22px;
                font-size: 12px;
                line-height: 12px;
            }

        .modal-cp .cp-infos {
            padding: 8px 5px;
        }

            .modal-cp .cp-infos .cp-name {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .modal-cp .cp-infos .cp-date {
                font-size: 12px;
            }
}

