@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Crimson+Text:200,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,500,600,700,800");

/*!
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.
*/

p {
    font-family: "Source", sans-serif;
}

ul li {
    font-family: "Source", sans-serif;
}

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

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

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

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

@-webkit-keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

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

/* 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 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(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

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

    25% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.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(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.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(0.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

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

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

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

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

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

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

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

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

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

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

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

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

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

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

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

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

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

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

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

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

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

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

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

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

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

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

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

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

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

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

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

/* 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;
}

/*!
 *  Font Awesome 3.2.1
 *  the iconic font designed for Bootstrap
 *  ------------------------------------------------------------------------------
 *  The full suite of pictographic icons, examples, and documentation can be
 *  found at http://fontawesome.io.  Stay up to date on Twitter at
 *  http://twitter.com/fontawesome.
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - The Font Awesome font is licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
 *    https://opensource.org/licenses/mit-license.html
 *  - Font Awesome documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Author - Dave Gandy
 *  ------------------------------------------------------------------------------
 *  Email: dave@fontawesome.io
 *  Twitter: http://twitter.com/davegandy
 *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
 */
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: 0.14286em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-gear:before,
.fa-cog:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-gears:before,
.fa-cogs:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-feed:before,
.fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before,
.fa-users:before {
    content: "";
}

.fa-chain:before,
.fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before,
.fa-scissors:before {
    content: "";
}

.fa-copy:before,
.fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "";
}

.fa-legal:before,
.fa-gavel:before {
    content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-flash:before,
.fa-bolt:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "";
}

.fa-euro:before,
.fa-eur:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before,
.fa-usd:before {
    content: "";
}

.fa-rupee:before,
.fa-inr:before {
    content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "";
}

.fa-won:before,
.fa-krw:before {
    content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before,
.fa-car:before {
    content: "";
}

.fa-cab:before,
.fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "";
}

.fa-ge:before,
.fa-empire:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-hotel:before,
.fa-bed:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-sticky-note-o:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-hourglass-o:before {
    content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "";
}

.fa-hand-scissors-o:before {
    content: "";
}

.fa-hand-lizard-o:before {
    content: "";
}

.fa-hand-spock-o:before {
    content: "";
}

.fa-hand-pointer-o:before {
    content: "";
}

.fa-hand-peace-o:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-tv:before,
.fa-television:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-500px:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-calendar-plus-o:before {
    content: "";
}

.fa-calendar-minus-o:before {
    content: "";
}

.fa-calendar-times-o:before {
    content: "";
}

.fa-calendar-check-o:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-map-o:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-commenting:before {
    content: "";
}

.fa-commenting-o:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-credit-card-alt:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-pause-circle-o:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stop-circle-o:before {
    content: "";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-universal-access:before {
    content: "";
}

.fa-wheelchair-alt:before {
    content: "";
}

.fa-question-circle-o:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-volume-control-phone:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "";
}

.fa-handshake-o:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-o:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-book-o:before {
    content: "";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-circle-o:before {
    content: "";
}

.fa-user-o:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-eercast:before {
    content: "";
}

.fa-microchip:before {
    content: "";
}

.fa-snowflake-o:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

/*!
 *  Material Design Iconic Font by Sergey Kupletsky (@zavoloklom) - http://zavoloklom.github.io/material-design-iconic-font/
 *  License - http://zavoloklom.github.io/material-design-iconic-font/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'Material-Design-Iconic-Font';
    src: url("../fonts/Material-Design-Iconic-Font.woff2?v=2.2.0") format("woff2"), url("../fonts/Material-Design-Iconic-Font.woff?v=2.2.0") format("woff"), url("../fonts/Material-Design-Iconic-Font.ttf?v=2.2.0") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.zmdi {
    display: inline-block;
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.zmdi-hc-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.zmdi-hc-2x {
    font-size: 2em;
}

.zmdi-hc-3x {
    font-size: 3em;
}

.zmdi-hc-4x {
    font-size: 4em;
}

.zmdi-hc-5x {
    font-size: 5em;
}

.zmdi-hc-fw {
    width: 1.28571429em;
    text-align: center;
}

.zmdi-hc-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.zmdi-hc-ul>li {
    position: relative;
}

.zmdi-hc-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
}

.zmdi-hc-li.zmdi-hc-lg {
    left: -1.85714286em;
}

.zmdi-hc-border {
    padding: .1em .25em;
    border: solid 0.1em #9e9e9e;
    border-radius: 2px;
}

.zmdi-hc-border-circle {
    padding: .1em .25em;
    border: solid 0.1em #9e9e9e;
    border-radius: 50%;
}

.zmdi.pull-left {
    float: left;
    margin-right: .15em;
}

.zmdi.pull-right {
    float: right;
    margin-left: .15em;
}

.zmdi-hc-spin {
    -webkit-animation: zmdi-spin 1.5s infinite linear;
    animation: zmdi-spin 1.5s infinite linear;
}

.zmdi-hc-spin-reverse {
    -webkit-animation: zmdi-spin-reverse 1.5s infinite linear;
    animation: zmdi-spin-reverse 1.5s infinite linear;
}

@-webkit-keyframes zmdi-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes zmdi-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes zmdi-spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg);
    }
}

@keyframes zmdi-spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg);
    }
}

.zmdi-hc-rotate-90 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.zmdi-hc-rotate-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.zmdi-hc-rotate-270 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.zmdi-hc-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.zmdi-hc-flip-vertical {
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

.zmdi-hc-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.zmdi-hc-stack-1x,
.zmdi-hc-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.zmdi-hc-stack-1x {
    line-height: inherit;
}

.zmdi-hc-stack-2x {
    font-size: 2em;
}

.zmdi-hc-inverse {
    color: #ffffff;
}

/* Material Design Iconic Font uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.zmdi-3d-rotation:before {
    content: '\f101';
}

.zmdi-airplane-off:before {
    content: '\f102';
}

.zmdi-airplane:before {
    content: '\f103';
}

.zmdi-album:before {
    content: '\f104';
}

.zmdi-archive:before {
    content: '\f105';
}

.zmdi-assignment-account:before {
    content: '\f106';
}

.zmdi-assignment-alert:before {
    content: '\f107';
}

.zmdi-assignment-check:before {
    content: '\f108';
}

.zmdi-assignment-o:before {
    content: '\f109';
}

.zmdi-assignment-return:before {
    content: '\f10a';
}

.zmdi-assignment-returned:before {
    content: '\f10b';
}

.zmdi-assignment:before {
    content: '\f10c';
}

.zmdi-attachment-alt:before {
    content: '\f10d';
}

.zmdi-attachment:before {
    content: '\f10e';
}

.zmdi-audio:before {
    content: '\f10f';
}

.zmdi-badge-check:before {
    content: '\f110';
}

.zmdi-balance-wallet:before {
    content: '\f111';
}

.zmdi-balance:before {
    content: '\f112';
}

.zmdi-battery-alert:before {
    content: '\f113';
}

.zmdi-battery-flash:before {
    content: '\f114';
}

.zmdi-battery-unknown:before {
    content: '\f115';
}

.zmdi-battery:before {
    content: '\f116';
}

.zmdi-bike:before {
    content: '\f117';
}

.zmdi-block-alt:before {
    content: '\f118';
}

.zmdi-block:before {
    content: '\f119';
}

.zmdi-boat:before {
    content: '\f11a';
}

.zmdi-book-image:before {
    content: '\f11b';
}

.zmdi-book:before {
    content: '\f11c';
}

.zmdi-bookmark-outline:before {
    content: '\f11d';
}

.zmdi-bookmark:before {
    content: '\f11e';
}

.zmdi-brush:before {
    content: '\f11f';
}

.zmdi-bug:before {
    content: '\f120';
}

.zmdi-bus:before {
    content: '\f121';
}

.zmdi-cake:before {
    content: '\f122';
}

.zmdi-car-taxi:before {
    content: '\f123';
}

.zmdi-car-wash:before {
    content: '\f124';
}

.zmdi-car:before {
    content: '\f125';
}

.zmdi-card-giftcard:before {
    content: '\f126';
}

.zmdi-card-membership:before {
    content: '\f127';
}

.zmdi-card-travel:before {
    content: '\f128';
}

.zmdi-card:before {
    content: '\f129';
}

.zmdi-case-check:before {
    content: '\f12a';
}

.zmdi-case-download:before {
    content: '\f12b';
}

.zmdi-case-play:before {
    content: '\f12c';
}

.zmdi-case:before {
    content: '\f12d';
}

.zmdi-cast-connected:before {
    content: '\f12e';
}

.zmdi-cast:before {
    content: '\f12f';
}

.zmdi-chart-donut:before {
    content: '\f130';
}

.zmdi-chart:before {
    content: '\f131';
}

.zmdi-city-alt:before {
    content: '\f132';
}

.zmdi-city:before {
    content: '\f133';
}

.zmdi-close-circle-o:before {
    content: '\f134';
}

.zmdi-close-circle:before {
    content: '\f135';
}

.zmdi-close:before {
    content: '\f136';
}

.zmdi-cocktail:before {
    content: '\f137';
}

.zmdi-code-setting:before {
    content: '\f138';
}

.zmdi-code-smartphone:before {
    content: '\f139';
}

.zmdi-code:before {
    content: '\f13a';
}

.zmdi-coffee:before {
    content: '\f13b';
}

.zmdi-collection-bookmark:before {
    content: '\f13c';
}

.zmdi-collection-case-play:before {
    content: '\f13d';
}

.zmdi-collection-folder-image:before {
    content: '\f13e';
}

.zmdi-collection-image-o:before {
    content: '\f13f';
}

.zmdi-collection-image:before {
    content: '\f140';
}

.zmdi-collection-item-1:before {
    content: '\f141';
}

.zmdi-collection-item-2:before {
    content: '\f142';
}

.zmdi-collection-item-3:before {
    content: '\f143';
}

.zmdi-collection-item-4:before {
    content: '\f144';
}

.zmdi-collection-item-5:before {
    content: '\f145';
}

.zmdi-collection-item-6:before {
    content: '\f146';
}

.zmdi-collection-item-7:before {
    content: '\f147';
}

.zmdi-collection-item-8:before {
    content: '\f148';
}

.zmdi-collection-item-9-plus:before {
    content: '\f149';
}

.zmdi-collection-item-9:before {
    content: '\f14a';
}

.zmdi-collection-item:before {
    content: '\f14b';
}

.zmdi-collection-music:before {
    content: '\f14c';
}

.zmdi-collection-pdf:before {
    content: '\f14d';
}

.zmdi-collection-plus:before {
    content: '\f14e';
}

.zmdi-collection-speaker:before {
    content: '\f14f';
}

.zmdi-collection-text:before {
    content: '\f150';
}

.zmdi-collection-video:before {
    content: '\f151';
}

.zmdi-compass:before {
    content: '\f152';
}

.zmdi-cutlery:before {
    content: '\f153';
}

.zmdi-delete:before {
    content: '\f154';
}

.zmdi-dialpad:before {
    content: '\f155';
}

.zmdi-dns:before {
    content: '\f156';
}

.zmdi-drink:before {
    content: '\f157';
}

.zmdi-edit:before {
    content: '\f158';
}

.zmdi-email-open:before {
    content: '\f159';
}

.zmdi-email:before {
    content: '\f15a';
}

.zmdi-eye-off:before {
    content: '\f15b';
}

.zmdi-eye:before {
    content: '\f15c';
}

.zmdi-eyedropper:before {
    content: '\f15d';
}

.zmdi-favorite-outline:before {
    content: '\f15e';
}

.zmdi-favorite:before {
    content: '\f15f';
}

.zmdi-filter-list:before {
    content: '\f160';
}

.zmdi-fire:before {
    content: '\f161';
}

.zmdi-flag:before {
    content: '\f162';
}

.zmdi-flare:before {
    content: '\f163';
}

.zmdi-flash-auto:before {
    content: '\f164';
}

.zmdi-flash-off:before {
    content: '\f165';
}

.zmdi-flash:before {
    content: '\f166';
}

.zmdi-flip:before {
    content: '\f167';
}

.zmdi-flower-alt:before {
    content: '\f168';
}

.zmdi-flower:before {
    content: '\f169';
}

.zmdi-font:before {
    content: '\f16a';
}

.zmdi-fullscreen-alt:before {
    content: '\f16b';
}

.zmdi-fullscreen-exit:before {
    content: '\f16c';
}

.zmdi-fullscreen:before {
    content: '\f16d';
}

.zmdi-functions:before {
    content: '\f16e';
}

.zmdi-gas-station:before {
    content: '\f16f';
}

.zmdi-gesture:before {
    content: '\f170';
}

.zmdi-globe-alt:before {
    content: '\f171';
}

.zmdi-globe-lock:before {
    content: '\f172';
}

.zmdi-globe:before {
    content: '\f173';
}

.zmdi-graduation-cap:before {
    content: '\f174';
}

.zmdi-home:before {
    content: '\f175';
}

.zmdi-hospital-alt:before {
    content: '\f176';
}

.zmdi-hospital:before {
    content: '\f177';
}

.zmdi-hotel:before {
    content: '\f178';
}

.zmdi-hourglass-alt:before {
    content: '\f179';
}

.zmdi-hourglass-outline:before {
    content: '\f17a';
}

.zmdi-hourglass:before {
    content: '\f17b';
}

.zmdi-http:before {
    content: '\f17c';
}

.zmdi-image-alt:before {
    content: '\f17d';
}

.zmdi-image-o:before {
    content: '\f17e';
}

.zmdi-image:before {
    content: '\f17f';
}

.zmdi-inbox:before {
    content: '\f180';
}

.zmdi-invert-colors-off:before {
    content: '\f181';
}

.zmdi-invert-colors:before {
    content: '\f182';
}

.zmdi-key:before {
    content: '\f183';
}

.zmdi-label-alt-outline:before {
    content: '\f184';
}

.zmdi-label-alt:before {
    content: '\f185';
}

.zmdi-label-heart:before {
    content: '\f186';
}

.zmdi-label:before {
    content: '\f187';
}

.zmdi-labels:before {
    content: '\f188';
}

.zmdi-lamp:before {
    content: '\f189';
}

.zmdi-landscape:before {
    content: '\f18a';
}

.zmdi-layers-off:before {
    content: '\f18b';
}

.zmdi-layers:before {
    content: '\f18c';
}

.zmdi-library:before {
    content: '\f18d';
}

.zmdi-link:before {
    content: '\f18e';
}

.zmdi-lock-open:before {
    content: '\f18f';
}

.zmdi-lock-outline:before {
    content: '\f190';
}

.zmdi-lock:before {
    content: '\f191';
}

.zmdi-mail-reply-all:before {
    content: '\f192';
}

.zmdi-mail-reply:before {
    content: '\f193';
}

.zmdi-mail-send:before {
    content: '\f194';
}

.zmdi-mall:before {
    content: '\f195';
}

.zmdi-map:before {
    content: '\f196';
}

.zmdi-menu:before {
    content: '\f197';
}

.zmdi-money-box:before {
    content: '\f198';
}

.zmdi-money-off:before {
    content: '\f199';
}

.zmdi-money:before {
    content: '\f19a';
}

.zmdi-more-vert:before {
    content: '\f19b';
}

.zmdi-more:before {
    content: '\f19c';
}

.zmdi-movie-alt:before {
    content: '\f19d';
}

.zmdi-movie:before {
    content: '\f19e';
}

.zmdi-nature-people:before {
    content: '\f19f';
}

.zmdi-nature:before {
    content: '\f1a0';
}

.zmdi-navigation:before {
    content: '\f1a1';
}

.zmdi-open-in-browser:before {
    content: '\f1a2';
}

.zmdi-open-in-new:before {
    content: '\f1a3';
}

.zmdi-palette:before {
    content: '\f1a4';
}

.zmdi-parking:before {
    content: '\f1a5';
}

.zmdi-pin-account:before {
    content: '\f1a6';
}

.zmdi-pin-assistant:before {
    content: '\f1a7';
}

.zmdi-pin-drop:before {
    content: '\f1a8';
}

.zmdi-pin-help:before {
    content: '\f1a9';
}

.zmdi-pin-off:before {
    content: '\f1aa';
}

.zmdi-pin:before {
    content: '\f1ab';
}

.zmdi-pizza:before {
    content: '\f1ac';
}

.zmdi-plaster:before {
    content: '\f1ad';
}

.zmdi-power-setting:before {
    content: '\f1ae';
}

.zmdi-power:before {
    content: '\f1af';
}

.zmdi-print:before {
    content: '\f1b0';
}

.zmdi-puzzle-piece:before {
    content: '\f1b1';
}

.zmdi-quote:before {
    content: '\f1b2';
}

.zmdi-railway:before {
    content: '\f1b3';
}

.zmdi-receipt:before {
    content: '\f1b4';
}

.zmdi-refresh-alt:before {
    content: '\f1b5';
}

.zmdi-refresh-sync-alert:before {
    content: '\f1b6';
}

.zmdi-refresh-sync-off:before {
    content: '\f1b7';
}

.zmdi-refresh-sync:before {
    content: '\f1b8';
}

.zmdi-refresh:before {
    content: '\f1b9';
}

.zmdi-roller:before {
    content: '\f1ba';
}

.zmdi-ruler:before {
    content: '\f1bb';
}

.zmdi-scissors:before {
    content: '\f1bc';
}

.zmdi-screen-rotation-lock:before {
    content: '\f1bd';
}

.zmdi-screen-rotation:before {
    content: '\f1be';
}

.zmdi-search-for:before {
    content: '\f1bf';
}

.zmdi-search-in-file:before {
    content: '\f1c0';
}

.zmdi-search-in-page:before {
    content: '\f1c1';
}

.zmdi-search-replace:before {
    content: '\f1c2';
}

.zmdi-search:before {
    content: '\f1c3';
}

.zmdi-seat:before {
    content: '\f1c4';
}

.zmdi-settings-square:before {
    content: '\f1c5';
}

.zmdi-settings:before {
    content: '\f1c6';
}

.zmdi-shield-check:before {
    content: '\f1c7';
}

.zmdi-shield-security:before {
    content: '\f1c8';
}

.zmdi-shopping-basket:before {
    content: '\f1c9';
}

.zmdi-shopping-cart-plus:before {
    content: '\f1ca';
}

.zmdi-shopping-cart:before {
    content: '\f1cb';
}

.zmdi-sign-in:before {
    content: '\f1cc';
}

.zmdi-sort-amount-asc:before {
    content: '\f1cd';
}

.zmdi-sort-amount-desc:before {
    content: '\f1ce';
}

.zmdi-sort-asc:before {
    content: '\f1cf';
}

.zmdi-sort-desc:before {
    content: '\f1d0';
}

.zmdi-spellcheck:before {
    content: '\f1d1';
}

.zmdi-storage:before {
    content: '\f1d2';
}

.zmdi-store-24:before {
    content: '\f1d3';
}

.zmdi-store:before {
    content: '\f1d4';
}

.zmdi-subway:before {
    content: '\f1d5';
}

.zmdi-sun:before {
    content: '\f1d6';
}

.zmdi-tab-unselected:before {
    content: '\f1d7';
}

.zmdi-tab:before {
    content: '\f1d8';
}

.zmdi-tag-close:before {
    content: '\f1d9';
}

.zmdi-tag-more:before {
    content: '\f1da';
}

.zmdi-tag:before {
    content: '\f1db';
}

.zmdi-thumb-down:before {
    content: '\f1dc';
}

.zmdi-thumb-up-down:before {
    content: '\f1dd';
}

.zmdi-thumb-up:before {
    content: '\f1de';
}

.zmdi-ticket-star:before {
    content: '\f1df';
}

.zmdi-toll:before {
    content: '\f1e0';
}

.zmdi-toys:before {
    content: '\f1e1';
}

.zmdi-traffic:before {
    content: '\f1e2';
}

.zmdi-translate:before {
    content: '\f1e3';
}

.zmdi-triangle-down:before {
    content: '\f1e4';
}

.zmdi-triangle-up:before {
    content: '\f1e5';
}

.zmdi-truck:before {
    content: '\f1e6';
}

.zmdi-turning-sign:before {
    content: '\f1e7';
}

.zmdi-wallpaper:before {
    content: '\f1e8';
}

.zmdi-washing-machine:before {
    content: '\f1e9';
}

.zmdi-window-maximize:before {
    content: '\f1ea';
}

.zmdi-window-minimize:before {
    content: '\f1eb';
}

.zmdi-window-restore:before {
    content: '\f1ec';
}

.zmdi-wrench:before {
    content: '\f1ed';
}

.zmdi-zoom-in:before {
    content: '\f1ee';
}

.zmdi-zoom-out:before {
    content: '\f1ef';
}

.zmdi-alert-circle-o:before {
    content: '\f1f0';
}

.zmdi-alert-circle:before {
    content: '\f1f1';
}

.zmdi-alert-octagon:before {
    content: '\f1f2';
}

.zmdi-alert-polygon:before {
    content: '\f1f3';
}

.zmdi-alert-triangle:before {
    content: '\f1f4';
}

.zmdi-help-outline:before {
    content: '\f1f5';
}

.zmdi-help:before {
    content: '\f1f6';
}

.zmdi-info-outline:before {
    content: '\f1f7';
}

.zmdi-info:before {
    content: '\f1f8';
}

.zmdi-notifications-active:before {
    content: '\f1f9';
}

.zmdi-notifications-add:before {
    content: '\f1fa';
}

.zmdi-notifications-none:before {
    content: '\f1fb';
}

.zmdi-notifications-off:before {
    content: '\f1fc';
}

.zmdi-notifications-paused:before {
    content: '\f1fd';
}

.zmdi-notifications:before {
    content: '\f1fe';
}

.zmdi-account-add:before {
    content: '\f1ff';
}

.zmdi-account-box-mail:before {
    content: '\f200';
}

.zmdi-account-box-o:before {
    content: '\f201';
}

.zmdi-account-box-phone:before {
    content: '\f202';
}

.zmdi-account-box:before {
    content: '\f203';
}

.zmdi-account-calendar:before {
    content: '\f204';
}

.zmdi-account-circle:before {
    content: '\f205';
}

.zmdi-account-o:before {
    content: '\f206';
}

.zmdi-account:before {
    content: '\f207';
}

.zmdi-accounts-add:before {
    content: '\f208';
}

.zmdi-accounts-alt:before {
    content: '\f209';
}

.zmdi-accounts-list-alt:before {
    content: '\f20a';
}

.zmdi-accounts-list:before {
    content: '\f20b';
}

.zmdi-accounts-outline:before {
    content: '\f20c';
}

.zmdi-accounts:before {
    content: '\f20d';
}

.zmdi-face:before {
    content: '\f20e';
}

.zmdi-female:before {
    content: '\f20f';
}

.zmdi-male-alt:before {
    content: '\f210';
}

.zmdi-male-female:before {
    content: '\f211';
}

.zmdi-male:before {
    content: '\f212';
}

.zmdi-mood-bad:before {
    content: '\f213';
}

.zmdi-mood:before {
    content: '\f214';
}

.zmdi-run:before {
    content: '\f215';
}

.zmdi-walk:before {
    content: '\f216';
}

.zmdi-cloud-box:before {
    content: '\f217';
}

.zmdi-cloud-circle:before {
    content: '\f218';
}

.zmdi-cloud-done:before {
    content: '\f219';
}

.zmdi-cloud-download:before {
    content: '\f21a';
}

.zmdi-cloud-off:before {
    content: '\f21b';
}

.zmdi-cloud-outline-alt:before {
    content: '\f21c';
}

.zmdi-cloud-outline:before {
    content: '\f21d';
}

.zmdi-cloud-upload:before {
    content: '\f21e';
}

.zmdi-cloud:before {
    content: '\f21f';
}

.zmdi-download:before {
    content: '\f220';
}

.zmdi-file-plus:before {
    content: '\f221';
}

.zmdi-file-text:before {
    content: '\f222';
}

.zmdi-file:before {
    content: '\f223';
}

.zmdi-folder-outline:before {
    content: '\f224';
}

.zmdi-folder-person:before {
    content: '\f225';
}

.zmdi-folder-star-alt:before {
    content: '\f226';
}

.zmdi-folder-star:before {
    content: '\f227';
}

.zmdi-folder:before {
    content: '\f228';
}

.zmdi-gif:before {
    content: '\f229';
}

.zmdi-upload:before {
    content: '\f22a';
}

.zmdi-border-all:before {
    content: '\f22b';
}

.zmdi-border-bottom:before {
    content: '\f22c';
}

.zmdi-border-clear:before {
    content: '\f22d';
}

.zmdi-border-color:before {
    content: '\f22e';
}

.zmdi-border-horizontal:before {
    content: '\f22f';
}

.zmdi-border-inner:before {
    content: '\f230';
}

.zmdi-border-left:before {
    content: '\f231';
}

.zmdi-border-outer:before {
    content: '\f232';
}

.zmdi-border-right:before {
    content: '\f233';
}

.zmdi-border-style:before {
    content: '\f234';
}

.zmdi-border-top:before {
    content: '\f235';
}

.zmdi-border-vertical:before {
    content: '\f236';
}

.zmdi-copy:before {
    content: '\f237';
}

.zmdi-crop:before {
    content: '\f238';
}

.zmdi-format-align-center:before {
    content: '\f239';
}

.zmdi-format-align-justify:before {
    content: '\f23a';
}

.zmdi-format-align-left:before {
    content: '\f23b';
}

.zmdi-format-align-right:before {
    content: '\f23c';
}

.zmdi-format-bold:before {
    content: '\f23d';
}

.zmdi-format-clear-all:before {
    content: '\f23e';
}

.zmdi-format-clear:before {
    content: '\f23f';
}

.zmdi-format-color-fill:before {
    content: '\f240';
}

.zmdi-format-color-reset:before {
    content: '\f241';
}

.zmdi-format-color-text:before {
    content: '\f242';
}

.zmdi-format-indent-decrease:before {
    content: '\f243';
}

.zmdi-format-indent-increase:before {
    content: '\f244';
}

.zmdi-format-italic:before {
    content: '\f245';
}

.zmdi-format-line-spacing:before {
    content: '\f246';
}

.zmdi-format-list-bulleted:before {
    content: '\f247';
}

.zmdi-format-list-numbered:before {
    content: '\f248';
}

.zmdi-format-ltr:before {
    content: '\f249';
}

.zmdi-format-rtl:before {
    content: '\f24a';
}

.zmdi-format-size:before {
    content: '\f24b';
}

.zmdi-format-strikethrough-s:before {
    content: '\f24c';
}

.zmdi-format-strikethrough:before {
    content: '\f24d';
}

.zmdi-format-subject:before {
    content: '\f24e';
}

.zmdi-format-underlined:before {
    content: '\f24f';
}

.zmdi-format-valign-bottom:before {
    content: '\f250';
}

.zmdi-format-valign-center:before {
    content: '\f251';
}

.zmdi-format-valign-top:before {
    content: '\f252';
}

.zmdi-redo:before {
    content: '\f253';
}

.zmdi-select-all:before {
    content: '\f254';
}

.zmdi-space-bar:before {
    content: '\f255';
}

.zmdi-text-format:before {
    content: '\f256';
}

.zmdi-transform:before {
    content: '\f257';
}

.zmdi-undo:before {
    content: '\f258';
}

.zmdi-wrap-text:before {
    content: '\f259';
}

.zmdi-comment-alert:before {
    content: '\f25a';
}

.zmdi-comment-alt-text:before {
    content: '\f25b';
}

.zmdi-comment-alt:before {
    content: '\f25c';
}

.zmdi-comment-edit:before {
    content: '\f25d';
}

.zmdi-comment-image:before {
    content: '\f25e';
}

.zmdi-comment-list:before {
    content: '\f25f';
}

.zmdi-comment-more:before {
    content: '\f260';
}

.zmdi-comment-outline:before {
    content: '\f261';
}

.zmdi-comment-text-alt:before {
    content: '\f262';
}

.zmdi-comment-text:before {
    content: '\f263';
}

.zmdi-comment-video:before {
    content: '\f264';
}

.zmdi-comment:before {
    content: '\f265';
}

.zmdi-comments:before {
    content: '\f266';
}

.zmdi-check-all:before {
    content: '\f267';
}

.zmdi-check-circle-u:before {
    content: '\f268';
}

.zmdi-check-circle:before {
    content: '\f269';
}

.zmdi-check-square:before {
    content: '\f26a';
}

.zmdi-check:before {
    content: '\f26b';
}

.zmdi-circle-o:before {
    content: '\f26c';
}

.zmdi-circle:before {
    content: '\f26d';
}

.zmdi-dot-circle-alt:before {
    content: '\f26e';
}

.zmdi-dot-circle:before {
    content: '\f26f';
}

.zmdi-minus-circle-outline:before {
    content: '\f270';
}

.zmdi-minus-circle:before {
    content: '\f271';
}

.zmdi-minus-square:before {
    content: '\f272';
}

.zmdi-minus:before {
    content: '\f273';
}

.zmdi-plus-circle-o-duplicate:before {
    content: '\f274';
}

.zmdi-plus-circle-o:before {
    content: '\f275';
}

.zmdi-plus-circle:before {
    content: '\f276';
}

.zmdi-plus-square:before {
    content: '\f277';
}

.zmdi-plus:before {
    content: '\f278';
}

.zmdi-square-o:before {
    content: '\f279';
}

.zmdi-star-circle:before {
    content: '\f27a';
}

.zmdi-star-half:before {
    content: '\f27b';
}

.zmdi-star-outline:before {
    content: '\f27c';
}

.zmdi-star:before {
    content: '\f27d';
}

.zmdi-bluetooth-connected:before {
    content: '\f27e';
}

.zmdi-bluetooth-off:before {
    content: '\f27f';
}

.zmdi-bluetooth-search:before {
    content: '\f280';
}

.zmdi-bluetooth-setting:before {
    content: '\f281';
}

.zmdi-bluetooth:before {
    content: '\f282';
}

.zmdi-camera-add:before {
    content: '\f283';
}

.zmdi-camera-alt:before {
    content: '\f284';
}

.zmdi-camera-bw:before {
    content: '\f285';
}

.zmdi-camera-front:before {
    content: '\f286';
}

.zmdi-camera-mic:before {
    content: '\f287';
}

.zmdi-camera-party-mode:before {
    content: '\f288';
}

.zmdi-camera-rear:before {
    content: '\f289';
}

.zmdi-camera-roll:before {
    content: '\f28a';
}

.zmdi-camera-switch:before {
    content: '\f28b';
}

.zmdi-camera:before {
    content: '\f28c';
}

.zmdi-card-alert:before {
    content: '\f28d';
}

.zmdi-card-off:before {
    content: '\f28e';
}

.zmdi-card-sd:before {
    content: '\f28f';
}

.zmdi-card-sim:before {
    content: '\f290';
}

.zmdi-desktop-mac:before {
    content: '\f291';
}

.zmdi-desktop-windows:before {
    content: '\f292';
}

.zmdi-device-hub:before {
    content: '\f293';
}

.zmdi-devices-off:before {
    content: '\f294';
}

.zmdi-devices:before {
    content: '\f295';
}

.zmdi-dock:before {
    content: '\f296';
}

.zmdi-floppy:before {
    content: '\f297';
}

.zmdi-gamepad:before {
    content: '\f298';
}

.zmdi-gps-dot:before {
    content: '\f299';
}

.zmdi-gps-off:before {
    content: '\f29a';
}

.zmdi-gps:before {
    content: '\f29b';
}

.zmdi-headset-mic:before {
    content: '\f29c';
}

.zmdi-headset:before {
    content: '\f29d';
}

.zmdi-input-antenna:before {
    content: '\f29e';
}

.zmdi-input-composite:before {
    content: '\f29f';
}

.zmdi-input-hdmi:before {
    content: '\f2a0';
}

.zmdi-input-power:before {
    content: '\f2a1';
}

.zmdi-input-svideo:before {
    content: '\f2a2';
}

.zmdi-keyboard-hide:before {
    content: '\f2a3';
}

.zmdi-keyboard:before {
    content: '\f2a4';
}

.zmdi-laptop-chromebook:before {
    content: '\f2a5';
}

.zmdi-laptop-mac:before {
    content: '\f2a6';
}

.zmdi-laptop:before {
    content: '\f2a7';
}

.zmdi-mic-off:before {
    content: '\f2a8';
}

.zmdi-mic-outline:before {
    content: '\f2a9';
}

.zmdi-mic-setting:before {
    content: '\f2aa';
}

.zmdi-mic:before {
    content: '\f2ab';
}

.zmdi-mouse:before {
    content: '\f2ac';
}

.zmdi-network-alert:before {
    content: '\f2ad';
}

.zmdi-network-locked:before {
    content: '\f2ae';
}

.zmdi-network-off:before {
    content: '\f2af';
}

.zmdi-network-outline:before {
    content: '\f2b0';
}

.zmdi-network-setting:before {
    content: '\f2b1';
}

.zmdi-network:before {
    content: '\f2b2';
}

.zmdi-phone-bluetooth:before {
    content: '\f2b3';
}

.zmdi-phone-end:before {
    content: '\f2b4';
}

.zmdi-phone-forwarded:before {
    content: '\f2b5';
}

.zmdi-phone-in-talk:before {
    content: '\f2b6';
}

.zmdi-phone-locked:before {
    content: '\f2b7';
}

.zmdi-phone-missed:before {
    content: '\f2b8';
}

.zmdi-phone-msg:before {
    content: '\f2b9';
}

.zmdi-phone-paused:before {
    content: '\f2ba';
}

.zmdi-phone-ring:before {
    content: '\f2bb';
}

.zmdi-phone-setting:before {
    content: '\f2bc';
}

.zmdi-phone-sip:before {
    content: '\f2bd';
}

.zmdi-phone:before {
    content: '\f2be';
}

.zmdi-portable-wifi-changes:before {
    content: '\f2bf';
}

.zmdi-portable-wifi-off:before {
    content: '\f2c0';
}

.zmdi-portable-wifi:before {
    content: '\f2c1';
}

.zmdi-radio:before {
    content: '\f2c2';
}

.zmdi-reader:before {
    content: '\f2c3';
}

.zmdi-remote-control-alt:before {
    content: '\f2c4';
}

.zmdi-remote-control:before {
    content: '\f2c5';
}

.zmdi-router:before {
    content: '\f2c6';
}

.zmdi-scanner:before {
    content: '\f2c7';
}

.zmdi-smartphone-android:before {
    content: '\f2c8';
}

.zmdi-smartphone-download:before {
    content: '\f2c9';
}

.zmdi-smartphone-erase:before {
    content: '\f2ca';
}

.zmdi-smartphone-info:before {
    content: '\f2cb';
}

.zmdi-smartphone-iphone:before {
    content: '\f2cc';
}

.zmdi-smartphone-landscape-lock:before {
    content: '\f2cd';
}

.zmdi-smartphone-landscape:before {
    content: '\f2ce';
}

.zmdi-smartphone-lock:before {
    content: '\f2cf';
}

.zmdi-smartphone-portrait-lock:before {
    content: '\f2d0';
}

.zmdi-smartphone-ring:before {
    content: '\f2d1';
}

.zmdi-smartphone-setting:before {
    content: '\f2d2';
}

.zmdi-smartphone-setup:before {
    content: '\f2d3';
}

.zmdi-smartphone:before {
    content: '\f2d4';
}

.zmdi-speaker:before {
    content: '\f2d5';
}

.zmdi-tablet-android:before {
    content: '\f2d6';
}

.zmdi-tablet-mac:before {
    content: '\f2d7';
}

.zmdi-tablet:before {
    content: '\f2d8';
}

.zmdi-tv-alt-play:before {
    content: '\f2d9';
}

.zmdi-tv-list:before {
    content: '\f2da';
}

.zmdi-tv-play:before {
    content: '\f2db';
}

.zmdi-tv:before {
    content: '\f2dc';
}

.zmdi-usb:before {
    content: '\f2dd';
}

.zmdi-videocam-off:before {
    content: '\f2de';
}

.zmdi-videocam-switch:before {
    content: '\f2df';
}

.zmdi-videocam:before {
    content: '\f2e0';
}

.zmdi-watch:before {
    content: '\f2e1';
}

.zmdi-wifi-alt-2:before {
    content: '\f2e2';
}

.zmdi-wifi-alt:before {
    content: '\f2e3';
}

.zmdi-wifi-info:before {
    content: '\f2e4';
}

.zmdi-wifi-lock:before {
    content: '\f2e5';
}

.zmdi-wifi-off:before {
    content: '\f2e6';
}

.zmdi-wifi-outline:before {
    content: '\f2e7';
}

.zmdi-wifi:before {
    content: '\f2e8';
}

.zmdi-arrow-left-bottom:before {
    content: '\f2e9';
}

.zmdi-arrow-left:before {
    content: '\f2ea';
}

.zmdi-arrow-merge:before {
    content: '\f2eb';
}

.zmdi-arrow-missed:before {
    content: '\f2ec';
}

.zmdi-arrow-right-top:before {
    content: '\f2ed';
}

.zmdi-arrow-right:before {
    content: '\f2ee';
}

.zmdi-arrow-split:before {
    content: '\f2ef';
}

.zmdi-arrows:before {
    content: '\f2f0';
}

.zmdi-caret-down-circle:before {
    content: '\f2f1';
}

.zmdi-caret-down:before {
    content: '\f2f2';
}

.zmdi-caret-left-circle:before {
    content: '\f2f3';
}

.zmdi-caret-left:before {
    content: '\f2f4';
}

.zmdi-caret-right-circle:before {
    content: '\f2f5';
}

.zmdi-caret-right:before {
    content: '\f2f6';
}

.zmdi-caret-up-circle:before {
    content: '\f2f7';
}

.zmdi-caret-up:before {
    content: '\f2f8';
}

.zmdi-chevron-down:before {
    content: '\f2f9';
}

.zmdi-chevron-left:before {
    content: '\f2fa';
}

.zmdi-chevron-right:before {
    content: '\f2fb';
}

.zmdi-chevron-up:before {
    content: '\f2fc';
}

.zmdi-forward:before {
    content: '\f2fd';
}

.zmdi-long-arrow-down:before {
    content: '\f2fe';
}

.zmdi-long-arrow-left:before {
    content: '\f2ff';
}

.zmdi-long-arrow-return:before {
    content: '\f300';
}

.zmdi-long-arrow-right:before {
    content: '\f301';
}

.zmdi-long-arrow-tab:before {
    content: '\f302';
}

.zmdi-long-arrow-up:before {
    content: '\f303';
}

.zmdi-rotate-ccw:before {
    content: '\f304';
}

.zmdi-rotate-cw:before {
    content: '\f305';
}

.zmdi-rotate-left:before {
    content: '\f306';
}

.zmdi-rotate-right:before {
    content: '\f307';
}

.zmdi-square-down:before {
    content: '\f308';
}

.zmdi-square-right:before {
    content: '\f309';
}

.zmdi-swap-alt:before {
    content: '\f30a';
}

.zmdi-swap-vertical-circle:before {
    content: '\f30b';
}

.zmdi-swap-vertical:before {
    content: '\f30c';
}

.zmdi-swap:before {
    content: '\f30d';
}

.zmdi-trending-down:before {
    content: '\f30e';
}

.zmdi-trending-flat:before {
    content: '\f30f';
}

.zmdi-trending-up:before {
    content: '\f310';
}

.zmdi-unfold-less:before {
    content: '\f311';
}

.zmdi-unfold-more:before {
    content: '\f312';
}

.zmdi-apps:before {
    content: '\f313';
}

.zmdi-grid-off:before {
    content: '\f314';
}

.zmdi-grid:before {
    content: '\f315';
}

.zmdi-view-agenda:before {
    content: '\f316';
}

.zmdi-view-array:before {
    content: '\f317';
}

.zmdi-view-carousel:before {
    content: '\f318';
}

.zmdi-view-column:before {
    content: '\f319';
}

.zmdi-view-comfy:before {
    content: '\f31a';
}

.zmdi-view-compact:before {
    content: '\f31b';
}

.zmdi-view-dashboard:before {
    content: '\f31c';
}

.zmdi-view-day:before {
    content: '\f31d';
}

.zmdi-view-headline:before {
    content: '\f31e';
}

.zmdi-view-list-alt:before {
    content: '\f31f';
}

.zmdi-view-list:before {
    content: '\f320';
}

.zmdi-view-module:before {
    content: '\f321';
}

.zmdi-view-quilt:before {
    content: '\f322';
}

.zmdi-view-stream:before {
    content: '\f323';
}

.zmdi-view-subtitles:before {
    content: '\f324';
}

.zmdi-view-toc:before {
    content: '\f325';
}

.zmdi-view-web:before {
    content: '\f326';
}

.zmdi-view-week:before {
    content: '\f327';
}

.zmdi-widgets:before {
    content: '\f328';
}

.zmdi-alarm-check:before {
    content: '\f329';
}

.zmdi-alarm-off:before {
    content: '\f32a';
}

.zmdi-alarm-plus:before {
    content: '\f32b';
}

.zmdi-alarm-snooze:before {
    content: '\f32c';
}

.zmdi-alarm:before {
    content: '\f32d';
}

.zmdi-calendar-alt:before {
    content: '\f32e';
}

.zmdi-calendar-check:before {
    content: '\f32f';
}

.zmdi-calendar-close:before {
    content: '\f330';
}

.zmdi-calendar-note:before {
    content: '\f331';
}

.zmdi-calendar:before {
    content: '\f332';
}

.zmdi-time-countdown:before {
    content: '\f333';
}

.zmdi-time-interval:before {
    content: '\f334';
}

.zmdi-time-restore-setting:before {
    content: '\f335';
}

.zmdi-time-restore:before {
    content: '\f336';
}

.zmdi-time:before {
    content: '\f337';
}

.zmdi-timer-off:before {
    content: '\f338';
}

.zmdi-timer:before {
    content: '\f339';
}

.zmdi-android-alt:before {
    content: '\f33a';
}

.zmdi-android:before {
    content: '\f33b';
}

.zmdi-apple:before {
    content: '\f33c';
}

.zmdi-behance:before {
    content: '\f33d';
}

.zmdi-codepen:before {
    content: '\f33e';
}

.zmdi-dribbble:before {
    content: '\f33f';
}

.zmdi-dropbox:before {
    content: '\f340';
}

.zmdi-evernote:before {
    content: '\f341';
}

.zmdi-facebook-box:before {
    content: '\f342';
}

.zmdi-facebook:before {
    content: '\f343';
}

.zmdi-github-box:before {
    content: '\f344';
}

.zmdi-github:before {
    content: '\f345';
}

.zmdi-google-drive:before {
    content: '\f346';
}

.zmdi-google-earth:before {
    content: '\f347';
}

.zmdi-google-glass:before {
    content: '\f348';
}

.zmdi-google-maps:before {
    content: '\f349';
}

.zmdi-google-pages:before {
    content: '\f34a';
}

.zmdi-google-play:before {
    content: '\f34b';
}

.zmdi-google-plus-box:before {
    content: '\f34c';
}

.zmdi-google-plus:before {
    content: '\f34d';
}

.zmdi-google:before {
    content: '\f34e';
}

.zmdi-instagram:before {
    content: '\f34f';
}

.zmdi-language-css3:before {
    content: '\f350';
}

.zmdi-language-html5:before {
    content: '\f351';
}

.zmdi-language-javascript:before {
    content: '\f352';
}

.zmdi-language-python-alt:before {
    content: '\f353';
}

.zmdi-language-python:before {
    content: '\f354';
}

.zmdi-lastfm:before {
    content: '\f355';
}

.zmdi-linkedin-box:before {
    content: '\f356';
}

.zmdi-paypal:before {
    content: '\f357';
}

.zmdi-pinterest-box:before {
    content: '\f358';
}

.zmdi-pocket:before {
    content: '\f359';
}

.zmdi-polymer:before {
    content: '\f35a';
}

.zmdi-share:before {
    content: '\f35b';
}

.zmdi-stackoverflow:before {
    content: '\f35c';
}

.zmdi-steam-square:before {
    content: '\f35d';
}

.zmdi-steam:before {
    content: '\f35e';
}

.zmdi-twitter-box:before {
    content: '\f35f';
}

.zmdi-twitter:before {
    content: '\f360';
}

.zmdi-vk:before {
    content: '\f361';
}

.zmdi-wikipedia:before {
    content: '\f362';
}

.zmdi-windows:before {
    content: '\f363';
}

.zmdi-aspect-ratio-alt:before {
    content: '\f364';
}

.zmdi-aspect-ratio:before {
    content: '\f365';
}

.zmdi-blur-circular:before {
    content: '\f366';
}

.zmdi-blur-linear:before {
    content: '\f367';
}

.zmdi-blur-off:before {
    content: '\f368';
}

.zmdi-blur:before {
    content: '\f369';
}

.zmdi-brightness-2:before {
    content: '\f36a';
}

.zmdi-brightness-3:before {
    content: '\f36b';
}

.zmdi-brightness-4:before {
    content: '\f36c';
}

.zmdi-brightness-5:before {
    content: '\f36d';
}

.zmdi-brightness-6:before {
    content: '\f36e';
}

.zmdi-brightness-7:before {
    content: '\f36f';
}

.zmdi-brightness-auto:before {
    content: '\f370';
}

.zmdi-brightness-setting:before {
    content: '\f371';
}

.zmdi-broken-image:before {
    content: '\f372';
}

.zmdi-center-focus-strong:before {
    content: '\f373';
}

.zmdi-center-focus-weak:before {
    content: '\f374';
}

.zmdi-compare:before {
    content: '\f375';
}

.zmdi-crop-16-9:before {
    content: '\f376';
}

.zmdi-crop-3-2:before {
    content: '\f377';
}

.zmdi-crop-5-4:before {
    content: '\f378';
}

.zmdi-crop-7-5:before {
    content: '\f379';
}

.zmdi-crop-din:before {
    content: '\f37a';
}

.zmdi-crop-free:before {
    content: '\f37b';
}

.zmdi-crop-landscape:before {
    content: '\f37c';
}

.zmdi-crop-portrait:before {
    content: '\f37d';
}

.zmdi-crop-square:before {
    content: '\f37e';
}

.zmdi-exposure-alt:before {
    content: '\f37f';
}

.zmdi-exposure:before {
    content: '\f380';
}

.zmdi-filter-b-and-w:before {
    content: '\f381';
}

.zmdi-filter-center-focus:before {
    content: '\f382';
}

.zmdi-filter-frames:before {
    content: '\f383';
}

.zmdi-filter-tilt-shift:before {
    content: '\f384';
}

.zmdi-gradient:before {
    content: '\f385';
}

.zmdi-grain:before {
    content: '\f386';
}

.zmdi-graphic-eq:before {
    content: '\f387';
}

.zmdi-hdr-off:before {
    content: '\f388';
}

.zmdi-hdr-strong:before {
    content: '\f389';
}

.zmdi-hdr-weak:before {
    content: '\f38a';
}

.zmdi-hdr:before {
    content: '\f38b';
}

.zmdi-iridescent:before {
    content: '\f38c';
}

.zmdi-leak-off:before {
    content: '\f38d';
}

.zmdi-leak:before {
    content: '\f38e';
}

.zmdi-looks:before {
    content: '\f38f';
}

.zmdi-loupe:before {
    content: '\f390';
}

.zmdi-panorama-horizontal:before {
    content: '\f391';
}

.zmdi-panorama-vertical:before {
    content: '\f392';
}

.zmdi-panorama-wide-angle:before {
    content: '\f393';
}

.zmdi-photo-size-select-large:before {
    content: '\f394';
}

.zmdi-photo-size-select-small:before {
    content: '\f395';
}

.zmdi-picture-in-picture:before {
    content: '\f396';
}

.zmdi-slideshow:before {
    content: '\f397';
}

.zmdi-texture:before {
    content: '\f398';
}

.zmdi-tonality:before {
    content: '\f399';
}

.zmdi-vignette:before {
    content: '\f39a';
}

.zmdi-wb-auto:before {
    content: '\f39b';
}

.zmdi-eject-alt:before {
    content: '\f39c';
}

.zmdi-eject:before {
    content: '\f39d';
}

.zmdi-equalizer:before {
    content: '\f39e';
}

.zmdi-fast-forward:before {
    content: '\f39f';
}

.zmdi-fast-rewind:before {
    content: '\f3a0';
}

.zmdi-forward-10:before {
    content: '\f3a1';
}

.zmdi-forward-30:before {
    content: '\f3a2';
}

.zmdi-forward-5:before {
    content: '\f3a3';
}

.zmdi-hearing:before {
    content: '\f3a4';
}

.zmdi-pause-circle-outline:before {
    content: '\f3a5';
}

.zmdi-pause-circle:before {
    content: '\f3a6';
}

.zmdi-pause:before {
    content: '\f3a7';
}

.zmdi-play-circle-outline:before {
    content: '\f3a8';
}

.zmdi-play-circle:before {
    content: '\f3a9';
}

.zmdi-play:before {
    content: '\f3aa';
}

.zmdi-playlist-audio:before {
    content: '\f3ab';
}

.zmdi-playlist-plus:before {
    content: '\f3ac';
}

.zmdi-repeat-one:before {
    content: '\f3ad';
}

.zmdi-repeat:before {
    content: '\f3ae';
}

.zmdi-replay-10:before {
    content: '\f3af';
}

.zmdi-replay-30:before {
    content: '\f3b0';
}

.zmdi-replay-5:before {
    content: '\f3b1';
}

.zmdi-replay:before {
    content: '\f3b2';
}

.zmdi-shuffle:before {
    content: '\f3b3';
}

.zmdi-skip-next:before {
    content: '\f3b4';
}

.zmdi-skip-previous:before {
    content: '\f3b5';
}

.zmdi-stop:before {
    content: '\f3b6';
}

.zmdi-surround-sound:before {
    content: '\f3b7';
}

.zmdi-tune:before {
    content: '\f3b8';
}

.zmdi-volume-down:before {
    content: '\f3b9';
}

.zmdi-volume-mute:before {
    content: '\f3ba';
}

.zmdi-volume-off:before {
    content: '\f3bb';
}

.zmdi-volume-up:before {
    content: '\f3bc';
}

.zmdi-n-1-square:before {
    content: '\f3bd';
}

.zmdi-n-2-square:before {
    content: '\f3be';
}

.zmdi-n-3-square:before {
    content: '\f3bf';
}

.zmdi-n-4-square:before {
    content: '\f3c0';
}

.zmdi-n-5-square:before {
    content: '\f3c1';
}

.zmdi-n-6-square:before {
    content: '\f3c2';
}

.zmdi-neg-1:before {
    content: '\f3c3';
}

.zmdi-neg-2:before {
    content: '\f3c4';
}

.zmdi-plus-1:before {
    content: '\f3c5';
}

.zmdi-plus-2:before {
    content: '\f3c6';
}

.zmdi-sec-10:before {
    content: '\f3c7';
}

.zmdi-sec-3:before {
    content: '\f3c8';
}

.zmdi-zero:before {
    content: '\f3c9';
}

.zmdi-airline-seat-flat-angled:before {
    content: '\f3ca';
}

.zmdi-airline-seat-flat:before {
    content: '\f3cb';
}

.zmdi-airline-seat-individual-suite:before {
    content: '\f3cc';
}

.zmdi-airline-seat-legroom-extra:before {
    content: '\f3cd';
}

.zmdi-airline-seat-legroom-normal:before {
    content: '\f3ce';
}

.zmdi-airline-seat-legroom-reduced:before {
    content: '\f3cf';
}

.zmdi-airline-seat-recline-extra:before {
    content: '\f3d0';
}

.zmdi-airline-seat-recline-normal:before {
    content: '\f3d1';
}

.zmdi-airplay:before {
    content: '\f3d2';
}

.zmdi-closed-caption:before {
    content: '\f3d3';
}

.zmdi-confirmation-number:before {
    content: '\f3d4';
}

.zmdi-developer-board:before {
    content: '\f3d5';
}

.zmdi-disc-full:before {
    content: '\f3d6';
}

.zmdi-explicit:before {
    content: '\f3d7';
}

.zmdi-flight-land:before {
    content: '\f3d8';
}

.zmdi-flight-takeoff:before {
    content: '\f3d9';
}

.zmdi-flip-to-back:before {
    content: '\f3da';
}

.zmdi-flip-to-front:before {
    content: '\f3db';
}

.zmdi-group-work:before {
    content: '\f3dc';
}

.zmdi-hd:before {
    content: '\f3dd';
}

.zmdi-hq:before {
    content: '\f3de';
}

.zmdi-markunread-mailbox:before {
    content: '\f3df';
}

.zmdi-memory:before {
    content: '\f3e0';
}

.zmdi-nfc:before {
    content: '\f3e1';
}

.zmdi-play-for-work:before {
    content: '\f3e2';
}

.zmdi-power-input:before {
    content: '\f3e3';
}

.zmdi-present-to-all:before {
    content: '\f3e4';
}

.zmdi-satellite:before {
    content: '\f3e5';
}

.zmdi-tap-and-play:before {
    content: '\f3e6';
}

.zmdi-vibration:before {
    content: '\f3e7';
}

.zmdi-voicemail:before {
    content: '\f3e8';
}

.zmdi-group:before {
    content: '\f3e9';
}

.zmdi-rss:before {
    content: '\f3ea';
}

.zmdi-shape:before {
    content: '\f3eb';
}

.zmdi-spinner:before {
    content: '\f3ec';
}

.zmdi-ungroup:before {
    content: '\f3ed';
}

.zmdi-500px:before {
    content: '\f3ee';
}

.zmdi-8tracks:before {
    content: '\f3ef';
}

.zmdi-amazon:before {
    content: '\f3f0';
}

.zmdi-blogger:before {
    content: '\f3f1';
}

.zmdi-delicious:before {
    content: '\f3f2';
}

.zmdi-disqus:before {
    content: '\f3f3';
}

.zmdi-flattr:before {
    content: '\f3f4';
}

.zmdi-flickr:before {
    content: '\f3f5';
}

.zmdi-github-alt:before {
    content: '\f3f6';
}

.zmdi-google-old:before {
    content: '\f3f7';
}

.zmdi-linkedin:before {
    content: '\f3f8';
}

.zmdi-odnoklassniki:before {
    content: '\f3f9';
}

.zmdi-outlook:before {
    content: '\f3fa';
}

.zmdi-paypal-alt:before {
    content: '\f3fb';
}

.zmdi-pinterest:before {
    content: '\f3fc';
}

.zmdi-playstation:before {
    content: '\f3fd';
}

.zmdi-reddit:before {
    content: '\f3fe';
}

.zmdi-skype:before {
    content: '\f3ff';
}

.zmdi-slideshare:before {
    content: '\f400';
}

.zmdi-soundcloud:before {
    content: '\f401';
}

.zmdi-tumblr:before {
    content: '\f402';
}

.zmdi-twitch:before {
    content: '\f403';
}

.zmdi-vimeo:before {
    content: '\f404';
}

.zmdi-whatsapp:before {
    content: '\f405';
}

.zmdi-xbox:before {
    content: '\f406';
}

.zmdi-yahoo:before {
    content: '\f407';
}

.zmdi-youtube-play:before {
    content: '\f408';
}

.zmdi-youtube:before {
    content: '\f409';
}

.zmdi-3d-rotation:before {
    content: '\f101';
}

.zmdi-airplane-off:before {
    content: '\f102';
}

.zmdi-airplane:before {
    content: '\f103';
}

.zmdi-album:before {
    content: '\f104';
}

.zmdi-archive:before {
    content: '\f105';
}

.zmdi-assignment-account:before {
    content: '\f106';
}

.zmdi-assignment-alert:before {
    content: '\f107';
}

.zmdi-assignment-check:before {
    content: '\f108';
}

.zmdi-assignment-o:before {
    content: '\f109';
}

.zmdi-assignment-return:before {
    content: '\f10a';
}

.zmdi-assignment-returned:before {
    content: '\f10b';
}

.zmdi-assignment:before {
    content: '\f10c';
}

.zmdi-attachment-alt:before {
    content: '\f10d';
}

.zmdi-attachment:before {
    content: '\f10e';
}

.zmdi-audio:before {
    content: '\f10f';
}

.zmdi-badge-check:before {
    content: '\f110';
}

.zmdi-balance-wallet:before {
    content: '\f111';
}

.zmdi-balance:before {
    content: '\f112';
}

.zmdi-battery-alert:before {
    content: '\f113';
}

.zmdi-battery-flash:before {
    content: '\f114';
}

.zmdi-battery-unknown:before {
    content: '\f115';
}

.zmdi-battery:before {
    content: '\f116';
}

.zmdi-bike:before {
    content: '\f117';
}

.zmdi-block-alt:before {
    content: '\f118';
}

.zmdi-block:before {
    content: '\f119';
}

.zmdi-boat:before {
    content: '\f11a';
}

.zmdi-book-image:before {
    content: '\f11b';
}

.zmdi-book:before {
    content: '\f11c';
}

.zmdi-bookmark-outline:before {
    content: '\f11d';
}

.zmdi-bookmark:before {
    content: '\f11e';
}

.zmdi-brush:before {
    content: '\f11f';
}

.zmdi-bug:before {
    content: '\f120';
}

.zmdi-bus:before {
    content: '\f121';
}

.zmdi-cake:before {
    content: '\f122';
}

.zmdi-car-taxi:before {
    content: '\f123';
}

.zmdi-car-wash:before {
    content: '\f124';
}

.zmdi-car:before {
    content: '\f125';
}

.zmdi-card-giftcard:before {
    content: '\f126';
}

.zmdi-card-membership:before {
    content: '\f127';
}

.zmdi-card-travel:before {
    content: '\f128';
}

.zmdi-card:before {
    content: '\f129';
}

.zmdi-case-check:before {
    content: '\f12a';
}

.zmdi-case-download:before {
    content: '\f12b';
}

.zmdi-case-play:before {
    content: '\f12c';
}

.zmdi-case:before {
    content: '\f12d';
}

.zmdi-cast-connected:before {
    content: '\f12e';
}

.zmdi-cast:before {
    content: '\f12f';
}

.zmdi-chart-donut:before {
    content: '\f130';
}

.zmdi-chart:before {
    content: '\f131';
}

.zmdi-city-alt:before {
    content: '\f132';
}

.zmdi-city:before {
    content: '\f133';
}

.zmdi-close-circle-o:before {
    content: '\f134';
}

.zmdi-close-circle:before {
    content: '\f135';
}

.zmdi-close:before {
    content: '\f136';
}

.zmdi-cocktail:before {
    content: '\f137';
}

.zmdi-code-setting:before {
    content: '\f138';
}

.zmdi-code-smartphone:before {
    content: '\f139';
}

.zmdi-code:before {
    content: '\f13a';
}

.zmdi-coffee:before {
    content: '\f13b';
}

.zmdi-collection-bookmark:before {
    content: '\f13c';
}

.zmdi-collection-case-play:before {
    content: '\f13d';
}

.zmdi-collection-folder-image:before {
    content: '\f13e';
}

.zmdi-collection-image-o:before {
    content: '\f13f';
}

.zmdi-collection-image:before {
    content: '\f140';
}

.zmdi-collection-item-1:before {
    content: '\f141';
}

.zmdi-collection-item-2:before {
    content: '\f142';
}

.zmdi-collection-item-3:before {
    content: '\f143';
}

.zmdi-collection-item-4:before {
    content: '\f144';
}

.zmdi-collection-item-5:before {
    content: '\f145';
}

.zmdi-collection-item-6:before {
    content: '\f146';
}

.zmdi-collection-item-7:before {
    content: '\f147';
}

.zmdi-collection-item-8:before {
    content: '\f148';
}

.zmdi-collection-item-9-plus:before {
    content: '\f149';
}

.zmdi-collection-item-9:before {
    content: '\f14a';
}

.zmdi-collection-item:before {
    content: '\f14b';
}

.zmdi-collection-music:before {
    content: '\f14c';
}

.zmdi-collection-pdf:before {
    content: '\f14d';
}

.zmdi-collection-plus:before {
    content: '\f14e';
}

.zmdi-collection-speaker:before {
    content: '\f14f';
}

.zmdi-collection-text:before {
    content: '\f150';
}

.zmdi-collection-video:before {
    content: '\f151';
}

.zmdi-compass:before {
    content: '\f152';
}

.zmdi-cutlery:before {
    content: '\f153';
}

.zmdi-delete:before {
    content: '\f154';
}

.zmdi-dialpad:before {
    content: '\f155';
}

.zmdi-dns:before {
    content: '\f156';
}

.zmdi-drink:before {
    content: '\f157';
}

.zmdi-edit:before {
    content: '\f158';
}

.zmdi-email-open:before {
    content: '\f159';
}

.zmdi-email:before {
    content: '\f15a';
}

.zmdi-eye-off:before {
    content: '\f15b';
}

.zmdi-eye:before {
    content: '\f15c';
}

.zmdi-eyedropper:before {
    content: '\f15d';
}

.zmdi-favorite-outline:before {
    content: '\f15e';
}

.zmdi-favorite:before {
    content: '\f15f';
}

.zmdi-filter-list:before {
    content: '\f160';
}

.zmdi-fire:before {
    content: '\f161';
}

.zmdi-flag:before {
    content: '\f162';
}

.zmdi-flare:before {
    content: '\f163';
}

.zmdi-flash-auto:before {
    content: '\f164';
}

.zmdi-flash-off:before {
    content: '\f165';
}

.zmdi-flash:before {
    content: '\f166';
}

.zmdi-flip:before {
    content: '\f167';
}

.zmdi-flower-alt:before {
    content: '\f168';
}

.zmdi-flower:before {
    content: '\f169';
}

.zmdi-font:before {
    content: '\f16a';
}

.zmdi-fullscreen-alt:before {
    content: '\f16b';
}

.zmdi-fullscreen-exit:before {
    content: '\f16c';
}

.zmdi-fullscreen:before {
    content: '\f16d';
}

.zmdi-functions:before {
    content: '\f16e';
}

.zmdi-gas-station:before {
    content: '\f16f';
}

.zmdi-gesture:before {
    content: '\f170';
}

.zmdi-globe-alt:before {
    content: '\f171';
}

.zmdi-globe-lock:before {
    content: '\f172';
}

.zmdi-globe:before {
    content: '\f173';
}

.zmdi-graduation-cap:before {
    content: '\f174';
}

.zmdi-home:before {
    content: '\f175';
}

.zmdi-hospital-alt:before {
    content: '\f176';
}

.zmdi-hospital:before {
    content: '\f177';
}

.zmdi-hotel:before {
    content: '\f178';
}

.zmdi-hourglass-alt:before {
    content: '\f179';
}

.zmdi-hourglass-outline:before {
    content: '\f17a';
}

.zmdi-hourglass:before {
    content: '\f17b';
}

.zmdi-http:before {
    content: '\f17c';
}

.zmdi-image-alt:before {
    content: '\f17d';
}

.zmdi-image-o:before {
    content: '\f17e';
}

.zmdi-image:before {
    content: '\f17f';
}

.zmdi-inbox:before {
    content: '\f180';
}

.zmdi-invert-colors-off:before {
    content: '\f181';
}

.zmdi-invert-colors:before {
    content: '\f182';
}

.zmdi-key:before {
    content: '\f183';
}

.zmdi-label-alt-outline:before {
    content: '\f184';
}

.zmdi-label-alt:before {
    content: '\f185';
}

.zmdi-label-heart:before {
    content: '\f186';
}

.zmdi-label:before {
    content: '\f187';
}

.zmdi-labels:before {
    content: '\f188';
}

.zmdi-lamp:before {
    content: '\f189';
}

.zmdi-landscape:before {
    content: '\f18a';
}

.zmdi-layers-off:before {
    content: '\f18b';
}

.zmdi-layers:before {
    content: '\f18c';
}

.zmdi-library:before {
    content: '\f18d';
}

.zmdi-link:before {
    content: '\f18e';
}

.zmdi-lock-open:before {
    content: '\f18f';
}

.zmdi-lock-outline:before {
    content: '\f190';
}

.zmdi-lock:before {
    content: '\f191';
}

.zmdi-mail-reply-all:before {
    content: '\f192';
}

.zmdi-mail-reply:before {
    content: '\f193';
}

.zmdi-mail-send:before {
    content: '\f194';
}

.zmdi-mall:before {
    content: '\f195';
}

.zmdi-map:before {
    content: '\f196';
}

.zmdi-menu:before {
    content: '\f197';
}

.zmdi-money-box:before {
    content: '\f198';
}

.zmdi-money-off:before {
    content: '\f199';
}

.zmdi-money:before {
    content: '\f19a';
}

.zmdi-more-vert:before {
    content: '\f19b';
}

.zmdi-more:before {
    content: '\f19c';
}

.zmdi-movie-alt:before {
    content: '\f19d';
}

.zmdi-movie:before {
    content: '\f19e';
}

.zmdi-nature-people:before {
    content: '\f19f';
}

.zmdi-nature:before {
    content: '\f1a0';
}

.zmdi-navigation:before {
    content: '\f1a1';
}

.zmdi-open-in-browser:before {
    content: '\f1a2';
}

.zmdi-open-in-new:before {
    content: '\f1a3';
}

.zmdi-palette:before {
    content: '\f1a4';
}

.zmdi-parking:before {
    content: '\f1a5';
}

.zmdi-pin-account:before {
    content: '\f1a6';
}

.zmdi-pin-assistant:before {
    content: '\f1a7';
}

.zmdi-pin-drop:before {
    content: '\f1a8';
}

.zmdi-pin-help:before {
    content: '\f1a9';
}

.zmdi-pin-off:before {
    content: '\f1aa';
}

.zmdi-pin:before {
    content: '\f1ab';
}

.zmdi-pizza:before {
    content: '\f1ac';
}

.zmdi-plaster:before {
    content: '\f1ad';
}

.zmdi-power-setting:before {
    content: '\f1ae';
}

.zmdi-power:before {
    content: '\f1af';
}

.zmdi-print:before {
    content: '\f1b0';
}

.zmdi-puzzle-piece:before {
    content: '\f1b1';
}

.zmdi-quote:before {
    content: '\f1b2';
}

.zmdi-railway:before {
    content: '\f1b3';
}

.zmdi-receipt:before {
    content: '\f1b4';
}

.zmdi-refresh-alt:before {
    content: '\f1b5';
}

.zmdi-refresh-sync-alert:before {
    content: '\f1b6';
}

.zmdi-refresh-sync-off:before {
    content: '\f1b7';
}

.zmdi-refresh-sync:before {
    content: '\f1b8';
}

.zmdi-refresh:before {
    content: '\f1b9';
}

.zmdi-roller:before {
    content: '\f1ba';
}

.zmdi-ruler:before {
    content: '\f1bb';
}

.zmdi-scissors:before {
    content: '\f1bc';
}

.zmdi-screen-rotation-lock:before {
    content: '\f1bd';
}

.zmdi-screen-rotation:before {
    content: '\f1be';
}

.zmdi-search-for:before {
    content: '\f1bf';
}

.zmdi-search-in-file:before {
    content: '\f1c0';
}

.zmdi-search-in-page:before {
    content: '\f1c1';
}

.zmdi-search-replace:before {
    content: '\f1c2';
}

.zmdi-search:before {
    content: '\f1c3';
}

.zmdi-seat:before {
    content: '\f1c4';
}

.zmdi-settings-square:before {
    content: '\f1c5';
}

.zmdi-settings:before {
    content: '\f1c6';
}

.zmdi-shield-check:before {
    content: '\f1c7';
}

.zmdi-shield-security:before {
    content: '\f1c8';
}

.zmdi-shopping-basket:before {
    content: '\f1c9';
}

.zmdi-shopping-cart-plus:before {
    content: '\f1ca';
}

.zmdi-shopping-cart:before {
    content: '\f1cb';
}

.zmdi-sign-in:before {
    content: '\f1cc';
}

.zmdi-sort-amount-asc:before {
    content: '\f1cd';
}

.zmdi-sort-amount-desc:before {
    content: '\f1ce';
}

.zmdi-sort-asc:before {
    content: '\f1cf';
}

.zmdi-sort-desc:before {
    content: '\f1d0';
}

.zmdi-spellcheck:before {
    content: '\f1d1';
}

.zmdi-storage:before {
    content: '\f1d2';
}

.zmdi-store-24:before {
    content: '\f1d3';
}

.zmdi-store:before {
    content: '\f1d4';
}

.zmdi-subway:before {
    content: '\f1d5';
}

.zmdi-sun:before {
    content: '\f1d6';
}

.zmdi-tab-unselected:before {
    content: '\f1d7';
}

.zmdi-tab:before {
    content: '\f1d8';
}

.zmdi-tag-close:before {
    content: '\f1d9';
}

.zmdi-tag-more:before {
    content: '\f1da';
}

.zmdi-tag:before {
    content: '\f1db';
}

.zmdi-thumb-down:before {
    content: '\f1dc';
}

.zmdi-thumb-up-down:before {
    content: '\f1dd';
}

.zmdi-thumb-up:before {
    content: '\f1de';
}

.zmdi-ticket-star:before {
    content: '\f1df';
}

.zmdi-toll:before {
    content: '\f1e0';
}

.zmdi-toys:before {
    content: '\f1e1';
}

.zmdi-traffic:before {
    content: '\f1e2';
}

.zmdi-translate:before {
    content: '\f1e3';
}

.zmdi-triangle-down:before {
    content: '\f1e4';
}

.zmdi-triangle-up:before {
    content: '\f1e5';
}

.zmdi-truck:before {
    content: '\f1e6';
}

.zmdi-turning-sign:before {
    content: '\f1e7';
}

.zmdi-wallpaper:before {
    content: '\f1e8';
}

.zmdi-washing-machine:before {
    content: '\f1e9';
}

.zmdi-window-maximize:before {
    content: '\f1ea';
}

.zmdi-window-minimize:before {
    content: '\f1eb';
}

.zmdi-window-restore:before {
    content: '\f1ec';
}

.zmdi-wrench:before {
    content: '\f1ed';
}

.zmdi-zoom-in:before {
    content: '\f1ee';
}

.zmdi-zoom-out:before {
    content: '\f1ef';
}

.zmdi-alert-circle-o:before {
    content: '\f1f0';
}

.zmdi-alert-circle:before {
    content: '\f1f1';
}

.zmdi-alert-octagon:before {
    content: '\f1f2';
}

.zmdi-alert-polygon:before {
    content: '\f1f3';
}

.zmdi-alert-triangle:before {
    content: '\f1f4';
}

.zmdi-help-outline:before {
    content: '\f1f5';
}

.zmdi-help:before {
    content: '\f1f6';
}

.zmdi-info-outline:before {
    content: '\f1f7';
}

.zmdi-info:before {
    content: '\f1f8';
}

.zmdi-notifications-active:before {
    content: '\f1f9';
}

.zmdi-notifications-add:before {
    content: '\f1fa';
}

.zmdi-notifications-none:before {
    content: '\f1fb';
}

.zmdi-notifications-off:before {
    content: '\f1fc';
}

.zmdi-notifications-paused:before {
    content: '\f1fd';
}

.zmdi-notifications:before {
    content: '\f1fe';
}

.zmdi-account-add:before {
    content: '\f1ff';
}

.zmdi-account-box-mail:before {
    content: '\f200';
}

.zmdi-account-box-o:before {
    content: '\f201';
}

.zmdi-account-box-phone:before {
    content: '\f202';
}

.zmdi-account-box:before {
    content: '\f203';
}

.zmdi-account-calendar:before {
    content: '\f204';
}

.zmdi-account-circle:before {
    content: '\f205';
}

.zmdi-account-o:before {
    content: '\f206';
}

.zmdi-account:before {
    content: '\f207';
}

.zmdi-accounts-add:before {
    content: '\f208';
}

.zmdi-accounts-alt:before {
    content: '\f209';
}

.zmdi-accounts-list-alt:before {
    content: '\f20a';
}

.zmdi-accounts-list:before {
    content: '\f20b';
}

.zmdi-accounts-outline:before {
    content: '\f20c';
}

.zmdi-accounts:before {
    content: '\f20d';
}

.zmdi-face:before {
    content: '\f20e';
}

.zmdi-female:before {
    content: '\f20f';
}

.zmdi-male-alt:before {
    content: '\f210';
}

.zmdi-male-female:before {
    content: '\f211';
}

.zmdi-male:before {
    content: '\f212';
}

.zmdi-mood-bad:before {
    content: '\f213';
}

.zmdi-mood:before {
    content: '\f214';
}

.zmdi-run:before {
    content: '\f215';
}

.zmdi-walk:before {
    content: '\f216';
}

.zmdi-cloud-box:before {
    content: '\f217';
}

.zmdi-cloud-circle:before {
    content: '\f218';
}

.zmdi-cloud-done:before {
    content: '\f219';
}

.zmdi-cloud-download:before {
    content: '\f21a';
}

.zmdi-cloud-off:before {
    content: '\f21b';
}

.zmdi-cloud-outline-alt:before {
    content: '\f21c';
}

.zmdi-cloud-outline:before {
    content: '\f21d';
}

.zmdi-cloud-upload:before {
    content: '\f21e';
}

.zmdi-cloud:before {
    content: '\f21f';
}

.zmdi-download:before {
    content: '\f220';
}

.zmdi-file-plus:before {
    content: '\f221';
}

.zmdi-file-text:before {
    content: '\f222';
}

.zmdi-file:before {
    content: '\f223';
}

.zmdi-folder-outline:before {
    content: '\f224';
}

.zmdi-folder-person:before {
    content: '\f225';
}

.zmdi-folder-star-alt:before {
    content: '\f226';
}

.zmdi-folder-star:before {
    content: '\f227';
}

.zmdi-folder:before {
    content: '\f228';
}

.zmdi-gif:before {
    content: '\f229';
}

.zmdi-upload:before {
    content: '\f22a';
}

.zmdi-border-all:before {
    content: '\f22b';
}

.zmdi-border-bottom:before {
    content: '\f22c';
}

.zmdi-border-clear:before {
    content: '\f22d';
}

.zmdi-border-color:before {
    content: '\f22e';
}

.zmdi-border-horizontal:before {
    content: '\f22f';
}

.zmdi-border-inner:before {
    content: '\f230';
}

.zmdi-border-left:before {
    content: '\f231';
}

.zmdi-border-outer:before {
    content: '\f232';
}

.zmdi-border-right:before {
    content: '\f233';
}

.zmdi-border-style:before {
    content: '\f234';
}

.zmdi-border-top:before {
    content: '\f235';
}

.zmdi-border-vertical:before {
    content: '\f236';
}

.zmdi-copy:before {
    content: '\f237';
}

.zmdi-crop:before {
    content: '\f238';
}

.zmdi-format-align-center:before {
    content: '\f239';
}

.zmdi-format-align-justify:before {
    content: '\f23a';
}

.zmdi-format-align-left:before {
    content: '\f23b';
}

.zmdi-format-align-right:before {
    content: '\f23c';
}

.zmdi-format-bold:before {
    content: '\f23d';
}

.zmdi-format-clear-all:before {
    content: '\f23e';
}

.zmdi-format-clear:before {
    content: '\f23f';
}

.zmdi-format-color-fill:before {
    content: '\f240';
}

.zmdi-format-color-reset:before {
    content: '\f241';
}

.zmdi-format-color-text:before {
    content: '\f242';
}

.zmdi-format-indent-decrease:before {
    content: '\f243';
}

.zmdi-format-indent-increase:before {
    content: '\f244';
}

.zmdi-format-italic:before {
    content: '\f245';
}

.zmdi-format-line-spacing:before {
    content: '\f246';
}

.zmdi-format-list-bulleted:before {
    content: '\f247';
}

.zmdi-format-list-numbered:before {
    content: '\f248';
}

.zmdi-format-ltr:before {
    content: '\f249';
}

.zmdi-format-rtl:before {
    content: '\f24a';
}

.zmdi-format-size:before {
    content: '\f24b';
}

.zmdi-format-strikethrough-s:before {
    content: '\f24c';
}

.zmdi-format-strikethrough:before {
    content: '\f24d';
}

.zmdi-format-subject:before {
    content: '\f24e';
}

.zmdi-format-underlined:before {
    content: '\f24f';
}

.zmdi-format-valign-bottom:before {
    content: '\f250';
}

.zmdi-format-valign-center:before {
    content: '\f251';
}

.zmdi-format-valign-top:before {
    content: '\f252';
}

.zmdi-redo:before {
    content: '\f253';
}

.zmdi-select-all:before {
    content: '\f254';
}

.zmdi-space-bar:before {
    content: '\f255';
}

.zmdi-text-format:before {
    content: '\f256';
}

.zmdi-transform:before {
    content: '\f257';
}

.zmdi-undo:before {
    content: '\f258';
}

.zmdi-wrap-text:before {
    content: '\f259';
}

.zmdi-comment-alert:before {
    content: '\f25a';
}

.zmdi-comment-alt-text:before {
    content: '\f25b';
}

.zmdi-comment-alt:before {
    content: '\f25c';
}

.zmdi-comment-edit:before {
    content: '\f25d';
}

.zmdi-comment-image:before {
    content: '\f25e';
}

.zmdi-comment-list:before {
    content: '\f25f';
}

.zmdi-comment-more:before {
    content: '\f260';
}

.zmdi-comment-outline:before {
    content: '\f261';
}

.zmdi-comment-text-alt:before {
    content: '\f262';
}

.zmdi-comment-text:before {
    content: '\f263';
}

.zmdi-comment-video:before {
    content: '\f264';
}

.zmdi-comment:before {
    content: '\f265';
}

.zmdi-comments:before {
    content: '\f266';
}

.zmdi-check-all:before {
    content: '\f267';
}

.zmdi-check-circle-u:before {
    content: '\f268';
}

.zmdi-check-circle:before {
    content: '\f269';
}

.zmdi-check-square:before {
    content: '\f26a';
}

.zmdi-check:before {
    content: '\f26b';
}

.zmdi-circle-o:before {
    content: '\f26c';
}

.zmdi-circle:before {
    content: '\f26d';
}

.zmdi-dot-circle-alt:before {
    content: '\f26e';
}

.zmdi-dot-circle:before {
    content: '\f26f';
}

.zmdi-minus-circle-outline:before {
    content: '\f270';
}

.zmdi-minus-circle:before {
    content: '\f271';
}

.zmdi-minus-square:before {
    content: '\f272';
}

.zmdi-minus:before {
    content: '\f273';
}

.zmdi-plus-circle-o-duplicate:before {
    content: '\f274';
}

.zmdi-plus-circle-o:before {
    content: '\f275';
}

.zmdi-plus-circle:before {
    content: '\f276';
}

.zmdi-plus-square:before {
    content: '\f277';
}

.zmdi-plus:before {
    content: '\f278';
}

.zmdi-square-o:before {
    content: '\f279';
}

.zmdi-star-circle:before {
    content: '\f27a';
}

.zmdi-star-half:before {
    content: '\f27b';
}

.zmdi-star-outline:before {
    content: '\f27c';
}

.zmdi-star:before {
    content: '\f27d';
}

.zmdi-bluetooth-connected:before {
    content: '\f27e';
}

.zmdi-bluetooth-off:before {
    content: '\f27f';
}

.zmdi-bluetooth-search:before {
    content: '\f280';
}

.zmdi-bluetooth-setting:before {
    content: '\f281';
}

.zmdi-bluetooth:before {
    content: '\f282';
}

.zmdi-camera-add:before {
    content: '\f283';
}

.zmdi-camera-alt:before {
    content: '\f284';
}

.zmdi-camera-bw:before {
    content: '\f285';
}

.zmdi-camera-front:before {
    content: '\f286';
}

.zmdi-camera-mic:before {
    content: '\f287';
}

.zmdi-camera-party-mode:before {
    content: '\f288';
}

.zmdi-camera-rear:before {
    content: '\f289';
}

.zmdi-camera-roll:before {
    content: '\f28a';
}

.zmdi-camera-switch:before {
    content: '\f28b';
}

.zmdi-camera:before {
    content: '\f28c';
}

.zmdi-card-alert:before {
    content: '\f28d';
}

.zmdi-card-off:before {
    content: '\f28e';
}

.zmdi-card-sd:before {
    content: '\f28f';
}

.zmdi-card-sim:before {
    content: '\f290';
}

.zmdi-desktop-mac:before {
    content: '\f291';
}

.zmdi-desktop-windows:before {
    content: '\f292';
}

.zmdi-device-hub:before {
    content: '\f293';
}

.zmdi-devices-off:before {
    content: '\f294';
}

.zmdi-devices:before {
    content: '\f295';
}

.zmdi-dock:before {
    content: '\f296';
}

.zmdi-floppy:before {
    content: '\f297';
}

.zmdi-gamepad:before {
    content: '\f298';
}

.zmdi-gps-dot:before {
    content: '\f299';
}

.zmdi-gps-off:before {
    content: '\f29a';
}

.zmdi-gps:before {
    content: '\f29b';
}

.zmdi-headset-mic:before {
    content: '\f29c';
}

.zmdi-headset:before {
    content: '\f29d';
}

.zmdi-input-antenna:before {
    content: '\f29e';
}

.zmdi-input-composite:before {
    content: '\f29f';
}

.zmdi-input-hdmi:before {
    content: '\f2a0';
}

.zmdi-input-power:before {
    content: '\f2a1';
}

.zmdi-input-svideo:before {
    content: '\f2a2';
}

.zmdi-keyboard-hide:before {
    content: '\f2a3';
}

.zmdi-keyboard:before {
    content: '\f2a4';
}

.zmdi-laptop-chromebook:before {
    content: '\f2a5';
}

.zmdi-laptop-mac:before {
    content: '\f2a6';
}

.zmdi-laptop:before {
    content: '\f2a7';
}

.zmdi-mic-off:before {
    content: '\f2a8';
}

.zmdi-mic-outline:before {
    content: '\f2a9';
}

.zmdi-mic-setting:before {
    content: '\f2aa';
}

.zmdi-mic:before {
    content: '\f2ab';
}

.zmdi-mouse:before {
    content: '\f2ac';
}

.zmdi-network-alert:before {
    content: '\f2ad';
}

.zmdi-network-locked:before {
    content: '\f2ae';
}

.zmdi-network-off:before {
    content: '\f2af';
}

.zmdi-network-outline:before {
    content: '\f2b0';
}

.zmdi-network-setting:before {
    content: '\f2b1';
}

.zmdi-network:before {
    content: '\f2b2';
}

.zmdi-phone-bluetooth:before {
    content: '\f2b3';
}

.zmdi-phone-end:before {
    content: '\f2b4';
}

.zmdi-phone-forwarded:before {
    content: '\f2b5';
}

.zmdi-phone-in-talk:before {
    content: '\f2b6';
}

.zmdi-phone-locked:before {
    content: '\f2b7';
}

.zmdi-phone-missed:before {
    content: '\f2b8';
}

.zmdi-phone-msg:before {
    content: '\f2b9';
}

.zmdi-phone-paused:before {
    content: '\f2ba';
}

.zmdi-phone-ring:before {
    content: '\f2bb';
}

.zmdi-phone-setting:before {
    content: '\f2bc';
}

.zmdi-phone-sip:before {
    content: '\f2bd';
}

.zmdi-phone:before {
    content: '\f2be';
}

.zmdi-portable-wifi-changes:before {
    content: '\f2bf';
}

.zmdi-portable-wifi-off:before {
    content: '\f2c0';
}

.zmdi-portable-wifi:before {
    content: '\f2c1';
}

.zmdi-radio:before {
    content: '\f2c2';
}

.zmdi-reader:before {
    content: '\f2c3';
}

.zmdi-remote-control-alt:before {
    content: '\f2c4';
}

.zmdi-remote-control:before {
    content: '\f2c5';
}

.zmdi-router:before {
    content: '\f2c6';
}

.zmdi-scanner:before {
    content: '\f2c7';
}

.zmdi-smartphone-android:before {
    content: '\f2c8';
}

.zmdi-smartphone-download:before {
    content: '\f2c9';
}

.zmdi-smartphone-erase:before {
    content: '\f2ca';
}

.zmdi-smartphone-info:before {
    content: '\f2cb';
}

.zmdi-smartphone-iphone:before {
    content: '\f2cc';
}

.zmdi-smartphone-landscape-lock:before {
    content: '\f2cd';
}

.zmdi-smartphone-landscape:before {
    content: '\f2ce';
}

.zmdi-smartphone-lock:before {
    content: '\f2cf';
}

.zmdi-smartphone-portrait-lock:before {
    content: '\f2d0';
}

.zmdi-smartphone-ring:before {
    content: '\f2d1';
}

.zmdi-smartphone-setting:before {
    content: '\f2d2';
}

.zmdi-smartphone-setup:before {
    content: '\f2d3';
}

.zmdi-smartphone:before {
    content: '\f2d4';
}

.zmdi-speaker:before {
    content: '\f2d5';
}

.zmdi-tablet-android:before {
    content: '\f2d6';
}

.zmdi-tablet-mac:before {
    content: '\f2d7';
}

.zmdi-tablet:before {
    content: '\f2d8';
}

.zmdi-tv-alt-play:before {
    content: '\f2d9';
}

.zmdi-tv-list:before {
    content: '\f2da';
}

.zmdi-tv-play:before {
    content: '\f2db';
}

.zmdi-tv:before {
    content: '\f2dc';
}

.zmdi-usb:before {
    content: '\f2dd';
}

.zmdi-videocam-off:before {
    content: '\f2de';
}

.zmdi-videocam-switch:before {
    content: '\f2df';
}

.zmdi-videocam:before {
    content: '\f2e0';
}

.zmdi-watch:before {
    content: '\f2e1';
}

.zmdi-wifi-alt-2:before {
    content: '\f2e2';
}

.zmdi-wifi-alt:before {
    content: '\f2e3';
}

.zmdi-wifi-info:before {
    content: '\f2e4';
}

.zmdi-wifi-lock:before {
    content: '\f2e5';
}

.zmdi-wifi-off:before {
    content: '\f2e6';
}

.zmdi-wifi-outline:before {
    content: '\f2e7';
}

.zmdi-wifi:before {
    content: '\f2e8';
}

.zmdi-arrow-left-bottom:before {
    content: '\f2e9';
}

.zmdi-arrow-left:before {
    content: '\f2ea';
}

.zmdi-arrow-merge:before {
    content: '\f2eb';
}

.zmdi-arrow-missed:before {
    content: '\f2ec';
}

.zmdi-arrow-right-top:before {
    content: '\f2ed';
}

.zmdi-arrow-right:before {
    content: '\f2ee';
}

.zmdi-arrow-split:before {
    content: '\f2ef';
}

.zmdi-arrows:before {
    content: '\f2f0';
}

.zmdi-caret-down-circle:before {
    content: '\f2f1';
}

.zmdi-caret-down:before {
    content: '\f2f2';
}

.zmdi-caret-left-circle:before {
    content: '\f2f3';
}

.zmdi-caret-left:before {
    content: '\f2f4';
}

.zmdi-caret-right-circle:before {
    content: '\f2f5';
}

.zmdi-caret-right:before {
    content: '\f2f6';
}

.zmdi-caret-up-circle:before {
    content: '\f2f7';
}

.zmdi-caret-up:before {
    content: '\f2f8';
}

.zmdi-chevron-down:before {
    content: '\f2f9';
}

.zmdi-chevron-left:before {
    content: '\f2fa';
}

.zmdi-chevron-right:before {
    content: '\f2fb';
}

.zmdi-chevron-up:before {
    content: '\f2fc';
}

.zmdi-forward:before {
    content: '\f2fd';
}

.zmdi-long-arrow-down:before {
    content: '\f2fe';
}

.zmdi-long-arrow-left:before {
    content: '\f2ff';
}

.zmdi-long-arrow-return:before {
    content: '\f300';
}

.zmdi-long-arrow-right:before {
    content: '\f301';
}

.zmdi-long-arrow-tab:before {
    content: '\f302';
}

.zmdi-long-arrow-up:before {
    content: '\f303';
}

.zmdi-rotate-ccw:before {
    content: '\f304';
}

.zmdi-rotate-cw:before {
    content: '\f305';
}

.zmdi-rotate-left:before {
    content: '\f306';
}

.zmdi-rotate-right:before {
    content: '\f307';
}

.zmdi-square-down:before {
    content: '\f308';
}

.zmdi-square-right:before {
    content: '\f309';
}

.zmdi-swap-alt:before {
    content: '\f30a';
}

.zmdi-swap-vertical-circle:before {
    content: '\f30b';
}

.zmdi-swap-vertical:before {
    content: '\f30c';
}

.zmdi-swap:before {
    content: '\f30d';
}

.zmdi-trending-down:before {
    content: '\f30e';
}

.zmdi-trending-flat:before {
    content: '\f30f';
}

.zmdi-trending-up:before {
    content: '\f310';
}

.zmdi-unfold-less:before {
    content: '\f311';
}

.zmdi-unfold-more:before {
    content: '\f312';
}

.zmdi-apps:before {
    content: '\f313';
}

.zmdi-grid-off:before {
    content: '\f314';
}

.zmdi-grid:before {
    content: '\f315';
}

.zmdi-view-agenda:before {
    content: '\f316';
}

.zmdi-view-array:before {
    content: '\f317';
}

.zmdi-view-carousel:before {
    content: '\f318';
}

.zmdi-view-column:before {
    content: '\f319';
}

.zmdi-view-comfy:before {
    content: '\f31a';
}

.zmdi-view-compact:before {
    content: '\f31b';
}

.zmdi-view-dashboard:before {
    content: '\f31c';
}

.zmdi-view-day:before {
    content: '\f31d';
}

.zmdi-view-headline:before {
    content: '\f31e';
}

.zmdi-view-list-alt:before {
    content: '\f31f';
}

.zmdi-view-list:before {
    content: '\f320';
}

.zmdi-view-module:before {
    content: '\f321';
}

.zmdi-view-quilt:before {
    content: '\f322';
}

.zmdi-view-stream:before {
    content: '\f323';
}

.zmdi-view-subtitles:before {
    content: '\f324';
}

.zmdi-view-toc:before {
    content: '\f325';
}

.zmdi-view-web:before {
    content: '\f326';
}

.zmdi-view-week:before {
    content: '\f327';
}

.zmdi-widgets:before {
    content: '\f328';
}

.zmdi-alarm-check:before {
    content: '\f329';
}

.zmdi-alarm-off:before {
    content: '\f32a';
}

.zmdi-alarm-plus:before {
    content: '\f32b';
}

.zmdi-alarm-snooze:before {
    content: '\f32c';
}

.zmdi-alarm:before {
    content: '\f32d';
}

.zmdi-calendar-alt:before {
    content: '\f32e';
}

.zmdi-calendar-check:before {
    content: '\f32f';
}

.zmdi-calendar-close:before {
    content: '\f330';
}

.zmdi-calendar-note:before {
    content: '\f331';
}

.zmdi-calendar:before {
    content: '\f332';
}

.zmdi-time-countdown:before {
    content: '\f333';
}

.zmdi-time-interval:before {
    content: '\f334';
}

.zmdi-time-restore-setting:before {
    content: '\f335';
}

.zmdi-time-restore:before {
    content: '\f336';
}

.zmdi-time:before {
    content: '\f337';
}

.zmdi-timer-off:before {
    content: '\f338';
}

.zmdi-timer:before {
    content: '\f339';
}

.zmdi-android-alt:before {
    content: '\f33a';
}

.zmdi-android:before {
    content: '\f33b';
}

.zmdi-apple:before {
    content: '\f33c';
}

.zmdi-behance:before {
    content: '\f33d';
}

.zmdi-codepen:before {
    content: '\f33e';
}

.zmdi-dribbble:before {
    content: '\f33f';
}

.zmdi-dropbox:before {
    content: '\f340';
}

.zmdi-evernote:before {
    content: '\f341';
}

.zmdi-facebook-box:before {
    content: '\f342';
}

.zmdi-facebook:before {
    content: '\f343';
}

.zmdi-github-box:before {
    content: '\f344';
}

.zmdi-github:before {
    content: '\f345';
}

.zmdi-google-drive:before {
    content: '\f346';
}

.zmdi-google-earth:before {
    content: '\f347';
}

.zmdi-google-glass:before {
    content: '\f348';
}

.zmdi-google-maps:before {
    content: '\f349';
}

.zmdi-google-pages:before {
    content: '\f34a';
}

.zmdi-google-play:before {
    content: '\f34b';
}

.zmdi-google-plus-box:before {
    content: '\f34c';
}

.zmdi-google-plus:before {
    content: '\f34d';
}

.zmdi-google:before {
    content: '\f34e';
}

.zmdi-instagram:before {
    content: '\f34f';
}

.zmdi-language-css3:before {
    content: '\f350';
}

.zmdi-language-html5:before {
    content: '\f351';
}

.zmdi-language-javascript:before {
    content: '\f352';
}

.zmdi-language-python-alt:before {
    content: '\f353';
}

.zmdi-language-python:before {
    content: '\f354';
}

.zmdi-lastfm:before {
    content: '\f355';
}

.zmdi-linkedin-box:before {
    content: '\f356';
}

.zmdi-paypal:before {
    content: '\f357';
}

.zmdi-pinterest-box:before {
    content: '\f358';
}

.zmdi-pocket:before {
    content: '\f359';
}

.zmdi-polymer:before {
    content: '\f35a';
}

.zmdi-share:before {
    content: '\f35b';
}

.zmdi-stackoverflow:before {
    content: '\f35c';
}

.zmdi-steam-square:before {
    content: '\f35d';
}

.zmdi-steam:before {
    content: '\f35e';
}

.zmdi-twitter-box:before {
    content: '\f35f';
}

.zmdi-twitter:before {
    content: '\f360';
}

.zmdi-vk:before {
    content: '\f361';
}

.zmdi-wikipedia:before {
    content: '\f362';
}

.zmdi-windows:before {
    content: '\f363';
}

.zmdi-aspect-ratio-alt:before {
    content: '\f364';
}

.zmdi-aspect-ratio:before {
    content: '\f365';
}

.zmdi-blur-circular:before {
    content: '\f366';
}

.zmdi-blur-linear:before {
    content: '\f367';
}

.zmdi-blur-off:before {
    content: '\f368';
}

.zmdi-blur:before {
    content: '\f369';
}

.zmdi-brightness-2:before {
    content: '\f36a';
}

.zmdi-brightness-3:before {
    content: '\f36b';
}

.zmdi-brightness-4:before {
    content: '\f36c';
}

.zmdi-brightness-5:before {
    content: '\f36d';
}

.zmdi-brightness-6:before {
    content: '\f36e';
}

.zmdi-brightness-7:before {
    content: '\f36f';
}

.zmdi-brightness-auto:before {
    content: '\f370';
}

.zmdi-brightness-setting:before {
    content: '\f371';
}

.zmdi-broken-image:before {
    content: '\f372';
}

.zmdi-center-focus-strong:before {
    content: '\f373';
}

.zmdi-center-focus-weak:before {
    content: '\f374';
}

.zmdi-compare:before {
    content: '\f375';
}

.zmdi-crop-16-9:before {
    content: '\f376';
}

.zmdi-crop-3-2:before {
    content: '\f377';
}

.zmdi-crop-5-4:before {
    content: '\f378';
}

.zmdi-crop-7-5:before {
    content: '\f379';
}

.zmdi-crop-din:before {
    content: '\f37a';
}

.zmdi-crop-free:before {
    content: '\f37b';
}

.zmdi-crop-landscape:before {
    content: '\f37c';
}

.zmdi-crop-portrait:before {
    content: '\f37d';
}

.zmdi-crop-square:before {
    content: '\f37e';
}

.zmdi-exposure-alt:before {
    content: '\f37f';
}

.zmdi-exposure:before {
    content: '\f380';
}

.zmdi-filter-b-and-w:before {
    content: '\f381';
}

.zmdi-filter-center-focus:before {
    content: '\f382';
}

.zmdi-filter-frames:before {
    content: '\f383';
}

.zmdi-filter-tilt-shift:before {
    content: '\f384';
}

.zmdi-gradient:before {
    content: '\f385';
}

.zmdi-grain:before {
    content: '\f386';
}

.zmdi-graphic-eq:before {
    content: '\f387';
}

.zmdi-hdr-off:before {
    content: '\f388';
}

.zmdi-hdr-strong:before {
    content: '\f389';
}

.zmdi-hdr-weak:before {
    content: '\f38a';
}

.zmdi-hdr:before {
    content: '\f38b';
}

.zmdi-iridescent:before {
    content: '\f38c';
}

.zmdi-leak-off:before {
    content: '\f38d';
}

.zmdi-leak:before {
    content: '\f38e';
}

.zmdi-looks:before {
    content: '\f38f';
}

.zmdi-loupe:before {
    content: '\f390';
}

.zmdi-panorama-horizontal:before {
    content: '\f391';
}

.zmdi-panorama-vertical:before {
    content: '\f392';
}

.zmdi-panorama-wide-angle:before {
    content: '\f393';
}

.zmdi-photo-size-select-large:before {
    content: '\f394';
}

.zmdi-photo-size-select-small:before {
    content: '\f395';
}

.zmdi-picture-in-picture:before {
    content: '\f396';
}

.zmdi-slideshow:before {
    content: '\f397';
}

.zmdi-texture:before {
    content: '\f398';
}

.zmdi-tonality:before {
    content: '\f399';
}

.zmdi-vignette:before {
    content: '\f39a';
}

.zmdi-wb-auto:before {
    content: '\f39b';
}

.zmdi-eject-alt:before {
    content: '\f39c';
}

.zmdi-eject:before {
    content: '\f39d';
}

.zmdi-equalizer:before {
    content: '\f39e';
}

.zmdi-fast-forward:before {
    content: '\f39f';
}

.zmdi-fast-rewind:before {
    content: '\f3a0';
}

.zmdi-forward-10:before {
    content: '\f3a1';
}

.zmdi-forward-30:before {
    content: '\f3a2';
}

.zmdi-forward-5:before {
    content: '\f3a3';
}

.zmdi-hearing:before {
    content: '\f3a4';
}

.zmdi-pause-circle-outline:before {
    content: '\f3a5';
}

.zmdi-pause-circle:before {
    content: '\f3a6';
}

.zmdi-pause:before {
    content: '\f3a7';
}

.zmdi-play-circle-outline:before {
    content: '\f3a8';
}

.zmdi-play-circle:before {
    content: '\f3a9';
}

.zmdi-play:before {
    content: '\f3aa';
}

.zmdi-playlist-audio:before {
    content: '\f3ab';
}

.zmdi-playlist-plus:before {
    content: '\f3ac';
}

.zmdi-repeat-one:before {
    content: '\f3ad';
}

.zmdi-repeat:before {
    content: '\f3ae';
}

.zmdi-replay-10:before {
    content: '\f3af';
}

.zmdi-replay-30:before {
    content: '\f3b0';
}

.zmdi-replay-5:before {
    content: '\f3b1';
}

.zmdi-replay:before {
    content: '\f3b2';
}

.zmdi-shuffle:before {
    content: '\f3b3';
}

.zmdi-skip-next:before {
    content: '\f3b4';
}

.zmdi-skip-previous:before {
    content: '\f3b5';
}

.zmdi-stop:before {
    content: '\f3b6';
}

.zmdi-surround-sound:before {
    content: '\f3b7';
}

.zmdi-tune:before {
    content: '\f3b8';
}

.zmdi-volume-down:before {
    content: '\f3b9';
}

.zmdi-volume-mute:before {
    content: '\f3ba';
}

.zmdi-volume-off:before {
    content: '\f3bb';
}

.zmdi-volume-up:before {
    content: '\f3bc';
}

.zmdi-n-1-square:before {
    content: '\f3bd';
}

.zmdi-n-2-square:before {
    content: '\f3be';
}

.zmdi-n-3-square:before {
    content: '\f3bf';
}

.zmdi-n-4-square:before {
    content: '\f3c0';
}

.zmdi-n-5-square:before {
    content: '\f3c1';
}

.zmdi-n-6-square:before {
    content: '\f3c2';
}

.zmdi-neg-1:before {
    content: '\f3c3';
}

.zmdi-neg-2:before {
    content: '\f3c4';
}

.zmdi-plus-1:before {
    content: '\f3c5';
}

.zmdi-plus-2:before {
    content: '\f3c6';
}

.zmdi-sec-10:before {
    content: '\f3c7';
}

.zmdi-sec-3:before {
    content: '\f3c8';
}

.zmdi-zero:before {
    content: '\f3c9';
}

.zmdi-airline-seat-flat-angled:before {
    content: '\f3ca';
}

.zmdi-airline-seat-flat:before {
    content: '\f3cb';
}

.zmdi-airline-seat-individual-suite:before {
    content: '\f3cc';
}

.zmdi-airline-seat-legroom-extra:before {
    content: '\f3cd';
}

.zmdi-airline-seat-legroom-normal:before {
    content: '\f3ce';
}

.zmdi-airline-seat-legroom-reduced:before {
    content: '\f3cf';
}

.zmdi-airline-seat-recline-extra:before {
    content: '\f3d0';
}

.zmdi-airline-seat-recline-normal:before {
    content: '\f3d1';
}

.zmdi-airplay:before {
    content: '\f3d2';
}

.zmdi-closed-caption:before {
    content: '\f3d3';
}

.zmdi-confirmation-number:before {
    content: '\f3d4';
}

.zmdi-developer-board:before {
    content: '\f3d5';
}

.zmdi-disc-full:before {
    content: '\f3d6';
}

.zmdi-explicit:before {
    content: '\f3d7';
}

.zmdi-flight-land:before {
    content: '\f3d8';
}

.zmdi-flight-takeoff:before {
    content: '\f3d9';
}

.zmdi-flip-to-back:before {
    content: '\f3da';
}

.zmdi-flip-to-front:before {
    content: '\f3db';
}

.zmdi-group-work:before {
    content: '\f3dc';
}

.zmdi-hd:before {
    content: '\f3dd';
}

.zmdi-hq:before {
    content: '\f3de';
}

.zmdi-markunread-mailbox:before {
    content: '\f3df';
}

.zmdi-memory:before {
    content: '\f3e0';
}

.zmdi-nfc:before {
    content: '\f3e1';
}

.zmdi-play-for-work:before {
    content: '\f3e2';
}

.zmdi-power-input:before {
    content: '\f3e3';
}

.zmdi-present-to-all:before {
    content: '\f3e4';
}

.zmdi-satellite:before {
    content: '\f3e5';
}

.zmdi-tap-and-play:before {
    content: '\f3e6';
}

.zmdi-vibration:before {
    content: '\f3e7';
}

.zmdi-voicemail:before {
    content: '\f3e8';
}

.zmdi-group:before {
    content: '\f3e9';
}

.zmdi-rss:before {
    content: '\f3ea';
}

.zmdi-shape:before {
    content: '\f3eb';
}

.zmdi-spinner:before {
    content: '\f3ec';
}

.zmdi-ungroup:before {
    content: '\f3ed';
}

.zmdi-500px:before {
    content: '\f3ee';
}

.zmdi-8tracks:before {
    content: '\f3ef';
}

.zmdi-amazon:before {
    content: '\f3f0';
}

.zmdi-blogger:before {
    content: '\f3f1';
}

.zmdi-delicious:before {
    content: '\f3f2';
}

.zmdi-disqus:before {
    content: '\f3f3';
}

.zmdi-flattr:before {
    content: '\f3f4';
}

.zmdi-flickr:before {
    content: '\f3f5';
}

.zmdi-github-alt:before {
    content: '\f3f6';
}

.zmdi-google-old:before {
    content: '\f3f7';
}

.zmdi-linkedin:before {
    content: '\f3f8';
}

.zmdi-odnoklassniki:before {
    content: '\f3f9';
}

.zmdi-outlook:before {
    content: '\f3fa';
}

.zmdi-paypal-alt:before {
    content: '\f3fb';
}

.zmdi-pinterest:before {
    content: '\f3fc';
}

.zmdi-playstation:before {
    content: '\f3fd';
}

.zmdi-reddit:before {
    content: '\f3fe';
}

.zmdi-skype:before {
    content: '\f3ff';
}

.zmdi-slideshare:before {
    content: '\f400';
}

.zmdi-soundcloud:before {
    content: '\f401';
}

.zmdi-tumblr:before {
    content: '\f402';
}

.zmdi-twitch:before {
    content: '\f403';
}

.zmdi-vimeo:before {
    content: '\f404';
}

.zmdi-whatsapp:before {
    content: '\f405';
}

.zmdi-xbox:before {
    content: '\f406';
}

.zmdi-yahoo:before {
    content: '\f407';
}

.zmdi-youtube-play:before {
    content: '\f408';
}

.zmdi-youtube:before {
    content: '\f409';
}

.zmdi-import-export:before {
    content: '\f30c';
}

.zmdi-swap-vertical-:before {
    content: '\f30c';
}

.zmdi-airplanemode-inactive:before {
    content: '\f102';
}

.zmdi-airplanemode-active:before {
    content: '\f103';
}

.zmdi-rate-review:before {
    content: '\f103';
}

.zmdi-comment-sign:before {
    content: '\f25a';
}

.zmdi-network-warning:before {
    content: '\f2ad';
}

.zmdi-shopping-cart-add:before {
    content: '\f1ca';
}

.zmdi-file-add:before {
    content: '\f221';
}

.zmdi-network-wifi-scan:before {
    content: '\f2e4';
}

.zmdi-collection-add:before {
    content: '\f14e';
}

.zmdi-format-playlist-add:before {
    content: '\f3ac';
}

.zmdi-format-queue-music:before {
    content: '\f3ab';
}

.zmdi-plus-box:before {
    content: '\f277';
}

.zmdi-tag-backspace:before {
    content: '\f1d9';
}

.zmdi-alarm-add:before {
    content: '\f32b';
}

.zmdi-battery-charging:before {
    content: '\f114';
}

.zmdi-daydream-setting:before {
    content: '\f217';
}

.zmdi-more-horiz:before {
    content: '\f19c';
}

.zmdi-book-photo:before {
    content: '\f11b';
}

.zmdi-incandescent:before {
    content: '\f189';
}

.zmdi-wb-iridescent:before {
    content: '\f38c';
}

.zmdi-calendar-remove:before {
    content: '\f330';
}

.zmdi-refresh-sync-disabled:before {
    content: '\f1b7';
}

.zmdi-refresh-sync-problem:before {
    content: '\f1b6';
}

.zmdi-crop-original:before {
    content: '\f17e';
}

.zmdi-power-off:before {
    content: '\f1af';
}

.zmdi-power-off-setting:before {
    content: '\f1ae';
}

.zmdi-leak-remove:before {
    content: '\f38d';
}

.zmdi-star-border:before {
    content: '\f27c';
}

.zmdi-brightness-low:before {
    content: '\f36d';
}

.zmdi-brightness-medium:before {
    content: '\f36e';
}

.zmdi-brightness-high:before {
    content: '\f36f';
}

.zmdi-smartphone-portrait:before {
    content: '\f2d4';
}

.zmdi-live-tv:before {
    content: '\f2d9';
}

.zmdi-format-textdirection-l-to-r:before {
    content: '\f249';
}

.zmdi-format-textdirection-r-to-l:before {
    content: '\f24a';
}

.zmdi-arrow-back:before {
    content: '\f2ea';
}

.zmdi-arrow-forward:before {
    content: '\f2ee';
}

.zmdi-arrow-in:before {
    content: '\f2e9';
}

.zmdi-arrow-out:before {
    content: '\f2ed';
}

.zmdi-rotate-90-degrees-ccw:before {
    content: '\f304';
}

.zmdi-adb:before {
    content: '\f33a';
}

.zmdi-network-wifi:before {
    content: '\f2e8';
}

.zmdi-network-wifi-alt:before {
    content: '\f2e3';
}

.zmdi-network-wifi-lock:before {
    content: '\f2e5';
}

.zmdi-network-wifi-off:before {
    content: '\f2e6';
}

.zmdi-network-wifi-outline:before {
    content: '\f2e7';
}

.zmdi-network-wifi-info:before {
    content: '\f2e4';
}

.zmdi-layers-clear:before {
    content: '\f18b';
}

.zmdi-colorize:before {
    content: '\f15d';
}

.zmdi-format-paint:before {
    content: '\f1ba';
}

.zmdi-format-quote:before {
    content: '\f1b2';
}

.zmdi-camera-monochrome-photos:before {
    content: '\f285';
}

.zmdi-sort-by-alpha:before {
    content: '\f1cf';
}

.zmdi-folder-shared:before {
    content: '\f225';
}

.zmdi-folder-special:before {
    content: '\f226';
}

.zmdi-comment-dots:before {
    content: '\f260';
}

.zmdi-reorder:before {
    content: '\f31e';
}

.zmdi-dehaze:before {
    content: '\f197';
}

.zmdi-sort:before {
    content: '\f1ce';
}

.zmdi-pages:before {
    content: '\f34a';
}

.zmdi-stack-overflow:before {
    content: '\f35c';
}

.zmdi-calendar-account:before {
    content: '\f204';
}

.zmdi-paste:before {
    content: '\f109';
}

.zmdi-cut:before {
    content: '\f1bc';
}

.zmdi-save:before {
    content: '\f297';
}

.zmdi-smartphone-code:before {
    content: '\f139';
}

.zmdi-directions-bike:before {
    content: '\f117';
}

.zmdi-directions-boat:before {
    content: '\f11a';
}

.zmdi-directions-bus:before {
    content: '\f121';
}

.zmdi-directions-car:before {
    content: '\f125';
}

.zmdi-directions-railway:before {
    content: '\f1b3';
}

.zmdi-directions-run:before {
    content: '\f215';
}

.zmdi-directions-subway:before {
    content: '\f1d5';
}

.zmdi-directions-walk:before {
    content: '\f216';
}

.zmdi-local-hotel:before {
    content: '\f178';
}

.zmdi-local-activity:before {
    content: '\f1df';
}

.zmdi-local-play:before {
    content: '\f1df';
}

.zmdi-local-airport:before {
    content: '\f103';
}

.zmdi-local-atm:before {
    content: '\f198';
}

.zmdi-local-bar:before {
    content: '\f137';
}

.zmdi-local-cafe:before {
    content: '\f13b';
}

.zmdi-local-car-wash:before {
    content: '\f124';
}

.zmdi-local-convenience-store:before {
    content: '\f1d3';
}

.zmdi-local-dining:before {
    content: '\f153';
}

.zmdi-local-drink:before {
    content: '\f157';
}

.zmdi-local-florist:before {
    content: '\f168';
}

.zmdi-local-gas-station:before {
    content: '\f16f';
}

.zmdi-local-grocery-store:before {
    content: '\f1cb';
}

.zmdi-local-hospital:before {
    content: '\f177';
}

.zmdi-local-laundry-service:before {
    content: '\f1e9';
}

.zmdi-local-library:before {
    content: '\f18d';
}

.zmdi-local-mall:before {
    content: '\f195';
}

.zmdi-local-movies:before {
    content: '\f19d';
}

.zmdi-local-offer:before {
    content: '\f187';
}

.zmdi-local-parking:before {
    content: '\f1a5';
}

.zmdi-local-parking:before {
    content: '\f1a5';
}

.zmdi-local-pharmacy:before {
    content: '\f176';
}

.zmdi-local-phone:before {
    content: '\f2be';
}

.zmdi-local-pizza:before {
    content: '\f1ac';
}

.zmdi-local-post-office:before {
    content: '\f15a';
}

.zmdi-local-printshop:before {
    content: '\f1b0';
}

.zmdi-local-see:before {
    content: '\f28c';
}

.zmdi-local-shipping:before {
    content: '\f1e6';
}

.zmdi-local-store:before {
    content: '\f1d4';
}

.zmdi-local-taxi:before {
    content: '\f123';
}

.zmdi-local-wc:before {
    content: '\f211';
}

.zmdi-my-location:before {
    content: '\f299';
}

.zmdi-directions:before {
    content: '\f1e7';
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
/*
 *  Bootstrap TouchSpin - v3.1.1
 *  A mobile and touch friendly input spinner component for Bootstrap 3.
 *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
 *
 *  Made by Istv├ín Ujj-M├⌐sz├íros
 *  Under Apache License v2.0 License
 */
.bootstrap-touchspin .input-group-btn-vertical {
    position: relative;
    white-space: nowrap;
    width: 1%;
    vertical-align: middle;
    display: table-cell;
}

.bootstrap-touchspin .input-group-btn-vertical>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    margin-left: -1px;
    position: relative;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    margin-top: -1px;
    border-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical i {
    position: absolute;
    top: 3px;
    left: 5px;
    font-size: 9px;
    font-weight: normal;
}

.rtl .bootstrap-touchspin .input-group-btn-vertical>.btn {
    margin-left: inherit;
    margin-right: -1px;
}

.rtl .bootstrap-touchspin .input-group-btn-vertical i {
    left: inherit;
    right: 2px;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 576px) {
    .container {
        width: 570px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 750px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 990px;
        max-width: 100%;
    }
}

@media (min-width: 1176px) {
    .container {
        width: 1200px;
        max-width: 100%;
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-left: 0;
    padding-right: 0;
}

.container-fluid::after {
    content: "";
    display: table;
    clear: both;
}

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

.row::after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 576px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 768px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 992px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 1176px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-sm,
.col-sm-1,
.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-10,
.col-sm-11,
.col-sm-12,
.col-md,
.col-md-1,
.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-10,
.col-md-11,
.col-md-12,
.col-lg,
.col-lg-1,
.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-10,
.col-lg-11,
.col-lg-12,
.col-xl,
.col-xl-1,
.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-10,
.col-xl-11,
.col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1176px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.col-xs-1 {
    float: left;
    width: 8.33333%;
}

.col-xs-2 {
    float: left;
    width: 16.66667%;
}

.col-xs-3 {
    float: left;
    width: 25%;
}

.col-xs-4 {
    float: left;
    width: 33.33333%;
}

.col-xs-5 {
    float: left;
    width: 41.66667%;
}

.col-xs-6 {
    float: left;
    width: 50%;
}

.col-xs-7 {
    float: left;
    width: 58.33333%;
}

.col-xs-8 {
    float: left;
    width: 66.66667%;
}

.col-xs-9 {
    float: left;
    width: 75%;
}

.col-xs-10 {
    float: left;
    width: 83.33333%;
}

.col-xs-11 {
    float: left;
    width: 91.66667%;
}

.col-xs-12 {
    float: left;
    width: 100%;
}

.pull-xs-0 {
    right: auto;
}

.pull-xs-1 {
    right: 8.33333%;
}

.pull-xs-2 {
    right: 16.66667%;
}

.pull-xs-3 {
    right: 25%;
}

.pull-xs-4 {
    right: 33.33333%;
}

.pull-xs-5 {
    right: 41.66667%;
}

.pull-xs-6 {
    right: 50%;
}

.pull-xs-7 {
    right: 58.33333%;
}

.pull-xs-8 {
    right: 66.66667%;
}

.pull-xs-9 {
    right: 75%;
}

.pull-xs-10 {
    right: 83.33333%;
}

.pull-xs-11 {
    right: 91.66667%;
}

.pull-xs-12 {
    right: 100%;
}

.push-xs-0 {
    left: auto;
}

.push-xs-1 {
    left: 8.33333%;
}

.push-xs-2 {
    left: 16.66667%;
}

.push-xs-3 {
    left: 25%;
}

.push-xs-4 {
    left: 33.33333%;
}

.push-xs-5 {
    left: 41.66667%;
}

.push-xs-6 {
    left: 50%;
}

.push-xs-7 {
    left: 58.33333%;
}

.push-xs-8 {
    left: 66.66667%;
}

.push-xs-9 {
    left: 75%;
}

.push-xs-10 {
    left: 83.33333%;
}

.push-xs-11 {
    left: 91.66667%;
}

.push-xs-12 {
    left: 100%;
}

.text-center {
    text-align: center;
}

.offset-xs-1 {
    margin-left: 8.33333%;
}

.offset-xs-2 {
    margin-left: 16.66667%;
}

.offset-xs-3 {
    margin-left: 25%;
}

.offset-xs-4 {
    margin-left: 33.33333%;
}

.offset-xs-5 {
    margin-left: 41.66667%;
}

.offset-xs-6 {
    margin-left: 50%;
}

.offset-xs-7 {
    margin-left: 58.33333%;
}

.offset-xs-8 {
    margin-left: 66.66667%;
}

.offset-xs-9 {
    margin-left: 75%;
}

.offset-xs-10 {
    margin-left: 83.33333%;
}

.offset-xs-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .col-sm-1 {
        float: left;
        width: 8.33333%;
    }

    .col-sm-2 {
        float: left;
        width: 16.66667%;
    }

    .col-sm-3 {
        float: left;
        width: 25%;
    }

    .col-sm-4 {
        float: left;
        width: 33.33333%;
    }

    .col-sm-5 {
        float: left;
        width: 41.66667%;
    }

    .col-sm-6 {
        float: left;
        width: 50%;
    }

    .col-sm-7 {
        float: left;
        width: 58.33333%;
    }

    .col-sm-8 {
        float: left;
        width: 66.66667%;
    }

    .col-sm-9 {
        float: left;
        width: 75%;
    }

    .col-sm-10 {
        float: left;
        width: 83.33333%;
    }

    .col-sm-11 {
        float: left;
        width: 91.66667%;
    }

    .col-sm-12 {
        float: left;
        width: 100%;
    }

    .pull-sm-0 {
        right: auto;
    }

    .pull-sm-1 {
        right: 8.33333%;
    }

    .pull-sm-2 {
        right: 16.66667%;
    }

    .pull-sm-3 {
        right: 25%;
    }

    .pull-sm-4 {
        right: 33.33333%;
    }

    .pull-sm-5 {
        right: 41.66667%;
    }

    .pull-sm-6 {
        right: 50%;
    }

    .pull-sm-7 {
        right: 58.33333%;
    }

    .pull-sm-8 {
        right: 66.66667%;
    }

    .pull-sm-9 {
        right: 75%;
    }

    .pull-sm-10 {
        right: 83.33333%;
    }

    .pull-sm-11 {
        right: 91.66667%;
    }

    .pull-sm-12 {
        right: 100%;
    }

    .push-sm-0 {
        left: auto;
    }

    .push-sm-1 {
        left: 8.33333%;
    }

    .push-sm-2 {
        left: 16.66667%;
    }

    .push-sm-3 {
        left: 25%;
    }

    .push-sm-4 {
        left: 33.33333%;
    }

    .push-sm-5 {
        left: 41.66667%;
    }

    .push-sm-6 {
        left: 50%;
    }

    .push-sm-7 {
        left: 58.33333%;
    }

    .push-sm-8 {
        left: 66.66667%;
    }

    .push-sm-9 {
        left: 75%;
    }

    .push-sm-10 {
        left: 83.33333%;
    }

    .push-sm-11 {
        left: 91.66667%;
    }

    .push-sm-12 {
        left: 100%;
    }

    .offset-sm-0 {
        margin-left: 0%;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        float: left;
        width: 8.33333%;
    }

    .col-md-2 {
        float: left;
        width: 16.66667%;
    }

    .col-md-3 {
        float: left;
        width: 25%;
    }

    .col-md-4 {
        float: left;
        width: 33.33333%;
    }

    .col-md-5 {
        float: left;
        width: 41.66667%;
    }

    .col-md-6 {
        float: left;
        width: 50%;
    }

    .col-md-7 {
        float: left;
        width: 58.33333%;
    }

    .col-md-8 {
        float: left;
        width: 66.66667%;
    }

    .col-md-9 {
        float: left;
        width: 75%;
    }

    .col-md-10 {
        float: left;
        width: 83.33333%;
    }

    .col-md-11 {
        float: left;
        width: 91.66667%;
    }

    .col-md-12 {
        float: left;
        width: 100%;
    }

    .pull-md-0 {
        right: auto;
    }

    .pull-md-1 {
        right: 8.33333%;
    }

    .pull-md-2 {
        right: 16.66667%;
    }

    .pull-md-3 {
        right: 25%;
    }

    .pull-md-4 {
        right: 33.33333%;
    }

    .pull-md-5 {
        right: 41.66667%;
    }

    .pull-md-6 {
        right: 50%;
    }

    .pull-md-7 {
        right: 58.33333%;
    }

    .pull-md-8 {
        right: 66.66667%;
    }

    .pull-md-9 {
        right: 75%;
    }

    .pull-md-10 {
        right: 83.33333%;
    }

    .pull-md-11 {
        right: 91.66667%;
    }

    .pull-md-12 {
        right: 100%;
    }

    .push-md-0 {
        left: auto;
    }

    .push-md-1 {
        left: 8.33333%;
    }

    .push-md-2 {
        left: 16.66667%;
    }

    .push-md-3 {
        left: 25%;
    }

    .push-md-4 {
        left: 33.33333%;
    }

    .push-md-5 {
        left: 41.66667%;
    }

    .push-md-6 {
        left: 50%;
    }

    .push-md-7 {
        left: 58.33333%;
    }

    .push-md-8 {
        left: 66.66667%;
    }

    .push-md-9 {
        left: 75%;
    }

    .push-md-10 {
        left: 83.33333%;
    }

    .push-md-11 {
        left: 91.66667%;
    }

    .push-md-12 {
        left: 100%;
    }

    .offset-md-0 {
        margin-left: 0%;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        float: left;
        width: 8.33333%;
    }

    .col-lg-2 {
        float: left;
        width: 16.66667%;
    }

    .col-lg-3 {
        float: left;
        width: 25%;
    }

    .col-lg-4 {
        float: left;
        width: 33.33333%;
    }

    .col-lg-5 {
        float: left;
        width: 41.66667%;
    }

    .col-lg-6 {
        float: left;
        width: 50%;
    }

    .col-lg-7 {
        float: left;
        width: 58.33333%;
    }

    .col-lg-8 {
        float: left;
        width: 66.66667%;
    }

    .col-lg-9 {
        float: left;
        width: 75%;
    }

    .col-lg-10 {
        float: left;
        width: 83.33333%;
    }

    .col-lg-11 {
        float: left;
        width: 91.66667%;
    }

    .col-lg-12 {
        float: left;
        width: 100%;
    }

    .pull-lg-0 {
        right: auto;
    }

    .pull-lg-1 {
        right: 8.33333%;
    }

    .pull-lg-2 {
        right: 16.66667%;
    }

    .pull-lg-3 {
        right: 25%;
    }

    .pull-lg-4 {
        right: 33.33333%;
    }

    .pull-lg-5 {
        right: 41.66667%;
    }

    .pull-lg-6 {
        right: 50%;
    }

    .pull-lg-7 {
        right: 58.33333%;
    }

    .pull-lg-8 {
        right: 66.66667%;
    }

    .pull-lg-9 {
        right: 75%;
    }

    .pull-lg-10 {
        right: 83.33333%;
    }

    .pull-lg-11 {
        right: 91.66667%;
    }

    .pull-lg-12 {
        right: 100%;
    }

    .push-lg-0 {
        left: auto;
    }

    .push-lg-1 {
        left: 8.33333%;
    }

    .push-lg-2 {
        left: 16.66667%;
    }

    .push-lg-3 {
        left: 25%;
    }

    .push-lg-4 {
        left: 33.33333%;
    }

    .push-lg-5 {
        left: 41.66667%;
    }

    .push-lg-6 {
        left: 50%;
    }

    .push-lg-7 {
        left: 58.33333%;
    }

    .push-lg-8 {
        left: 66.66667%;
    }

    .push-lg-9 {
        left: 75%;
    }

    .push-lg-10 {
        left: 83.33333%;
    }

    .push-lg-11 {
        left: 91.66667%;
    }

    .push-lg-12 {
        left: 100%;
    }

    .offset-lg-0 {
        margin-left: 0%;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1176px) {
    .col-xl-1 {
        float: left;
        width: 8.33333%;
    }

    .col-xl-2 {
        float: left;
        width: 16.66667%;
    }

    .col-xl-3 {
        float: left;
        width: 25%;
    }

    .col-xl-4 {
        float: left;
        width: 33.33333%;
    }

    .col-xl-5 {
        float: left;
        width: 41.66667%;
    }

    .col-xl-6 {
        float: left;
        width: 50%;
    }

    .col-xl-7 {
        float: left;
        width: 58.33333%;
    }

    .col-xl-8 {
        float: left;
        width: 66.66667%;
    }

    .col-xl-9 {
        float: left;
        width: 75%;
    }

    .col-xl-10 {
        float: left;
        width: 83.33333%;
    }

    .col-xl-11 {
        float: left;
        width: 91.66667%;
    }

    .col-xl-12 {
        float: left;
        width: 100%;
    }

    .pull-xl-0 {
        right: auto;
    }

    .pull-xl-1 {
        right: 8.33333%;
    }

    .pull-xl-2 {
        right: 16.66667%;
    }

    .pull-xl-3 {
        right: 25%;
    }

    .pull-xl-4 {
        right: 33.33333%;
    }

    .pull-xl-5 {
        right: 41.66667%;
    }

    .pull-xl-6 {
        right: 50%;
    }

    .pull-xl-7 {
        right: 58.33333%;
    }

    .pull-xl-8 {
        right: 66.66667%;
    }

    .pull-xl-9 {
        right: 75%;
    }

    .pull-xl-10 {
        right: 83.33333%;
    }

    .pull-xl-11 {
        right: 91.66667%;
    }

    .pull-xl-12 {
        right: 100%;
    }

    .push-xl-0 {
        left: auto;
    }

    .push-xl-1 {
        left: 8.33333%;
    }

    .push-xl-2 {
        left: 16.66667%;
    }

    .push-xl-3 {
        left: 25%;
    }

    .push-xl-4 {
        left: 33.33333%;
    }

    .push-xl-5 {
        left: 41.66667%;
    }

    .push-xl-6 {
        left: 50%;
    }

    .push-xl-7 {
        left: 58.33333%;
    }

    .push-xl-8 {
        left: 66.66667%;
    }

    .push-xl-9 {
        left: 75%;
    }

    .push-xl-10 {
        left: 83.33333%;
    }

    .push-xl-11 {
        left: 91.66667%;
    }

    .push-xl-12 {
        left: 100%;
    }

    .offset-xl-0 {
        margin-left: 0%;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

progress {
    vertical-align: baseline;
}

template,
[hidden] {
    display: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: 600;
}

b,
strong {
    font-weight: 600;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    margin: 0;
}

optgroup {
    font-weight: bold;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/*!
 * Bootstrap v4.0.0-alpha.3 (http://getbootstrap.com)
 * Copyright 2011-2016 The Bootstrap Authors
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/_bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    text-align: left;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

progress {
    vertical-align: baseline;
}

template,
[hidden] {
    display: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: 600;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    margin: 0;
}

optgroup {
    font-weight: bold;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

@media print {

    *,
    *::before,
    *::after,
    *::first-letter,
    p::first-line,
    div::first-line,
    blockquote::first-line,
    li::first-line {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " ("attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
		background-color: black !important;
		color: white !important;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn>.caret,
    .dropup>.btn>.caret {
        border-top-color: #000 !important;
    }

    .tag {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

@-ms-viewport {
    width: device-width;
}

html {
    font-size: 14px;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Crimson";
    font-size: 1rem;
    line-height: 1.5;
    color: #1b1b1b;
    background-color: #fff;
}

[tabindex="-1"]:focus {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 15px;
    color: #000;
    line-height: 2em;
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #818a91;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: bold;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
}

a:focus,
a:hover {
    color: #8e8e8e;
    text-decoration: underline;
}

a:focus {
    text-decoration: none;
    outline: inherit;
}

a:not([href]):not([tabindex]) {
   /*  color: inherit;
    text-decoration: none;*/
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: none;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
}

[role="button"] {
    cursor: pointer;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
    touch-action: manipulation;
}

table {
    border-collapse: collapse;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0);
    color: black;
    width: 100%;
    text-align: left;
	margin-bottom: 5px;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #818a91;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: left;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button:focus {
    outline: none;
}

input,
button,
select,
textarea {
    line-height: inherit;
}

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
}

input[type="search"] {
    -webkit-appearance: none;
}

output {
    display: inline-block;
}

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: rem(15px);
    font-family: "Crimson";
    font-weight: 400;
    line-height: 1.4;
    color: #666666;
}

h1,
.h1 {
    font-size: 2.7rem;
}

h2,
.h2 {
	color: #000;
	font-size: 2em;
}

@media (min-width: 1176px) {
.h2 {
	color: #000;
	font-size: 1.5em;
}
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.2rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 0.9rem;
    line-height: 0.7rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: normal;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline>li {
    display: inline-block;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 5px;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    border-left: 0.25rem solid #eceeef;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #818a91;
}

.blockquote-footer::before {
    content: "\2014 \00A0";
}

.blockquote-reverse {
    padding-right: 10px;
    padding-left: 0;
    text-align: right;
    border-right: 0.25rem solid #eceeef;
    border-left: 0;
}

.blockquote-reverse .blockquote-footer::before {
    content: "";
}

.blockquote-reverse .blockquote-footer::after {
    content: "\00A0 \2014";
}

dl.row>dd+dt {
    clear: left;
}

.img-fluid,
.carousel-inner>.carousel-item>img,
.carousel-inner>.carousel-item>a>img {
    width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 5px;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #ebebeb;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    padding: 0.2rem 0.4rem;
    font-size: 90%;
    color: #bd4147;
    background-color: #f7f7f9;
    border-radius: 0;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 0;
    -webkit-box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    -webkit-box-shadow: none;
    box-shadow: none;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 90%;
    color: #373a3c;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 576px) {
    .container {
        width: 570px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 750px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 990px;
        max-width: 100%;
    }
}

@media (min-width: 1176px) {
    .container {
        width: 90%;
        max-width: 100%;
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-left: 0;
    padding-right: 0;
}

.container-fluid::after {
    content: "";
    display: table;
    clear: both;
}

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

.row::after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 576px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 768px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 992px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 1176px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
        margin-top: 15px;
    }
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-sm,
.col-sm-1,
.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-10,
.col-sm-11,
.col-sm-12,
.col-md,
.col-md-1,
.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-10,
.col-md-11,
.col-md-12,
.col-lg,
.col-lg-1,
.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-10,
.col-lg-11,
.col-lg-12,
.col-xl,
.col-xl-1,
.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-10,
.col-xl-11,
.col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1176px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-sm,
    .col-sm-1,
    .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-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .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-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .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-10,
    .col-lg-11,
    .col-lg-12,
    .col-xl,
    .col-xl-1,
    .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-10,
    .col-xl-11,
    .col-xl-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.col-xs-1 {
    float: left;
    width: 8.33333%;
}

.col-xs-2 {
    float: left;
    width: 16.66667%;
}

.col-xs-3 {
    float: left;
    width: 25%;
}

.col-xs-4 {
    float: left;
    width: 33.33333%;
}

.col-xs-5 {
    float: left;
    width: 41.66667%;
}

.col-xs-6 {
    float: left;
    width: 50%;
}

.col-xs-7 {
    float: left;
    width: 58.33333%;
}

.col-xs-8 {
    float: left;
    width: 66.66667%;
}

.col-xs-9 {
    float: left;
    width: 75%;
}

.col-xs-10 {
    float: left;
    width: 83.33333%;
}

.col-xs-11 {
    float: left;
    width: 91.66667%;
}

.col-xs-12 {
    float: left;
    width: 100%;
}

.pull-xs-0 {
    right: auto;
}

.pull-xs-1 {
    right: 8.33333%;
}

.pull-xs-2 {
    right: 16.66667%;
}

.pull-xs-3 {
    right: 25%;
}

.pull-xs-4 {
    right: 33.33333%;
}

.pull-xs-5 {
    right: 41.66667%;
}

.pull-xs-6 {
    right: 50%;
}

.pull-xs-7 {
    right: 58.33333%;
}

.pull-xs-8 {
    right: 66.66667%;
}

.pull-xs-9 {
    right: 75%;
}

.pull-xs-10 {
    right: 83.33333%;
}

.pull-xs-11 {
    right: 91.66667%;
}

.pull-xs-12 {
    right: 100%;
}

.push-xs-0 {
    left: auto;
}

.push-xs-1 {
    left: 8.33333%;
}

.push-xs-2 {
    left: 16.66667%;
}

.push-xs-3 {
    left: 25%;
}

.push-xs-4 {
    left: 33.33333%;
}

.push-xs-5 {
    left: 41.66667%;
}

.push-xs-6 {
    left: 50%;
}

.push-xs-7 {
    left: 58.33333%;
}

.push-xs-8 {
    left: 66.66667%;
}

.push-xs-9 {
    left: 75%;
}

.push-xs-10 {
    left: 83.33333%;
}

.push-xs-11 {
    left: 91.66667%;
}

.push-xs-12 {
    left: 100%;
}

.offset-xs-1 {
    margin-left: 8.33333%;
}

.offset-xs-2 {
    margin-left: 16.66667%;
}

.offset-xs-3 {
    margin-left: 25%;
}

.offset-xs-4 {
    margin-left: 33.33333%;
}

.offset-xs-5 {
    margin-left: 41.66667%;
}

.offset-xs-6 {
    margin-left: 50%;
}

.offset-xs-7 {
    margin-left: 58.33333%;
}

.offset-xs-8 {
    margin-left: 66.66667%;
}

.offset-xs-9 {
    margin-left: 75%;
}

.offset-xs-10 {
    margin-left: 83.33333%;
}

.offset-xs-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .col-sm-1 {
        float: left;
        width: 8.33333%;
    }

    .col-sm-2 {
        float: left;
        width: 16.66667%;
    }

    .col-sm-3 {
        float: left;
        width: 25%;
    }

    .col-sm-4 {
        float: left;
        width: 33.33333%;
    }

    .col-sm-5 {
        float: left;
        width: 41.66667%;
    }

    .col-sm-6 {
        float: left;
        width: 50%;
    }

    .col-sm-7 {
        float: left;
        width: 58.33333%;
    }

    .col-sm-8 {
        float: left;
        width: 66.66667%;
    }

    .col-sm-9 {
        float: left;
        width: 75%;
    }

    .col-sm-10 {
        float: left;
        width: 83.33333%;
    }

    .col-sm-11 {
        float: left;
        width: 91.66667%;
    }

    .col-sm-12 {
        float: left;
        width: 100%;
    }

    .pull-sm-0 {
        right: auto;
    }

    .pull-sm-1 {
        right: 8.33333%;
    }

    .pull-sm-2 {
        right: 16.66667%;
    }

    .pull-sm-3 {
        right: 25%;
    }

    .pull-sm-4 {
        right: 33.33333%;
    }

    .pull-sm-5 {
        right: 41.66667%;
    }

    .pull-sm-6 {
        right: 50%;
    }

    .pull-sm-7 {
        right: 58.33333%;
    }

    .pull-sm-8 {
        right: 66.66667%;
    }

    .pull-sm-9 {
        right: 75%;
    }

    .pull-sm-10 {
        right: 83.33333%;
    }

    .pull-sm-11 {
        right: 91.66667%;
    }

    .pull-sm-12 {
        right: 100%;
    }

    .push-sm-0 {
        left: auto;
    }

    .push-sm-1 {
        left: 8.33333%;
    }

    .push-sm-2 {
        left: 16.66667%;
    }

    .push-sm-3 {
        left: 25%;
    }

    .push-sm-4 {
        left: 33.33333%;
    }

    .push-sm-5 {
        left: 41.66667%;
    }

    .push-sm-6 {
        left: 50%;
    }

    .push-sm-7 {
        left: 58.33333%;
    }

    .push-sm-8 {
        left: 66.66667%;
    }

    .push-sm-9 {
        left: 75%;
    }

    .push-sm-10 {
        left: 83.33333%;
    }

    .push-sm-11 {
        left: 91.66667%;
    }

    .push-sm-12 {
        left: 100%;
    }

    .offset-sm-0 {
        margin-left: 0%;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        float: left;
        width: 8.33333%;
    }

    .col-md-2 {
        float: left;
        width: 16.66667%;
    }

    .col-md-3 {
        float: left;
        width: 25%;
        font-size: 17px !important;
    }

    .col-md-4 {
        float: left;
        width: 33.33333%;
    }

    .col-md-5 {
        float: left;
        width: 41.66667%;
    }

    .col-md-6 {
        float: left;
        width: 50%;
    }

    .col-md-7 {
        float: left;
        width: 58.33333%;
    }

    .col-md-8 {
        float: left;
        width: 66.66667%;
    }

    .col-md-9 {
        float: left;
        width: 75%;
    }

    .col-md-10 {
        float: left;
        width: 83.33333%;
    }

    .col-md-11 {
        float: left;
        width: 91.66667%;
    }

    .col-md-12 {
        float: left;
        width: 100%;
    }

    .pull-md-0 {
        right: auto;
    }

    .pull-md-1 {
        right: 8.33333%;
    }

    .pull-md-2 {
        right: 16.66667%;
    }

    .pull-md-3 {
        right: 25%;
    }

    .pull-md-4 {
        right: 33.33333%;
    }

    .pull-md-5 {
        right: 41.66667%;
    }

    .pull-md-6 {
        right: 50%;
    }

    .pull-md-7 {
        right: 58.33333%;
    }

    .pull-md-8 {
        right: 66.66667%;
    }

    .pull-md-9 {
        right: 75%;
    }

    .pull-md-10 {
        right: 83.33333%;
    }

    .pull-md-11 {
        right: 91.66667%;
    }

    .pull-md-12 {
        right: 100%;
    }

    .push-md-0 {
        left: auto;
    }

    .push-md-1 {
        left: 8.33333%;
    }

    .push-md-2 {
        left: 16.66667%;
    }

    .push-md-3 {
        left: 25%;
    }

    .push-md-4 {
        left: 33.33333%;
    }

    .push-md-5 {
        left: 41.66667%;
    }

    .push-md-6 {
        left: 50%;
    }

    .push-md-7 {
        left: 58.33333%;
    }

    .push-md-8 {
        left: 66.66667%;
    }

    .push-md-9 {
        left: 75%;
    }

    .push-md-10 {
        left: 83.33333%;
    }

    .push-md-11 {
        left: 91.66667%;
    }

    .push-md-12 {
        left: 100%;
    }

    .offset-md-0 {
        margin-left: 0%;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        float: left;
        width: 8.33333%;
    }

    .col-lg-2 {
        float: left;
        width: 16.66667%;
    }

    .col-lg-3 {
        float: left;
        width: 25%;
    }

    .col-lg-4 {
        float: left;
        width: 33.33333%;
    }

    .col-lg-5 {
        float: left;
        width: 41.66667%;
    }

    .col-lg-6 {
        float: left;
        width: 50%;
    }

    .col-lg-7 {
        float: left;
        width: 58.33333%;
    }

    .col-lg-8 {
        float: left;
        width: 66.66667%;
    }

    .col-lg-9 {
        float: left;
        width: 75%;
    }

    .col-lg-10 {
        float: left;
        width: 83.33333%;
    }

    .col-lg-11 {
        float: left;
        width: 91.66667%;
    }

    .col-lg-12 {
        float: left;
        width: 100%;
    }

    .pull-lg-0 {
        right: auto;
    }

    .pull-lg-1 {
        right: 8.33333%;
    }

    .pull-lg-2 {
        right: 16.66667%;
    }

    .pull-lg-3 {
        right: 25%;
    }

    .pull-lg-4 {
        right: 33.33333%;
    }

    .pull-lg-5 {
        right: 41.66667%;
    }

    .pull-lg-6 {
        right: 50%;
    }

    .pull-lg-7 {
        right: 58.33333%;
    }

    .pull-lg-8 {
        right: 66.66667%;
    }

    .pull-lg-9 {
        right: 75%;
    }

    .pull-lg-10 {
        right: 83.33333%;
    }

    .pull-lg-11 {
        right: 91.66667%;
    }

    .pull-lg-12 {
        right: 100%;
    }

    .push-lg-0 {
        left: auto;
    }

    .push-lg-1 {
        left: 8.33333%;
    }

    .push-lg-2 {
        left: 16.66667%;
    }

    .push-lg-3 {
        left: 25%;
    }

    .push-lg-4 {
        left: 33.33333%;
    }

    .push-lg-5 {
        left: 41.66667%;
    }

    .push-lg-6 {
        left: 50%;
    }

    .push-lg-7 {
        left: 58.33333%;
    }

    .push-lg-8 {
        left: 66.66667%;
    }

    .push-lg-9 {
        left: 75%;
    }

    .push-lg-10 {
        left: 83.33333%;
    }

    .push-lg-11 {
        left: 91.66667%;
    }

    .push-lg-12 {
        left: 100%;
    }

    .offset-lg-0 {
        margin-left: 0%;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1176px) {
    .col-xl-1 {
        float: left;
        width: 8.33333%;
    }

    .col-xl-2 {
        float: left;
        width: 16.66667%;
    }

    .col-xl-3 {
        float: left;
        width: 25%;
    }

    .col-xl-4 {
        float: left;
        width: 33.33333%;
    }

    .col-xl-5 {
        float: left;
        width: 41.66667%;
    }

    .col-xl-6 {
        float: left;
        width: 50%;
    }

    .col-xl-7 {
        float: left;
        width: 58.33333%;
    }

    .col-xl-8 {
        float: left;
        width: 66.66667%;
    }

    .col-xl-9 {
        float: left;
        width: 75%;
    }

    .col-xl-10 {
        float: left;
        width: 83.33333%;
    }

    .col-xl-11 {
        float: left;
        width: 91.66667%;
    }

    .col-xl-12 {
        float: left;
        width: 100%;
    }

    .pull-xl-0 {
        right: auto;
    }

    .pull-xl-1 {
        right: 8.33333%;
    }

    .pull-xl-2 {
        right: 16.66667%;
    }

    .pull-xl-3 {
        right: 25%;
    }

    .pull-xl-4 {
        right: 33.33333%;
    }

    .pull-xl-5 {
        right: 41.66667%;
    }

    .pull-xl-6 {
        right: 50%;
    }

    .pull-xl-7 {
        right: 58.33333%;
    }

    .pull-xl-8 {
        right: 66.66667%;
    }

    .pull-xl-9 {
        right: 75%;
    }

    .pull-xl-10 {
        right: 83.33333%;
    }

    .pull-xl-11 {
        right: 91.66667%;
    }

    .pull-xl-12 {
        right: 100%;
    }

    .push-xl-0 {
        left: auto;
    }

    .push-xl-1 {
        left: 8.33333%;
    }

    .push-xl-2 {
        left: 16.66667%;
    }

    .push-xl-3 {
        left: 25%;
    }

    .push-xl-4 {
        left: 33.33333%;
    }

    .push-xl-5 {
        left: 41.66667%;
    }

    .push-xl-6 {
        left: 50%;
    }

    .push-xl-7 {
        left: 58.33333%;
    }

    .push-xl-8 {
        left: 66.66667%;
    }

    .push-xl-9 {
        left: 75%;
    }

    .push-xl-10 {
        left: 83.33333%;
    }

    .push-xl-11 {
        left: 91.66667%;
    }

    .push-xl-12 {
        left: 100%;
    }

    .offset-xl-0 {
        margin-left: 0%;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #eceeef;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef;
}

.table tbody+tbody {
    border-top: 2px solid #eceeef;
}

.table .table {
    background-color: #fff;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #eceeef;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #eceeef;
	font-family: "Source", sans-serif !important;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
	font-family: "Source", sans-serif !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active>th,
.table-active>td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-success,
.table-success>th,
.table-success>td {
    background-color: #dff0d8;
}

.table-hover .table-success:hover {
    background-color: #d0e9c6;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #d0e9c6;
}

.table-info,
.table-info>th,
.table-info>td {
    background-color: #d9edf7;
}

.table-hover .table-info:hover {
    background-color: #c4e3f3;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #c4e3f3;
}

.table-warning,
.table-warning>th,
.table-warning>td {
    background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
    background-color: #faf2cc;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #faf2cc;
}

.table-danger,
.table-danger>th,
.table-danger>td {
    background-color: #f2dede;
}

.table-hover .table-danger:hover {
    background-color: #ebcccc;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #ebcccc;
}

.thead-inverse th {
    color: #fff;
    background-color: #878787;
}

.thead-default th {
    color: #acaaa6;
    background-color: #f6f6f6;
}

.table-inverse {
    color: #f6f6f6;
    background-color: #878787;
}

.table-inverse th,
.table-inverse td,
.table-inverse thead th {
    border-color: #acaaa6;
}

.table-inverse.table-bordered {
    border: 0;
}

.table-responsive {
    display: block;
    width: 100%;
    min-height: 0%;
    overflow-x: auto;
}

.table-reflow thead {
    float: left;
}

.table-reflow tbody {
    display: block;
    white-space: nowrap;
}

.table-reflow th,
.table-reflow td {
    border-top: 1px solid #eceeef;
    border-left: 1px solid #eceeef;
}

.table-reflow th:last-child,
.table-reflow td:last-child {
    border-right: 1px solid #eceeef;
}

.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
    border-bottom: 1px solid #eceeef;
}

.table-reflow tr {
    float: left;
}

.table-reflow tr th,
.table-reflow tr td {
    display: block !important;
    border: 1px solid #eceeef;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.7rem 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #55595c;
    background-color: #fff;
    border-color: #8e8e8e;
    outline: none;
    -webkit-box-shadow: none, 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: none, 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #eceeef;
    opacity: 1;
}

.form-control:disabled {
    cursor: not-allowed;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.9rem);
}

select.form-control:focus::-ms-value {
    color: #55595c;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
}

.col-form-label {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    margin-bottom: 0;
}

.col-form-label-lg {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
}

.col-form-label-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
}

.col-form-legend {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.form-control-static {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    line-height: 1.6;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-static.form-control-sm,
.input-group-sm>.form-control-static.form-control,
.input-group-sm>.form-control-static.input-group-addon,
.input-group-sm>.input-group-btn>.form-control-static.btn,
.form-control-static.form-control-lg,
.input-group-lg>.form-control-static.form-control,
.input-group-lg>.form-control-static.input-group-addon,
.input-group-lg>.input-group-btn>.form-control-static.btn {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm,
.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0;
}

select.form-control-sm:not([size]):not([multiple]),
.input-group-sm>select.form-control:not([size]):not([multiple]),
.input-group-sm>select.input-group-addon:not([size]):not([multiple]),
.input-group-sm>.input-group-btn>select.btn:not([size]):not([multiple]) {
    height: 1.8125rem;
}

.form-control-lg,
.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 0;
}

select.form-control-lg:not([size]):not([multiple]),
.input-group-lg>select.form-control:not([size]):not([multiple]),
.input-group-lg>select.input-group-addon:not([size]):not([multiple]),
.input-group-lg>.input-group-btn>select.btn:not([size]):not([multiple]) {
    height: 3.16667rem;
}

.form-group {
    margin-bottom: 10px;
}

.form-text {
    display: block;
    margin-top: 2.5px;
}

.form-check {
    position: relative;
    display: block;
    margin-bottom: 7.5px;
}

.form-check+.form-check {
    margin-top: -.25rem;
}

.form-check.disabled .form-check-label {
    color: #818a91;
    cursor: not-allowed;
}

.form-check-label {
    padding-left: 1.25rem;
    margin-bottom: 0;
    cursor: pointer;
}

.form-check-input {
    position: absolute;
    margin-top: .25rem;
    margin-left: -1.25rem;
}

.form-check-input:only-child {
    position: static;
}

.form-check-inline {
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
    margin-bottom: 0;
    vertical-align: middle;
    cursor: pointer;
}

.form-check-inline+.form-check-inline {
    margin-left: .75rem;
}

.form-check-inline.disabled {
    color: #818a91;
    cursor: not-allowed;
}

.form-control-feedback {
    margin-top: 2.5px;
}

.form-control-success,
.form-control-warning,
.form-control-danger {
    padding-right: 2.25rem;
    background-repeat: no-repeat;
    background-position: center right 0.725rem;
    background-size: 1.45rem 1.45rem;
}

.has-success .form-control-feedback,
.has-success .form-control-label,
.has-success .form-check-label,
.has-success .form-check-inline,
.has-success .custom-control {
    color: #5c8018;
}

.has-success .form-control {
    border-color: #5c8018;
}

.has-success .form-control:focus {
    box-shadow: none, 0 0 6px #9ad628;
}

.has-success .input-group-addon {
    color: #5c8018;
    border-color: #5c8018;
    background-color: #c2e77d;
}

.has-success .form-control-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#5c8018' 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");
}

.has-warning .form-control-feedback,
.has-warning .form-control-label,
.has-warning .form-check-label,
.has-warning .form-check-inline,
.has-warning .custom-control {
    color: #f0ad4e;
}

.has-warning .form-control {
    border-color: #f0ad4e;
}

.has-warning .form-control:focus {
    box-shadow: none, 0 0 6px #f8d9ac;
}

.has-warning .input-group-addon {
    color: #f0ad4e;
    border-color: #f0ad4e;
    background-color: white;
}

.has-warning .form-control-warning {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-danger .form-control-feedback,
.has-danger .form-control-label,
.has-danger .form-check-label,
.has-danger .form-check-inline,
.has-danger .custom-control {
    color: #d9534f;
}

.has-danger .form-control {
    border-color: #d9534f;
}

.has-danger .form-control:focus {
    box-shadow: none, 0 0 6px #eba5a3;
}

.has-danger .input-group-addon {
    color: #d9534f;
    border-color: #d9534f;
    background-color: #fdf7f7;
}

.has-danger .form-control-danger {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
}

@media (min-width: 576px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
        background: #f9f9f9;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto;
    }

    .form-inline .input-group>.form-control {
        width: 100%;
    }

    .form-inline .form-control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-check {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-check-label {
        padding-left: 0;
    }

    .form-inline .form-check-input {
        position: relative;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.btn1 {
    display: inline-block;
    font-weight: normal;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #000;
	background: #000;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 3px;
	color: #fff;
}
.btn1:hover {
    border: 1px solid #000;
	background: #fff;
	color: #000 !important;
}
.btn {
    display: inline-block;
    font-weight: normal;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #ebebeb;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 3px;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
    /*outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;*/
}

.btn:focus,
.btn:hover {
    text-decoration: none;
}

.btn.focus {
    text-decoration: none;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.disabled,
.btn:disabled {
    cursor: not-allowed;
    opacity: .65;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-not-found .btn.btn-primary {
    display: none;
}

.btn-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #848484;
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #000;
    border-color: #d42a3c;
}

.btn-primary:active,
.btn-primary.active,
.open>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #d42a3c;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open>.btn-primary.dropdown-toggle:hover,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle.focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary:disabled:focus,
.btn-primary:disabled.focus {
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.btn-primary.disabled:hover,
.btn-primary:disabled:hover {
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.btn-secondary {
    color: #373a3c;
    background-color: #fff;
    border-color: #ccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-secondary:hover {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-secondary:focus,
.btn-secondary.focus {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-secondary:active,
.btn-secondary.active,
.open>.btn-secondary.dropdown-toggle {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-secondary:active:hover,
.btn-secondary:active:focus,
.btn-secondary:active.focus,
.btn-secondary.active:hover,
.btn-secondary.active:focus,
.btn-secondary.active.focus,
.open>.btn-secondary.dropdown-toggle:hover,
.open>.btn-secondary.dropdown-toggle:focus,
.open>.btn-secondary.dropdown-toggle.focus {
    color: #373a3c;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.btn-secondary.disabled:focus,
.btn-secondary.disabled.focus,
.btn-secondary:disabled:focus,
.btn-secondary:disabled.focus {
    background-color: #fff;
    border-color: #ccc;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover {
    background-color: #fff;
    border-color: #ccc;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
}

.btn-info:focus,
.btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
}

.btn-info:active,
.btn-info.active,
.open>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-info:active:hover,
.btn-info:active:focus,
.btn-info:active.focus,
.btn-info.active:hover,
.btn-info.active:focus,
.btn-info.active.focus,
.open>.btn-info.dropdown-toggle:hover,
.open>.btn-info.dropdown-toggle:focus,
.open>.btn-info.dropdown-toggle.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1f7e9a;
}

.btn-info.disabled:focus,
.btn-info.disabled.focus,
.btn-info:disabled:focus,
.btn-info:disabled.focus {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-info.disabled:hover,
.btn-info:disabled:hover {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-success {
    color: #fff;
    background-color: #5c8018;
    border-color: #5c8018;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-success:hover {
    color: #fff;
    background-color: #3d5510;
    border-color: #374c0e;
}

.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #3d5510;
    border-color: #374c0e;
}

.btn-success:active,
.btn-success.active,
.open>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #3d5510;
    border-color: #374c0e;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-success:active:hover,
.btn-success:active:focus,
.btn-success:active.focus,
.btn-success.active:hover,
.btn-success.active:focus,
.btn-success.active.focus,
.open>.btn-success.dropdown-toggle:hover,
.open>.btn-success.dropdown-toggle:focus,
.open>.btn-success.dropdown-toggle.focus {
    color: #fff;
    background-color: #28370a;
    border-color: #0f1504;
}

.btn-success.disabled:focus,
.btn-success.disabled.focus,
.btn-success:disabled:focus,
.btn-success:disabled.focus {
    background-color: #5c8018;
    border-color: #5c8018;
}

.btn-success.disabled:hover,
.btn-success:disabled:hover {
    background-color: #5c8018;
    border-color: #5c8018;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316;
}

.btn-warning:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316;
}

.btn-warning:active,
.btn-warning.active,
.open>.btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning:active.focus,
.btn-warning.active:hover,
.btn-warning.active:focus,
.btn-warning.active.focus,
.open>.btn-warning.dropdown-toggle:hover,
.open>.btn-warning.dropdown-toggle:focus,
.open>.btn-warning.dropdown-toggle.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #b06d0f;
}

.btn-warning.disabled:focus,
.btn-warning.disabled.focus,
.btn-warning:disabled:focus,
.btn-warning:disabled.focus {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.btn-warning.disabled:hover,
.btn-warning:disabled:hover {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a;
}

.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a;
}

.btn-danger:active,
.btn-danger.active,
.open>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger:active.focus,
.btn-danger.active:hover,
.btn-danger.active:focus,
.btn-danger.active.focus,
.open>.btn-danger.dropdown-toggle:hover,
.open>.btn-danger.dropdown-toggle:focus,
.open>.btn-danger.dropdown-toggle.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #8b211e;
}

.btn-danger.disabled:focus,
.btn-danger.disabled.focus,
.btn-danger:disabled:focus,
.btn-danger:disabled.focus {
    background-color: #d9534f;
    border-color: #d9534f;
}

.btn-danger.disabled:hover,
.btn-danger:disabled:hover {
    background-color: #d9534f;
    border-color: #d9534f;
}

.btn-outline-primary {
    color: #8e8e8e;
    background-image: none;
    background-color: transparent;
    border-color: #8e8e8e;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    color: #fff;
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.btn-outline-primary:active,
.btn-outline-primary.active,
.open>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.btn-outline-primary:active:hover,
.btn-outline-primary:active:focus,
.btn-outline-primary:active.focus,
.btn-outline-primary.active:hover,
.btn-outline-primary.active:focus,
.btn-outline-primary.active.focus,
.open>.btn-outline-primary.dropdown-toggle:hover,
.open>.btn-outline-primary.dropdown-toggle:focus,
.open>.btn-outline-primary.dropdown-toggle.focus {
    color: #fff;
    background-color: #bf2536;
    border-color: #9d1f2c;
}

.btn-outline-primary.disabled:focus,
.btn-outline-primary.disabled.focus,
.btn-outline-primary:disabled:focus,
.btn-outline-primary:disabled.focus {
    border-color: #f0b1b8;
}

.btn-outline-primary.disabled:hover,
.btn-outline-primary:disabled:hover {
    border-color: #f0b1b8;
}

.btn-outline-secondary {
    color: #ccc;
    background-image: none;
    background-color: transparent;
    border-color: #ccc;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
}

.btn-outline-secondary:active,
.btn-outline-secondary.active,
.open>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
}

.btn-outline-secondary:active:hover,
.btn-outline-secondary:active:focus,
.btn-outline-secondary:active.focus,
.btn-outline-secondary.active:hover,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.active.focus,
.open>.btn-outline-secondary.dropdown-toggle:hover,
.open>.btn-outline-secondary.dropdown-toggle:focus,
.open>.btn-outline-secondary.dropdown-toggle.focus {
    color: #fff;
    background-color: #a1a1a1;
    border-color: #8c8c8c;
}

.btn-outline-secondary.disabled:focus,
.btn-outline-secondary.disabled.focus,
.btn-outline-secondary:disabled:focus,
.btn-outline-secondary:disabled.focus {
    border-color: white;
}

.btn-outline-secondary.disabled:hover,
.btn-outline-secondary:disabled:hover {
    border-color: white;
}

.btn-outline-info {
    color: #5bc0de;
    background-image: none;
    background-color: transparent;
    border-color: #5bc0de;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
    color: #fff;
   @background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-outline-info:active,
.btn-outline-info.active,
.open>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-outline-info:active:hover,
.btn-outline-info:active:focus,
.btn-outline-info:active.focus,
.btn-outline-info.active:hover,
.btn-outline-info.active:focus,
.btn-outline-info.active.focus,
.open>.btn-outline-info.dropdown-toggle:hover,
.open>.btn-outline-info.dropdown-toggle:focus,
.open>.btn-outline-info.dropdown-toggle.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1f7e9a;
}

.btn-outline-info.disabled:focus,
.btn-outline-info.disabled.focus,
.btn-outline-info:disabled:focus,
.btn-outline-info:disabled.focus {
    border-color: #b0e1ef;
}

.btn-outline-info.disabled:hover,
.btn-outline-info:disabled:hover {
    border-color: #b0e1ef;
}

.btn-outline-success {
    color: #5c8018;
    background-image: none;
    background-color: transparent;
    border-color: #5c8018;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #5c8018;
    border-color: #5c8018;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
    color: #fff;
    background-color: #5c8018;
    border-color: #5c8018;
}

.btn-outline-success:active,
.btn-outline-success.active,
.open>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #5c8018;
    border-color: #5c8018;
}

.btn-outline-success:active:hover,
.btn-outline-success:active:focus,
.btn-outline-success:active.focus,
.btn-outline-success.active:hover,
.btn-outline-success.active:focus,
.btn-outline-success.active.focus,
.open>.btn-outline-success.dropdown-toggle:hover,
.open>.btn-outline-success.dropdown-toggle:focus,
.open>.btn-outline-success.dropdown-toggle.focus {
    color: #fff;
    background-color: #28370a;
    border-color: #0f1504;
}

.btn-outline-success.disabled:focus,
.btn-outline-success.disabled.focus,
.btn-outline-success:disabled:focus,
.btn-outline-success:disabled.focus {
    border-color: #9ad628;
}

.btn-outline-success.disabled:hover,
.btn-outline-success:disabled:hover {
    border-color: #9ad628;
}

.btn-outline-warning {
    color: #f0ad4e;
    background-image: none;
    background-color: transparent;
    border-color: #f0ad4e;
}

.btn-outline-warning:hover {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.btn-outline-warning:active,
.btn-outline-warning.active,
.open>.btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.btn-outline-warning:active:hover,
.btn-outline-warning:active:focus,
.btn-outline-warning:active.focus,
.btn-outline-warning.active:hover,
.btn-outline-warning.active:focus,
.btn-outline-warning.active.focus,
.open>.btn-outline-warning.dropdown-toggle:hover,
.open>.btn-outline-warning.dropdown-toggle:focus,
.open>.btn-outline-warning.dropdown-toggle.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #b06d0f;
}

.btn-outline-warning.disabled:focus,
.btn-outline-warning.disabled.focus,
.btn-outline-warning:disabled:focus,
.btn-outline-warning:disabled.focus {
    border-color: #f8d9ac;
}

.btn-outline-warning.disabled:hover,
.btn-outline-warning:disabled:hover {
    border-color: #f8d9ac;
}

.btn-outline-danger {
    color: #d9534f;
    background-image: none;
    background-color: transparent;
    border-color: #d9534f;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}

.btn-outline-danger:active,
.btn-outline-danger.active,
.open>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}

.btn-outline-danger:active:hover,
.btn-outline-danger:active:focus,
.btn-outline-danger:active.focus,
.btn-outline-danger.active:hover,
.btn-outline-danger.active:focus,
.btn-outline-danger.active.focus,
.open>.btn-outline-danger.dropdown-toggle:hover,
.open>.btn-outline-danger.dropdown-toggle:focus,
.open>.btn-outline-danger.dropdown-toggle.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #8b211e;
}

.btn-outline-danger.disabled:focus,
.btn-outline-danger.disabled.focus,
.btn-outline-danger:disabled:focus,
.btn-outline-danger:disabled.focus {
    border-color: #eba5a3;
}

.btn-outline-danger.disabled:hover,
.btn-outline-danger:disabled:hover {
    border-color: #eba5a3;
}

.btn-link {
    font-weight: normal;
    color: #666666;
    border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link:disabled {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}

.btn-link:hover {
    border-color: transparent;
}

.btn-link:focus,
.btn-link:hover {
    color: #8e8e8e;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link:disabled:focus,
.btn-link:disabled:hover {
    color: #818a91;
    text-decoration: none;
}

.btn-lg,
.btn-group-lg>.btn {
    padding: 14px 40px;
    font-size: 1.25rem;
    border-radius: 0;
}

.btn-sm,
.btn-group-sm>.btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block+.btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    transition: opacity .15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-timing-function: ease;
    transition-duration: .35s;
    transition-property: height;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropup .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1b1b1b;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.rtl .dropdown-menu {
    text-align: right;
}

@media (max-width: 767px) {
    .dropdown-menu {
        left: auto;
        right: 0;
    }

    .rtl .dropdown-menu {
        right: auto;
        left: auto;
    }

    .rtl .dropdown-menu {
        left: 0;
        right: auto;
    }
}

.dropdown-menu li a {
    text-transform: initial;
}

.dropdown-divider {
    height: 1px;
    margin: 5px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-item {
    width: 100%;
    display: inline;
    padding: 0;
    /*display: block;
    padding: 3px 1.5rem;*/
    clear: both;
    font-weight: normal;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: none;
    border: 0;
    margin: 0 10px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #2b2d2f;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-item.active,
.dropdown-item.active:focus,
.dropdown-item.active:hover {
    color: #fff;
    text-decoration: none;
    background-color: #8e8e8e;
    outline: 0;
}

.dropdown-item.disabled,
.dropdown-item.disabled:focus,
.dropdown-item.disabled:hover {
    color: #818a91;
}

.dropdown-item.disabled:focus,
.dropdown-item.disabled:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)";
}

.open>.dropdown-menu {
    display: block;
}

.open>a {
    outline: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #818a91;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 0.3em solid;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 0.125rem;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
    position: relative;
    float: left;
    margin-bottom: 0;
}

.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn.active {
    z-index: 2;
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover {
    z-index: 2;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    margin-left: -0.5rem;
}

.btn-toolbar::after {
    content: "";
    display: table;
    clear: both;
}

.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left;
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
    margin-left: 0.5rem;
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group>.btn:first-child {
    margin-left: 0;
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group>.btn-group {
    float: left;
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0;
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn+.dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn+.dropdown-toggle-split::after {
    margin-left: 0;
}

.btn-sm+.dropdown-toggle-split,
.btn-group-sm>.btn+.dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg+.dropdown-toggle-split,
.btn-group-lg>.btn+.dropdown-toggle-split {
    padding-right: 30px;
    padding-left: 30px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret,
.btn-group-lg>.btn .caret {
    border-width: 0.3em 0.3em 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret,
.dropup .btn-group-lg>.btn .caret {
    border-width: 0 0.3em 0.3em;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

.btn-group-vertical>.btn-group::after {
    content: "";
    display: table;
    clear: both;
}

.btn-group-vertical>.btn-group>.btn {
    float: none;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0;
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

[data-toggle="buttons"]>.btn input[type="radio"],
[data-toggle="buttons"]>.btn input[type="checkbox"],
[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],
[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    width: 100%;
    display: table;
    border-collapse: separate;
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.input-group .form-control:focus,
.input-group .form-control:active,
.input-group .form-control:hover {
    z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 0.7rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
    color: #55595c;
    text-align: center;
    background-color: #eceeef;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.input-group-addon.form-control-sm,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.input-group-addon.btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0;
}

.input-group-addon.form-control-lg,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.input-group-addon.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 0;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}

.input-group .form-control:not(:last-child),
.input-group-addon:not(:last-child),
.input-group-btn:not(:last-child)>.btn,
.input-group-btn:not(:last-child)>.btn-group>.btn,
.input-group-btn:not(:last-child)>.dropdown-toggle,
.input-group-btn:not(:first-child)>.btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:not(:first-child)>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.input-group-addon:not(:last-child) {
    border-right: 0;
}

.input-group .form-control:not(:first-child),
.input-group-addon:not(:first-child),
.input-group-btn:not(:first-child)>.btn,
.input-group-btn:not(:first-child)>.btn-group>.btn,
.input-group-btn:not(:first-child)>.dropdown-toggle,
.input-group-btn:not(:last-child)>.btn:not(:first-child),
.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.form-control+.input-group-addon:not(:first-child) {
    border-left: 0;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.input-group-btn>.btn {
    position: relative;
}

.input-group-btn>.btn+.btn {
    margin-left: -1px;
}

.input-group-btn>.btn:focus,
.input-group-btn>.btn:active,
.input-group-btn>.btn:hover {
    z-index: 3;
}

.input-group-btn:not(:last-child)>.btn,
.input-group-btn:not(:last-child)>.btn-group {
    margin-right: -1px;
}

.input-group-btn:not(:first-child)>.btn,
.input-group-btn:not(:first-child)>.btn-group {
    z-index: 2;
    margin-left: -1px;
}

.input-group-btn:not(:first-child)>.btn:focus,
.input-group-btn:not(:first-child)>.btn:active,
.input-group-btn:not(:first-child)>.btn:hover,
.input-group-btn:not(:first-child)>.btn-group:focus,
.input-group-btn:not(:first-child)>.btn-group:active,
.input-group-btn:not(:first-child)>.btn-group:hover {
    z-index: 3;
}

.custom-control {
    position: relative;
    display: inline-block;
    padding-left: 1.5rem;
    cursor: pointer;
}

.custom-control+.custom-control {
    margin-left: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked~.custom-control-indicator {
    color: #fff;
    background-color: #0074d9;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-control-input:focus~.custom-control-indicator {
    box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
}

.custom-control-input:active~.custom-control-indicator {
    color: #fff;
    background-color: #84c6ff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-control-input:disabled~.custom-control-indicator {
    cursor: not-allowed;
    background-color: #eee;
}

.custom-control-input:disabled~.custom-control-description {
    color: #767676;
    cursor: not-allowed;
}

.custom-control-indicator {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    user-select: none;
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    -webkit-box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-checkbox .custom-control-indicator {
    border-radius: 0;
}

.custom-checkbox .custom-control-input:checked~.custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-indicator {
    background-color: #0074d9;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#fff' d='M0 2h4'/%3E%3C/svg%3E");
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-radio .custom-control-indicator {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#fff'/%3E%3C/svg%3E");
}

.custom-controls-stacked .custom-control {
    float: left;
    clear: left;
}

.custom-controls-stacked .custom-control+.custom-control {
    margin-left: 0;
}

.custom-select {
    display: inline-block;
    max-width: 100%;
    height: calc(2.9rem - 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    padding-right: 0.75rem \9;
    color: #55595c;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-image: none \9;
    background-size: 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.custom-select:focus {
    border-color: #51a7e8;
    outline: none;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5);
}

.custom-select:focus::-ms-value {
    color: #55595c;
    background-color: #fff;
}

.custom-select:disabled {
    color: #818a91;
    cursor: not-allowed;
    background-color: #eceeef;
}

.custom-select::-ms-expand {
    opacity: 0;
}

.custom-select-sm {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%;
}

.custom-file {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: 3rem;
    line-height: 3rem;
    cursor: pointer;
}

.custom-file-input {
    min-width: 14rem;
    max-width: 100%;
    margin: 0;
    filter: alpha(opacity=0);
    opacity: 0;
}

.custom-file-input:focus~.custom-file-control {
    -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
    box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
}

.custom-file-control {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    height: 3rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #555;
    user-select: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
}

.custom-file-control:lang(en)::after {
    content: "Choose file...";
}

.custom-file-control::before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    height: 3rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #555;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 0 0 0 0;
}

.custom-file-control:lang(en)::before {
    content: "Browse";
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: inline-block;
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}

.nav-link.disabled {
    color: #818a91;
}

.nav-link.disabled,
.nav-link.disabled:focus,
.nav-link.disabled:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: transparent;
}

.nav-inline .nav-item {
    display: inline-block;
}

.nav-inline .nav-item+.nav-item,
.nav-inline .nav-link+.nav-link {
    margin-left: 1rem;
}

.nav-tabs {
    border-bottom: 0 solid transparent;
    margin-bottom: 15px;
    border-bottom: 0 solid transparent;
    margin-bottom: 15px;
    border: 1px solid #dcdcdc;
    margin-top: 35px;
    margin-bottom: 25px;
}

.nav-tabs::after {
    content: "";
    display: table;
    clear: both;
}

.nav-tabs .nav-item {
    float: left;
    margin-bottom: 0;
	display: none;

}

.rtl .nav-tabs .nav-item {
    float: right;
}

.nav-tabs .nav-item+.nav-item {
    margin-left: 0.2rem;
}

.nav-tabs .nav-link {
    display: block;
    padding: 0.5em 1em;
    border: 0 solid transparent;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #eceeef #eceeef transparent;
}

.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link.disabled:focus,
.nav-tabs .nav-link.disabled:hover {
    color: #818a91;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-item.open .nav-link,
.nav-tabs .nav-item.open .nav-link:focus,
.nav-tabs .nav-item.open .nav-link:hover {
    color: #55595c;
    background-color: #fff;
    border-color: #ddd #ddd transparent;
}

.nav-tabs .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav-pills::after {
    content: "";
    display: table;
    clear: both;
}

.nav-pills .nav-item {
    float: left;
}

.nav-pills .nav-item+.nav-item {
    margin-left: 0.2rem;
}

.nav-pills .nav-link {
    display: block;
    padding: 0.5em 1em;
    border-radius: 0;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover {
    color: #fff;
    cursor: default;
    background-color: #8e8e8e;
}

.nav-stacked .nav-item {
    display: block;
    float: none;
}

.nav-stacked .nav-item+.nav-item {
    margin-top: 0.2rem;
    margin-left: 0;
}

.tab-content>.tab-pane {
    display: none;
}

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

.navbar {
    position: relative;
    padding: 5px 10px;
}

.navbar::after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 576px) {
    .navbar {
        border-radius: 0;
    }
}

.navbar-full {
    z-index: 1000;
}

@media (min-width: 576px) {
    .navbar-full {
        border-radius: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width: 576px) {

    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
}

.navbar-fixed-bottom {
    bottom: 0;
}

.navbar-sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

@media (min-width: 576px) {
    .navbar-sticky-top {
        border-radius: 0;
    }
}

.navbar-brand {
    float: left;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}

.navbar-divider {
    float: left;
    width: 1px;
    padding-top: 0.425rem;
    padding-bottom: 0.425rem;
    margin-right: 10px;
    margin-left: 10px;
    overflow: hidden;
}

.navbar-divider::before {
    content: "\00a0";
}

.navbar-text {
    display: inline-block;
    padding-top: .425rem;
    padding-bottom: .425rem;
}

.navbar-toggler {
    width: 2em;
    height: 2em;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: transparent no-repeat center center;
    background-size: 24px 24px;
    border: 1px solid transparent;
    border-radius: 0;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggleable-xs::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 575px) {
    .navbar-toggleable-xs .navbar-brand {
        display: block;
        float: none;
        margin-top: .5rem;
        margin-right: 0;
    }

    .navbar-toggleable-xs .navbar-nav {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

    .navbar-toggleable-xs .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }
}

@media (min-width: 576px) {
    .navbar-toggleable-xs {
        display: block;
    }
}

.navbar-toggleable-sm::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    .navbar-toggleable-sm .navbar-brand {
        display: block;
        float: none;
        margin-top: .5rem;
        margin-right: 0;
    }

    .navbar-toggleable-sm .navbar-nav {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

    .navbar-toggleable-sm .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }
}

@media (min-width: 768px) {
    .navbar-toggleable-sm {
        display: block;
    }
}

.navbar-toggleable-md::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 991px) {
    .navbar-toggleable-md .navbar-brand {
        display: block;
        float: none;
        margin-top: .5rem;
        margin-right: 0;
    }

    .navbar-toggleable-md .navbar-nav {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

    .navbar-toggleable-md .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }
}

@media (min-width: 992px) {
    .navbar-toggleable-md {
        display: block;
    }
}

.navbar-toggleable-lg::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 1175px) {
    .navbar-toggleable-lg .navbar-brand {
        display: block;
        float: none;
        margin-top: .5rem;
        margin-right: 0;
    }

    .navbar-toggleable-lg .navbar-nav {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

    .navbar-toggleable-lg .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }
}

@media (min-width: 1176px) {
    .navbar-toggleable-lg {
        display: block;
    }
}

.navbar-toggleable-xl {
    display: block;
}

.navbar-toggleable-xl::after {
    content: "";
    display: table;
    clear: both;
}

.navbar-toggleable-xl .navbar-brand {
    display: block;
    float: none;
    margin-top: .5rem;
    margin-right: 0;
}

.navbar-toggleable-xl .navbar-nav {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.navbar-toggleable-xl .navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-nav .nav-item {
    float: left;
}

.navbar-nav .nav-link {
    display: block;
    padding-top: .425rem;
    padding-bottom: .425rem;
}

.navbar-nav .nav-link+.nav-link {
    margin-left: 1rem;
}

.navbar-nav .nav-item+.nav-item {
    margin-left: 1rem;
}

.navbar-toggleable-xs::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 575px) {
    .navbar-toggleable-xs .navbar-nav .nav-item {
        float: none;
        margin-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-toggleable-xs {
        display: block !important;
    }
}

.navbar-toggleable-sm::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    .navbar-toggleable-sm .navbar-nav .nav-item {
        float: none;
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-toggleable-sm {
        display: block !important;
    }
}

.navbar-toggleable-md::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 991px) {
    .navbar-toggleable-md .navbar-nav .nav-item {
        float: none;
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-toggleable-md {
        display: block !important;
    }
}

.card {
    position: relative;
    display: block;
    margin-bottom: 1.75rem;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-block {
    padding: 1.25rem;
}

.card-block::after {
    content: "";
    display: table;
    clear: both;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.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>.list-group:first-child .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #f5f5f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header::after {
    content: "";
    display: table;
    clear: both;
}

.card-header:first-child {
    border-radius: calc(0 - 1px) calc(0 - 1px) 0 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: #f5f5f5;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer::after {
    content: "";
    display: table;
    clear: both;
}

.card-footer:last-child {
    border-radius: 0 0 calc(0 - 1px) calc(0 - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-primary {
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.card-primary .card-header,
.card-primary .card-footer {
    background-color: transparent;
}

.card-success {
    background-color: #5c8018;
    border-color: #5c8018;
}

.card-success .card-header,
.card-success .card-footer {
    background-color: transparent;
}

.card-info {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.card-info .card-header,
.card-info .card-footer {
    background-color: transparent;
}

.card-warning {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.card-warning .card-header,
.card-warning .card-footer {
    background-color: transparent;
}

.card-danger {
    background-color: #d9534f;
    border-color: #d9534f;
}

.card-danger .card-header,
.card-danger .card-footer {
    background-color: transparent;
}

.card-outline-primary {
    background-color: transparent;
    border-color: #8e8e8e;
}

.card-outline-secondary {
    background-color: transparent;
    border-color: #ccc;
}

.card-outline-info {
    background-color: transparent;
    border-color: #5bc0de;
}

.card-outline-success {
    background-color: transparent;
    border-color: #5c8018;
}

.card-outline-warning {
    background-color: transparent;
    border-color: #f0ad4e;
}

.card-outline-danger {
    background-color: transparent;
    border-color: #d9534f;
}

.card-inverse .card-header,
.card-inverse .card-footer {
    border-color: rgba(255, 255, 255, 0.2);
}

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
    color: #fff;
}

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-subtitle,
.card-inverse .card-blockquote .blockquote-footer {
    color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-link:focus,
.card-inverse .card-link:hover {
    color: #fff;
}

.card-blockquote {
    padding: 0;
    margin-bottom: 0;
    border-left: 0;
}

.card-img {
    border-radius: calc(0 - 1px);
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img-top {
    border-top-right-radius: calc(0 - 1px);
    border-top-left-radius: calc(0 - 1px);
}

.card-img-bottom {
    border-bottom-right-radius: calc(0 - 1px);
    border-bottom-left-radius: calc(0 - 1px);
}

@media (min-width: 576px) {
    .card-deck {
        display: table;
        width: 100%;
        margin-bottom: 0.75rem;
        table-layout: fixed;
        border-spacing: 1.25rem 0;
    }

    .card-deck .card {
        display: table-cell;
        margin-bottom: 0;
        vertical-align: top;
    }

    .card-deck-wrapper {
        margin-right: -1.25rem;
        margin-left: -1.25rem;
    }
}

@media (min-width: 576px) {
    .card-group {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .card-group .card {
        display: table-cell;
        vertical-align: top;
    }

    .card-group .card+.card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group .card:first-child {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .card-group .card:first-child .card-img-top {
        border-top-right-radius: 0;
    }

    .card-group .card:first-child .card-img-bottom {
        border-bottom-right-radius: 0;
    }

    .card-group .card:last-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .card-group .card:last-child .card-img-top {
        border-top-left-radius: 0;
    }

    .card-group .card:last-child .card-img-bottom {
        border-bottom-left-radius: 0;
    }

    .card-group .card:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .card-group .card:not(:first-child):not(:last-child) .card-img-top,
    .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
        border-radius: 0;
    }
}

@media (min-width: 576px) {
    .card-columns {
        column-count: 3;
        column-gap: 1.25rem;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.breadcrumb {
    padding: 1.4rem 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
}

.breadcrumb::after {
    content: "";
    display: table;
    clear: both;
}

.breadcrumb-item {
    float: left;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #818a91;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #818a91;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 0;
}

.page-item {
    display: inline;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.page-item:last-child .page-link {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.page-item.disabled .page-link,
.page-item.disabled .page-link:focus,
.page-item.disabled .page-link:hover {
    color: #818a91;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.page-link {
    position: relative;
    float: left;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    color: #666666;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.page-link:focus,
.page-link:hover {
    color: #8e8e8e;
    background-color: #eceeef;
    border-color: #ddd;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.pagination-lg .page-item:last-child .page-link {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.pagination-sm .page-link {
    padding: 0.275rem 0.75rem;
    font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.pagination-sm .page-item:last-child .page-link {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.tag {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0;
}

.tag:empty {
    display: none;
}

.btn .tag {
    position: relative;
    top: -1px;
}

a.tag:focus,
a.tag:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.tag-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.tag-default {
    background-color: #818a91;
}

.tag-default[href]:focus,
.tag-default[href]:hover {
    background-color: #687077;
}

.tag-primary {
    background-color: #8e8e8e;
}

.tag-primary[href]:focus,
.tag-primary[href]:hover {
    background-color: #000;
}

.tag-success {
    background-color: #5c8018;
}

.tag-success[href]:focus,
.tag-success[href]:hover {
    background-color: #3d5510;
}

.tag-info {
    background-color: #5bc0de;
}

.tag-info[href]:focus,
.tag-info[href]:hover {
    background-color: #31b0d5;
}

.tag-warning {
    background-color: #f0ad4e;
}

.tag-warning[href]:focus,
.tag-warning[href]:hover {
    background-color: #ec971f;
}

.tag-danger {
    background-color: #d9534f;
}

.tag-danger[href]:focus,
.tag-danger[href]:hover {
    background-color: #c9302c;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #eceeef;
    border-radius: 0;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.jumbotron-hr {
    border-top-color: #d0d5d8;
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 0;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: bold;
}

.alert-dismissible {
    padding-right: 2.5rem;
}

.alert-dismissible .close {
    position: relative;
    top: -.125rem;
    right: -1.25rem;
    color: inherit;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d;
}

.alert-success hr {
    border-top-color: #c1e2b3;
}

.alert-success .alert-link {
    color: #2b542c;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bcdff1;
    color: #31708f;
}

.alert-info hr {
    border-top-color: #a6d5ec;
}

.alert-info .alert-link {
    color: #245269;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faf2cc;
    color: #8a6d3b;
}

.alert-warning hr {
    border-top-color: #f7ecb5;
}

.alert-warning .alert-link {
    color: #66512c;
}

.alert-danger {
    background-color: #ffffff;
    border-color: #e86262;
    color: #e86262;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 18px;
    display: none;
}

.alert-danger hr {
    border-top-color: #e4b9b9;
}

.alert-danger .alert-link {
    color: #843534;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 10px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    display: block;
    width: 100%;
    height: 10px;
    margin-bottom: 10px;
}

.progress[value] {
    background-color: #eee;
    border: 0;
    appearance: none;
    border-radius: 0;
}

.progress[value]::-ms-fill {
    background-color: #0074d9;
    border: 0;
}

.progress[value]::-moz-progress-bar {
    background-color: #0074d9;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.progress[value]::-webkit-progress-value {
    background-color: #0074d9;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.progress[value="100"]::-moz-progress-bar {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.progress[value="100"]::-webkit-progress-value {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.progress[value]::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 0;
    -webkit-box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

base::-moz-progress-bar,
.progress[value] {
    background-color: #eee;
    border-radius: 0;
    -webkit-box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 0\0) {
    .progress {
        background-color: #eee;
        border-radius: 0;
        -webkit-box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    }

    .progress-bar {
        display: inline-block;
        height: 10px;
        text-indent: -999rem;
        background-color: #0074d9;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .progress[width="100%"] {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }
}

.progress-striped[value]::-webkit-progress-value {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

.progress-striped[value]::-moz-progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

.progress-striped[value]::-ms-fill {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

@media screen and (min-width: 0\0) {
    .progress-bar-striped {
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-size: 10px 10px;
    }
}

.progress-animated[value]::-webkit-progress-value {
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-animated[value]::-moz-progress-bar {
    animation: progress-bar-stripes 2s linear infinite;
}

@media screen and (min-width: 0\0) {
    .progress-animated .progress-bar-striped {
        animation: progress-bar-stripes 2s linear infinite;
    }
}

.progress-success[value]::-webkit-progress-value {
    background-color: #5c8018;
}

.progress-success[value]::-moz-progress-bar {
    background-color: #5c8018;
}

.progress-success[value]::-ms-fill {
    background-color: #5c8018;
}

@media screen and (min-width: 0\0) {
    .progress-success .progress-bar {
        background-color: #5c8018;
    }
}

.progress-info[value]::-webkit-progress-value {
    background-color: #5bc0de;
}

.progress-info[value]::-moz-progress-bar {
    background-color: #5bc0de;
}

.progress-info[value]::-ms-fill {
    background-color: #5bc0de;
}

@media screen and (min-width: 0\0) {
    .progress-info .progress-bar {
        background-color: #5bc0de;
    }
}

.progress-warning[value]::-webkit-progress-value {
    background-color: #f0ad4e;
}

.progress-warning[value]::-moz-progress-bar {
    background-color: #f0ad4e;
}

.progress-warning[value]::-ms-fill {
    background-color: #f0ad4e;
}

@media screen and (min-width: 0\0) {
    .progress-warning .progress-bar {
        background-color: #f0ad4e;
    }
}

.progress-danger[value]::-webkit-progress-value {
    background-color: #d9534f;
}

.progress-danger[value]::-moz-progress-bar {
    background-color: #d9534f;
}

.progress-danger[value]::-ms-fill {
    background-color: #d9534f;
}

@media screen and (min-width: 0\0) {
    .progress-danger .progress-bar {
        background-color: #d9534f;
    }
}

.media,
.media-body {
    overflow: hidden;
}

.media-body {
    width: 10000px;
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-object {
    display: block;
}

.media-object.img-thumbnail {
    max-width: none;
}

.media-right {
    padding-left: 1.42857rem;
}

.rtl .media-right {
    padding-right: 1.42857rem;
    padding-left: inherit;
}

.media-left {
    padding-right: 1.42857rem;
}

.rtl .media-left {
    padding-left: 1.42857rem;
    padding-right: inherit;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: #eceeef;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
    color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
    color: #818a91;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #8e8e8e;
    border-color: #8e8e8e;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading>.small {
    color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
    color: white;
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-item-action {
    width: 100%;
    color: #555;
    text-align: inherit;
}

.list-group-item-action .list-group-item-heading {
    color: #333;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5;
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit;
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6;
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d;
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit;
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3;
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f;
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit;
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b;
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit;
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442;
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9 {
    padding-bottom: 42.85714%;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.embed-responsive-1by1 {
    padding-bottom: 100%;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
}

.rtl .close {
    float: left;
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    color: #fff;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%);
}

.modal.in .modal-dialog {
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.in {
    opacity: 0.5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header::after {
    content: "";
    display: table;
    clear: both;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer::after {
    content: "";
    display: table;
    clear: both;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Crimson";
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.in {
    opacity: 0.9;
}

.tooltip.tooltip-top,
.tooltip.bs-tether-element-attached-bottom {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltip.tooltip-top .tooltip-inner::before,
.tooltip.bs-tether-element-attached-bottom .tooltip-inner::before {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.tooltip-right,
.tooltip.bs-tether-element-attached-left {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltip.tooltip-right .tooltip-inner::before,
.tooltip.bs-tether-element-attached-left .tooltip-inner::before {
    top: 50%;
    left: 0;
    margin-top: -5px;
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.tooltip-bottom,
.tooltip.bs-tether-element-attached-top {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip.tooltip-bottom .tooltip-inner::before,
.tooltip.bs-tether-element-attached-top .tooltip-inner::before {
    top: 0;
    left: 50%;
    margin-left: -5px;
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.tooltip-left,
.tooltip.bs-tether-element-attached-right {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltip.tooltip-left .tooltip-inner::before,
.tooltip.bs-tether-element-attached-right .tooltip-inner::before {
    top: 50%;
    right: 0;
    margin-top: -5px;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0;
}

.tooltip-inner::before {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    padding: 1px;
    font-family: "Crimson";
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.popover-top,
.popover.bs-tether-element-attached-bottom {
    margin-top: -10px;
}

.popover.popover-top::before,
.popover.popover-top::after,
.popover.bs-tether-element-attached-bottom::before,
.popover.bs-tether-element-attached-bottom::after {
    left: 50%;
    border-bottom-width: 0;
}

.popover.popover-top::before,
.popover.bs-tether-element-attached-bottom::before {
    bottom: -11px;
    margin-left: -11px;
    border-top-color: rgba(0, 0, 0, 0.25);
}

.popover.popover-top::after,
.popover.bs-tether-element-attached-bottom::after {
    bottom: -10px;
    margin-left: -10px;
    border-top-color: #fff;
}

.popover.popover-right,
.popover.bs-tether-element-attached-left {
    margin-left: 10px;
}

.popover.popover-right::before,
.popover.popover-right::after,
.popover.bs-tether-element-attached-left::before,
.popover.bs-tether-element-attached-left::after {
    top: 50%;
    border-left-width: 0;
}

.popover.popover-right::before,
.popover.bs-tether-element-attached-left::before {
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.popover-right::after,
.popover.bs-tether-element-attached-left::after {
    left: -10px;
    margin-top: -10px;
    border-right-color: #fff;
}

.popover.popover-bottom,
.popover.bs-tether-element-attached-top {
    margin-top: 10px;
}

.popover.popover-bottom::before,
.popover.popover-bottom::after,
.popover.bs-tether-element-attached-top::before,
.popover.bs-tether-element-attached-top::after {
    left: 50%;
    border-top-width: 0;
}

.popover.popover-bottom::before,
.popover.bs-tether-element-attached-top::before {
    top: -11px;
    margin-left: -11px;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.popover-bottom::after,
.popover.bs-tether-element-attached-top::after {
    top: -10px;
    margin-left: -10px;
    border-bottom-color: #f7f7f7;
}

.popover.popover-bottom .popover-title::before,
.popover.bs-tether-element-attached-top .popover-title::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 20px;
    margin-left: -10px;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}

.popover.popover-left,
.popover.bs-tether-element-attached-right {
    margin-left: -10px;
}

.popover.popover-left::before,
.popover.popover-left::after,
.popover.bs-tether-element-attached-right::before,
.popover.bs-tether-element-attached-right::after {
    top: 50%;
    border-right-width: 0;
}

.popover.popover-left::before,
.popover.bs-tether-element-attached-right::before {
    right: -11px;
    margin-top: -11px;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.popover-left::after,
.popover.bs-tether-element-attached-right::after {
    right: -10px;
    margin-top: -10px;
    border-left-color: #fff;
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: -0.07143 -0.07143 0 0;
}

.popover-title:empty {
    display: none;
}

.popover-content {
    padding: 9px 14px;
}

.popover::before,
.popover::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover::before {
    content: "";
    border-width: 11px;
}

.popover::after {
    content: "";
    border-width: 10px;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner>.carousel-item {
    position: relative;
    display: none;
    transition: .6s ease-in-out left;
}

.carousel-inner>.carousel-item>img,
.carousel-inner>.carousel-item>a>img {
    line-height: 1;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.carousel-item {
        transition: transform .6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000px;
    }

    .carousel-inner>.carousel-item.next,
    .carousel-inner>.carousel-item.active.right {
        left: 0;
        transform: translate3d(100%, 0, 0);
    }

    .carousel-inner>.carousel-item.prev,
    .carousel-inner>.carousel-item.active.left {
        left: 0;
        transform: translate3d(-100%, 0, 0);
    }

    .carousel-inner>.carousel-item.next.left,
    .carousel-inner>.carousel-item.prev.right,
    .carousel-inner>.carousel-item.active {
        left: 0;
        transform: translate3d(0, 0, 0);
    }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block;
}

.carousel-inner>.active {
    left: 0;
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner>.next {
    left: 100%;
}

.carousel-inner>.prev {
    left: -100%;
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0;
}

.carousel-inner>.active.left {
    left: -100%;
}

.carousel-inner>.active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 65%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    border: 1px solid #1b1b1b;
    font-size: 14px;
    color: #1b1b1b;
    text-align: center;
    line-height: 30px;
    background: transparent;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    z-index: 90;
}

.carousel-control:focus,
.carousel-control:hover {
    color: #1b1b1b;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
    line-height: 1;
}

.carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .icon-next {
    right: 50%;
    margin-right: -10px;
}

.carousel-control .icon-prev::before {
    content: "\2039";
}

.carousel-control .icon-next::before {
    content: "\203a";
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0;
}

.carousel-caption .btn {
    text-shadow: none;
}

@media (min-width: 576px) {

    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .carousel-control .icon-prev {
        margin-left: -15px;
    }

    .carousel-control .icon-next {
        margin-right: -15px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.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-faded {
    background-color: #f7f7f9;
}

.bg-primary {
    background-color: #8e8e8e;
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #000 !important;
}

.bg-success {
    background-color: #5c8018;
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #3d5510 !important;
}

.bg-info {
    background-color: #5bc0de;
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: #31b0d5 !important;
}

.bg-warning {
    background-color: #f0ad4e;
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #ec971f !important;
}

.bg-danger {
    background-color: #d9534f;
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #c9302c !important;
}

.bg-inverse {
    background-color: #373a3c;
}

a.bg-inverse:focus,
a.bg-inverse:hover {
    background-color: #1f2021 !important;
}

.rounded {
    border-radius: 0;
}

.rounded-top {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.rounded-right {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.rounded-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.rounded-left {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.rounded-circle {
    border-radius: 50%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-inline {
    display: inline !important;
}

.float-xs-left {
    float: left !important;
}

.float-xs-right {
    float: right !important;
}

.float-xs-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: 1176px) {
    .float-xl-left {
        float: left !important;
    }

    .float-xl-right {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.m-0 {
    margin: 0 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.m-1 {
    margin: 2.5px 2.5px !important;
}

.mt-1 {
    margin-top: 2.5px !important;
}

.mr-1 {
    margin-right: 2.5px !important;
}

.mb-1 {
    margin-bottom: 2.5px !important;
}

.ml-1 {
    margin-left: 2.5px !important;
}

.mx-1 {
    margin-right: 2.5px !important;
    margin-left: 2.5px !important;
}

.my-1 {
    margin-top: 2.5px !important;
    margin-bottom: 2.5px !important;
}

.m-2 {
    margin: 5px 5px !important;
}

.mt-2 {
    margin-top: 5px !important;
}

.mr-2 {
    margin-right: 5px !important;
}

.mb-2 {
    margin-bottom: 5px !important;
}

.ml-2 {
    margin-left: 5px !important;
}

.mx-2 {
    margin-right: 5px !important;
    margin-left: 5px !important;
}

.my-2 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.m-3 {
    margin: 10px 10px !important;
}

.mt-3 {
    margin-top: 10px !important;
}

.mr-3 {
    margin-right: 10px !important;
}

.mb-3 {
    margin-bottom: 10px !important;
}

.ml-3 {
    margin-left: 10px !important;
}

.mx-3 {
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.my-3 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.m-4 {
    margin: 15px 15px !important;
}

.mt-4 {
    margin-top: 15px !important;
}

.mr-4 {
    margin-right: 15px !important;
}

.mb-4 {
    margin-bottom: 15px !important;
}

.ml-4 {
    margin-left: 15px !important;
}

.mx-4 {
    margin-right: 15px !important;
    margin-left: 15px !important;
}

.my-4 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.m-5 {
    margin: 30px 30px !important;
}

.mt-5 {
    margin-top: 30px !important;
}

.mr-5 {
    margin-right: 30px !important;
}

.mb-5 {
    margin-bottom: 30px !important;
}

.ml-5 {
    margin-left: 30px !important;
}

.mx-5 {
    margin-right: 30px !important;
    margin-left: 30px !important;
}

.my-5 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.p-0 {
    padding: 0 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.p-1 {
    padding: 2.5px 2.5px !important;
}

.pt-1 {
    padding-top: 2.5px !important;
}

.pr-1 {
    padding-right: 2.5px !important;
}

.pb-1 {
    padding-bottom: 2.5px !important;
}

.pl-1 {
    padding-left: 2.5px !important;
}

.px-1 {
    padding-right: 2.5px !important;
    padding-left: 2.5px !important;
}

.py-1 {
    padding-top: 2.5px !important;
    padding-bottom: 2.5px !important;
}

.p-2 {
    padding: 5px 5px !important;
}

.pt-2 {
    padding-top: 5px !important;
}

.pr-2 {
    padding-right: 5px !important;
}

.pb-2 {
    padding-bottom: 5px !important;
}

.pl-2 {
    padding-left: 5px !important;
}

.px-2 {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

.py-2 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.p-3 {
    padding: 10px 10px !important;
}

.pt-3 {
    padding-top: 10px !important;
}

.pr-3 {
    padding-right: 10px !important;
}

.pb-3 {
    padding-bottom: 10px !important;
}

.pl-3 {
    padding-left: 10px !important;
}

.px-3 {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.py-3 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.p-4 {
    padding: 15px 15px !important;
}

.pt-4 {
    padding-top: 15px !important;
}

.pr-4 {
    padding-right: 15px !important;
}

.pb-4 {
    padding-bottom: 15px !important;
}

.pl-4 {
    padding-left: 15px !important;
}

.px-4 {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.py-4 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.p-5 {
    padding: 30px 30px !important;
}

.pt-5 {
    padding-top: 30px !important;
}

.pr-5 {
    padding-right: 30px !important;
}

.pb-5 {
    padding-bottom: 30px !important;
}

.pl-5 {
    padding-left: 30px !important;
}

.px-5 {
    padding-right: 30px !important;
    padding-left: 30px !important;
}

.py-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.pos-f-t {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-xs-left {
    text-align: left !important;
}

.text-xs-right {
    text-align: right !important;
}

.text-xs-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: 1176px) {
    .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;
    display: none;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-normal {
    font-weight: normal;
}

.font-weight-bold {
    font-weight: bold;
}

.font-italic {
    font-style: italic;
}

.text-white {
    color: #fff !important;
}

.text-muted {
    color: #000 !important;
}

a.text-muted:focus,
a.text-muted:hover {
    color: #000 !important;
}

.text-primary {
    color: #000 !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #000 !important;
}

.text-success {
    color: #5c8018 !important;
}

a.text-success:focus,
a.text-success:hover {
    color: #3d5510 !important;
}

.text-info {
    color: #5bc0de !important;
}

a.text-info:focus,
a.text-info:hover {
    color: #31b0d5 !important;
}

.text-warning {
    color: #f0ad4e !important;
}

a.text-warning:focus,
a.text-warning:hover {
    color: #ec971f !important;
}

.text-danger {
    color: #d9534f !important;
}

a.text-danger:focus,
a.text-danger:hover {
    color: #c9302c !important;
}

.text-gray-dark {
    color: #878787 !important;
}

a.text-gray-dark:focus,
a.text-gray-dark:hover {
    color: #6e6e6e !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.invisible {
    visibility: hidden !important;
}

.hidden-xs-up {
    display: none !important;
}

@media (max-width: 575px) {
    .hidden-xs-down {
        display: block !important;
        margin: 0 auto;
        margin-top: 15px;
    }
}

@media (min-width: 576px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;
    }
}

@media (max-width: 1175px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (min-width: 1176px) {
    .hidden-xl-up {
        display: none !important;
    }
}

.hidden-xl-down {
    display: none !important;
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Material-Icons.eot);
    /* For IE6-8 */
    src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/Material-Icons.woff2) format("woff2"), url(../fonts/Material-Icons.woff) format("woff"), url(../fonts/Material-Icons.ttf) format("truetype");
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

.lang-rtl * {
    direction: rtl !important;
}

.lang-rtl main {
    text-align: right !important;
}

body {
    font-family: "Crimson";
    font-size: 14px;
    color: #1b1b1b;
    line-height: 25px;
    font-weight: 300;
    overflow-x: hidden;
    background-color: #ffffff;
}

ul {
    list-style: none;
    padding-left: 0rem;
	color: #000;
}

.rtl ul {
    padding-right: 0rem;
    padding-left: inherit;
}

a:hover {
    color: #8e8e8e !important;
    text-decoration: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: none;
}

.color,
.custom-checkbox input[type="checkbox"]+span.color {
    width: 0.85714rem;
    height: 0.85714rem;
    display: inline-block;
    margin: 0.07143rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background-size: contain;
    vertical-align: middle;
}

.color.active,
.color:hover,
.custom-checkbox input[type="checkbox"]+span.color.active,
.custom-checkbox input[type="checkbox"]+span.color:hover {
    border: 1px solid #8e8e8e;
}

.facet-label.active .custom-checkbox span.color,
.facet-label:hover .custom-checkbox span.color {
    border: 2px solid #414141;
}

.h1,
.h2,
.h3 {
    color: #000;
	line-height: 35px;
}

.h4 {
    font-weight: 600;
    color: #414141;
}

.btn-primary,
.btn-secondary {
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Source", sans-serif;
    font-size: 12px;
}

.btn-primary .material-icons,
.btn-secondary .material-icons {
    margin-right: 0.71429rem;
}

label,
.label {
    color: #414141;
    text-align: justify;
    font-size: 1rem;
}

.rtl label,
.rtl .label {
    text-align: left;
}

small.label,
small.value {
    font-size: 0.92857rem;
}

.form-control-label {
    padding-top: 0.71429rem;
}

.form-control {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.57143rem 1.14286rem;
    border: 1px solid #c0ccda;
	font-weight: 600;
}

.send-btn {
    background: #000 !important;
    border-radius: 0px;
    color: #fff;
}

.input-group .form-control:focus {
    outline: none;
}

.input-group .input-group-btn>.btn {
    border: 0;
    box-shadow: none;
    font-size: 0.78571rem;
    font-weight: normal;
    margin-left: 0;
    padding: 1rem 1.14286rem;
    text-transform: uppercase;
    text-align: center;
}

.rtl .input-group .input-group-btn>.btn {
    margin-right: 0;
    margin-left: inherit;
}

.input-group .input-group-btn .btn-default {
    padding: 0 !important;
}

.form-control-select {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid #c0ccda;
    background: #ffffff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII=") no-repeat scroll right 0.57143rem center/1.42857rem 1.42857rem;
    padding-right: 2.28571rem;
    background-position: right 0.57143rem;
}

.rtl .form-control-select {
    padding-left: 2.28571rem;
    padding-right: inherit;
}

.rtl .form-control-select {
    background-position: left 0.57143rem;
}

.form-control-valign {
    padding-top: 0.57143rem;
}

.form-control-comment {
    font-size: 1rem;
    padding-top: 0.57143rem;
    color: #878787;
}

.form-control-submit.disabled {
    background: #5bc0de;
    color: white;
}

.form-group.has-error input,
.form-group.has-error select {
    outline: 0.21429rem solid #d9534f;
}

.form-group.has-error .help-block {
    color: #d9534f;
}

.group-span-filestyle label {
    margin: 0;
}

.group-span-filestyle .btn-default {
    background: #8e8e8e;
    color: white;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 1rem;
    height: 40px;
    overflow: hidden;
    padding: 0.57143rem 1.14286rem;
}

.bootstrap-touchspin input:focus {
    outline: none;
}

.bootstrap-touchspin input.form-control {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.bootstrap-touchspin .btn-touchspin {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    height: 1.3rem;
    height: 1.45rem0.07143rem;
}

.bootstrap-touchspin .btn-touchspin:hover {
    background-color: #ebebeb;
}

.bootstrap-touchspin .input-group-btn-vertical {
    color: #414141;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-up:after {
    content: "\E145";
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-down:after {
    content: "\E15B";
}

.bootstrap-touchspin .input-group-btn-vertical i {
    top: 0.07143rem;
    left: 0.21429rem;
    font-size: 1.07143rem;
}

.rtl .bootstrap-touchspin .input-group-btn-vertical i {
    right: 0.21429rem;
    left: auto;
}

.custom-radio {
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: #acaaa6 2px solid;
    background: white;
    margin-right: 1.42857rem;
}

.rtl .custom-radio {
    margin-left: 1.42857rem;
    margin-right: inherit;
}

.custom-radio input[type="radio"] {
    opacity: 0;
    cursor: pointer;
}

.custom-radio input[type="radio"]:checked+span {
    display: block;
    background-color: #8e8e8e;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.rtl .custom-radio input[type="radio"]:checked+span {
    right: 0;
    left: auto;
}

.custom-checkbox {
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 0.28571rem;
    opacity: 0;
    cursor: pointer;
    position: absolute;
}

.custom-checkbox input[type="checkbox"]+span {
    margin-right: 3px;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
    cursor: pointer;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    border: 2px solid #a0a0a0;
}

.rtl .custom-checkbox input[type="checkbox"]+span {
    margin-left: 3px;
    margin-right: inherit;
}

.custom-checkbox input[type="checkbox"]+span .checkbox-checked {
    display: none;
    margin: -0.28571rem -0.14286rem;
    font-size: 1.1rem;
    color: #414141;
    font-weight: 600;
}

.custom-checkbox input[type="checkbox"]:checked+span .checkbox-checked {
    display: block;
}

.custom-checkbox label {
    text-align: left;
}

.rtl .custom-checkbox label {
    text-align: right;
}

.text-muted {
    font-size: 1rem;
}

.done {
    color: #5c8018;
    display: inline-block;
    padding: 0 0.92857rem;
    margin-right: 1.78571rem;
}

.rtl .done {
    margin-left: 1.78571rem;
    margin-right: inherit;
}

.thumb-mask>.mask {
    position: relative;
    width: 3.92857rem;
    height: 3.92857rem;
    overflow: hidden;
    border: #ebebeb 1px solid;
    margin: 0.71429rem 0;
}

.thumb-mask>.mask img {
    width: 55px;
    height: 55px;
}

.definition-list dl {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.definition-list dl dt {
    font-weight: normal;
}

.definition-list dl dd,
.definition-list dl dt {
    -webkit-flex: 0 0 45%;
    -moz-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    background: #ebebeb;
    padding: 0.71429rem;
    margin: 0.14286rem;
}

.definition-list dl dd:nth-of-type(even),
.definition-list dl dt:nth-of-type(even) {
    background: #f6f6f6;
}

.help-block {
    margin-top: 0.71429rem;
    color: #d9534f;
}

.btn.disabled,
.btn.disabled:hover {
    background: #acaaa6;
}

.alert-warning .material-icons {
    color: #d9534f;
    font-size: 2.28571rem;
    margin-right: 0.71429rem;
    padding-top: 0.35714rem;
}

.alert-warning .alert-text {
    font-size: 1.07143rem;
    padding-top: 0.71429rem;
}

.alert-warning .alert-link {
    border-radius: 2px;
    border-width: 2px;
    margin-left: 0.71429rem;
    padding: 0.35714rem 1.42857rem;
    font-weight: 600;
    font-size: 0.92857rem;
    color: #6C868E;
}

.rtl .alert-warning .alert-link {
    margin-right: 0.71429rem;
    margin-left: inherit;
}

.alert-warning ul li:last-child .alert-link {
    color: white;
}

.alert-warning .warning-buttons {
    margin-top: 0.35714rem;
}

.btn-warning {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.alert {
    font-size: 0.92857rem;
}

.nav-item .nav-link,
.nav-item .nav-separtor {
    color: #acaaa6;
    font-weight: bold;
}

.nav-item .nav-link.active,
.nav-item .nav-separtor.active {
    color: #414141;
    font-weight: 200;
    font-size: 19px;
}

/**
 * BASE CSS STYLES
 */
html {
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    html {
        overflow-x: hidden;
    }
}

.tree>ul>li,
.tree-menu>ul>li {
    width: 100%;
    height: auto;
    position: relative;
}

.tree>ul>li.active>a,
.tree-menu>ul>li.active>a {
    color: #8e8e8e;
}

.tree>ul>li ul li,
.tree-menu>ul>li ul li {
    position: relative;
    padding-right: 0;
}

.rtl .tree>ul>li ul li,
.rtl .tree-menu>ul>li ul li {
    padding-left: 0;
    padding-right: inherit;
}

.tree>ul>li ul li.last,
.tree-menu>ul>li ul li.last {
    padding-bottom: 0;
}

.tree>ul>li a.active,
.tree-menu>ul>li a.active {
    font-weight: bold;
    color: #8e8e8e;
}

.tree>ul>li a.active+ul,
.tree-menu>ul>li a.active+ul {
    display: block;
    padding: 0 0 10px 10px;
}

.tree>ul>li ul>li>a.active,
.tree-menu>ul>li ul>li>a.active {
    font-weight: bold;
    color: #8e8e8e;
}

a:hover {
    color: #767676 !important;
    text-decoration: none;
    outline: none;
}

ul.circle {
    list-style-type: circle;
    margin-left: 15px;
}

.rtl ul.circle {
    margin-right: 15px;
    margin-left: inherit;
}

ul.square {
    list-style-type: square;
    margin-left: 15px;
}

.rtl ul.square {
    margin-right: 15px;
    margin-left: inherit;
}

ul.decimal {
    list-style-type: decimal;
    margin-left: 15px;
}

.rtl ul.decimal {
    margin-right: 15px;
    margin-left: inherit;
}

ul.georgian {
    list-style-type: georgian;
    margin-left: 15px;
}

.rtl ul.georgian {
    margin-right: 15px;
    margin-left: inherit;
}

ul.cjk-ideographic {
    list-style-type: cjk-ideographic;
    margin-left: 15px;
}

.rtl ul.cjk-ideographic {
    margin-right: 15px;
    margin-left: inherit;
}

ul.kannada {
    list-style-type: kannada;
    margin-left: 15px;
}

.rtl ul.kannada {
    margin-right: 15px;
    margin-left: inherit;
}

ul.upper-roman {
    list-style-type: upper-roman;
    margin-left: 15px;
}

.rtl ul.upper-roman {
    margin-right: 15px;
    margin-left: inherit;
}

ul.lower-alpha {
    list-style-type: lower-alpha;
    margin-left: 15px;
}

.rtl ul.lower-alpha {
    margin-right: 15px;
    margin-left: inherit;
}

ul.arrow li a {
    padding: 0 0 0 12px;
    display: block;
    position: relative;
    margin-bottom: 10px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

ul.arrow li a:before {
    content: "\f105";
    font-family: "Material Icons";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    font-size: 11px;
    color: #979797;
}

ul.arrow li a:hover {
    margin-left: 5px;
}

ul.arrow li a:hover:before {
    color: #8e8e8e;
}

ul.list-circle li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.rtl ul.list-circle li {
    padding-right: 20px;
    padding-left: inherit;
}

ul.list-circle li:before {
    background-color: #8e8e8e;
    border-radius: 6px;
    content: "";
    left: 0;
    position: absolute;
    top: 8px;
    width: 6px;
    height: 6px;
}

.rtl ul.list-circle li:before {
    right: 0;
    left: auto;
}

.timeWork li {
    clear: both;
    display: block;
    padding: 8px 0;
}

.box-content {
    padding: 15px 0;
}

.nopadding .owl-carousel-play,
.nopadding .flexRow,
.nopadding.flexRow,
.nopadding .row {
    margin-left: 0;
    margin-right: 0;
}

.nopadding [class*="col-"],
.nopadding [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.nopadding .owl-carousel-play .item {
    padding-left: 0;
    padding-right: 0;
}

.bg_black .widget-html {
    color: #999999;
    text-align: center;
}

.bg_black .widget-html .title_block {
    color: #fff;
    font-size: 30px;
    border-bottom: 0;
}

.bg_black .widget-ourservice .ourservice-heading {
    color: #8e8e8e;
}

.bg_black .widget-ourservice .ourservice-content {
    color: #fff;
}

/******************************************************
 * $package Pav Prestashop Theme Framework for Prestashop 1.5.x
 * $version 1.1
 * $author http://www.prestabrain.com
 * $copyright   Copyright (C) Augus 2013 PavoThemes.com <$emai:prestabrain$gmail.com>.All rights reserved.
 * $license     GNU General Public License version 2
 *******************************************************/
.layout-boxed-md {
    background: #fff;
}

.layout-boxed-md #page {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    background: #fff;
    max-width: 990px;
}

.layout-boxed-md #page .container {
    max-width: 990px;
}

.layout-boxed-lg #page {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    background: #fff;
    max-width: 1200px;
}

@media (max-width: 991px) {
    #page {
        padding-top: 0 !important;
    }
}

.row-offcanvas {
    max-width: 1920px;
    margin: 0 auto;
}

/*
* HEADER 
*/
/*** Position Topbar***/
#header {
    position: relative;
    z-index: 99;
}

.header-nav .topbar-inner {
    position: relative;
}

.header-nav .block {
    margin-bottom: 0;
}

.header-nav .list-inline {
    margin-bottom: 0;
}

.header-nav .content_top {
    margin-bottom: 0;
}

.header-nav .content_top li {
    padding: 0 10px;
    position: relative;
}

.header-nav .content_top li a .icon {
    display: none;
}

.toogle_content {
    background-color: #fff;
    position: absolute;
    top: 100%;
    min-width: 12.14286rem;
    z-index: 115;
    display: none;
    border: 1px solid #ebebeb;
    padding: 0.35714rem 0.71429rem;
}

.toogle_content a {
    color: #292733;
}

.toogle_content li {
    display: block;
}

.toogle_content li.selected a,
.toogle_content li.selected span {
    color: #8e8e8e;
}

.toogle_content li a:hover,
.toogle_content li a:focus,
.toogle_content li a:active {
    color: #8e8e8e;
}

.header_logo {
    text-align: center;
}

.logo-theme {
    background: none;
    position: relative;
    z-index: 99;
    display: block;
}

@media (max-width: 575px) {
    .logo-theme {
        text-align: center;
    }
}

.logo-theme a {
    vertical-align: middle;
    width: 9.64286rem;
    height: 3.57143rem;
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
}

.rtl .logo-theme a {
    background-position: right center;
}

/*
* NAVIGATION
*/
.ps_megamenu {
    background-color: #131313;
}

/*
* SLIDESHOW 
*/
#wrapper {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    #wrapper {
        padding-top: 30px;
    }
}

#index #wrapper {
    padding: 0;
}

/*
* SHOWCASE 
*/
/*
* MAIN CONTENT
*/
/*top column*/
/*end*/
/* FOOTER */
#footer {
    color: #1b1b1b;
    font-size: 14px;
    position: relative;
    top: 0px;
	margin-top: 50px;
}

#footer::after {
    content: "";
    display: table;
    clear: both;
}

#footer .block {
    border: 0;
    background-color: transparent;
    margin-bottom: 20px !important;
}

.footer-top .row-inner {
    background-color: #3a3a3a;
}

.footer-center {
    position: relative;
    background-color: transparent;
    color: #666666;
    line-height: 24px;
}

.footer-center a {
    color: #666666;
}

.footer-center a:hover {
    color: #737373;
}

.footer-center .row-inner {
    padding: 60px 0 40px 0;
}

.footer-center .pts-borderbox {
    background-color: transparent;
}

.footer-center a {
    color: #fff;
    font-size: 12px;
}

.footer-center a:hover {
    /*background: #fff;*/
    color: #b7b7b7;
}

.footer-center .nav-links li a,
.footer-center .lists li a {
    display: block;
    padding: 5px 0;
    line-height: 18px;
    position: relative;
}

.footer-center .block .title_block {
    border-bottom: 0;
    font-size: 1.42857rem;
    font-weight: 500;
    color: #fff;
    display: block;
    margin-bottom: 1.07143rem;
    padding-top: 0;
    background: transparent;
    text-align: left;
}

.rtl .footer-center .block .title_block {
    text-align: right;
}

.footer-bottom {
    position: relative;
    background-color: transparent;
    color: #1b1b1b;
    padding: 2.14286rem 0 1.42857rem;
}

.footer-bottom a {
    color: #1b1b1b;
}

.footer-bottom a:hover {
    color: #8e8e8e;
}

.footer-bottom .row-inner {
    background-color: #fff;
    padding: 0;
}

/* POWER BY */
.pts-copyright {
    position: relative;
    color: #909cad;
    background-color: transparent;
    color: #909cad;
}

.pts-copyright a {
    color: #8e8e8e;
}

.pts-copyright a:hover {
    color: #8e8e8e;
}

.pts-copyright .row-inner {
    padding: 30px 0;
    background-color: transparent;
    color: #909cad;
    text-align: center;
    border-top: 1px solid #ececec;
}

.pts-copyright p {
    margin-bottom: 0;
}

.pts-copyright .powered a {
    color: #8e8e8e;
}

.pts-copyright .powered a:hover {
    color: #8e8e8e;
}

.pts-copyright .block {
    margin-bottom: 0 !important;
}

.pts-copyright .widget-images {
    padding-top: 10px;
}

.pts-copyright .widget-images .title_block {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .pts-copyright .widget-images .title_block {
        display: none;
    }
}

.pts-copyright .widget-images .title_block span {
    color: #909cad;
}

.pts-copyright .widget-images .title_block span:before {
    display: none;
}

.pts-copyright .widget-images .widget-inner {
    display: inline-block;
}

.pts-copyright .widget-links {
    margin-bottom: 0;
}

.pts-copyright .widget-links .panel-group {
    margin-bottom: 0;
}

.pts-copyright .widget-links .panel-group .nav-links li {
    display: inline-block;
    vertical-align: middle;
    line-height: 10px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #e1e1e1;
}

.rtl .pts-copyright .widget-links .panel-group .nav-links li {
    border-left: 1px solid #e1e1e1;
    border-right: 0;
}

.pts-copyright .widget-links .panel-group .nav-links li a {
    font-weight: 700;
    color: #666666;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    text-transform: uppercase;
}

.pts-copyright .widget-links .panel-group .nav-links li a:hover {
    color: #8e8e8e;
}

.pts-copyright .widget-links .panel-group .nav-links li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.rtl .pts-copyright .widget-links .panel-group .nav-links li:last-child {
    border-left: 0;
    border-right: 0;
}

/* block */
.block {
    margin-bottom: 30px;
    position: relative;
}

.block .title_block {
    position: relative;
    text-transform: inherit;
    font-family: "Crimson";
    font-size: 1.3rem;
    font-weight: 700;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 7px 0;
    color: #000;
    display: none;
}

.rtl .block .title_block {
    text-align: right;
}

.block .title_block:after {
    position: absolute;
    bottom: 10%;
    width: 56px;
    height: 12px;
    left: 0;
    content: "";
    /*background: url("../img/data/title_bottom1.png") no-repeat center center transparent;*/
}

.rtl .block .title_block:after {
    right: 0;
    left: auto;
}

.block-highlighted .title_block {
    font-size: 25px;
    text-align: center !important;
    display: none;
}

.block-highlighted .title_block:before {
    position: absolute;
    top: -20%;
    width: 46px;
    height: 40px;
    left: 50%;
    margin-left: -23px;
    content: "";
    background: url("../img/data/title_top1.png") no-repeat center center transparent;
}

.block-highlighted .title_block:after {
    left: 50% !important;
    margin-left: -30px !important;
    right: auto !important;
    bottom: 0px;
}

@media (min-width: 992px) {
    #index .block {
        /*margin-bottom: 60px;*/
    }
}

#index .menubuilder .block {
    margin-bottom: 30px;
}

.title-sidebar {
    /*padding-top: 0 !important;*/
}

.page_title {
    font-family: "Crimson";
    font-size: 1.71429rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #444;
    display: none;
}

/* .block-default {
  @include block-variant($brand-default, #000, transparent, $brand-default);
    .title_block {
        font-size: rem(36px);
        line-height: rem(38px);
    }
} */
.block-borderbox .title_block {
    background-color: #f7f7f7;
    color: #222222;
    border: 1px solid #e5e5e5;
    margin-bottom: -1px;
    padding: 1.42857rem;
}

.block-borderbox .block_content {
    border: 1px solid #e5e5e5;
    padding: 0.71429rem 1.42857rem;
}

.block-borderbox .title_block {
    font-size: 1.28571rem;
    line-height: 1.14286rem;
}

.block-borderbox .list1 .product-title {
    margin-top: 0.35714rem;
}

.block-borderbox .list1 .product-thumbnail img {
    max-width: 5rem;
}

.sidebar .block {
    background-color: #fff;
    margin-bottom: 30px;
    margin-top: 30px;
}

.block_newsletter .box-newsletter .description {
    display: inline-block;
    padding-bottom: 15px;
    line-height: 16px;
    margin: 0;
    font-size: 11px;
}

.block_newsletter .box-newsletter .block_content {
    text-align: left;
}

.rtl .block_newsletter .box-newsletter .block_content {
    text-align: right;
}

.block_newsletter form {
    display: inline-block;
    width: 100%;
    max-width: 39.28571rem;
}

.block_newsletter .input-wrapper {
    overflow: hidden;
    position: relative;
}

.block_newsletter .input-wrapper .input-group-addon {
    background-color: transparent;
    border: none;
    text-align: center;
    padding: 0;
}

.rtl .block_newsletter .input-wrapper .input-group-addon {
    text-align: right;
}

.block_newsletter .input-wrapper .input-group-addon input {
    border: 1px solid #ebebeb;
    width: auto;
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    min-width: 160px;
    font-weight: bold;
    background: transparent;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
    font-family: "Source", sans-serif;
    font-size: 12px;
}

.block_newsletter .input-wrapper .input-group-addon input:hover {
    background-color: #fff;
    color: #000;
    border-color: transparent;
    font-family: "Source", sans-serif;
    font-size: 12px;
}

.block_newsletter .form-control {
    height: 2.85714rem;
    font-size: 0.85714rem;
    background: #000000;
    position: relative;
    padding: 8px 15px;
    margin-bottom: 20px;
    color: #eaeaea;
    font-style: italic;
}

.block_newsletter .alert {
    margin-top: 0.71429rem;
}

/* module Map*/
#fancybox-map {
    text-transform: uppercase;
    font-weight: 900;
    color: #8e8e8e !important;
    font-size: 11px;
}

#fancybox-map span {
    font-size: 9px;
    margin-right: 5px;
}

.rtl #fancybox-map span {
    margin-left: 5px;
    margin-right: inherit;
}

.block-categories .category-top-menu {
    margin: 0;
}

.block-categories .category-top-menu li {
    position: relative;
}

.block-categories .category-top-menu li>span.grower {
    display: block;
    position: absolute;
    right: 0;
    bottom: inherit;
    top: 15px;
    margin: auto;
    content: "";
    color: #666;
}

.rtl .block-categories .category-top-menu li>span.grower {
    left: 0;
    right: auto;
}

.block-categories .category-top-menu li>span.grower:hover {
    color: #8e8e8e;
}

.block-categories .category-top-menu li>a {
    padding: 10px 0;
    text-transform: uppercase;
}

.block-categories .category-top-menu li a {
    text-transform: capitalize;
    display: inline-block;
    width: 87%;
}

.block-categories .category-top-menu li a.selected,
.block-categories .category-top-menu li a:hover {
    color: #8e8e8e;
}

.block-categories .category-top-menu li a.selected:before,
.block-categories .category-top-menu li a:hover:before {
    color: #8e8e8e;
}

.block-categories .category-top-menu li li {
    border-bottom: 0;
}

.block-categories .category-top-menu li li a:hover {
    color: #8e8e8e;
}

.block-categories .category-top-menu li li li {
    padding: 0 0 0 1.07143rem;
}

.rtl .block-categories .category-top-menu li li li {
    padding: 0 1.07143rem 0 0;
}

.block-categories .category-top-menu li.last {
    border-bottom: 0;
}

.pts-contact-footer h5 {
    color: #bbb;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    padding-top: 10px;
}

.ptsmaplocator .page-subheading {
    font-size: 36px;
    line-height: 38px;
    background-color: transparent;
    padding: 0;
    text-align: center;
}

.ptsmaplocator .page-subheading span {
    color: #333;
    display: inline-block;
    line-height: 18px;
    padding: 20px 15px;
    position: relative;
}

.ptsmaplocator .page-subheading span:before {
    background-color: #4f4f4f;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    width: 30px;
}

.ptsmaplocator .box-content {
    padding: 0;
}

.ptsmaplocator .page-subheading {
    display: none;
}

.ptsmaplocator .maplocator {
    margin-bottom: 0;
}

.blockcart .header {
    display: block;
}

.blockcart .shopping-cart {
    width: 1.42857rem;
    height: 1.57143rem;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.28571rem;
    line-height: 1.71429rem;
}

#product_comparison {
    background-color: #fff;
}

#product_comparison .product-miniature {
    background-color: transparent;
}

#product_comparison .product-miniature .thumbnail-container {
    margin-bottom: 30px;
    position: relative;
}

#product_comparison .product-miniature .product-title {
    padding-top: 15px;
}

#product_comparison .product-miniature .action-btn .cart {
    width: auto;
    min-width: 140px;
}

#view_wishlist .product-miniature .product-description {
    text-align: center;
}

#view_wishlist .product-miniature .action-btn .cart {
    width: auto;
    min-width: 140px;
}

.ps_categoryproducts {
    margin-bottom: 0 !important;
}

@media (max-width: 480px) {
    #_mobile_contact_link {
        width: 100%;
    }
}

#contact-link {
    text-align: left;
    text-transform: capitalize;
}

.rtl #contact-link {
    text-align: right;
}

@media (max-width: 1175px) {
    #contact-link {
        padding-top: 13px;
    }
}

#contact-link i {
    padding: 0 5px 0 0;
}

.rtl #contact-link i {
    padding: 0 0 0 5px;
}

@media (max-width: 767px) {
    #contact-link .text {
        display: none;
    }
}

#contact-link span.phone {
    color: #8e8e8e;
    font-weight: 600;
}

.user-info {
    text-align: right;
}

.rtl .user-info {
    text-align: left;
}

.user-info a {
    color: #000;
}

.user-info a span {
    display: none;
}

.user-info a:hover {
    color: #8e8e8e;
}

.mfp-figure figure {
    margin: 0 !important;
}

.modal-open {
    padding-right: 0 !important;
}

#to_top {
    bottom: 10px;
    display: none;
    position: fixed;
    right: 15px;
    background-color: #8e8e8e;
    z-index: 90;
    border-radius: 3px;
    padding: 5px 0;
    width: 2.71429rem;
    height: 2.71429rem;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
	display: none !important;
}

.rtl #to_top {
    left: 15px;
    right: auto;
}

#to_top span {
    display: block;
    line-height: 30px;
    font-size: 25px;
}

.no-space-row .row {
    margin: 0;
}

.bg_norepeat {
    background-repeat: no-repeat;
}

.bg_hidden {
    overflow: hidden;
}

.padding-100 {
    padding: 30px 15px;
}

@media (min-width: 768px) {
    .padding-100 {
        padding: 100px;
    }
}

.no-space-row [class^="col-"],
.no-space-row [class*="col-"] {
    padding: 0;
}

.tab-content .tab-loading {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visible: hidden;
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
}

@media (min-width: 992px) {
    .col-lg-offset-4 .row>div:first-child {
        margin: 0 0 0 33.33%;
    }

    .rtl .col-lg-offset-4 .row>div:first-child {
        margin: 0 33.33% 0 0;
    }
}

@media (min-width: 992px) {
    .bg_margin-top {
        margin-top: -220px !important;
        position: relative;
        z-index: 10;
    }
}

.background-attr {
    background-attachment: scroll;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.space-bt-50 {
    margin-bottom: 50px !important;
}

.owl-carousel-play {
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

.owl-carousel-play .item {
    padding-left: 15px;
    padding-right: 15px;
}

.owl-carousel-play .carousel-control.left {
    left: -30px;
}

.owl-carousel-play .carousel-control.right {
    right: -30px;
}

@media (max-width: 767px) {
    .owl-carousel-play .carousel-control {
        display: none;
    }
}

@media (min-width: 992px) {
    .owl-carousel-play .carousel-control {
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
    }
}

.owl-carousel-play:focus .carousel-control,
.owl-carousel-play:hover .carousel-control {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.owl-carousel-play:focus .carousel-control.left,
.owl-carousel-play:hover .carousel-control.left {
    left: -7px;
}

.owl-carousel-play:focus .carousel-control.right,
.owl-carousel-play:hover .carousel-control.right {
    right: -7px;
}

.owl-carousel-play:focus>.carousel-controls .carousel-control:focus,
.owl-carousel-play:focus>.carousel-controls .carousel-control:hover,
.owl-carousel-play:hover>.carousel-controls .carousel-control:focus,
.owl-carousel-play:hover>.carousel-controls .carousel-control:hover {
    background: #8e8e8e;
    border-color: transparent !important;
    color: #fff;
    z-index: 98;
}

.owl-controls .owl-pagination {
    text-align: center;
}

.owl-controls .owl-pagination .owl-page {
    display: block;
}

.owl-controls .owl-pagination .owl-page>span {
    display: block;
    width: 1.07143rem;
    height: 1.07143rem;
    border: 2px solid #d7d7d7;
    background-color: #d7d7d7;
    border-radius: 50%;
    margin: 0.35714rem;
}

.owl-controls .owl-pagination .owl-page.active>span {
    border-color: #333;
    background-color: #fff;
}

.block-social .facebook {
    background: #3b5998;
}

.block-social .twitter {
    background: #00bdec;
}

.block-social .rss {
    background: #ff7f00;
}

.block-social .youtube {
    background: #c4302b;
}

.block-social .googleplus {
    background: #d94a39;
}

.block-social .pinterest {
    background: #b8242a;
}

.block-social .instagram {
    background: #4c799f;
}

.block-social .vimeo {
    background: #01557a;
}

.bo-social-icons [class^="bo-social-"] {
    color: #999999;
    display: inline-block;
    width: 1.78571rem;
    height: 1.78571rem;
    line-height: 1.78571rem;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    font-size: 0.85714rem;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.bo-social-icons [class^="bo-social-"]:hover {
    background: #222222;
    color: #FFFFFF;
}

.bo-social-icons [class^="bo-social-"] em,
.bo-social-icons [class^="bo-social-"] i {
    font-size: 16px;
    position: relative;
    top: 2px;
}

.bo-social-icons .fontawesome-icon-list [class^="bo-social-"] {
    padding: 0 15px;
}

.info_top {
    color: #999;
    padding: 20px 0;
    position: relative;
}

.info_top strong {
    font-weight: 700;
    font-size: 17px;
    color: #1b1b1b;
    padding: 0 8px 0 25px;
}

.rtl .info_top strong {
    padding: 0 25px 0 8px;
}

.info_top strong:before {
    position: absolute;
    top: 18px;
    left: 0;
    content: "\f00c";
    font-family: "FontAwesome";
    color: #5c8018;
}

.rtl .info_top strong:before {
    right: 0;
    left: auto;
}

.html_content {
    padding: 75px 20px 20px 20px;
    color: #666;
    text-align: left;
    font-size: 15px;
    line-height: 27px;
}

.rtl .html_content {
    padding: 75px 20px 20px 20px;
}

.rtl .html_content {
    text-align: right;
}

.html_content .title_sub {
    font-size: 31px;
    text-transform: capitalize;
    color: #1b1b1b;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.html_content h1 {
    color: #8e8e8e;
    font-size: 46px;
    text-transform: capitalize;
    margin-bottom: 27px;
}

@media (max-width: 991px) {
    .html_content h1 {
        font-size: 36px;
    }
}

.deals_v1 {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    min-height: 580px;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

@media (min-width: 992px) {
    .deals_v1 .row>div:first-child {
        margin: 0 0 0 33.33%;
    }

    .rtl .deals_v1 .row>div:first-child {
        margin: 0 33.33% 0 0;
    }
}

.deals_v1 .block_content {
    text-align: left;
    padding-left: 40px;
}

.rtl .deals_v1 .block_content {
    text-align: right;
}

.rtl .deals_v1 .block_content {
    padding-right: 40px;
    padding-left: inherit;
}

.deals_v1 .block_content .deals_content {
    display: inline-block;
    text-align: center;
}

.deals_v1 .block_content .btn {
    margin-top: 10px;
}

.deals_v1 .title_sub {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    display: inline-block;
}

.deals_v1 h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 5px;
}

.deals_v2 {
    color: #1b1b1b;
    min-height: 500px;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    text-align: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
}

.deals_v2 .content {
    display: inline-block;
    line-height: 25px;
}

@media (min-width: 992px) {
    .deals_v2 .content {
        padding: 6px 90px 25px;
    }
}

.deals_v2 .title_sub {
    display: inline-block;
    font-size: 16px;
    font-style: italic;
    padding-bottom: 14px;
}

.deals_v2 h1 {
    font-size: 42px;
    text-transform: capitalize;
}

.deals_v3 {
    color: #fff;
    min-height: 440px;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    text-align: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    font-size: 20px;
}

.deals_v3 .content {
    width: 100%;
    display: inline-block;
    line-height: 30px;
}

@media (min-width: 768px) {
    .deals_v3 .content {
        width: 60%;
    }
}

.deals_v3 h1 {
    font-size: 38px;
    text-transform: capitalize;
    color: #fff;
    font-weight: bold;
}

@media (min-width: 768px) {
    .deals_v3 h1 {
        font-size: 60px;
    }
}

.tabs.tabs-info {
    margin: 0;
}

@media (max-width: 767px) {
    .tabs.tabs-info {
        padding: 1.07143rem;
    }
    .user-info a {
        color: #fff;
    }
    div#_mobile_user_info {
        top: 18px;
        position: relative;
        left: -10px;
    }
}

.tabs.tabs-info .nav-tabs {
    border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 991px) {
    .tabs.tabs-info .nav-tabs .nav-item {
        margin-bottom: 10px;
    }
}

.tabs.tabs-info .nav-tabs a {
    font-size: 21px;
    font-weight: 600;
    margin: 0px 22px 0 18px;
    margin: 0 25px 0 0;
    color: #666666;
    float: left;
    text-transform: capitalize;
    position: relative;
    /*  font-family: Crimson; */
}

.rtl .tabs.tabs-info .nav-tabs a {
    margin: 0 0 0 25px;
}

.rtl .tabs.tabs-info .nav-tabs a {
    float: right;
}

.tabs.tabs-info .nav-tabs a:before {
    position: absolute;
    width: 100%;
    height: 3px;
    /* background-color: #8e8e8e; */
    margin-bottom: -1px;
    bottom: 0;
    left: 0;
    content: "";
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
}

.tabs.tabs-info .nav-tabs a.active,
.tabs.tabs-info .nav-tabs a:hover {
    color: #414141;
    font-weight: 200;
    font-size: 19px;
}

.tabs.tabs-info .nav-tabs a.active:before,
.tabs.tabs-info .nav-tabs a:hover:before {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.tabs.tabs-info .tab-content {
    border: 0;
    background: #fff;
    padding: 0;
    color: #999;
    line-height: 25px;
    /*display: none !important;*/
}

.tab-v2 .nav-tabs {
    text-align: center;
    position: relative;
    background: transparent;
    color: #1b1b1b;
    text-transform: uppercase;
    font-family: "Crimson";
    font-size: 14px;
    padding: 0.71429rem 0rem;
    font-weight: bold;
    margin: 0 0 20px;
    border-bottom: 0;
    line-height: 1.42857rem;
}

.tab-v2 .nav-tabs .nav-item {
    display: inline-block;
    float: none;
    display: none;
}

.tab-v2 .nav-tabs .nav-item:before {
    display: inline-block;
    content: "/";
    margin: 0 1.07143rem;
}

.tab-v2 .nav-tabs .nav-item:first-child:before {
    display: none;
}

.tab-v2 .nav-tabs a.active,
.tab-v2 .nav-tabs a.active :hover {
    color: #8e8e8e;
}

#tabs .nav-tabs {
    margin-bottom: 50px;
}

#tabs .nav-tabs>li {
    display: inline-block;
    float: none;
    border: none;
}

#tabs .nav-tabs>li>a {
    border: 1px solid #ddd;
    border-radius: 0;
    font-weight: 800;
    line-height: 1.625;
    margin-right: -1px;
    text-transform: uppercase;
    background: #f9f9f9 none repeat scroll 0 0;
    text-align: center;
    display: block;
    padding: 15px 25px;
    position: relative;
}

#tabs .nav-tabs>li>a.active {
    color: #8e8e8e;
    background: #fff;
}

#tabs .nav-tabs>li.active>a,
#tabs .nav-tabs>li.active>a:hover,
#tabs .nav-tabs>li.active>a:focus {
    color: #8e8e8e;
    background: #fff;
}

#tabs .nav-tabs>li.active {
    background: #fff;
    color: #8e8e8e;
}

.cms_parallax {
    padding: 80px 0;
    margin-top: 30px;
}

.cms_parallax .item {
    margin: 24px 0 0 0;
    text-align: center;
}

.cms_parallax .item h3 {
    color: #ffcf4e;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

.cms_parallax .item p {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.space-0 {
    margin-bottom: 0 !important;
}

.space-0 .block {
    margin-bottom: 0 !important;
}

.space-20 .block {
    margin-bottom: 20px !important;
}

.all-product-link {
    border: 1px solid #ebebeb;
    padding: 6px 15px;
    margin: 10px 0;
}

.bg_iconbox .row-inner {
    background-color: #fff;
}

.feature-box {
    margin: 0 !important;
    padding: 36px 20px;
    background-color: #fff;
}

.feature-box .fbox-image {
    float: left;
    overflow: hidden;
    margin: 0 9px 0 0;
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
}

.rtl .feature-box .fbox-image {
    float: right;
}

.rtl .feature-box .fbox-image {
    margin: 0 0 0 9px;
}

.feature-box .fbox-icon {
    float: left;
    overflow: hidden;
    font-size: 52px;
    color: #8e8e8e;
    margin: 0 15px 0 0;
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
}

.rtl .feature-box .fbox-icon {
    float: right;
}

.rtl .feature-box .fbox-icon {
    margin: 0 0 0 15px;
}

.feature-box .fbox-icon a {
    color: #8e8e8e;
}

.feature-box:hover .fbox-icon,
.feature-box:hover .fbox-image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.feature-box .fbox-body {
    overflow: hidden;
    font-size: 14px;
    color: #666666;
}

.feature-box .fbox-body h4 {
    font-size: 24px;
    color: #1b1b1b;
    text-transform: capitalize;
    margin-bottom: 3px;
    font-weight: 600;
    padding-bottom: 8px;
}

.col-default .title_block {
    background-color: inherit;
    color: inherit;
}

.col-highlighted .title_block {
    background-color: #8e8e8e !important;
    color: #fff !important;
}

.col-success .title_block {
    background-color: #6bc15f !important;
    color: #fff !important;
}

.col-info .title_block {
    background-color: #3cb38d !important;
    color: #fff !important;
}

.col-warning .title_block {
    background-color: #d4595e !important;
    color: #fff !important;
}

.col-danger .title_block {
    background-color: #674941 !important;
    color: #fff !important;
}

.col-primary .title_block {
    background-color: #268bb9 !important;
    color: #fff !important;
}

.row-default .title_block {
    background-color: inherit;
    color: inherit;
}

.row-highlighted .title_block {
    background-color: transparent;
    color: #8e8e8e;
}

.row-success .title_block {
    background-color: transparent;
    color: #6bc15f;
}

.row-info .title_block {
    background-color: transparent;
    color: #3cb38d;
}

.row-warning .title_block {
    background-color: transparent;
    color: #d4595e;
}

.row-danger .title_block {
    background-color: transparent;
    color: #674941;
}

.row-primary .title_block {
    background-color: transparent;
    color: #268bb9;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.price {
    color: #000000;
    /*font-family: "Crimson";*/
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 25px;
    font-size: 18px;
}

.product-price-and-shipping .price{
    font-weight: 500;
    font-size: 25px;
}

.regular-price {
    color: #999999;
    text-decoration: line-through;
    font-family: "Crimson";
    font-weight: 400;
    font-size: 0.92857rem;
    margin-left: 3px;
    line-height: 25px;
}

.rtl .regular-price {
    margin-right: 3px;
    margin-left: inherit;
}

.product-miniature {
    position: relative;
    background-color: #fff;
    padding: 0;
}

.product-miniature .product-description-short {
    margin-bottom: 1.07143em;
    overflow: hidden;
    display: block;
    max-height: 2.85714rem;
}

.product-miniature .comments_note {
    display: inline-block;
}

.product-miniature .comments_note>* {
    float: left;
}

.rtl .product-miniature .comments_note>* {
    float: right;
}

.product-miniature .comments_note .nb-comments {
    font-size: 11px;
    padding-left: 7px;
    position: relative;
    color: #bebebe;
    line-height: 0.85714rem;
    font-style: italic;
    display: none;
}

.rtl .product-miniature .comments_note .nb-comments {
    padding-right: 7px;
    padding-left: inherit;
}

.product-miniature .comments_note .nb-comments span {
    font-size: 11px;
}

.product-miniature .condition {
    font-size: 0.85714rem;
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 2px;
}

.product-miniature .product-title {
    margin: 0 0 0.57143rem;
    display: block;
    position: relative;
    /*height: 45px;
    margin-top: 15px;*/
}

.product-miniature .product-title a {
    color: #1b1b1b;
    font-size: 1.2rem;
    font-family: "Crimson";
    font-weight: 500;
    line-height: 1.42857rem;
    text-decoration: none;
    display: block;
    /* height: 60px !important; */
    overflow: hidden;
    text-align: left;
}

.product-miniature .product-title a:hover {
    color: #8e8e8e;
}

.product-miniature .variant-links ul {
    display: inline-block;
    margin-top: 10px;
}

.product-miniature .variant-links ul li {
    border: 1px solid #ebebeb;
    float: left;
    margin: 0 2px;
}

.rtl .product-miniature .variant-links ul li {
    float: right;
}

.product-miniature .variant-links ul li a {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: 1px;
}

.product-flags {
    position: absolute;
    left: 0rem;
    right: 0rem;
    top: 0;
}

.product-flags>li {
    color: #fff;
    font-size: 0.71429rem;
    font-family: "Crimson";
    font-weight: 600;
    z-index: 80;
    position: absolute;
    line-height: 43px;
    width: 43px;
    overflow: hidden;
    border: none;
    padding: 0;
    top: 10px !important;
    text-transform: uppercase;
    text-align: center;
}

.product-flags>li.online-only,
.product-flags>li.on-sale {
    background: none;
    left: 10px;
    width: auto;
    color: #8e8e8e;
    text-align: left;
}

.rtl .product-flags>li.online-only,
.rtl .product-flags>li.on-sale {
    right: 10px;
    left: auto;
}

.rtl .product-flags>li.online-only,
.rtl .product-flags>li.on-sale {
    text-align: right;
}

.product-flags>li.on-sale {
    top: 28px !important;
}

.product-flags>li.new {
    background-color: #000;
    border-color: #000;
    right: 0.71429rem;
    color: #fff;
    border-radius: 50px;
    z-index: 1;
    /*background: url("../img/data/bg_productlabel.png") no-repeat center left transparent;*/
}

.rtl .product-flags>li.new {
    left: 0.71429rem;
    right: auto;
}

.product-flags>li.discount-percentage,
.product-flags>li.discount {
    border-color: #404040;
    background-color: #000000;
    right: 0.71429rem;
    border-radius: 50%;
    color: #fff;
    z-index: 2;
    /*background: url("../img/data/bg_productlabel.png") no-repeat center right transparent;*/
    font-size: 13px;
}

.rtl .product-flags>li.discount-percentage,
.rtl .product-flags>li.discount {
    left: 0.71429rem;
    right: auto;
}

.product-flags>li.discount {
    display: none !important;
}

.gallery-carousel {
    position: relative;
}

.products-block .wrap_thumbnail {
    margin: 0;
    position: relative;
}

.products-block .wrap_thumbnail .carousel-controls {
    display: none !important;
}

.products-block .wrap_thumbnail .carousel-controls .carousel-control {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    top: 50%;
    margin-top: -0.5rem;
    font-size: 0.85714rem;
}

.products-block .wrap_thumbnail .carousel-controls .carousel-control.left {
    left: 0;
}

.products-block .wrap_thumbnail .carousel-controls .carousel-control.right {
    right: 0;
}

.products-block .thumbs_list_frame {
    position: relative;
    margin: 10px 0 5px;
}

.products-block .thumbs_list_frame .item {
    padding: 0;
}

.products-block .thumbs_list_frame .item a {
    padding: 1px;
    margin: 1px 2px;
    border: 1px solid #ebebeb;
    display: block;
}

.products-block .thumbs_list_frame .item a:hover,
.products-block .thumbs_list_frame .item a.shown {
    border-color: #f44336;
}

.products-block .left-block {
    position: relative;
    overflow: hidden;
}

.products-block.grid .product-availability {
    display: none;
}

.products-block.grid .product-miniature,
.products-block.owl-carousel .product-miniature {
    overflow: hidden;
    display: block;
}

.products-block.grid .product-miniature .variant-links,
.products-block.grid .product-miniature .product-description-short,
.products-block.grid .product-miniature .product-availability,
.products-block.owl-carousel .product-miniature .variant-links,
.products-block.owl-carousel .product-miniature .product-description-short,
.products-block.owl-carousel .product-miniature .product-availability {
    display: none;
}

.products-block.grid .product-miniature .left-block,
.products-block.owl-carousel .product-miniature .left-block {
    border: 1px solid #ebebeb;
	padding: 2px;
}

.products-block.grid .product-miniature .right-block,
.products-block.owl-carousel .product-miniature .right-block {
    position: relative;
    text-align: center;
    padding: 15px 10px;
}

.products-block.grid .product-miniature .right-block{
    text-align: left !important;
}

.products-block.grid .product-miniature .right-block .product-price-and-shipping,
.products-block.owl-carousel .product-miniature .right-block .product-price-and-shipping {
    padding-top: 6px;
}

.style1 .product-miniature .left-block .quick-view {
    bottom: 0;
    height: 40px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}

.style1 .product-miniature .left-block .quick-view .quick-view-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #1b1b1b;
    border-radius: 3px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    display: inline-block;
    line-height: 40px;
    z-index: 9;
    position: relative;
}

.style1 .product-miniature .left-block .quick-view .quick-view-btn:hover {
    color: #fff;
    background-color: #8e8e8e;
}

.style1 .product-miniature .right-block .wrap-hover {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    position: relative;
}

.style1 .product-miniature .right-block .action-btn .wishlist,
.style1 .product-miniature .right-block .action-btn .compare {
    display: inline-block;
    padding: 0;
    vertical-align: middle;
    height: 40px;
    overflow: hidden;
    -webkit-transition: 0.4s all ease 0s;
    -o-transition: 0.4s all ease 0s;
    transition: 0.4s all ease 0s;
}

@media (min-width: 1176px) {

    .style1 .product-miniature .right-block .action-btn .wishlist,
    .style1 .product-miniature .right-block .action-btn .compare {
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        margin-bottom: -15%;
        width: 18%;
    }
}

.style1 .product-miniature .right-block .action-btn .wishlist a,
.style1 .product-miniature .right-block .action-btn .compare a {
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #ebebeb;
    color: #1b1b1b;
    display: inline-block;
    line-height: 40px;
    color: #666;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.style1 .product-miniature .right-block .action-btn .wishlist a:hover,
.style1 .product-miniature .right-block .action-btn .compare a:hover {
    color: #fff;
    background-color: #8e8e8e;
    border-color: transparent !important;
}

.style1 .product-miniature .right-block .action-btn .wishlist a span span,
.style1 .product-miniature .right-block .action-btn .compare a span span {
    display: none;
}

.style1 .product-miniature .right-block .action-btn .cart {
    display: inline-block;
    margin: 0 1px;
}

@media (min-width: 1176px) {
    .style1 .product-miniature .right-block .action-btn .cart {
        width: 60%;
    }
}

.style1 .product-miniature .right-block .action-btn .cart .btn {
    border: 1px solid #000;
    background: #000;
    border-radius: 2px;
    display: inline-block;
    padding: 0;
    /* background-color: transparent; */
    font-size: 12px;
    color: #ffffff;
    text-transform: none;
    font-weight: 500;
    height: 34px;
    line-height: 34px;
    width: 80%;
    font-family: "Source", sans-serif;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 1176px) {
    .style1 .product-miniature .right-block .action-btn .cart .btn {
        min-width: 115px;
    }
}

.style1 .product-miniature .right-block .action-btn .cart .btn:hover {
    color: #000 !important;
    background-color: #fff;
    border: 1 solid #000;
}

.style1 .product-miniature .right-block .action-btn .cart .btn:hover .leo-bt-cart-content i {
    border-color: transparent;
    background-color: #d83a4b;
}

.style1 .product-miniature .right-block .action-btn .cart .btn .leo-bt-cart-content i {
    border-right: 1px solid #ebebeb;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    float: left;
    text-align: center;
    display: none;
}

.rtl .style1 .product-miniature .right-block .action-btn .cart .btn .leo-bt-cart-content i {
    border-left: 1px solid #ebebeb;
    border-right: 0;
}

.rtl .style1 .product-miniature .right-block .action-btn .cart .btn .leo-bt-cart-content i {
    float: right;
}

@media (max-width: 1176px) {
    .style1 .product-miniature .right-block .action-btn .cart .btn .leo-bt-cart-content span {
        display: block;
        width: 170px;
    }
}

.style1 .product-miniature:hover .left-block .quick-view .quick-view-btn {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.style1 .product-miniature:hover .right-block .wrap-hover .action-btn .wishlist,
.style1 .product-miniature:hover .right-block .wrap-hover .action-btn .compare {
    margin-bottom: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.style2 .product-miniature .right-block .wrap-hover {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0;
}

.style2 .product-miniature .right-block .action-btn {
    position: absolute;
    top: 0;
    z-index: 9;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    width: 100%;
    left: 0;
    background-color: rgba(52, 16, 6, 0.7);
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
}

.style2 .product-miniature .right-block .action-btn>div {
    display: inline-block;
    float: left;
    padding: 0;
    width: 25%;
    vertical-align: middle;
    -webkit-transition: 0.4s all ease 0s;
    -o-transition: 0.4s all ease 0s;
    transition: 0.4s all ease 0s;
}

.rtl .style2 .product-miniature .right-block .action-btn>div {
    float: right;
}

.style2 .product-miniature .right-block .action-btn>div a,
.style2 .product-miniature .right-block .action-btn>div .btn {
    background: transparent;
    border: none;
    color: #ebebeb;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    padding: 0;
    display: inline-block;
}

.style2 .product-miniature .right-block .action-btn>div a:hover,
.style2 .product-miniature .right-block .action-btn>div .btn:hover {
    color: #fff;
    background-color: #8e8e8e;
}

.style2 .product-miniature .right-block .action-btn>div.cart .leo-bt-cart-content span {
    display: none;
}

.style2 .product-miniature .right-block .action-btn .wishlist a span span,
.style2 .product-miniature .right-block .action-btn .compare a span span {
    display: none;
}

.style2 .product-miniature:hover .right-block .action-btn {
    top: -30%;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.list2 .product-miniature {
    margin-bottom: 40px;
}

.list2 .product-miniature .left-block img {
    border: 1px solid #ebebeb;
}

.list2 .product-miniature .right-block .product-description-short {
    color: #999;
    font-size: 12px;
    margin: 10px 0 0;
}

.list2 .product-miniature .right-block .variant-links {
    display: none;
}

.list2 .product-miniature .right-block .wrap-hover {
    padding: 10px 0 0;
    text-align: left;
}

.rtl .list2 .product-miniature .right-block .wrap-hover {
    text-align: right;
}

@media (min-width: 992px) {
    .list2 .product-miniature .right-block .wrap-hover .leo-bt-cart-content {
        padding: 0 10px;
    }
}

.list2 .product-miniature .right-block .wrap-hover .action-btn .cart {
    width: auto;
}

.products-block.list1 .product-miniature {
    padding-bottom: 15px;
}

.products-block.list1 .product-miniature .product-title a {
    font-size: 16px;
}

.products-block.list1 .product-miniature .price {
    font-size: 18px;
}

.products-block.list1 .product-miniature .left-block {
    padding: 0 !important;
    border: 1px solid #ebebeb;
}

.products-block.list1 .product-miniature .right-block {
    text-align: left;
    padding: 10px 0 0 15px;
}

.rtl .products-block.list1 .product-miniature .right-block {
    text-align: right;
}

.rtl .products-block.list1 .product-miniature .right-block {
    padding: 10px 15px 0 0;
}

.sidebar .list1 .product-miniature {
    padding: 10px 0;
}

.sidebar .list1 .product-miniature .product-title a {
    height: auto;
    font-size: 15px;
    text-align: left;
}

.sidebar .list1 .product-miniature .price {
    font-size: 18px;
}

.sidebar .list1 .product-miniature .left-block {
    border: 1px solid #ebebeb;
}

.sidebar .list1 .product-miniature .product-description-short {
    display: none;
}

.parallax {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.product-miniature.swap {
    /*swap image*/
}

.product-miniature.swap .hover-image {
    display: inline-block;
    left: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    -webkit-transition: 0.4s all ease-out 0s;
    -o-transition: 0.4s all ease-out 0s;
    transition: 0.4s all ease-out 0s;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    z-index: 1;
    transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
}

@media (min-width: 768px) {
    .product-miniature.swap:hover .hover-image {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 576px) {
    .effect-v1 .image-item {
        position: relative;
    }

    .effect-v1 .image-item a {
        z-index: 9;
    }

    .effect-v1 .image-item a img {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

    .effect-v1 .image-item a:before {
        content: "";
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        bottom: 25px;
        top: 25px;
        left: 25px;
        right: 25px;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        -o-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: 0 0 0;
        -moz-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    }

    .effect-v1 .image-item a:after {
        content: "";
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        bottom: 25px;
        top: 25px;
        left: 25px;
        right: 25px;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: 100% 0 0;
        -moz-transform-origin: 100% 0 0;
        -ms-transform-origin: 100% 0 0;
        transform-origin: 100% 0 0;
        -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    }

    .effect-v1 .image-item:hover a:before,
    .effect-v1 .image-item:hover a:after {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .effect-v2 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v2 .img-animation:before {
        background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
        content: "";
        display: inline-block;
        height: 559px;
        position: absolute;
        right: 755px;
        top: 0;
        -webkit-transform: skew(-45deg);
        -moz-transform: skew(-45deg);
        -ms-transform: skew(-45deg);
        -o-transform: skew(-45deg);
        transform: skew(-45deg);
        -webkit-transition: all 0.6s ease-in-out 0s;
        -o-transition: all 0.6s ease-in-out 0s;
        transition: all 0.6s ease-in-out 0s;
        width: 600px;
    }

    .effect-v2 .img-animation:hover:before {
        right: -755px;
    }

    .effect-v3 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v3 .img-animation img {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
    }

    .effect-v3 .img-animation:before,
    .effect-v3 .img-animation:after {
        content: "";
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        -webkit-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
        z-index: 1;
    }

    .effect-v3 .img-animation:before {
        border-bottom: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        bottom: 30px;
        left: 15px;
        right: 15px;
        top: 30px;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    .effect-v3 .img-animation:after {
        border-left: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
        left: 30px;
        right: 30px;
        bottom: 15px;
        top: 15px;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        -o-transform: scale(0, 1);
        transform: scale(0, 1);
    }

    .effect-v3 .img-animation:hover:before,
    .effect-v3 .img-animation:hover:after {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .effect-v3 .img-animation:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    .effect-v4 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v4 .img-animation:before {
        border: 1px solid #ffffff;
        bottom: 30px;
        content: "";
        left: 30px;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        right: 30px;
        top: 30px;
        -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        z-index: 1;
    }

    .effect-v4 .img-animation img {
        -webkit-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
    }

    .effect-v4 .img-animation .banner-title {
        -webkit-transition: transform 0.35s ease 0s;
        -o-transition: transform 0.35s ease 0s;
        transition: transform 0.35s ease 0s;
    }

    .effect-v4 .img-animation:hover:before {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }

    .effect-v4 .img-animation:hover img {
        -webkit-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
    }

    .effect-v5 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v5 .img-animation:before {
        border: 1px solid #ffffff;
        bottom: 10px;
        content: "";
        left: 10px;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 10px;
        -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        z-index: 1;
    }

    .effect-v5 .img-animation:after {
        bottom: 10px;
        content: "";
        left: 10px;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        position: absolute;
        right: 10px;
        top: 10px;
        -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        z-index: 1;
    }

    .effect-v5 .img-animation img {
        -webkit-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
    }

    .effect-v5 .img-animation:hover:before {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }

    .effect-v6 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v6 .img-animation img {
        -webkit-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
    }

    .effect-v7 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v7 .img-animation:before {
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
        -o-transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
        transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
        z-index: 1;
        border: 150px double rgba(0, 0, 0, 0.1);
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        visibility: visible;
    }

    .effect-v7 .img-animation:hover:before {
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        border: 0 double rgba(255, 255, 255, 0.7);
        visibility: hidden;
    }

    .effect-v8 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v8 .img-animation:before {
        border-bottom: 50px solid rgba(255, 255, 255, 0.4);
        border-top: 50px solid rgba(255, 255, 255, 0.4);
        content: "";
        height: 100%;
        left: 0;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        -ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        -webkit-transition: all 0.35s ease-in-out 0s;
        -o-transition: all 0.35s ease-in-out 0s;
        transition: all 0.35s ease-in-out 0s;
        transform-origin: 50% 50% 0;
        width: 100%;
    }

    .effect-v8 .img-animation:hover:before {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
        -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
        -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
        -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
        -ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    }

    .effect-v9 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v9 .img-animation:before {
        border: 50px solid rgba(0, 0, 0, 0.07);
        border-radius: 50%;
        box-sizing: border-box;
        cursor: pointer;
        display: inline-block;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        position: absolute;
        top: 0;
        content: "";
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        width: 100px;
        height: 100px;
        -webkit-transition: all 0.7s ease-in-out 0s;
        -o-transition: all 0.7s ease-in-out 0s;
        transition: all 0.7s ease-in-out 0s;
        visibility: visible;
        z-index: 1;
    }

    .effect-v9 .img-animation:hover:before {
        border-width: 0;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        visibility: hidden;
    }

    .effect-v10 .img-animation {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .effect-v10 .img-animation:before {
        background-color: rgba(255, 255, 255, 0.2);
        display: block;
        width: 100%;
        height: 100%;
        left: -100%;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        content: "";
        z-index: 1;
    }

    .effect-v10 .img-animation:hover:before {
        left: 0;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }
}

/**
 * HEADER CSS STYLES
 */
/* default */
@media (min-width: 992px) {
    #header.headerFixed {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 99;
    }
}

#header .social-follow {
    position: fixed;
    right: 0;
    top: 22%;
    width: 65px;
}

.rtl #header .social-follow {
    left: 0;
    right: auto;
}

#header .social-follow .block-social li a:hover {
    width: 65px;
}

@media (max-width: 991px) {
    #header .social-follow {
        display: none;
    }
}

#header .left-nav>div {
    display: inline-block;
    padding: 0 10px 0 0;
    line-height: 1;
    border-right: 1px solid rgba(28, 40, 39, 0.24);
    margin: 0 10px 0 0;
}

.rtl #header .left-nav>div {
    padding: 0 0 0 10px;
}

.rtl #header .left-nav>div {
    border-left: 1px solid rgba(28, 40, 39, 0.24);
    border-right: 0;
}

.rtl #header .left-nav>div {
    margin: 0 0 0 10px;
}

#header .left-nav>div:last-child {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

#header .left-nav>div .dropdown-item {
    padding-bottom: 10px;
}

#header .left-nav>div .dropdown-item img {
    margin-right: 10px;
}

.rtl #header .left-nav>div .dropdown-item img {
    margin-left: 10px;
    margin-right: inherit;
}

#header .mini-menu {
    padding: 0;
}

.header-nav .dropdown-menu img {
    margin: 0 8px 0 0;
}

.rtl .header-nav .dropdown-menu img {
    margin: 0 0 0 8px;
}

.header-nav .left-nav>div,
.header-nav .right-nav>div,
.header-nav .bottom>div {
    display: inline-block;
}

.header-nav .left-nav .container,
.header-nav .right-nav .container,
.header-nav .bottom .container {
    margin: 0;
}

@media (max-width: 575px) {

    .header-nav .left-nav .container,
    .header-nav .right-nav .container,
    .header-nav .bottom .container {
        display: block;
    }
}

.header-nav .left-nav .container>div,
.header-nav .right-nav .container>div,
.header-nav .bottom .container>div {
    display: inline-block;
}

.header-nav .expand-more {
    color: #fff;
    text-transform: uppercase;
}

.header-nav .expand-more:hover {
    color: #8e8e8e;
}

.header-default {
    background-color: #341006;
    /*Serach*/
}

.header-default.mini-navbar .header-nav,
.header-default.mini-navbar .header-top {
    display: none;
}

.header-default .right-nav>div {
    display: inline-block;
}

.header-default .left-nav .expand-more {
    color: #fff;
    text-transform: uppercase;
}

.header-default .left-nav .expand-more:hover {
    color: #8e8e8e;
}

@media (max-width: 480px) {
    .header-default .top-logo {
        float: left;
    }

    .rtl .header-default .top-logo {
        float: right;
    }
}

.header-default .logo-theme a {
    background-image: url(../img/data/logo.png);
}

.header-default .header-top {
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
}

.header-default .header-top .right-nav {
    text-align: right;
    position: static;
}

.rtl .header-default .header-top .right-nav {
    text-align: left;
}

.header-default .header-top .right-nav>div {
    display: inline-block;
    padding-left: 10px;
    margin-left: 10px;
}

.rtl .header-default .header-top .right-nav>div {
    padding-right: 10px;
    padding-left: inherit;
}

.rtl .header-default .header-top .right-nav>div {
    margin-right: 10px;
    margin-left: inherit;
}

.header-default .header-top .wrapper {
    padding: 15px 0;
}

.header-default .header-top .wrapper-inner {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    position: relative;
}

.header-default .header-bottom {
    color: #fff;
}

.header-default .ps_megamenu {
    background: transparent;
}

.header-default .ps-desktop-megamenu {
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(235, 235, 235, 0.07);
}

.header-default .ps-desktop-megamenu .megamenu>li {
    margin: 0 !important;
    float: none !important;
    display: inline-block;
}

.header-default .ps-desktop-megamenu .megamenu>li>a {
    position: relative;
    padding: 0.92857rem 1.78571rem;
}

@media (min-width: 992px) and (max-width: 1175px) {
    .header-default .ps-desktop-megamenu .megamenu>li>a {
        padding: 0.92857rem 1.28571rem;
    }
}

.header-default .blockcart .header {
    display: inline-block;
    padding: 0 1.07143rem;
    color: #fff;
    line-height: 2.85714rem;
}

.header-default .blockcart .header a {
    color: #fff;
}

.header-default .header-nav {
    background-color: #260903;
    padding: 15px 0;
    color: #fff;
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
}

@media (max-width: 991px) {
    .header-default .header-nav .header-nav-inner {
        border-bottom: 1px solid #ebebeb;
    }
}

.header-default .header-nav .nav-left {
    position: static;
}

.header-default .header-nav .canvas-menu {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 9px 0;
    color: #fff;
}

.header-default .header-nav .canvas-menu:hover {
    color: #8e8e8e;
}

.header-default .header-nav .blockcart .shopping-cart-group {
    margin-left: 5px;
    padding: 0;
    border: 0;
}

.rtl .header-default .header-nav .blockcart .shopping-cart-group {
    margin-right: 5px;
    margin-left: inherit;
}

.header-default .header-nav .blockcart .shopping-cart-group span {
    display: none;
}

.header-default .open>.dropdown-menu {
    z-index: 9999;
}

.header2 {
    background-color: #080808;
    /*Serach*/
}

.header2 .logo-theme a {
    background-image: url(../img/data/logo.png);
}

.header2 .header-top {
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
    background: #fff;
}

.header2 .header-top .right-nav {
    text-align: right;
    position: static;
    /* display: flex; */
    padding: 0 20px 0 0;
}

.rtl .header2 .header-top .right-nav {
    text-align: left;
}

.header2 .header-top .right-nav>div {
    display: inline-block;
    padding: 9px 6px 0 0;
}

#_desktop_language_selector{
    display:none !important;
}

.rtl .header2 .header-top .right-nav>div {
    padding: 0 0 0 4px;
}

.header2 .header-top .right-nav>div .expand-more {
    text-transform: uppercase;
    color: #000;
    font-family: "Source", sans-serif;
}

.header2 .header-top .right-nav>div:last-child {
    padding: 0 !important;
}

.header2 .header-top .right-nav>div .dropdown-item img {
    margin-right: 10px;
    width: 23px;
    height: 23px;
}

.rtl .header2 .header-top .right-nav>div .dropdown-item img {
    margin-left: 10px;
    margin-right: inherit;
}

.header2 .header-top .wrapper {
    padding: 0 0 15px 0;
}

.header2 .header-top .wrapper-inner {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    position: relative;
}

.header2 .header-bottom {
    color: #fff;
}

.header2 .ps_megamenu {
    background: transparent;
    position: static;
}

.header2 .ps-desktop-megamenu {
    text-align: center;
}

.header2 .ps-desktop-megamenu .megamenu>li {
    margin: 0 !important;
    float: none;
    display: inline-block;
}

.header2 .ps-desktop-megamenu .megamenu>li>a {
    position: relative;
    padding: 0.92857rem 0.40857rem;
}

@media (min-width: 992px) and (max-width: 1175px) {
    .header2 .ps-desktop-megamenu .megamenu>li>a {
        padding: 0.92857rem 1.28571rem;
    }
}

.header2 .blockcart .header {
    display: inline-block;
    padding: 0;
    color: #fff;
    line-height: 2.85714rem;
}

.header2 .blockcart .header a {
    color: #fff;
}

@media (max-width: 991px) {
    .header2 .blockcart .header {
        padding: 8px 10px;
    }
}

.header2 .header-nav {
    background-color: #000;
    padding: 15px;
    color: #fff;
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
}

@media (max-width: 991px) {
    .header2 .header-nav .header-nav-inner {
        border-bottom: 1px solid #ebebeb;
    }
}

.header2 .header-nav .nav-left {
    position: static;
}

.header2 .header-nav .canvas-menu {
    background: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    /*margin: 20px 0;*/
    margin: 20px 30px 20px -30px;
    background-image: url(menu.png);
    background-size: 28px 25px;
}

.header2 .header-nav .canvas-menu:hover {
    color: #8e8e8e;
}

.header2 .header-nav .blockcart .shopping-cart-group {
    margin-left: 5px;
    padding: 0;
    border: 0;
}

.rtl .header2 .header-nav .blockcart .shopping-cart-group {
    margin-right: 5px;
    margin-left: inherit;
}

.header2 .header-nav .blockcart .shopping-cart-group span {
    display: none;
}

.header2 .open>.dropdown-menu {
    z-index: 9999;
}

.header3 {
    background-color: #1a1f3f;
    /*Serach*/
}

.header3 .logo-theme a {
    background-image: url(../img/data/logo.png);
}

.header3 .header-top {
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
}

.header3 .header-top .left-nav .expand-more {
    color: #fff;
    text-transform: uppercase;
}

.header3 .header-top .left-nav .expand-more:hover {
    color: #8e8e8e;
}

.header3 .header-top .right-nav {
    text-align: right;
    position: static;
}

.rtl .header3 .header-top .right-nav {
    text-align: left;
}

.header3 .header-top .right-nav>div {
    display: inline-block;
    padding: 0 0 0 10px;
    margin: 0 0 0 10px;
}

.rtl .header3 .header-top .right-nav>div {
    padding: 0 10px 0 0;
}

.rtl .header3 .header-top .right-nav>div {
    margin: 0 10px 0 0;
}

.header3 .header-top .wrapper {
    padding: 5px 0;
}

.header3 .header-top .wrapper-inner {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    position: relative;
}

.header3 .header-bottom {
    color: #fff;
}

.header3 .blockcart .header {
    display: inline-block;
    padding: 0 1.07143rem;
    color: #fff;
    line-height: 2.85714rem;
}

@media (max-width: 991px) {
    .header3 .blockcart .header {
        line-height: 20px;
        padding: 0 3px;
    }
}

.header3 .blockcart .header a {
    color: #c3c3c3;
}

.header3 .blockcart .header .cart-products-count {
    font-size: 13px;
}

@media (max-width: 991px) {
    .header3 .blockcart .header .cart-products-count {
        background-size: 21% auto !important;
        padding: 0 0 0 20px;
    }

    .rtl .header3 .blockcart .header .cart-products-count {
        padding: 0 20px 0 0;
    }
}

.header3 #search_widget .search-focus {
    padding-top: 0 !important;
}

.header3 .header-nav {
    padding: 15px 0;
    color: #fff;
    -webkit-transition: 0.9s all ease-out 0s;
    -o-transition: 0.9s all ease-out 0s;
    transition: 0.9s all ease-out 0s;
}

@media (max-width: 991px) {
    .header3 .header-nav .header-nav-inner {
        border-bottom: 1px solid #ebebeb;
    }
}

.header3 .header-nav .nav-left {
    position: static;
}

.header3 .header-nav .canvas-menu {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 9px 0;
    color: #fff;
}

.header3 .header-nav .canvas-menu:hover {
    color: #8e8e8e;
}

.header3 .header-nav .blockcart .shopping-cart-group {
    margin-left: 5px;
    padding: 0;
    border: 0;
}

.rtl .header3 .header-nav .blockcart .shopping-cart-group {
    margin-right: 5px;
    margin-left: inherit;
}

.header3 .header-nav .blockcart .shopping-cart-group span {
    display: none;
}

.header3 .open>.dropdown-menu {
    z-index: 9999;
}

.header-mobile .text-label {
    display: none;
}

.header-mobile>div {
    display: inline-block;
    width: 100%;
}

.header-mobile>div.top {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-mobile>div.top>div {
    margin: 9px 10px;
}

.header-mobile>div.top .container>div {
    margin: 9px 10px;
}

.btn-black {
    background-color: #666666;
    color: #fff;
}

.btn-black:hover {
    background-color: #8e8e8e;
    color: #fff;
}

.btn-outline-black {
    border: 1px solid #666666;
    color: #666666;
}

.btn-outline-black:hover {
    border-color: #8e8e8e;
    color: #8e8e8e;
}

.btn-default {
    padding: 0 15px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    min-width: 136px;
    height: 42px;
    line-height: 43px;
	margin-bottom:0px;
}

.rtl .material-icons.icon-right,
.rtl .fa.icon-right,
.rtl .fa.icon-left,
.rtl .material-icons.icon-left {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

sup {
    color: red;
}

.ps-alert-error {
    margin-bottom: 0;
}

.ps-alert-error .item,
.ps-alert-success .item {
    align-items: center;
    border: 2px #d9534f solid;
    display: flex;
    background-color: #d9534f;
    margin-bottom: 1rem;
}

.ps-alert-error .item i,
.ps-alert-success .item i {
    border: 15px #d9534f solid;
    display: flex;
}

.ps-alert-error .item i svg,
.ps-alert-success .item i svg {
    background-color: #d9534f;
    width: 24px;
    height: 24px;
}

.ps-alert-error .item p,
.ps-alert-success .item p {
    background-color: #fff;
    margin: 0;
    padding: 18px 20px 18px 20px;
    width: 100%;
}

.ps-alert-success {
    padding: 0.28571rem 0.28571rem 3.14286rem 0.28571rem;
}

.ps-alert-success .item {
    border-color: #000;
    background-color: #000;
}

.ps-alert-success .item i {
    border-color: #000;
}

.ps-alert-success .item i svg {
    background-color: #000;
}

.renew-password {
    margin-left: 10px;
}

.renew-password .email {
    padding-bottom: 30px;
	text-align: center;
	font-size: 19px;
}

.renew-password [type=submit] {
    margin-left: 14px;
}

.sitemap-title {
    text-transform: capitalize;
}

.sitemap {
    margin-top: 1.07143rem;
}

.sitemap h2 {
    color: #414141;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #acaaa6;
    margin-left: -15px;
    width: 100%;
    height: 35px;
}

.rtl .sitemap h2 {
    margin-right: -15px;
    margin-left: inherit;
}

.sitemap ul {
    margin-left: -15px;
    margin-top: 20px;
}

.rtl .sitemap ul {
    margin-right: -15px;
    margin-left: inherit;
}

.sitemap ul.nested {
    margin-left: 20px;
}

.rtl .sitemap ul.nested {
    margin-right: 20px;
    margin-left: inherit;
}

.sitemap ul.nested li a:before {
    display: inline-block;
    content: "\f101 ";
    font-family: "FontAwesome";
    font-size: 14px;
}

.sitemap ul li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (max-width: 575px) {
    .sitemap {
        margin-top: 0;
    }
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.dropdown {
    color: #acaaa6;
}

.dropdown:hover .expand-more {
    color: #8e8e8e;
}

.dropdown .expand-more {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dropdown .active {
    max-height: 200px;
    overflow-y: hidden;
    visibility: visible;
}

.dropdown select {
    -moz-appearance: none;
    border: 0 none;
    outline: 0 none;
    color: #414141;
    background: white;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: none;
    text-decoration: none;
    color: #8e8e8e;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.header-top .search-widget form input[type="text"] {
    min-width: inherit;
    width: 100%;
}

#pagenotfound .page-content #search_widget {
    width: 100%;
}

/*** Responsive part ***/
#search_widget .search-focus {
    color: #000;
    cursor: pointer;
}

@media (max-width: 1175px) {
    #search_widget .search-focus {
        padding-top: 13px;
    }
}

#search_widget .search-widget {
    position: absolute;
    left: 0;
    z-index: 999;
    width: 100%;
    margin: 0;
    height: 0;
    top: -120px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    padding: 1.07143rem;
    background: #fff;
    visibility: hidden;
    height: 6.21429rem;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 0 3px #ccc;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

#search_widget .search-widget form {
    position: relative;
    display: block;
    height: 100%;
    border: 1px solid #ebebeb;
    padding: 0 1.42857rem;
    overflow: hidden;
}

#search_widget .search-widget.open {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    top: 100%;
    visibility: visible;
}

#search_widget .search-widget.open .ps_search {
    height: 5rem;
    line-height: 3.92857rem;
    font-size: 1.64286rem;
    color: #1b1b1b;
    width: 100%;
    border: 0;
    padding: 0;
    margin-top: -5px;
}

#search_widget .search-widget.open .ps_search:focus {
    border: none !important;
    outline: none !important;
}

#search_widget .search-widget .button-close {
    cursor: pointer;
    position: absolute;
    right: 0;
    line-height: 3.92857rem;
    width: 2.85714rem;
    height: 3.92857rem;
    text-align: center;
    top: 0;
    color: #000;
    border-left: 1px solid #ebebeb;
}

.rtl #search_widget .search-widget .button-close {
    left: 0;
    right: auto;
}

.rtl #search_widget .search-widget .button-close {
    border-right: 1px solid #ebebeb;
    border-left: 0;
}

#search_widget .search-widget .btnsearch {
    position: absolute;
    right: 3.57143rem;
    top: 0;
    border: 0;
    width: 2.14286rem;
    height: 3.92857rem;
    cursor: pointer;
    background-color: transparent;
}

.rtl #search_widget .search-widget .btnsearch {
    left: 3.57143rem;
    right: auto;
}

#search_widget .search-widget .btnsearch .material-icons {
    font-size: 24px;
}

#search_widget .search-widget .btnsearch:hover {
    color: #8e8e8e;
}

#search_widget.open {
    border: 1px solid #ebebeb;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
/*Breadcrumb*/
.ps_breadcumb {
    border-bottom: 1px solid #dedede;
    /*margin-bottom: 15px;*/
    text-align: center;
    /*background: url(../img/data/bg_breadcumb.jpg) no-repeat center center transparent;*/
    background: #efefef;
    display: block;
    /*min-height: 120px;*/
}

.breadcrumb {
    background: transparent;
    padding: 20px 0;
    font-weight: 300;
    /* min-height: 88px; */
}

.breadcrumb[data-depth="1"] {
    margin-top: 0;
}

.breadcrumb .breadcrumb-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 7px;
    float: left;
    display: none;
}

.breadcrumb ol {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: left;
}

.breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    color: #a5a5a5;
}

.breadcrumb li::after {
    content: "/";
    color: #868686;;
    margin: 0.35714em;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    display: inline-block;
    vertical-align: middle;
}

.rtl .breadcrumb li::after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #a5a5a5;
}

.breadcrumb li a {
    color: #7b7b7b;
}

.breadcrumb li a:hover {
    color: #8e8e8e;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.top-menu[data-depth="1"] {
    margin: 0.71429rem;
}

.top-menu a:not([data-depth="0"]) {
    display: block;
    padding: 0.71429rem;
    color: #acaaa6;
    font-weight: 400;
}

.top-menu a.dropdown-submenu {
    color: #414141;
    text-transform: uppercase;
    font-weight: 600;
}

.top-menu a[data-depth="0"] {
    font-weight: 600;
    padding: 0.21429rem 0.71429rem 0.42857rem;
}

#header .top-menu a[data-depth="0"]:hover {
    color: #8e8e8e;
    text-decoration: none;
}

.top-menu a[data-depth="1"],
.top-menu a[data-depth="2"] {
    padding: 0 0.71429rem 0.71429rem 0;
}

.top-menu .collapse {
    display: inherit;
}

.top-menu .sub-menu {
    box-shadow: 2px 1px 11px 2px rgba(0, 0, 0, 0.1);
    border: none;
    margin-left: 1.07143rem;
    width: calc(100% - 30px);
    min-width: calc(100% - 30px);
    z-index: 18;
    display: none;
}

.top-menu .sub-menu.collapse {
    display: none;
}

.top-menu .sub-menu ul[data-depth="1"]>li {
    float: left;
    margin: 0 1.42857rem;
}

.top-menu .sub-menu a:hover {
    color: #8e8e8e;
}

.top-menu .popover {
    max-width: inherit;
}

.popover.bs-tether-element-attached-top {
    margin-top: 0;
}

#mobile_top_menu_wrapper {
    margin-top: 0.71429rem;
    padding-bottom: 0.71429rem;
    background: white;
}

#mobile_top_menu_wrapper #top-menu {
    margin-bottom: 0.71429rem;
}

#mobile_top_menu_wrapper .top-menu {
    color: #414141;
}

#mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .add {
    display: none;
}

#mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .remove {
    display: block;
}

#mobile_top_menu_wrapper .top-menu .collapse-icons .remove {
    display: none;
}

#mobile_top_menu_wrapper .top-menu .navbar-toggler {
    display: inline-block;
    padding: 0;
}

#mobile_top_menu_wrapper .top-menu a[data-depth="0"] {
    padding: 0.71429rem;
    border-bottom: 1px solid #f6f6f6;
}

#mobile_top_menu_wrapper .top-menu .collapse {
    display: none;
}

#mobile_top_menu_wrapper .top-menu .collapse.in {
    display: block;
}

#mobile_top_menu_wrapper .top-menu .sub-menu {
    box-shadow: none;
    z-index: inherit;
    display: block;
    position: static;
    overflow: hidden;
    margin-left: 0;
    width: 100%;
    min-width: 100%;
    background: #f6f6f6;
}

#mobile_top_menu_wrapper .top-menu .sub-menu.collapse {
    display: none;
}

#mobile_top_menu_wrapper .top-menu .sub-menu.collapse.in {
    display: block;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="0"]>li {
    border-bottom: 1px solid #acaaa6;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"] {
    margin: 0;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li {
    float: none;
    margin: 0;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li a {
    text-transform: none;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul {
    padding: 0;
}

#mobile_top_menu_wrapper .top-menu .sub-menu li>a {
    padding: 0.71429rem;
    border-bottom: 1px solid white;
    font-weight: bold;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="2"] li a {
    padding-left: 1.42857rem;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="3"] li a {
    padding-left: 2.85714rem;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="4"] li a {
    padding-left: 4.28571rem;
}

#mobile_top_menu_wrapper .top-menu .popover {
    border-radius: 0;
}

#mobile_top_menu_wrapper .js-top-menu-bottom a {
    color: #acaaa6;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .language-selector-wrapper {
    padding: 0.71429rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .language-selector-wrapper .language-selector {
    display: inline;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .currency-selector {
    padding: 0.71429rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom #contact-link {
    padding: 0.71429rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .user-info {
    padding: 0 0.71429rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .user-info a {
    padding: 0.71429rem 0;
    display: block;
    width: 100%;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.ps-desktop-megamenu {
    /* level 2 */
}

.ps-desktop-megamenu .megamenu>li {
    float: left;
    margin-right: 1.07143rem;
}

.rtl .ps-desktop-megamenu .megamenu>li {
    float: right;
}

.rtl .ps-desktop-megamenu .megamenu>li {
    margin-left: 1.07143rem;
    margin-right: inherit;
}

.ps-desktop-megamenu .megamenu>li>a {
    position: relative;
    line-height: 1.71429rem;
    padding: 0;
    font-size: 1rem;
    font-family: "Crimson";
    font-weight: 500;
    text-transform: initial;
    color: #000;
    display: block;
    height: 50px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.ps-desktop-megamenu .megamenu>li>a .menu-title {
    display: inline;
    position: relative;
}

.ps-desktop-megamenu .megamenu>li>a .sub-title {
    display: block;
    text-transform: uppercase;
    font-size: 8px;
    position: absolute;
    top: -5px;
    background: #a1e03d;
    padding: 2px 6px;
    text-align: center;
    left: 20px;
    line-height: 10px;
    font-weight: 600;
    border-radius: 10px;
    color: #fff;
}

.rtl .ps-desktop-megamenu .megamenu>li>a .sub-title {
    right: 20px;
    left: auto;
}

.ps-desktop-megamenu .megamenu>li.dropdown>.material-icons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.rtl .ps-desktop-megamenu .megamenu>li.dropdown>.material-icons {
    left: 10px;
    right: auto;
}

@media (min-width: 576px) {
    .ps-desktop-megamenu .megamenu>li.dropdown>a {
        height: 50px;
    }

    .ps-desktop-megamenu .megamenu>li.dropdown>a:after {
        border-color: transparent transparent white;
        border-style: solid;
        border-width: 0 5px 5px;
        bottom: 0;
        content: "";
        height: 0;
        left: 50%;
        margin-left: -5px;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        position: absolute;
        width: 0;
    }

    .ps-desktop-megamenu .megamenu>li.dropdown>a .menu-title:after {
        font-family: "Material Icons";
        content: "\E313";
        display: inline-block;
        vertical-align: middle;
        position: relative;
    }

    .ps-desktop-megamenu .megamenu>li.dropdown>a:hover {
        color: #8e8e8e;
    }

    .ps-desktop-megamenu .megamenu>li.dropdown>a:hover:after {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .ps-desktop-megamenu .megamenu>li.aligned-fullwidth {
        position: static;
    }

    .ps-desktop-megamenu .megamenu>li.aligned-fullwidth>.dropdown-menu {
        width: 100% !important;
    }
}

.ps-desktop-megamenu .megamenu>li.aligned-right>.dropdown-menu {
    right: 0;
    left: auto;
}

.ps-desktop-megamenu .megamenu>li.aligned-left>.dropdown-menu {
    left: 0;
    right: auto;
}

.rtl .ps-desktop-megamenu .megamenu>li.aligned-left>.dropdown-menu {
    right: 0;
    left: auto;
}

.rtl .ps-desktop-megamenu .megamenu>li.aligned-left>.dropdown-menu {
    left: auto;
    right: auto;
}

.ps-desktop-megamenu .megamenu>li.aligned-center .dropdown-menu {
    left: 50%;
}

.rtl .ps-desktop-megamenu .megamenu>li.aligned-center .dropdown-menu {
    right: 50%;
    left: auto;
}

.ps-desktop-megamenu .megamenu>li.hot>a .sub-title {
    background-color: #eb5466;
}

.ps-desktop-megamenu .megamenu>li.hot>a .sub-title:before {
    border-top-color: #eb5466;
    border-left-color: #eb5466;
}

.ps-desktop-megamenu .megamenu>li>.dropdown-menu {
    top: 150%;
    display: block;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
}

.ps-desktop-megamenu .megamenu>li:hover>a,
.ps-desktop-megamenu .megamenu>li:hover>a:focus,
.ps-desktop-megamenu .megamenu>li:hover>a:hover {
    color: #8e8e8e;
}

.ps-desktop-megamenu .megamenu>li:hover>.dropdown-menu {
    top: 100%;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
}

.ps-desktop-megamenu .dropdown-menu {
    top: 100%;
    left: 0;
    margin: 0;
    height: auto;
    min-width: 250px;
    color: #8a8a8a;
    background-color: #fff;
    font-family: "Crimson";
    padding: 10px 20px;
    border: 0;
    text-align: left;
    -webkit-transition: opacity 0.2s linear 0s;
    -o-transition: opacity 0.2s linear 0s;
    transition: opacity 0.2s linear 0s;
    /* level > 3 */
}

.rtl .ps-desktop-megamenu .dropdown-menu {
    text-align: right;
}

.ps-desktop-megamenu .dropdown-menu li a {
    color: #8a8a8a;
    padding: 7px 0;
    display: block;
    font-size: 14px;
}

.ps-desktop-megamenu .dropdown-menu li a:hover {
    background-color: transparent;
    color: #bbbbbb !important;
}

.ps-desktop-megamenu .dropdown-menu li a:hover .caret:before {
    color: #8e8e8e;
}

.ps-desktop-megamenu .dropdown-menu .menubuilder {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: -10px;
    margin-right: -10px;
}

.ps-desktop-megamenu .dropdown-menu .dropdown>.material-icons {
    float: right;
}

.rtl .ps-desktop-megamenu .dropdown-menu .dropdown>.material-icons {
    float: left;
}

.ps-desktop-megamenu .dropdown-menu .dropdown:hover>.dropdown-menu {
    display: block;
    left: 0px;
}

.ps-desktop-megamenu .dropdown-menu .dropdown:hover>a {
    color: #8e8e8e;
    display: block;
}

.ps-desktop-megamenu .dropdown-menu .dropdown-submenu {
    position: relative;
}

.ps-desktop-megamenu .dropdown-menu .dropdown-submenu>a:after {
    font-family: "Material Icons";
    content: "\E315";
    display: inline-block;
    vertical-align: middle;
    float: right;
}

.rtl .ps-desktop-megamenu .dropdown-menu .dropdown-submenu>a:after {
    float: left;
}

.ps-desktop-megamenu .dropdown-menu .dropdown-submenu>.material-icons {
    position: absolute;
    top: 20px;
    right: 10px;
}

.rtl .ps-desktop-megamenu .dropdown-menu .dropdown-submenu>.material-icons {
    left: 10px;
    right: auto;
}

.ps-desktop-megamenu .dropdown-menu .dropdown-submenu>.dropdown-menu {
    display: block;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden;
    left: 150%;
    top: -5px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.rtl .ps-desktop-megamenu .dropdown-menu .dropdown-submenu>.dropdown-menu {
    right: 150%;
    left: auto;
}

.ps-desktop-megamenu .dropdown-menu .dropdown-submenu.open>.dropdown-menu,
.ps-desktop-megamenu .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    left: 100%;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
}

.rtl .ps-desktop-megamenu .dropdown-menu .dropdown-submenu.open>.dropdown-menu,
.rtl .ps-desktop-megamenu .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    right: 100%;
    left: auto;
}

/*** widgets using inside megamenu ***/
.megamenu .container {
    width: 100% !important;
}

.megamenu .widget {
    /* product-list */
}

.megamenu .widget .title_block {
    text-transform: capitalize;
    font-weight: bold;
    font-family: "Crimson";
    font-size: 1.28571rem;
    color: #666666;
    margin: 0;
    padding: 0 0 1.07143rem;
    background-color: transparent;
    text-align: left;
}

.rtl .megamenu .widget .title_block {
    text-align: right;
}

.megamenu .widget .title_block:before,
.megamenu .widget .title_block:after {
    display: none;
}

.megamenu .widget.style1 .grid .owl-item .product-miniature {
    border-bottom: 0;
}

/*estilos generales jhon*/
.no-padding {
    padding: 0;
}

.margin-visitanos {
    margin-top: 50px;
}

/*.ico-dcript img{
    max-width: 35%;
}*/
.ico-dcript p {
    font-weight: 500;
}

.image-item {
    text-align: center;
}

.image-item img {
    width: 100%;
}

.cont-atencion {
    color: #fff;
    padding-bottom: 44px;
}

.language-selector-wrapper {
    padding: 11% 0%;
    width: 135px;
}

div#search_widget {
    padding-top: 3px;
}

/*fin estilos generales jhon*/


@media (max-width: 1175px) {
    .megamenu .widget.style1 .grid .owl-item .product-miniature {
        border: none !important;
    }
}

.megamenu .widget.style1 .grid .owl-item:last-child .product-miniature {
    border: none;
}

.megamenu .widget .widget-products .product-block {
    padding: 10px 0;
}

.megamenu .widget .widget-products .product-block .product-image-container {
    padding: 0;
    border: 0;
}

.megamenu .widget .widget-products .product-block .name {
    margin-top: 0;
}

.megamenu .widget .widget-products .product-block .name a {
    height: auto;
    text-transform: none;
}

.megamenu .widget .widget-products .product-block .product_img_link {
    padding: 0;
}

.megamenu .widget-manufacture {
    margin-bottom: 0;
}

.megamenu .widget-manufacture .block_content {
    padding: 0;
}

.megamenu .widget-manufacture .manu-logo img {
    filter: none;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.megamenu .widget-inner .nav-links li a {
    padding: 5px 0;
}

.megamenu .widget-products .product-block .name a {
    color: #000;
}

.megamenu .widget-products .product-block .name a:hover {
    color: #8e8e8e;
}

.megamenu .widget-subcategories {
    background: transparent !important;
}

.megamenu .widget-subcategories .media .image {
    max-width: 11.42857rem;
}

.megamenu .widget-subcategories .media .list-style a:before {
    content: "\f105";
    display: inline-block;
    font-family: "Material Icons";
    margin: 0 2px;
}

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media (max-width: 991px) {
    .row-offcanvas {
        position: relative;
        -webkit-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .row-offcanvas-left {
        left: 0;
    }

    .rtl .row-offcanvas-left {
        right: 0;
        left: auto;
    }

    .row-offcanvas-right .sidebar-offcanvas {
        right: -430px;
    }

    .rtl .row-offcanvas-right .sidebar-offcanvas {
        left: -430px;
        right: auto;
    }

    .row-offcanvas-left .sidebar-offcanvas {
        left: -990px;
    }

    .rtl .row-offcanvas-left .sidebar-offcanvas {
        right: -430px;
        left: auto;
    }

    .row-offcanvas-left.active .sidebar-offcanvas {
        left: 0;
    }

    .rtl .row-offcanvas-left.active .sidebar-offcanvas {
        right: 0;
        left: auto;
    }

    .row-offcanvas-left.active:before {
        background: rgba(0, 0, 0, 0.3);
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 9;
        display: none;
    }

    .sidebar-offcanvas {
        position: fixed;
        top: 0;
        width: 100%;
        overflow-y: scroll;
        background: #fff;
        height: 100%;
        -webkit-box-shadow: 1px -1px 3px #888888;
        box-shadow: 1px -1px 3px #888888;
        z-index: 9999;
        -webkit-transition: all 0.25s ease-out 0s;
        -o-transition: all 0.25s ease-out 0s;
        transition: all 0.25s ease-out 0s;
    }

    .bottom-offcanvas {
        border-top: 1px solid #ebebeb;
        padding: 10px 0;
    }

    .offcanvas-heading .btn {
        width: 100%;
        background-color: #1f1f1f;
        color: #fff;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
}

/*offcanvas-menu*/
.btn.canvas-menu .material-icons {
    font-size: 2rem;
}

.ps-mobile-megamenu .mini-menu {
    padding: 0;
}

.ps-mobile-megamenu .dropdown-menu {
    position: relative !important;
    box-shadow: none !important;
    border: 0;
    width: 100% !important;
    padding: 0.5rem;
    text-align: left;
}

.rtl .ps-mobile-megamenu .dropdown-menu {
    text-align: right;
}

.ps-mobile-megamenu .click-canavs-menu {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    cursor: pointer;
    color: white;
    background: #000;
    border-radius: 5px;
    font-size: 27px;
    margin-right: 20px; 
}

.rtl .ps-mobile-megamenu .click-canavs-menu {
    left: 10px;
    right: auto;
}

.ps-mobile-megamenu .megamenu>li {
    border-top: 1px solid #e1e1e1;
    display: inline-block;
    overflow: hidden;
    width: 100%;
}

.ps-mobile-megamenu .megamenu>li>a {
    font-size: 16px;
    padding: 12px 15px 4px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    height: 45px;
    margin-top: 8px;
}

.ps-mobile-megamenu .megamenu>li .menubuilder {
    margin: 0 0 0 15px;
}

.rtl .ps-mobile-megamenu .megamenu>li .menubuilder {
    margin: 0 15px 0 0;
}

.ps-mobile-megamenu .megamenu>li .menubuilder .block .title_block {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: #222;
}

.ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul {
    margin: 0 0 0 15px;
    border-left: 1px dotted #e1e1e1;
}

.rtl .ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul {
    margin: 0 15px 0 0;
}

.rtl .ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul {
    border-right: 1px dotted #e1e1e1;
    border-left: 0;
}

.ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul>li {
    position: relative;
}

@media (max-width: 991px) {
    .ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul>li {
        display: inline-block;
        width: 100%;
    }
}

.ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul>li>a {
    padding: 5px 10px;
    display: block;
    margin: 10px;
    font-size: 16px;
    font-weight: 600;
}

.ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul>li .click-canavs-menu {
    right: 3px;
}

.rtl .ps-mobile-megamenu .megamenu .dropdown-menu-inner>ul>li .click-canavs-menu {
    left: 3px;
    right: auto;
}

.rtl .ps-desktop-megamenu .dropdown-menu .dropdown-submenu>a::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.widget-testimonial {
    font-size: 1.14286rem;
    font-family: "Crimson";
}

.widget-testimonial .block {
    margin-bottom: 0 !important;
}

.widget-testimonial .testimonials-title {
    font-size: 36px;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    padding-top: 40px;
}

.widget-testimonial .item {
    min-height: 320px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.widget-testimonial .title_block {
    border-bottom: 0;
}

.widget-testimonial .testimonials-avatar {
    overflow: hidden;
    padding-bottom: 20px;
}

.widget-testimonial .testimonials-avatar img {
    border-radius: 50%;
    max-width: 6.07143rem;
    max-height: 6.07143rem;
}

.widget-testimonial .name {
    color: #fff;
    font-size: 21px;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.widget-testimonial .job {
    font-size: 11px;
    color: #fff;
}

.widget-testimonial .testimonials-quote {
    position: relative;
    padding: 0.71429rem 0 1.42857rem 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
}

@media (min-width: 768px) {
    .widget-testimonial .testimonials-quote {
        display: inline-block;
        width: 70%;
    }
}

.widget-testimonial .owl-controls {
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    height: 100%;
}

.rtl .widget-testimonial .owl-controls {
    left: 0;
    right: auto;
}

.widget-testimonial .carousel-controls {
    display: none;
}

.widget-categoriestabs .style1.owl-carousel .owl-item.last .product-miniature,
.title_skew .style1.owl-carousel .owl-item.last .product-miniature {
    border: none;
}

.widget-categoriestabs .style1.owl-carousel .owl-item.first .product-miniature,
.title_skew .style1.owl-carousel .owl-item.first .product-miniature {
    border-left: 0;
}

.rtl .widget-categoriestabs .style1.owl-carousel .owl-item.first .product-miniature,
.rtl .title_skew .style1.owl-carousel .owl-item.first .product-miniature {
    border-right: 0;
    border-left: 0;
}

.categories-info {
    padding-bottom: 30px;
}

.categories-info .categories-info-img {
    overflow: hidden;
}

.categories-info .categories-info-img img {
    max-width: 100%;
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
}

.categories-info .categories-info-img:hover img {
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.categories-info .categories-info-content {
    padding-top: 15px;
}

.categories-info .categories-info-content>span {
    display: inline-block;
    width: 100%;
}

.categories-info .categories-info-content .des-cate {
    color: #666;
    font-size: 15px;
}

.categories-info .categories-info-content h3 {
    font-size: 16px;
    text-transform: capitalize;
}

.categories-info .categories-info-content h3 a {
    color: #1b1b1b;
}

.categories-info .categories-info-content h3 a:hover {
    color: #8e8e8e;
}

.categoriestabs .title_block {
    font-size: 16px;
    color: #fff;
}

.categoriestabs .has-img-tab {
    float: left;
    max-width: 100%;
    position: relative;
    width: auto;
    overflow: hidden;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
    cursor: pointer;
}

.rtl .categoriestabs .has-img-tab {
    float: right;
}

.categoriestabs .has-img-tab:hover {
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}

.categoriestabs .block_content {
    border-top: 1px solid #ebebeb;
}

.categoriestabs .has-img-content .block_content {
    float: left;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ebebeb;
}

.rtl .categoriestabs .has-img-content .block_content {
    float: right;
}

.categoriestabs .category_sub {
    width: 100%;
    display: block;
    background-color: #333;
}

.categoriestabs .nav-tabs li {
    display: inline-block;
}

.categoriestabs .nav-tabs li a {
    display: block;
    padding: 8px 10px;
    text-transform: capitalize;
    border: none;
    position: relative;
    color: #aaaaaa;
}

.categoriestabs .nav-tabs li a.active,
.categoriestabs .nav-tabs li a:hover {
    color: #8e8e8e;
}

.widget-productdeal .left-block {
    position: relative;
}

.widget-productdeal .wrap-countdown {
    display: block;
    position: relative;
    position: absolute;
    width: 100%;
    top: -27%;
    left: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.widget-productdeal .wrap-countdown>div>div {
    font-size: 0.71429rem;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    color: #fff;
    min-width: 42px;
    background-color: #8e8e8e;
    margin-right: 5px;
    display: inline-block;
    -webkit-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black;
}

.rtl .widget-productdeal .wrap-countdown>div>div {
    margin-left: 5px;
    margin-right: inherit;
}

.widget-productdeal .wrap-countdown>div>div b {
    font-weight: 600;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.widget-productdeal .wrap-countdown>div:last-child {
    margin: 0;
}

.widget-productdeal .wrap-countdown>div .labelexpired {
    padding: 3px 8px;
}

.pts-flashsale {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
}

.pts-flashsale>ul {
    margin: 0;
}

.pts-flashsale>ul>li {
    float: none;
    font-size: 11px;
    position: relative;
    line-height: 16px;
    padding: 18px 12px;
    font-weight: 600;
    color: #1b1b1b;
    display: block;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 15px 0 0;
    min-width: 50px;
    background: url("../img/data/a1.png") no-repeat center center transparent;
    cursor: pointer;
}

.rtl .pts-flashsale>ul>li {
    margin: 0 0 0 15px;
}

.pts-flashsale>ul>li:hover {
    background-image: url("../img/data/a0.png");
    color: #f8694d;
}

.pts-flashsale>ul>li b {
    font-weight: normal;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    font-style: normal;
}

.pts-flashsale>ul>li:first-child:before {
    display: none;
}

.block.headding_group .title_block {
    margin-bottom: 0;
}

/*estilos jhon formulario*/
.slide1-contact {
    background: url(/../tienda/img/s-contacto.jpg)no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    padding: 24% 5%;
    z-index: 75;
    width: 120%;
    left: -93px;
    top: -150px;
}

.slide1-contact h1 {
    text-align: center;
    color: #fff;
    margin: 0;
    font-size: 3em;
}

.box-form .copy1 h5 {
    text-align: center;
}

.box-form .formulario {
    padding: 5%;
}

.box-icon {
    margin-top: 30px;
}

.box-icon .form-icon {
    text-align: center;
}

.box-icon .form-icon h4 {
    margin-top: 10px;
    font-size: 0.8em;
    font-weight: 600;
}

.nuestrosex {
    margin: 30px 0;
}

.nuestrosex h2 {
    text-align: center;
}

.nuestrosex .box-nexp {
    margin: 30px 0;
}

.nuestrosex .box-nexp .txt-nexp {
    text-align: center;
    padding: 5%;
}

.nuestrosex .box-nexp .txt-nexp h4 {
    font-weight: 600;
    margin-bottom: 1px;
    font-size: 1.4em;
}

.nuestrosex .box-nexp .txt-nexp p {
    font-size: 1.2em;
    margin-bottom: 4px;
}

.nuestrosex .box-nexp .txt-nexp .icomail {
    width: 30px;
}

.filtromapa {
    filter: gray;
    -webkit-filter: grayscale(99%);
    -webkit-backface-visibility: hidden;
}


/*fin estilos jhon formulario*/
@media (min-width: 992px) {
    #index .widget-latestblog .block_content {
        padding: 0 95px;
    }
}

.btnReadMore:hover {
    border-color: #8e8e8e;
}

.blog_container .blog-title {
    font-size: 1.57143rem;
    font-weight: bold;
    line-height: 2.14286rem;
    display: block;
    max-height: 4.64286rem;
    text-transform: none;
    display: block;
    overflow: hidden;
    margin: 0 0 5px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.blog_container .blog-title a {
    color: #353535;
}

.blog_container .blog-title a:hover {
    color: #8e8e8e;
}

.blog_container .blog-meta>* {
    color: #999;
    font-size: 12px;
    line-height: 16px;
    font-style: italic;
    display: inline-block;
    border-right: 1px solid #ebebeb;
    vertical-align: middle;
    margin-right: 10px;
    padding-right: 15px;
}

.rtl .blog_container .blog-meta>* {
    border-left: 1px solid #ebebeb;
    border-right: 0;
}

.rtl .blog_container .blog-meta>* {
    margin-left: 10px;
    margin-right: inherit;
}

.rtl .blog_container .blog-meta>* {
    padding-left: 15px;
    padding-right: inherit;
}

.blog_container .blog-meta>*:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.rtl .blog_container .blog-meta>*:last-child {
    border-left: 0;
    border-right: 0;
}

.rtl .blog_container .blog-meta>*:last-child {
    margin-left: 0;
    margin-right: inherit;
}

.rtl .blog_container .blog-meta>*:last-child {
    padding-left: 0;
    padding-right: inherit;
}

.blog_container .blog-image {
    position: relative;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
}

.blog_container:hover .blog-image {
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.list_blog .blog_container {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.list_blog .blog_container .blog-title {
    font-size: 16px;
    line-height: 24px;
}

.list_blog .blog_container .blog-inner {
    padding: 0 15px;
    text-align: left;
}

.rtl .list_blog .blog_container .blog-inner {
    text-align: right;
}

.list_blog .blog-meta {
    margin-bottom: 10px;
}

.list_blog .btnReadMore {
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
    min-width: 0;
    border: none;
}

.grid_blog .blog-image {
    position: relative;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
}

.grid_blog .blog-item .blog-shortinfo {
    margin-bottom: 1.07143rem;
    color: #666;
}

.grid_blog .blog-item:hover .blog-image {
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.grid .blog-item {
    padding: 0;
    border: none;
}

.grid .blog-item .blog-meta {
    padding: 0 0 15px;
}

.widget-ourservice {
    -webkit-transition: all 0.3s ease-in-ourt 0s;
    -o-transition: all 0.3s ease-in-ourt 0s;
    transition: all 0.3s ease-in-ourt 0s;
    padding: 3.57143rem 7.14286rem;
    min-height: 200px;
}

@media (max-width: 1175px) {
    .widget-ourservice {
        padding: 3.57143rem 0.71429rem;
    }
}

.widget-ourservice .ourservice-heading {
    font-size: 0.85714rem;
    color: #1b1b1b;
    margin-bottom: 0.71429rem;
    font-weight: 300;
}

.widget-ourservice .media-top {
    margin-bottom: 2.14286rem;
}

.widget-ourservice .ourservice-content {
    color: #666666;
    font-weight: 700;
    font-size: 1.14286rem;
}

.widget-ourservice .ourservice-left,
.widget-ourservice .ourservice-right {
    padding-top: 1.42857rem;
}

.widget-accordion .panel-group .panel {
    padding: 15px;
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
}

.widget-accordion .panel-group .panel .panel-heading .panel-title {
    margin: 0 !important;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.widget-accordion .panel-group .panel .panel-body {
    margin-top: 15px;
    text-align: justify;
}

.block-contactinfo .nav-item {
    padding: 0.71429rem 0;
}

.block-contactinfo .material-icons {
    font-size: 1.42857rem;
    margin-right: 0.57143rem;
}

.rtl .block-contactinfo .material-icons {
    margin-left: 0.57143rem;
    margin-right: inherit;
}

.widget-social .widget-heading {
    padding-bottom: 0.35714rem;
}

.widget-social .bo-social-icons li {
    display: block;
}

.widget-social .bo-social-icons li .fa {
    display: none;
}

.widget-manufacture .block_content {
    padding: 45px 35px;
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 40px;
}

.widget-manufacture .block_content .owl-carousel-play {
    position: static;
}

.widget-manufacture .block_content .owl-carousel-play .carousel-controls {
    top: 25%;
}

.widget-manufacture .block_content .owl-carousel-play .style1.owl-carousel .owl-item {
    border: none;
    margin: 0;
}

.widget-manufacture .manu-logo img {
    filter: grayscale(100%);
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
}

.widget-manufacture .manu-logo:hover img {
    filter: none;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.widget-instagram .title_block {
    background-color: #8e8e8e;
    color: #fff;
    letter-spacing: 10px;
    position: relative;
    margin-bottom: 0;
    padding: 1.07143rem 0;
    font-weight: 600;
}

.widget-instagram .title_block:before {
    content: "\f0d8";
    font-family: "FontAwesome";
    position: absolute;
    left: 50%;
    margin-left: -0.71429rem;
    top: -1.28571rem;
    font-size: 1.78571rem;
    color: #8e8e8e;
}

.rtl .widget-instagram .title_block:before {
    right: 50%;
    left: auto;
}

.rtl .widget-instagram .title_block:before {
    margin-right: -0.71429rem;
    margin-left: inherit;
}

.widget-instagram .owl-item {
    margin: 0;
}

.widget-instagram .instagram {
    position: relative;
}

.widget-instagram .instagram a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    position: absolute;
    content: "";
    background-color: #8e8e8e;
    background-color: rgba(223, 92, 106, 0.6);
    zoom: 1;
    background-color: transparent\9;
    display: none;
}

.widget-instagram .instagram .fa {
    position: absolute;
    content: "\f0c1";
    text-align: center;
    line-height: 5rem;
    margin: auto;
    font-family: "FontAwesome";
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    border-radius: 50%;
    width: 5.35714rem;
    height: 5.35714rem;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
    zoom: 1;
    background-color: transparent\9;
    color: #fff;
    -webkit-transition: 0.2s ease-in-out 0s;
    -o-transition: 0.2s ease-in-out 0s;
    transition: 0.2s ease-in-out 0s;
}

.widget-instagram .instagram .fa:hover {
    background-color: #222;
}

.widget-instagram .instagram:hover a {
    display: block;
}

.widget-maps {
    margin-bottom: 0 !important;
}

.widget-gallery .gallery-desc {
    margin-bottom: 0.71429rem;
}

.widget-gallery .images-list .item,
.widget-gallery .images-grid .item {
    position: relative;
}

.widget-gallery .images-list .item a,
.widget-gallery .images-grid .item a {
    left: 15px;
    right: 15px;
    top: 0;
    bottom: 0;
    display: block;
    position: absolute;
    content: "";
    background-color: #8e8e8e;
    background-color: rgba(223, 92, 106, 0.5);
    zoom: 1;
    background-color: transparent\9;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s ease-in-out 0s;
    -o-transition: 0.3s ease-in-out 0s;
    transition: 0.3s ease-in-out 0s;
}

.widget-gallery .images-list .item .fa,
.widget-gallery .images-grid .item .fa {
    position: absolute;
    content: "\f0c1";
    text-align: center;
    line-height: 2.5rem;
    margin: auto;
    font-family: "FontAwesome";
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    border-radius: 50%;
    width: 2.85714rem;
    height: 2.85714rem;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
    zoom: 1;
    background-color: transparent\9;
    color: #fff;
    -webkit-transition: 0.2s ease-in-out 0s;
    -o-transition: 0.2s ease-in-out 0s;
    transition: 0.2s ease-in-out 0s;
}

.widget-gallery .images-list .item .fa:hover,
.widget-gallery .images-grid .item .fa:hover {
    background-color: #222;
}

.widget-gallery .images-list .item:hover a,
.widget-gallery .images-grid .item:hover a {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.widget-gallery .images-list {
    margin-left: -0.35714rem;
    margin-right: -0.35714rem;
}

.widget-gallery .images-list .owl-item {
    padding: 0.35714rem;
    margin: 0;
}

.widget-gallery .images-list .item a {
    left: 0;
    right: 0;
}

.title_skew .block {
    overflow: hidden;
}

@media (min-width: 992px) {
    .title_skew .title_block {
        position: absolute;
        left: -20%;
        margin-left: -1px;
        top: 43%;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        width: 47%;
        z-index: 9;
        height: 50px;
        line-height: 50px;
        padding: 0;
        text-align: center;
    }

    .rtl .title_skew .title_block {
        right: -20%;
        left: auto;
    }

    .rtl .title_skew .title_block {
        margin-right: -1px;
        margin-left: inherit;
    }

    .title_skew .block_content .widget-content {
        padding-left: 50px;
    }

    .rtl .title_skew .block_content .widget-content {
        padding-right: 50px;
        padding-left: inherit;
    }
}

.widget-product_subcategory {
    margin-bottom: 50px;
}

.widget-product_subcategory .subcategories {
    margin-left: 10.71429rem;
}

.rtl .widget-product_subcategory .subcategories {
    margin-right: 10.71429rem;
    margin-left: inherit;
}

@media (max-width: 991px) {
    .widget-product_subcategory .subcategories {
        margin-left: 0;
        width: 100%;
        margin-top: -15px;
        margin-bottom: 15px;
    }

    .rtl .widget-product_subcategory .subcategories {
        margin-right: 0;
        margin-left: inherit;
    }
}

.widget-product_subcategory .product_subcategories {
    margin: 15px 0;
}

.widget-product_subcategory .product_subcategories li {
    border-left: 1px solid #ebebeb;
    line-height: 10px;
}

.rtl .widget-product_subcategory .product_subcategories li {
    border-right: 1px solid #ebebeb;
    border-left: 0;
}

.widget-product_subcategory .product_subcategories li:first-child {
    border-left: 0;
}

.rtl .widget-product_subcategory .product_subcategories li:first-child {
    border-right: 0;
    border-left: 0;
}

.widget-product_subcategory .product_subcategories li a {
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 15px;
}

#pts-verticalmenu {
    margin: 0;
}

#pts-verticalmenu .verticalmenu_title {
    color: #fff;
    margin: 0;
    padding: 0 20px 0 50px;
    font-size: 17px;
    font-weight: 700;
    line-height: 50px;
    height: 50px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: #8e8e8e;
    width: 100%;
}

.rtl #pts-verticalmenu .verticalmenu_title {
    padding: 0 50px 0 20px;
}

#pts-verticalmenu .verticalmenu_title:before {
    color: white;
    content: "\f0c9";
    font: 18px "FontAwesome";
    left: 18px;
    position: absolute;
    top: 12px;
}

.rtl #pts-verticalmenu .verticalmenu_title:before {
    right: 18px;
    left: auto;
}

#pts-verticalmenu .navbar {
    padding: 0;
}

.widget-subcategories .collapse {
    display: block;
}

.widget-subcategories .navbar-toggler {
    display: none;
}

.sub_categories {
    text-align: center;
    color: #fff;
}

.sub_categories .block .title_block {
    text-align: center;
    color: #fff;
}

.sub_categories .block .title_block:after {
    left: 50%;
    margin-left: -28px;
    right: auto !important;
}

.sub_categories ul {
    padding: 0 35px 35px;
}

.sub_categories ul li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    padding: 10px 0;
}

.sub_categories ul li:last-child {
    border: none;
}

.sub_categories ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
}

.sub_categories ul li a:hover {
    color: #8e8e8e;
}

.bg_bottom {
    background-image: url("../img/data/bg_right.jpg");
    background-repeat: no-repeat;
    background-position: right bottom;
}

.rtl .bg_bottom {
    background-position: left bottom;
}

/* end pagebuilder */
/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
body#checkout {
    color: #414141;
}

body#checkout [data-action="show-password"] {
    background: #dcdcdc;
}

body#checkout .custom-checkbox {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}

body#checkout .custom-checkbox span {
    -webkit-flex: 0 0 15px;
    -moz-flex: 0 0 15px;
    -ms-flex: 0 0 15px;
    flex: 0 0 15px;
    margin-top: 0.21429rem;
}

body#checkout a:hover {
    color: #8e8e8e;
}

body#checkout #block-reassurance {
    padding: 20px;
}

body#checkout section#content {
    margin-bottom: 1.78571rem;
}

body#checkout .container {
    min-height: 100%;
}

body#checkout section.checkout-step {
    background-color: white;
    border: 1px #ebebeb solid;
    padding: 1.07143rem;
}

body#checkout section.checkout-step .step-title {
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

body#checkout section.checkout-step .content {
    padding: 0 2.64286rem;
}

body#checkout section.checkout-step .step-edit {
    text-transform: lowercase;
    font-weight: normal;
}

body#checkout section.checkout-step .step-edit .edit {
    font-size: 1rem;
}

body#checkout section.checkout-step .not-allowed {
    cursor: not-allowed;
    opacity: 0.5;
}

body#checkout section.checkout-step .content,
body#checkout section.checkout-step .done,
body#checkout section.checkout-step .step-edit {
    display: none;
}

body#checkout section.checkout-step.-current .content {
    display: block;
}

body#checkout section.checkout-step.-current.-reachable.-complete .done,
body#checkout section.checkout-step.-current.-reachable.-complete .step-edit {
    display: none;
}

body#checkout section.checkout-step.-current.-reachable.-complete .step-number {
    display: inline-block;
}

body#checkout section.checkout-step.-current.-reachable.-complete .content {
    display: block;
}

body#checkout section.checkout-step.-reachable.-complete h1 .done {
    display: inline-block;
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-number {
    display: none;
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
    cursor: pointer;
    display: block;
    float: right;
    margin-right: 0.14286rem;
    color: #acaaa6;
}

.rtl body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
    float: left;
}

.rtl body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
    margin-left: 0.14286rem;
    margin-right: inherit;
}

body#checkout section.checkout-step.-reachable.-complete .content {
    display: none;
}

body#checkout section.checkout-step small {
    color: #acaaa6;
}

body#checkout section.checkout-step .default-input {
    min-width: 40%;
}

body#checkout section.checkout-step .default-input[name=address1],
body#checkout section.checkout-step .default-input[name=address2] {
    min-width: 60%;
}

body#checkout section.checkout-step .radio-field {
    margin-top: 2.14286rem;
}

body#checkout section.checkout-step .radio-field label {
    display: inline;
}

body#checkout section.checkout-step .checkbox-field div {
    margin-top: 4.28571rem;
}

body#checkout section.checkout-step .checkbox-field+.checkbox-field div {
    margin-top: 0;
}

body#checkout section.checkout-step .select-field div {
    background: #f6f6f6;
    padding: 0.71429rem 3.57143rem;
}

body#checkout section.checkout-step .form-footer {
    text-align: center;
}

body#checkout section.checkout-step #conditions-to-approve {
    padding-top: 1.14286rem;
}

body#checkout section.checkout-step .payment-options label {
    display: table-cell;
}

body#checkout section.checkout-step .payment-options .custom-radio {
    margin-right: 1.42857rem;
    margin-top: 5px;
}

body#checkout section.checkout-step .payment-options .payment-option {
    margin-bottom: 0.57143rem;
}

body#checkout section.checkout-step .step-number {
    display: inline-block;
    padding: 0.71429rem;
}

body#checkout section.checkout-step .address-selector {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

body#checkout section.checkout-step .address-item {
    background: #f6f6f6;
    -webkit-flex: 0 0 49%;
    -moz-flex: 0 0 49%;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    margin-bottom: 0.71429rem;
}

body#checkout section.checkout-step .address-item.selected {
    background: white;
    border: #8e8e8e 2px solid;
    border-radius: 11px;

}

body#checkout section.checkout-step .address-alias {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.71429rem;
}

body#checkout section.checkout-step .address {
    margin-left: 1.78571rem;
    font-weight: normal;
    line-height: 2rem;
}

body#checkout section.checkout-step .radio-block {
    padding: 1.07143rem;
    text-align: left;
}

.rtl body#checkout section.checkout-step .radio-block {
    text-align: right;
}

body#checkout section.checkout-step .custom-radio {
    margin-right: 0;
    margin-top: 15px;
}

body#checkout section.checkout-step .custom-radio input[type="radio"] {
    height: 1.42857rem;
    width: 1.42857rem;
}

body#checkout section.checkout-step .delete-address,
body#checkout section.checkout-step .edit-address {
    color: #acaaa6;
    display: inline-block;
    margin: 0 0.35714rem;
}

body#checkout section.checkout-step .delete-address .delete,
body#checkout section.checkout-step .delete-address .edit,
body#checkout section.checkout-step .edit-address .delete,
body#checkout section.checkout-step .edit-address .edit {
    font-size: 1rem;
}

body#checkout section.checkout-step hr {
    margin: 0;
}

body#checkout section.checkout-step .address-footer {
    text-align: center;
    padding: 0.71429rem;
}

body#checkout section.checkout-step #delivery-addresses,
body#checkout section.checkout-step #invoice-addresses {
    margin-top: 1.42857rem;
}

body#checkout section.checkout-step .add-address {
    margin-top: 1.42857rem;
}

body#checkout section.checkout-step .add-address a {
    color: #414141;
    font-weight: 600;
}

body#checkout section.checkout-step .add-address a i {
    font-size: 1.25rem;
}

body#checkout section.checkout-step .delivery-option {
    background: #f6f6f6;
    padding: 0.6rem 0 0.5rem;
    margin-bottom: 2.07143rem;
}

body#checkout section.checkout-step .delivery-option label {
    text-align: inherit;
}

body#checkout section.checkout-step .carrier-delay,
body#checkout section.checkout-step .carrier-name {
    display: inline-block;
    word-break: break-word;
    text-align: left;
}

.rtl body#checkout section.checkout-step .carrier-delay,
.rtl body#checkout section.checkout-step .carrier-name {
    text-align: right;
}

body#checkout section.checkout-step #customer-form,
body#checkout section.checkout-step #delivery-address,
body#checkout section.checkout-step #invoice-address,
body#checkout section.checkout-step #login-form {
    margin-left: 0.35714rem;
    margin-top: 1.78571rem;
}

body#checkout section.checkout-step #customer-form .form-control-label,
body#checkout section.checkout-step #delivery-address .form-control-label,
body#checkout section.checkout-step #invoice-address .form-control-label,
body#checkout section.checkout-step #login-form .form-control-label {
    text-align: left;
}

.rtl body#checkout section.checkout-step #customer-form .form-control-label,
.rtl body#checkout section.checkout-step #delivery-address .form-control-label,
.rtl body#checkout section.checkout-step #invoice-address .form-control-label,
.rtl body#checkout section.checkout-step #login-form .form-control-label {
    text-align: right;
}

body#checkout section.checkout-step #customer-form .radio-inline,
body#checkout section.checkout-step #delivery-address .radio-inline,
body#checkout section.checkout-step #invoice-address .radio-inline,
body#checkout section.checkout-step #login-form .radio-inline {
    padding: 0;
}

body#checkout section.checkout-step .sign-in {
    font-size: 0.875rem;
}

body#checkout section.checkout-step .forgot-password {
    margin-left: 16.42857rem;
}

.rtl body#checkout section.checkout-step .forgot-password {
    margin-right: 16.42857rem;
    margin-left: inherit;
}

body#checkout .additional-information {
    font-size: 0.875rem;
    margin-left: 3.28571rem;
    margin-top: 1.42857rem;
}

body#checkout .condition-label {
    margin-left: 2.85714rem;
    margin-top: 0.71429rem;
}

.rtl body#checkout .condition-label {
    margin-right: 2.85714rem;
    margin-left: inherit;
}

body#checkout .condition-label label {
    text-align: inherit;
}

body#checkout .cancel-address {
    margin: 0 0.71429rem;
    display: block;
    color: #878787;
    text-decoration: underline;
    margin-top: 10px;
    font-weight: 600;
}

body#checkout .modal-content {
    padding: 1.42857rem;
    background-color: #ebebeb;
}

body#checkout #cart-summary-product-list {
    font-size: 0.875rem;
}

body#checkout #cart-summary-product-list img {
    border: #ebebeb 1px solid;
    width: 3.57143rem;
}

body#checkout #cart-summary-product-list .media-body {
    vertical-align: middle;
}

body#checkout #order-summary-content {
    padding-top: 1.07143rem;
}

body#checkout #order-summary-content h4.h4 {
    margin-top: 0.71429rem;
    margin-bottom: 1.42857rem;
    color: #414141;
}

body#checkout #order-summary-content h4.black {
    color: #000000;
}

body#checkout #order-summary-content h4.addresshead {
    margin-top: 0.21429rem;
}

body#checkout #order-summary-content .noshadow {
    box-shadow: none;
}

body#checkout #order-summary-content #order-items {
    border-right: 0;
}

body#checkout #order-summary-content #order-items h3.h3 {
    color: #414141;
    margin-top: 1.42857rem;
}

body#checkout #order-summary-content #order-items table tr:first-child td {
    border-top: 0;
}

body#checkout #order-summary-content .order-confirmation-table {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 15px;
}

body#checkout #order-summary-content .summary-selected-carrier {
    margin-bottom: 0.75rem;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 1rem;
}

body#checkout #order-summary-content .step-edit {
    display: inline;
    color: #acaaa6;
}

body#checkout #order-summary-content .step-edit:hover {
    cursor: pointer;
}

body#checkout #order-summary-content a .step-edit {
    color: #acaaa6;
}

body#checkout #gift_message {
    max-width: 100%;
    border-color: #414141;
}

/**** ORDER CONFIRMATION *****/
#order-details {
    padding-left: 2.14286rem;
}

.rtl #order-details {
    padding-right: 2.14286rem;
    padding-left: inherit;
}

#order-details>.card-title {
    margin-bottom: 2.14286rem;
	font-family: "Source", sans-serif !important;
}

#order-details ul {
    margin-bottom: 1.42857rem;
}

#order-details ul li {
    margin-bottom: 0.71429rem;
}

#order-items {
    border-right: #ebebeb 1px solid;
}

.rtl #order-items {
    border-left: #ebebeb 1px solid;
    border-right: 0;
}

#order-items hr {
    border-top-color: #ebebeb;
}

#order-items table {
    width: 100%;
}

#order-items table tr {
    height: 2.14286rem;
	font-family: "Source", sans-serif !important;
}

#order-items table tr td:last-child {
    text-align: right;
}

.rtl #order-items table tr td:last-child {
    text-align: left;
}

#order-items .order-line {
    margin-top: 1.14286rem;
}

#order-items .image img {
    width: 100%;
    border: 1px solid gray-lighter;
    margin-bottom: 1.14286rem;
}

#order-items .details {
    margin-bottom: 1.14286rem;
	font-family: "Source", sans-serif !important;
}

#order-items .details .customizations {
    margin-top: 0.71429rem;
}

#order-items .qty {
    margin-bottom: 1.14286rem;
}

#order-confirmation #registration-form {
    width: 50%;
    margin: 0 auto 1.14286rem;
}

@media (max-width: 991px) {
    .done {
        margin: 0;
        padding: 0;
		display: none;
    }

    body#checkout section.checkout-step .address-item {
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        flex-grow: 1;
        -ms-flex-positive: 1;
    }

    body#checkout section.checkout-step .delivery-option-2 {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -ms-flex-direction: column;
    }

    .delivery-option {
        display: -webkit-box;
        display: -moz-box;
        display: box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        margin: auto;
    }

    .delivery-option .custom-radio {
        -webkit-flex: 0 0 auto;
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-top: 5px;
    }

    .condition-label label[for="conditions_to_approve[terms-and-conditions]"] {
        text-align: left;
    }

    .rtl .condition-label label[for="conditions_to_approve[terms-and-conditions]"] {
        text-align: right;
    }

    #order-confirmation #registration-form {
        width: 100%;
    }
}

@media (max-width: 767px) {
    body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
        float: none;
        margin-top: 0.28571rem;
        margin-left: 1.42857rem;
    }

    .rtl body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
        margin-right: 1.42857rem;
        margin-left: inherit;
    }

    body#checkout #header .header-nav {
        max-height: none;
        padding: 0;
    }

    body#checkout section.checkout-step .content {
        padding: 1.07143rem;
    }

    body#checkout .form-group {
        margin-bottom: 0.57143rem;
    }

    #order-items {
        border-right: 0;
        margin-bottom: 2.85714rem;
    }

    #order-items .card-title {
        border-bottom: 1px solid #ebebeb;
        margin-bottom: 1.14286rem;
        padding-bottom: 1.14286rem;
    }

    #order-items hr {
        border-top-color: #ebebeb;
    }

    .bold {
        font-weight: bold;
    }

    #order-details {
        padding-left: 1.07143rem;
    }

    #order-details .card-title {
        border-bottom: 1px solid #ebebeb;
        margin-bottom: 1.14286rem;
        padding-bottom: 1.14286rem;
    }
}

@media (max-width: 575px) {
    body#checkout section.checkout-step .content {
        padding: 1.07143rem 0;
    }

    #payment-confirmation button {
        font-size: 1rem;
    }

    #payment-confirmation button.btn {
        white-space: normal;
    }
}

.js-payment-binary {
    display: none;
}

.js-payment-binary .accept-cgv {
    display: none;
}

.js-payment-binary.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.js-payment-binary.disabled::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.js-payment-binary.disabled .accept-cgv {
    display: block;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
/*** SOME GENERIC STYLES ***/
.table-labeled th {
    vertical-align: middle;
}

.table-labeled td {
    vertical-align: middle;
}

.table-labeled .label {
    font-weight: 400;
    border-radius: 3px;
    font-size: inherit;
    padding: 0.28571rem 0.42857rem;
    margin: 0.14286rem;
    color: white;
    white-space: nowrap;
}

.page-order .table {
    margin-bottom: 0;
}

.page-order table th {
    padding: 0.57143rem;
}

.page-order table td {
    padding: 0.57143rem;
}

.page-order table thead th {
    text-align: center;
}

#authentication .tooltip.tooltip-bottom {
    padding: 0;
    margin: 0;
}

#authentication .custom-checkbox {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.07143rem;
}

#authentication .custom-checkbox span {
    flex: 0 0 1.07143rem;
}

#authentication .custom-checkbox label {
    padding-left: 0.71429rem;
}

.rtl #authentication .custom-checkbox label {
    padding-right: 0.71429rem;
    padding-left: inherit;
}

#authentication [data-action="show-password"] {
    background: #dfdfdf;
}

#identity .radio-inline,
#authentication .radio-inline {
    padding: 0;
}

#identity .radio-inline .custom-radio,
#authentication .radio-inline .custom-radio {
    margin-right: 0;
}

.rtl #identity .radio-inline .custom-radio,
.rtl #authentication .radio-inline .custom-radio {
    margin-left: 0;
    margin-right: inherit;
}

/*** Most of the customer accpunt pages ***/
.page-customer-account #content .page-header {
    text-align: center;
}

.page-customer-account #content .order-actions a {
    padding: 0 0.14286rem;
}

.page-customer-account #content .login-form {
    margin-bottom: 1.42857rem;
}

.page-customer-account #content .forgot-password {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 1.14286rem;
    padding-bottom: 1.07143rem;
}

.page-customer-account #content .no-account {
    text-align: center;
    font-size: 1rem;
    padding: 0.71429rem 0;
    margin-bottom: 2.14286rem;
}

/*** Login page ***/
#password .page-header,
.page-authentication .page-header {
    text-align: center;
}

#password #content,
.page-authentication #content {
    background: white;
    padding: 1.78571rem;
    max-width: 80%;
    margin: 0 auto;
}

/*** Addresses page ***/
.page-addresses .address {
    background: white;
    margin-bottom: 2.14286rem;
    font-size: 0.875rem;
    color: #414141;
}

.page-addresses .address .address-body {
    padding: 1.14286rem;
}

.page-addresses .address .address-body h4 {
    font-size: 1rem;
    font-weight: 700;
}

.page-addresses .address .address-body address {
    min-height: 10.28571rem;
}

.page-addresses .address .address-footer {
    border-top: 1px solid #acaaa6;
    padding: 0.57143rem 1.14286rem;
}

.page-addresses .address .address-footer a {
    color: #878787;
    margin-right: 0.57143rem;
    display: inline-block;
    vertical-align: middle;
}

.rtl .page-addresses .address .address-footer a {
    margin-left: 0.57143rem;
    margin-right: inherit;
}

.page-addresses .address .address-footer a:hover {
    color: #414141;
}

.page-addresses .address .address-footer a i {
    font-size: 1rem;
}

.page-addresses .address .address-footer a span {
    font-size: 1.25rem;
    vertical-align: middle;
}

.page-addresses .addresses-footer {
    margin: 0 1.07143rem;
}

.page-addresses .addresses-footer a {
    color: #414141;
}

.page-addresses .addresses-footer a:hover {
    color: #414141;
}

.page-addresses .addresses-footer a i {
    font-size: 1rem;
}

.page-addresses .addresses-footer a span {
    font-size: 1rem;
    vertical-align: middle;
    margin-top: 0.71429rem;
}

/*** Order details page ***/
.page-order-detail {
    font-size: 1rem;
    color: #878787;
}

.page-order-detail .box {
    background: white;
    padding: 1.78571rem;
    margin-bottom: 1.14286rem;
}

.page-order-detail h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #414141;
    margin-bottom: 1.14286rem;
}

.page-order-detail #order-infos ul {
    margin: 0;
}

.page-order-detail #order-history .history-lines .history-line {
    padding: 0.57143rem 0;
    border-bottom: 1px solid #f6f6f6;
}

.page-order-detail #order-history .history-lines .history-line:last-child {
    border-bottom: 0;
}

.page-order-detail #order-history .history-lines .history-line .label {
    display: inline-block;
    margin: 0.28571rem 0;
    padding: 0.28571rem 0.42857rem;
    color: white;
    border-radius: 3px;
}

.page-order-detail .addresses {
    margin: 0 -1.07143rem;
}

.page-order-detail .addresses h4 {
    font-size: 1rem;
    font-weight: 700;
}

.page-order-detail #order-products.return {
    margin-bottom: 1.14286rem;
}

.page-order-detail #order-products.return th.head-checkbox {
    width: 30px;
}

.page-order-detail #order-products.return td {
    padding: 1.375rem 0.75rem;
}

.page-order-detail #order-products.return td.qty {
    min-width: 125px;
}

.page-order-detail #order-products.return td.qty .current {
    width: 30%;
    float: left;
    text-align: right;
    padding-right: 0.5rem;
}

.rtl .page-order-detail #order-products.return td.qty .current {
    float: right;
}

.rtl .page-order-detail #order-products.return td.qty .current {
    text-align: left;
}

.page-order-detail #order-products.return td.qty .select {
    width: 70%;
    float: left;
    margin: -0.625rem 0;
    padding-left: 0.25rem;
}

.rtl .page-order-detail #order-products.return td.qty .select {
    float: right;
}

.rtl .page-order-detail #order-products.return td.qty .select {
    padding-right: 0.25rem;
    padding-left: inherit;
}

.page-order-detail #order-products.return td.qty .select select {
    text-align: center;
}

.page-order-detail .order-items {
    padding: 0 !important;
}

.page-order-detail .order-items .order-item {
    padding: 1.14286rem 1.14286rem 0;
    border-bottom: 1px solid #f6f6f6;
}

.page-order-detail .order-items .order-item .checkbox {
    width: 30px;
    float: left;
    padding: 0 1.07143rem;
}

.rtl .page-order-detail .order-items .order-item .checkbox {
    float: right;
}

.page-order-detail .order-items .order-item .content {
    width: calc(100% - 30px);
    float: left;
    padding: 0 1.07143rem;
}

.rtl .page-order-detail .order-items .order-item .content {
    float: right;
}

.page-order-detail .order-items .order-item .desc {
    margin-bottom: 1.14286rem;
}

.page-order-detail .order-items .order-item .desc .name {
    font-weight: bold;
}

.page-order-detail .order-items .order-item .qty {
    margin-bottom: 1.14286rem;
}

.page-order-detail .order-items .order-item .qty .q {
    margin-bottom: 0.28571rem;
}

.page-order-detail .order-items .order-item .qty .s {
    margin-bottom: 0.28571rem;
}

.page-order-detail .messages .message {
    margin-top: 0.57143rem;
    border-bottom: 1px solid #f6f6f6;
}

.page-order-detail .messages .message:last-child {
    border-bottom: 0;
}

.page-order-detail .messages .message>div {
    margin-bottom: 0.57143rem;
}

.page-order-detail .customization {
    margin-top: 0.85714rem;
}

/*** Order return page ***/
#order-return-infos .thead-default th {
    color: #414141;
}

#order-return-infos .customization {
    margin-top: 0.85714rem;
}

/*** My account landing page ***/
.page-my-account #content .links {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
}

.page-my-account #content .links a {
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #878787;
    padding: 0 1.07143rem;
    margin-bottom: 2.14286rem;
}

.page-my-account #content .links a span.link-item {
    display: block;
    height: 100%;
    border: 1px solid #ebebeb;
    background: white;
    padding: 1.78571rem;
}

.page-my-account #content .links a i {
    display: block;
    font-size: 2.6rem;
    width: 100%;
    color: #414141;
    padding-bottom: 3.4rem;
}

.page-my-account #content .links a:hover {
    color: #414141;
}

.page-my-account #content .links a:hover i {
    color: #8e8e8e;
}

/*** History page ***/
#history .orders {
    margin: 0 -1.14286rem;
}

#history .orders .order {
    padding: 0.85714rem 1.14286rem;
    border-bottom: 1px solid #f6f6f6;
}

#history .orders .order a h3 {
    color: #878787;
}

#history .orders .order .label {
    display: inline-block;
    margin: 0.28571rem 0;
    padding: 0.28571rem 0.42857rem;
    color: white;
    border-radius: 3px;
}

#history .orders .order:last-child {
    border-bottom: 0;
}

/*** FOOTER ***/
.page-footer .account-link {
    margin-right: 1.14286rem;
    display: inline-block;
    vertical-align: middle;
}

.rtl .page-footer .account-link {
    margin-left: 1.14286rem;
    margin-right: inherit;
}

.page-footer .account-link i {
    font-size: 1rem;
}

.page-footer .account-link span {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.carousel {
    box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 1.71429rem;
}

.carousel .direction {
    z-index: auto;
}

.carousel .carousel-inner {
    height: 340px;
}

.carousel .carousel-item {
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    margin-left: 0;
}

.carousel .carousel-item .caption {
    position: absolute;
    bottom: 28px;
    left: 90px;
    color: white;
    max-width: 340px;
}

.carousel .carousel-item .caption .caption-description p {
    color: white;
}

.carousel .carousel-control {
    opacity: 1;
}

.carousel .carousel-control .icon-next::before,
.carousel .carousel-control .icon-prev::before {
    content: "";
}

.carousel .carousel-control .icon-next i,
.carousel .carousel-control .icon-prev i {
    font-size: 3.57143rem;
    color: white;
}

.carousel .carousel-control .icon-next:hover i,
.carousel .carousel-control .icon-prev:hover i {
    color: #8e8e8e;
}

.carousel .carousel-control .icon-prev {
    left: 1.14286rem;
}

.carousel .carousel-control .icon-next {
    right: 2.28571rem;
}

.carousel .carousel-control.left,
.carousel .carousel-control.right {
    background: none;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
#custom-text {
    background: white;
    border-radius: 2px;
    margin-bottom: 1.71429rem;
    padding: 3.57143rem 3.57143rem;
    text-align: center;
}

#custom-text h3 {
    text-transform: uppercase;
    color: #414141;
    font-size: 1.78571rem;
    font-weight: 700;
}

#custom-text p {
    color: #414141;
    font-weight: 400;
    font-size: 1.1em;
}

#custom-text p .dark {
    color: #acaaa6;
    font-weight: 400;
}

.page-content.page-cms {
    background: white;
    padding: 1.07143rem 0;
}

.page-content.page-cms .pts-inner.container {
    padding: 0;
}

.page-content.page-cms .cms-box img {
    max-width: 100%;
}

@media (max-width: 991px) {
    #block-cmsinfo {
        padding: 1.42857rem 2.14286rem;
    }
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.products.style1:before {
    display: none;
}

#products {
    float: left;
    width: 100%;
}

#products .products-select {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    -o-align-items: baseline;
    align-items: baseline;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

#products .up {
    margin-bottom: 1.14286rem;
}

#products .up .btn-secondary {
    color: #acaaa6;
    text-transform: inherit;
}

#products .up .btn-secondary .material-icons {
    margin-right: 0;
}

.rtl #products .up .btn-secondary .material-icons {
    margin-left: 0;
    margin-right: inherit;
}

.category-cover {
    margin-bottom: 30px;
}

.block-category {
    margin-bottom: 2.14286rem;
    padding: 0 15px;
}

.block-category #category-description p {
    margin-bottom: 0;
}

.block-category .category-cover {
    display: block;
    margin-bottom: 1.42857rem;
}

.products-selection .sort-by-row {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.products-selection .sort-by {
    white-space: normal;
    word-break: break-word;
    font-weight: 500;
    text-align: right;
    color: #666666;
    font-family: "Source", sans-serif;
}

.rtl .products-selection .sort-by {
    text-align: left;
}

.products-selection .total-products {
    padding-top: 0.71429rem;
}

.products-selection .total-products p {
    margin-bottom: 0;
}

.products-selection h1 {
    padding-top: 0.71429rem;
}

.products-sort-order {
    color: #878787;
    position: relative;
}

.products-sort-order .select-title {
    font-family: "Source", sans-serif;
    font-size: 12px;
    display: inline-block;
    width: 100%;
    background: white;
    cursor: pointer;
    border: 0;
    padding: 0.57143rem 1.07143rem;
    -webkit-box-shadow: 1px 0 7px rgba(0, 0, 0, 0.07) inset;
    box-shadow: 1px 0 7px rgba(0, 0, 0, 0.07) inset;
}

.products-sort-order .select-list {
    display: block;
    color: #414141;
    padding: 0.71429rem 1.42857rem;
}

.products-sort-order .select-list:hover {
    background: #8e8e8e;
    color: white;
    text-decoration: none;
}

.products-sort-order .dropdown-menu {
    left: auto;
    right: 0;
    margin: 0 15px;
    background: #f6f6f6;
    border: none;
    border-radius: 0;
    font-size: 14px;
}

.rtl .products-sort-order .dropdown-menu {
    left: 0;
    right: auto;
}

#search_filters .block_content {
    background-color: #fff;
}

#search_filters .facet {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

#search_filters .facet ul {
    display: inline-block;
    width: 100%;
}

#search_filters .facet ul li {
    /*float: left;*/
    min-width: 50%;
    width: auto;
    padding: 5px 0;
}

.rtl #search_filters .facet ul li {
    float: right;
}

#search_filters .facet .collapse {
    display: block;
}

#search_filters .facet .facet-title {
    font-size: 17px;
    color: #000000;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

#search_filters .facet .facet-title span {
    position: relative;
    display: block;
}

#search_filters .facet .facet-label {
    margin-bottom: 0;
}

#search_filters .facet .facet-label a {
    margin-top: 0.5rem;
    color: #414141;
    display: inline-block;
    font-size: 1rem;
}

.pagination {
    margin: 0;
    vertical-align: middle;
    text-align: center;
}

.pagination>div:first-child {
    line-height: 2.14286rem;
}

.pagination .page-list {
    margin-bottom: 0;
}

.pagination .page-list li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.pagination .page-list li:first-child>span,
.pagination .page-list li:first-child a,
.pagination .page-list li:last-child>span,
.pagination .page-list li:last-child a {
    border: none;
    text-transform: capitalize;
    width: auto;
    font-weight: 400;
}

.pagination .page-list li:first-child>span:hover,
.pagination .page-list li:first-child a:hover,
.pagination .page-list li:last-child>span:hover,
.pagination .page-list li:last-child a:hover {
    color: #8e8e8e;
    background-color: transparent;
}

.pagination .page-list li:first-child {
    margin-right: 20px;
}

.rtl .pagination .page-list li:first-child {
    margin-left: 20px;
    margin-right: inherit;
}

.pagination .page-list li:last-child {
    margin-left: 20px;
}

.rtl .pagination .page-list li:last-child {
    margin-right: 20px;
    margin-left: inherit;
}

.pagination .page-list li a {
    color: #666666;
}

.pagination .page-list li>span,
.pagination .page-list li a {
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    text-align: center;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.pagination .page-list li>span.disabled,
.pagination .page-list li a.disabled {
    cursor: no-drop;
}

.pagination .page-list li:hover a,
.pagination .page-list li:hover>span,
.pagination .page-list li.current a,
.pagination .page-list li.current>span {
    border-color: #A1833D;
    background: #A1833D;
    color: #fff !important;
}

.pagination .page-list .disabled {
    color: #666;
    cursor: no-drop;
}

.pagination .product-count {
    font-weight: 600;
    color: #8e8e8e;
}

.ps_sortPagiBar {
    margin-top: 1.07143rem;
    margin-bottom: 1.07143rem;
}

.ps_sortPagiBar.bottom-line {
    border-bottom: 0;
    padding: 1.14286rem 0;
    background-color: #fff;
    border-top: 1px solid #ebebeb;
}

.ps_sortPagiBar .product-count {
    color: #8e8e8e;
}

.active_filters {
    background: #dededd;
    padding: 0.71429rem 2.14286rem 0;
    margin-bottom: 1.42857rem;
}

.active_filters .active-filter-title {
    display: inline;
    margin-right: 0.71429rem;
    font-weight: 600;
}

.active_filters ul {
    display: inline;
}

.active_filters .filter-block {
    color: #414141;
    margin-right: 0.71429rem;
    margin-bottom: 0.71429rem;
    background: white;
    padding: 0.71429rem;
    display: inline-block;
    font-size: 0.75rem;
}

.rtl .active_filters .filter-block {
    margin-left: 0.71429rem;
    margin-right: inherit;
}

.active_filters .filter-block .close {
    color: #414141;
    font-size: 1.25rem;
    opacity: 1;
    margin-top: 0.21429rem;
    margin-left: 0.35714rem;
}

.rtl .active_filters .filter-block .close {
    margin-right: 0.35714rem;
    margin-left: inherit;
}

.block-categories .category-sub-menu {
    margin: 0;
}

.block-categories .category-sub-menu li {
    position: relative;
}

.block-categories .category-sub-menu li[data-depth="0"] {
    border-top: 1px solid #ebebeb;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
}

.block-categories .category-sub-menu li[data-depth="0"]>a {
    width: 100%;
    display: inline-block;
    padding: 1.07143rem 0;
    font-size: 1.14286rem;
}

.block-categories .category-sub-menu li[data-depth="0"]:last-child>a {
    border: none;
}

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"]) {
    padding-left: 0.35714rem;
}

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"])::before {
    content: "-";
    margin-right: 0.35714rem;
}

.block-categories a {
    color: #414141;
}

.block-categories .collapse-icons {
    position: absolute;
    right: 0;
    top: 1rem;
    padding: 0;
    cursor: pointer;
    width: 2em;
    font-size: 1rem;
}

.rtl .block-categories .collapse-icons {
    left: 0;
    right: auto;
}

.block-categories .collapse-icons[aria-expanded="true"] .add {
    display: none;
}

.block-categories .collapse-icons[aria-expanded="true"] .remove {
    display: block;
}

.block-categories .collapse-icons .add:hover,
.block-categories .collapse-icons .remove:hover {
    color: #8e8e8e;
}

.block-categories .collapse-icons .remove {
    display: none;
}

.block-categories .arrows .arrow-right,
.block-categories .arrows .arrow-down {
    font-size: 0.875rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    width: 2.8rem;
}

.rtl .block-categories .arrows .arrow-right,
.rtl .block-categories .arrows .arrow-down {
    left: 0;
    right: auto;
}

.block-categories .arrows .arrow-right:hover,
.block-categories .arrows .arrow-down:hover {
    color: #8e8e8e;
}

.block-categories .arrows .arrow-down {
    display: none;
}

.block-categories .arrows[aria-expanded="true"] .arrow-right {
    display: none;
}

.block-categories .arrows[aria-expanded="true"] .arrow-down {
    display: inline-block;
}

.facets-title {
    color: #414141;
}

.products-selection {
    margin: 0;
    background: #fff;
    clear: both;
    padding: 0.51429rem 0;
}

.products-selection .filter-button .btn-secondary {
    padding: 0.85714rem 0.57143rem 0.78571rem;
}

/*** Responsive part ***/
@media (max-width: 767px) {
    #category #left-column {
        width: 100%;
    }

    #category #left-column #search_filters_wrapper {
        margin-left: -30px;
        margin-right: -30px;
    }

    #category #left-column #search_filter_controls {
        text-align: center;
        margin-bottom: 1.14286rem;
    }

    #category #left-column #search_filter_controls button {
        margin: 0 0.57143rem;
    }

    #category #left-column #search_filters {
        margin-bottom: 0;
        box-shadow: none;
        padding: 0;
        border-top: 1px solid #f6f6f6;
    }

    #category #left-column #search_filters .facet {
        padding-top: 0;
        border-bottom: 1px solid #f6f6f6;
    }

    #category #left-column #search_filters .facet .title {
        cursor: pointer;
    }

    #category #left-column #search_filters .facet .title .collapse-icons .remove {
        display: none;
    }

    #category #left-column #search_filters .facet .title[aria-expanded="true"] .collapse-icons .add {
        display: none;
    }

    #category #left-column #search_filters .facet .title[aria-expanded="true"] .collapse-icons .remove {
        display: block;
    }

    #category #left-column #search_filters .facet .facet-title {
        color: #414141;
        text-transform: uppercase;
    }

    #category #left-column #search_filters .facet .h6 {
        margin-bottom: 0;
        padding: 0.71429rem;
        display: inline-block;
    }

    #category #left-column #search_filters .facet .navbar-toggler {
        display: inline-block;
        padding: 0.71429rem 0.71429rem 0 0;
    }

    #category #left-column #search_filters .facet .collapse {
        display: none;
    }

    #category #left-column #search_filters .facet .collapse.in {
        display: block;
    }

    #category #left-column #search_filters .facet .facet-label a {
        margin-top: 0;
    }

    #category #left-column #search_filters .facet ul {
        margin-bottom: 0;
    }

    #category #left-column #search_filters .facet ul li {
        border-top: 1px solid #f6f6f6;
        padding: 0.71429rem;
    }

    #category #content-wrapper {
        width: 100%;
    }

    #category #search_filter_toggler {
        width: 100%;
    }

    .products-sort-order .select-title {
        margin-left: 0;
    }

    .rtl .products-sort-order .select-title {
        margin-right: 0;
        margin-left: inherit;
    }

    .products-selection h1 {
        padding-top: 0;
        text-align: center;
        margin-bottom: 1.14286rem;
    }

    .products-selection .showing {
        padding-top: 1.14286rem;
    }

    #prices-drop #content-wrapper,
    #new-products #content-wrapper,
    #best-sales #content-wrapper {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .products-selection .filter-button {
        padding-left: 0;
    }

    .rtl .products-selection .filter-button {
        padding-right: 0;
        padding-left: inherit;
    }

    #category #left-column #search_filters_wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
#product #content {
    position: relative;
    margin: 0 auto;
}

.pts-product {
    background-color: #fff;
    padding: 20px 0;
}

/*@media (max-width: 767px) {
    .pts-product {
        padding: 20px;
    }
}*/

.prodetail-tile {
    color: #000;
    font-size: 2.4rem;
    font-weight: 500;
    margin-top: 0.57143rem;
    font-family: "Crimson";
    text-transform: initial;
	line-height: 35px;
}

@media (max-width: 1175px) {
    .prodetail-tile {
        text-align: center;
    }
}

.product-price {
    display: inline-block;
}

.proShortDesc {
    color: #828282;
    padding-top: 15px;
}

.product-information .manufacturer-logo {
    height: 35px;
}

.input-color {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 1.42857rem;
    width: 1.42857rem;
}

.input-container {
    position: relative;
}

.input-radio {
    position: absolute;
    top: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.input-color:checked+span,
.input-color:hover+span,
.input-radio:checked+span,
.input-radio:hover+span {
    border: 1px solid #8e8e8e;
}

.radio-label {
    background: white;
    display: inline-block;
    padding: 0.14286rem 0.71429rem;
    font-weight: 600;
    border: 2px solid white;
}

.comp-wis {
    display: inline-block;
}

.comp-wis>div {
    display: inline-block;
    margin-right: 7px;
    float: left;
}

.rtl .comp-wis>div {
    margin-left: 7px;
    margin-right: inherit;
}

.rtl .comp-wis>div {
    float: right;
}

.comp-wis>div .btn-product {
    border: 1px solid #e8e8e8;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    display: inline-block;
}

.comp-wis>div .btn-product span span {
    display: none;
}

.product-actions {
    padding-top: 1.42857rem;
}

.product-actions .control-label {
    margin-bottom: 0.42857rem;
    display: inline-block;
    font-family: "Crimson";
    color: #666666;
    font-weight: 700;
    min-width: 3.57143rem;
    vertical-align: middle;
    margin-bottom: 0;
    display: none;
}

.product-actions .add-to-cart {
    line-height: 22px;
    padding: 0;
    height: 50px;
    margin: 0 8px 0 0;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    min-width: 140px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    background-color: #000000;
    float: left;
    font-family: "Source", sans-serif;
    /*padding-right: 10px;*/
    font-weight: 600;
}

.rtl .product-actions .add-to-cart {
    margin: 0 0 0 8px;
}

.rtl .product-actions .add-to-cart {
    float: right;
}

.rtl .product-actions .add-to-cart {
    padding-left: 10px;
    padding-right: inherit;
}

.product-actions .add-to-cart i {
    display: inline-block;
    width: 40px;
    height: 38px;
    line-height: 38px;
    float: left;
    text-align: center;
    -webkit-transition: 0.2s all ease-in-out 0s;
    -o-transition: 0.2s all ease-in-out 0s;
    transition: 0.2s all ease-in-out 0s;
    background-color: #d83a4b;
    margin-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.rtl .product-actions .add-to-cart i {
    float: right;
}

.rtl .product-actions .add-to-cart i {
    margin-left: 10px;
    margin-right: inherit;
}

.rtl .product-actions .add-to-cart i {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0;
}

.product-actions .add-to-cart:hover {
    background-color: #3c3c3c;
}

.product-actions .add-to-cart:hover i {
    background-color: #3c3c3c;
}

.product-actions .add-to-cart .material-icons {
    display: none;
}

.product-actions .list-color,
.product-actions .product-quantity {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin: 3px 0;
}

.product-quantity .qty {
    width: 9.28571rem;
    float: left;
    margin: 0 20px 8px 0;
}

.rtl .product-quantity .qty {
    float: right;
}

.rtl .product-quantity .qty {
    margin: 0 0 8px 20px;
}

.product-quantity .add {
    float: left;
    margin-bottom: 0.57143rem;
}

.rtl .product-quantity .add {
    float: right;
}

.product-quantity #quantity_wanted {
    color: #414141;
    background-color: white;
    height: 2.85714rem;
    padding: 0.175rem 0.5rem;
    font-weight: 600;
    font-size: 1.14286rem;
    text-align: center;
}

.product-quantity .input-group-btn-vertical {
    position: static;
}

.product-quantity .input-group-btn-vertical .btn {
    min-width: 0;
    padding: 0;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    z-index: 10;
    position: absolute;
    margin: 0 !important;
}

.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-up {
    left: 0;
}

.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-down {
    right: 0;
}

.product-quantity .input-group-btn-vertical .btn i {
    font-size: 1.14286rem;
    position: static;
}

.product-discounts {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 1.71429rem;
}

.product-discounts>.product-discounts-title {
    font-weight: normal;
    font-size: 0.875rem;
}

.product-discounts>.table-product-discounts thead tr th {
    width: 33%;
    padding: 0.71429rem 1.42857rem;
    background: white;
    border: 1px #c7c7c7 solid;
    text-align: center;
    color: #000;
}

.product-discounts>.table-product-discounts tbody tr {
    background: #f6f6f6;
}

.product-discounts>.table-product-discounts tbody tr:nth-of-type(even) {
    background: white;
}

.product-discounts>.table-product-discounts tbody tr td {
    padding: 0.71429rem 1.42857rem;
    text-align: center;
    border: 1px #c7c7c7 solid;
}

.product-prices {
    margin: 0 0 0.71429rem;
}

.product-prices .current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
}

.product-prices .tax-shipping-delivery-label {
    font-size: 0.92857rem;
    color: #878787;
    /*display: inline-block;*/
}

.product-discount {
    display: inline-block;
}

.product-discount .regular-price {
    font-size: 1.4rem;
    font-weight: 400;
    margin-left: 5px;
    text-decoration: line-through;
}

.rtl .product-discount .regular-price {
    margin-right: 5px;
    margin-left: inherit;
}

.has-discount {
    display: inline-block;
    font-size: 1.42857rem;
    font-weight: 400;
}

.has-discount .discount {
    color: white;
    font-weight: 600;
    padding: 0.35714rem 0.71429rem;
    font-size: 1rem;
    margin-left: 0.71429rem;
    text-transform: uppercase;
    display: none;
}

.product-unit-price {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.product-cover {
    margin-bottom: 0.92857rem;
    position: relative;
    border: 1px solid #e8e8e8;
}

.product-cover img {
    background: white;
}

.product-cover .layer {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    cursor: pointer;
    -webkit-transition: opacity 0.7s ease-in-out;
    -o-transition: opacity 0.7s ease-in-out;
    transition: opacity 0.7s ease-in-out;
}

.product-cover .layer:hover {
    opacity: 1;
}

.product-cover .layer .zoom-in {
    font-size: 7.14286rem;
    color: white;
}

#product-modal .modal-content {
    background: transparent;
    border: none;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#product-modal .modal-content figure {
    background-color: #fff;
    width: 720px;
    margin-bottom: 0;
}

#product-modal .modal-content .modal-body {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -30%;
}

.rtl #product-modal .modal-content .modal-body {
    margin-right: -30%;
    margin-left: inherit;
}

#product-modal .modal-content .modal-body .product-cover-modal {
    background: white;
}

#product-modal .modal-content .modal-body .image-caption {
    background: white;
    padding: 0.71429rem 1.42857rem;
    border-top: #ebebeb 1px solid;
}

#product-modal .modal-content .modal-body .image-caption p {
    margin-bottom: 0;
}

#product-modal .modal-content .modal-body .thumbnails {
    position: relative;
}

#product-modal .modal-content .modal-body .mask {
    position: relative;
    overflow: hidden;
    max-height: 56rem;
    margin-top: 0;
    z-index: 1;
}

#product-modal .modal-content .modal-body .mask.nomargin {
    margin-top: 0;
}

#product-modal .modal-content .modal-body .product-images {
    margin-left: 20px;
}

.rtl #product-modal .modal-content .modal-body .product-images {
    margin-right: 20px;
    margin-left: inherit;
}

#product-modal .modal-content .modal-body .product-images li.thumb-container {
    width: auto;
    margin: 0 0 10px 0;
}

.rtl #product-modal .modal-content .modal-body .product-images li.thumb-container {
    margin: 0 0 10px 0;
}

#product-modal .modal-content .modal-body .product-images img {
    width: 10.57143rem;
    cursor: pointer;
    background: white;
    max-width: none;
}

#product-modal .modal-content .modal-body .product-images img:hover {
    border: #8e8e8e 3px solid;
}

#product-modal .modal-content .modal-body .arrows {
    height: 62rem;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    color: white;
    right: 3rem;
    z-index: 0;
    cursor: pointer;
}

.rtl #product-modal .modal-content .modal-body .arrows {
    left: 3rem;
    right: auto;
}

#product-modal .modal-content .modal-body .arrows .arrow-up {
    position: absolute;
    top: -5rem;
    opacity: 0.2;
}

#product-modal .modal-content .modal-body .arrows .arrow-down {
    position: absolute;
    bottom: -0.3rem;
}

#product-modal .modal-content .modal-body .arrows i {
    font-size: 7.14286rem;
    display: inline;
}

#blockcart-modal {
    color: #414141;
}

#blockcart-modal .modal-header {
    background: #000;
}

#blockcart-modal .modal-body {
    background: #fff;
    padding: 3.57143rem 2.14286rem;
}

#blockcart-modal .modal-body .divide-right span {
    display: inline-block;
    margin-bottom: 0.35714rem;
}

#blockcart-modal .modal-dialog {
    max-width: 81.42857rem;
    width: 100%;
}

#blockcart-modal .product-image {
    width: 15rem;
}

#blockcart-modal .modal-title {
    font-weight: 600;
    color: white;
    font-size: 1.28571rem;
}

#blockcart-modal .modal-title i.material-icons {
    margin-right: 2.14286rem;
}

#blockcart-modal .product-name {
    color: #000;
    font-size: 1.28571rem;
	line-height: 25px;
}

#blockcart-modal .cart-products-count {
    font-size: 1.28571rem;
}

#blockcart-modal .cart-content {
    padding-left: 2.85714rem;
}

.rtl #blockcart-modal .cart-content {
    padding-right: 2.85714rem;
    padding-left: inherit;
}

#blockcart-modal .cart-content button {
    margin-right: 0.35714rem;
    line-height: 1.28571rem;
}

.rtl #blockcart-modal .cart-content button {
    margin-left: 0.35714rem;
    margin-right: inherit;
}

#blockcart-modal .divide-right {
    border-right: #acaaa6 1px solid;
}

.rtl #blockcart-modal .divide-right {
    border-left: #acaaa6 1px solid;
    border-right: 0;
}

.product-images>li.thumb-container {
    display: inline-block;
    width: 85px;
    border: 1px solid #e8e8e8;
    margin-right: 8px;
}

.rtl .product-images>li.thumb-container {
    margin-left: 10px;
    margin-right: inherit;
}

.product-images>li.thumb-container:last-child {
    margin: 0 !important;
}

.product-images>li.thumb-container>.thumb {
    cursor: pointer;
    -webkit-transition: 0.3s all ease-out 0s;
    -o-transition: 0.3s all ease-out 0s;
    transition: 0.3s all ease-out 0s;
}

.product-images>li.thumb-container>.thumb.selected,
.product-images>li.thumb-container>.thumb:hover {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    border-color: #8e8e8e;
}

#main .images-container .js-qv-mask {
    white-space: nowrap;
    overflow: hidden;
}

#main .images-container .js-qv-mask.scroll {
    margin: 0 auto;
}

@media (max-width: 575px) {
    #main .images-container .js-qv-mask.scroll {
        width: 100%;
    }

    .product-images>li.thumb-container {
        display: block;
        float: left;
        margin-bottom: 10px;
    }
}

#main .images-container .js-qv-mask .product-images {
    display: inline-block;
    vertical-align: middle;
}

.scroll-box-arrows {
    display: none;
}

.scroll-box-arrows.scroll {
    display: block;
}

.scroll-box-arrows i {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    cursor: pointer;
    width: 1.78571rem;
    height: 1.78571rem;
    line-height: 1.71429rem;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 0;
    font-size: 1.14286rem;
    color: #666666;
    bottom: 3.28571rem;
    margin: auto;
    position: absolute;
    background-color: #ebebeb;
    z-index: 9;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.scroll-box-arrows i:hover {
    color: #fff;
    background-color: #8e8e8e;
}

.scroll-box-arrows .left {
    left: 10px;
}

.scroll-box-arrows .right {
    right: 10px;
}

#product-availability {
    display: inline-block;
    font-weight: 700;
    margin-top: 10px;
}

#product-availability .material-icons {
    line-height: inherit;
}

#product-availability .product-available {
    color: #5c8018;
}

#product-availability .product-unavailable {
    color: #f0ad4e;
}

#product-availability .product-last-items {
    color: #f0ad4e;
}

.product-manufacturer {
    text-align: center;
    display: none;
}

.product-manufacturer .img-thumbnail {
    height: 60px;
}

#product-details .label {
    font-size: 1rem;
    color: #414141;
    font-weight: 600;
    margin-right: 5px;
}

.rtl #product-details .label {
    margin-left: 5px;
    margin-right: inherit;
}

.product-features {
    margin-top: 1.42857rem;
    margin-left: 0.35714rem;
}

.rtl .product-features {
    margin-right: 0.35714rem;
    margin-left: inherit;
}

.product-features>dl.data-sheet {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}

.product-features>dl.data-sheet dd.value,
.product-features>dl.data-sheet dt.name {
    -webkit-flex: 1 0 40%;
    -moz-flex: 1 0 40%;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    font-weight: normal;
    background: #ebebeb;
    padding: 0.71429rem;
    margin-right: 0.71429rem;
    min-height: 2.85714rem;
    word-break: break-all;
}

.product-features>dl.data-sheet dd.value:nth-of-type(even),
.product-features>dl.data-sheet dt.name:nth-of-type(even) {
    background: #f6f6f6;
}

.product-features>dl.data-sheet dt.name {
    text-transform: capitalize;
}

.product-variants {
    display: inline-block;
    width: 100%;
    /* display: none; */
}

.product-variants>.product-variants-item {
    margin: 0 0 1.07143rem;
    width: 100%;
    float: left;
}

.combination-title {
    font-size: 1.3em;
}

.radio-label {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ebebeb;
}

.radio-label-selected {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid black !important;
    background: rgb(167 131 45 / 50%);
    font-weight: 700;
    color: #000;
}

.attr-group-step {
    /* padding: 0px 30px; */
    font-size: 1.25em;
    font-weight: 500;
}

.attr-group-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.attr-group-label {
    border: none;
    margin: 3px 5px;
}

.btn-ficha-tecnica {
    border: 1px solid #ebebeb;
    font-size: 1.2em;
    padding: 15px 20px;
    border-radius: 5px;
    color: grey;
    text-decoration: none;
}

.ficha-tecnica-filename {
    display: block;
    margin-top: 20px;
}

.rtl .product-variants>.product-variants-item {
    float: right;
}

.product-variants>.product-variants-item select {
    border: 1px solid #ebebeb;
    height: 2.28571rem;
    width: 90%;
    max-width: 150px;
}

.product-variants>.product-variants-item ul li {
    /* margin-right: 0.71429rem; */
    /* border: 1px solid; */
    padding: 1px;
}

.rtl .product-variants>.product-variants-item ul li {
    margin-left: 0.71429rem;
    margin-right: inherit;
}

.product-variants>.product-variants-item .color {
    margin-left: 0;
    margin: 0 !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: 80px;
    height: 80px;
}

.rtl .product-variants>.product-variants-item .color {
    margin-right: 0;
    margin-left: inherit;
}

.product-customization {
    margin: 2.85714rem 0;
}

.product-customization .product-customization-item {
    margin: 1.42857rem 0;
}

.product-customization .product-message {
    background: #ebebeb;
    border: none;
    width: 100%;
    height: 3.57143rem;
    resize: none;
    padding: 0.71429rem;
    /* @include placeholder {
    color: $gray;
  } */
}

.product-customization .file-input {
    width: 100%;
    opacity: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
}

.rtl .product-customization .file-input {
    right: 0;
    left: auto;
}

.product-customization .custom-file {
    position: relative;
    background: #ebebeb;
    width: 100%;
    text-indent: 0.71429rem;
    display: block;
    color: #acaaa6;
    margin-top: 1.42857rem;
}

.product-customization .custom-file button {
    z-index: 0;
    position: absolute;
    right: 0;
    line-height: 1.07143rem;
    top: 0;
}

.rtl .product-customization .custom-file button {
    left: 0;
    right: auto;
}

.product-customization small {
    color: #acaaa6;
}

.product-pack {
    margin-top: 2.85714rem;
}

.product-pack .pack-product-container {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
}

.product-pack .pack-product-container .pack-product-name {
    -webkit-flex: 0 0 50%;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    font-size: 1rem;
    color: #acaaa6;
}

.product-pack .pack-product-container .pack-product-quantity {
    border-left: #ebebeb 2px solid;
    padding-left: 0.71429rem;
}

.product-pack .pack-product-container .pack-product-name,
.product-pack .pack-product-container .pack-product-price,
.product-pack .pack-product-container .pack-product-quantity {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.product-refresh {
    margin-top: 1.42857rem;
}

.social-sharing {
    text-align: left;
    display: block;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    padding-top: 30px;
    margin-bottom: 15px
}

.rtl .social-sharing {
    text-align: right;
}

.social-sharing>span {
    color: #000;
    float: left;
}

.rtl .social-sharing>span {
    float: right;
}

.social-sharing ul {
    margin-bottom: 0;
    display: inline-block;
    margin-left: 30px;
}

.rtl .social-sharing ul {
    margin-right: 30px;
    margin-left: inherit;
}

.social-sharing li {
    text-align: center;
    float: left;
    display: inline-block;
    margin: 0 5px 0 0;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    overflow: hidden;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.rtl .social-sharing li {
    float: right;
}

.rtl .social-sharing li {
    margin: 0 0 0 5px;
}

.social-sharing li a {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
}

.social-sharing li a:before {
    display: inline-block;
    width: 100%;
    content: "";
    font-family: "FontAwesome";
    background-image: none;
    font-size: 0.85714rem;
    line-height: 2.14286rem;
}

.social-sharing li a:hover {
    color: transparent;
}

.social-sharing li a span {
    display: none;
}

.social-sharing li.facebook {
    background-color: #cccccc;
}

.social-sharing li.facebook a::before {
    content: "\f09a";
    color: #fff;
}

.social-sharing li.twitter {
    background-color: #cccccc;
}

.social-sharing li.twitter a::before {
    content: "\f099 ";
    color: #fff;
}

.social-sharing li.googleplus {
    background-color: #cccccc;
}

.social-sharing li.googleplus a::before {
    content: "\f0d5";
    color: #fff;
}

.social-sharing li.pinterest {
    background-color: #cccccc;
}

.social-sharing li.pinterest a::before {
    content: "\f231 ";
    color: #fff;
}

.products-selection .title {
    color: #878787;
}

#blockcart-modal .cart-content .btn {
    margin-bottom: 0.71429rem;
    line-height: 1.42857rem;
    font-family: "Source", sans-serif;
    font-size: 12px;
}

@media (max-width: 991px) {
    .product-cover img {
        width: 100%;
    }

    #product-modal .modal-content .modal-body {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -ms-flex-direction: column;
        margin-left: 0;
    }

    #product-modal .modal-content .modal-body img.product-cover-modal {
        width: 100%;
    }

    #product-modal .modal-content .modal-body .arrows {
        display: none;
    }

    #product-modal .modal-content .modal-body .image-caption {
        width: 100%;
    }

    #blockcart-modal .modal-dialog {
        width: calc(100% - 20px);
    }

    #blockcart-modal .modal-body {
        padding: 2.14286rem;
    }
}

@media (max-width: 767px) {
    #blockcart-modal .divide-right {
        border-right: none;
    }

    #blockcart-modal .modal-body {
        padding: 1.14286rem;
    }
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.cart-grid {
    margin-bottom: 1.14286rem;
    margin-top: 45px;
}

.cart-items {
    margin-bottom: 0;
}

.cart-item {
    padding: 1.14286rem 0;
}

.cart-summary-line {
    clear: both;
}

.cart-summary-line .label {
    padding-left: 0;
    font-weight: normal;
    white-space: inherit;
}

.rtl .cart-summary-line .label {
    padding-right: 0;
    padding-left: inherit;
}

.cart-summary-line .value {
    color: #000000;
    float: right;
    font-weight: 600;
    font-size: 17px;

}

.rtl .cart-summary-line .value {
    float: left;
}

.cart-summary-line.cart-summary-subtotals .label,
.cart-summary-line.cart-summary-subtotals .value {
    font-weight: normal;
}

/** CART BODY **/
.cart-grid-body {
    margin-bottom: 1.5rem;
}

.cart-grid-body a.label:hover {
    color: #8e8e8e;
}

.cart-grid-body .card-block {
    padding: 1.14286rem;
}

.cart-grid-body .card-block h1 {
    margin-bottom: 0;
    font-size: 20px;
    text-transform: uppercase;
    color: #8e8e8e;
}

.cart-grid-body hr {
    margin: 0;
}

.cart-grid-body .cart-overview {
    padding: 1.14286rem;
}

/** CART RIGHT **/
.cart-grid-right #block-reassurance {
    background-color: #fff;
    padding: 1.42857rem;
}

.cart-grid-right hr {
    margin: 0;
}

.cart-grid-right .promo-discounts {
    margin-bottom: 0;
}

.cart-grid-right .promo-discounts .cart-summary-line .label {
    color: #878787;
}

.cart-grid-right .promo-discounts .cart-summary-line .label .code {
    text-decoration: underline;
    cursor: pointer;
}

.block-promo .promo-code {
    padding: 1.60rem;
    background: #ebebeb;
}

.block-promo .promo-code .alert-danger {
    position: relative;
    margin-top: 1.42857rem;
    background: #d9534f;
    color: white;
    display: none;
}

.block-promo .promo-code .alert-danger::after {
    bottom: 100%;
    left: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #d9534f;
    border-width: 10px;
    margin-left: -10px;
}

.rtl .block-promo .promo-code .alert-danger::after {
    margin-right: -10px;
    margin-left: inherit;
}

.block-promo .promo-input {
    color: #414141;
    border: #acaaa6 1px solid;
    height: 2.85714rem;
    text-indent: 0.71429rem;
    width: 60%;
}

.block-promo .promo-input+button {
    margin-top: -4px;
    text-transform: capitalize;
}

.block-promo .cart-summary-line .label,
.block-promo .promo-name {
    color: #f0ad4e;
    font-weight: 600;
}

.block-promo .cart-summary-line .label a,
.block-promo .promo-name a {
    font-weight: normal;
    color: #414141;
    display: inline-block;
}

.block-promo .promo-code-button {
    padding-left: 1.42857rem;
    margin-bottom: 1.42857rem;
    display: inline-block;
    background: #a0a0a0;
    padding: 10px;
    margin: 15px;
    color: #fff;
    font-weight: 600;
    width: 91%;
    text-align: center;
}

.rtl .block-promo .promo-code-button {
    padding-right: 1.42857rem;
    padding-left: inherit;
}

.block-promo.promo-highlighted {
    padding: 1.42857rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

/** CONTENT LEFT **/
.product-line-grid-left img {
    max-width: 100%;
}

/** CONTENT BODY **/
.product-line-grid-body>.product-line-info>.label {
    padding: 0;
    line-height: inherit;
    text-align: left;
    white-space: inherit;
}

.product-line-grid-body>.product-line-info>.out-of-stock {
    color: red;
}

.product-line-grid-body>.product-line-info>.available {
    color: #5c8018;
}

.product-line-grid-body>.product-line-info>.unit-price-cart {
    padding-left: 0.3125rem;
    font-size: 0.875rem;
    color: #878787;
}

.rtl .product-line-grid-body>.product-line-info>.unit-price-cart {
    padding-right: 0.3125rem;
    padding-left: inherit;
}

/** CONTENT LEFT **/
.product-line-grid-right .bootstrap-touchspin {
    width: 4.85714rem;
}

.product-line-grid-right .bootstrap-touchspin>.form-control,
.product-line-grid-right .bootstrap-touchspin>.input-group {
    color: #414141;
    background-color: white;
    height: 2.5rem;
    padding: 0.175rem 0.5rem;
    text-align: center;
    font-size: 1.14286rem;
}

.product-line-grid-right .bootstrap-touchspin>.input-group-btn-vertical {
    width: auto;
}

.product-line-grid-right .cart-line-product-actions,
.product-line-grid-right .product-price {
    line-height: 36px;
}

.product-line-grid-right .cart-line-product-actions .remove-from-cart,
.product-line-grid-right .product-price .remove-from-cart {
    color: #414141;
    display: inline-block;
    margin-top: 0.35714rem;
}

/*** Responsive part ***/
@media (max-width: 767px) {
    .product-line-grid-body {
        margin-bottom: 1.14286rem;
    }
}

@media (max-width: 575px) {
    .cart-items {
        padding: 1.14286rem 0;
    }

    .cart-item {
        border-bottom: 1px solid #ebebeb;
    }

    .cart-item:last-child {
        border-bottom: 0;
    }

    .cart-grid-body .cart-overview {
        padding: 0;
    }

    .cart-grid-body .no-items {
        padding: 1.14286rem;
        display: inline-block;
    }

    .product-line-grid-left {
        padding-right: 0 !important;
    }

    .rtl .product-line-grid-left {
        padding-left: 0 !important;
        padding-right: inherit;
    }
}

@media (max-width: 575px) {
    .product-line-grid-right .qty {
        width: 100%;
    }

    .product-line-grid-right .price {
        width: 100%;
    }
}

.blockcart .header .cart-products-count {
    background: transparent url(../img/data/icon-cart.png) no-repeat scroll 0 0;
    background-position: left center;
    padding: 0 0 0 25px;
    display: inline-block;
    margin-top: 0;
    vertical-align: middle;
}

.rtl .blockcart .header .cart-products-count {
    background-position: right center;
}

.rtl .blockcart .header .cart-products-count {
    padding: 0 25px 0 0;
}

.blockcart .header .cart-products-count span {
    padding: 0 2px 0 0;
    color: #000000;
    font-family: "Source", sans-serif;
}

.rtl .blockcart .header .cart-products-count span {
    padding: 0 0 0 2px;
}

@media (max-width: 991px) {
    .blockcart .header .cart-label {
        display: none;
    }
}

.blockcart {
    position: relative;
    text-align: right;
    display: inline-block;
}

.rtl .blockcart {
    text-align: left;
}

@media (max-width: 575px) {
    .blockcart {
        text-align: center !important;
    }
}

.blockcart .ps_cartcontent {
    position: absolute;
    right: 0;
    visibility: hidden;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    background: #fff;
    padding: 0.71429rem;
    width: 21.42857rem;
    top: 7.14286rem;
    line-height: normal;
    max-height: 800px;
    /*overflow-y: scroll;*/
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    z-index: 10;
}

.rtl .blockcart .ps_cartcontent {
    left: 0;
    right: auto;
}

.blockcart .ps_cartcontent .car-product {
    position: relative;
    padding: 0.71429rem;
    border-bottom: 1px solid #ebebeb;
    text-align: right;
}

.rtl .blockcart .ps_cartcontent .car-product {
    text-align: left;
}

.blockcart .ps_cartcontent .car-product>* {
    display: block;
}

.blockcart .ps_cartcontent .car-product .cart-image {
    margin-right: 15px;
}

.rtl .blockcart .ps_cartcontent .car-product .cart-image {
    margin-left: 15px;
    margin-right: inherit;
}

.blockcart .ps_cartcontent .car-product .cart-name {
    font-weight: normal;
    font-size: 14px;
    text-transform: capitalize;
}

.blockcart .ps_cartcontent .car-product .cart-name a {
    color: #000;
    font-weight: 100;
}

.blockcart .ps_cartcontent .car-product .cart-name a:hover {
    color: #8e8e8e;
}

.blockcart .ps_cartcontent .remove-from-cart {
    position: absolute;
    right: 0;
    top: 0.35714rem;
    color: red;
}

.rtl .blockcart .ps_cartcontent .remove-from-cart {
    left: 0;
    right: auto;
}

.blockcart .ps_cartcontent .cart-quantity label {
    margin-right: 0.35714rem;
}

.rtl .blockcart .ps_cartcontent .cart-quantity label {
    margin-left: 0.35714rem;
    margin-right: inherit;
}

.blockcart .ps_cartcontent .cart-group {
    padding: 0.71429rem 1rem 0;
    text-align: right;
}

.rtl .blockcart .ps_cartcontent .cart-group {
    text-align: left;
}

.blockcart .ps_cartcontent .cart_total {
    margin-bottom: 1.21429rem;
    padding-bottom: 3px;
    border-bottom: 1px solid #ebebeb;
    color: #000;
    font-size: 16px;
}

.blockcart .ps_cartcontent .cart-buttons a {
    display: inline-block;
    background: #000;
    color: #fff;
    /*border: 3px double #fff;*/
    padding: 7px 10px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    font-family: "Source", sans-serif;
}

.blockcart .ps_cartcontent .cart-buttons a:hover {
    background-color: #3c3c3c;
    color: #fff;
    border-color: #8e8e8e;
}

.blockcart:hover .ps_cartcontent {
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    top: 100%;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
#block-reassurance {
    background: #fff;
    padding: 20px 20px 20px 0;
}

.rtl #block-reassurance {
    padding: 20px 0 20px 20px;
}

#block-reassurance ul {
    margin-bottom: 0;
}

#block-reassurance img {
    opacity: .7;
    width: 26px !important;
    margin-right: 0.71429rem;
    margin-bottom: 0px;
    float: left;
}

.rtl #block-reassurance img {
    margin-left: 0.71429rem;
    margin-right: inherit;
}

#block-reassurance li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#block-reassurance li:last-child {
    border: 0;
}

#block-reassurance li .block-reassurance-item {
    padding: 8px 10px;
}

#product #block-reassurance {
    padding: 10px;
    border: 1px solid #e8e8e8;
    margin-top: 25px;
    background: #f1f1f1;
}

#product #block-reassurance span {
    font-weight: 600;
    color: #666666;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.quickview .modal-dialog {
    width: calc(100% - 30px);
    max-width: 73.14286rem;
}

.quickview .modal-content {
    background: #fff;
    min-height: 32.14286rem;
}

.quickview .modal-header {
    border: none;
    padding: 0.71429rem;
}

.quickview .modal-body {
    min-height: 27.14286rem;
}

.quickview .modal-footer {
    border: 0;
}

.quickview .modal-footer .social-sharing {
    border-top: 1px solid #e8e8e8;
}

.quickview .layer {
    display: none;
}

.quickview .product-cover img {
    width: 95%;
}

.quickview .images-container {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    min-height: 25rem;
}

.quickview .mask {
    width: 33%;
    height: 25.21429rem;
    overflow: hidden;
    padding-left: 0.71429rem;
}

.rtl .quickview .mask {
    padding-right: 0.71429rem;
    padding-left: inherit;
}

.quickview .mask .product-images>li.thumb-container {
    margin: 0 0 10px 0;
    width: 100%;
}

.rtl .quickview .mask .product-images>li.thumb-container {
    margin: 0 0 10px 0;
}

.quickview .arrows {
    position: absolute;
    right: 14px;
    width: 90px;
    z-index: 0;
}

.rtl .quickview .arrows {
    left: 14px;
    right: auto;
}

.quickview .arrows>i {
    width: 44px;
    border: 1px solid #e8e8e8;
    line-height: 18px;
    text-align: center;
    display: inline-block;
    float: left;
    cursor: pointer;
}

.rtl .quickview .arrows>i {
    float: right;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
#stores .page-stores {
    margin: 0 auto;
}

#stores .page-stores .store-item {
    padding-left: 0.85714rem;
    padding-right: 0.85714rem;
}

#stores .page-stores .store-picture img {
    max-width: 100%;
}

#stores .page-stores .store-item-container {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    padding: 2.14286rem 0;
}

#stores .page-stores .store-item-container ul {
    margin-bottom: 0;
    font-size: 1.25rem;
}

#stores .page-stores .store-item-container .divide-left {
    border-left: #ebebeb 1px solid;
}

#stores .page-stores .store-item-container .divide-left tr {
    height: 1.78571rem;
}

#stores .page-stores .store-item-container .divide-left td {
    padding-left: 0.42857rem;
}

#stores .page-stores .store-item-container .divide-left th {
    text-align: right;
}

#stores .page-stores .store-item-container .store-description {
    font-size: 1rem;
}

#stores .page-stores .store-item-footer {
    margin-top: 0.57143rem;
    padding-top: 0.57143rem;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

#stores .page-stores .store-item-footer.divide-top {
    border-top: #ebebeb 1px solid;
}

#stores .page-stores .store-item-footer div:first-child {
    -webkit-flex: 0 0 65%;
    -moz-flex: 0 0 65%;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
}

#stores .page-stores .store-item-footer i.material-icons {
    margin-right: 0.71429rem;
    color: #acaaa6;
    font-size: 1rem;
}

#stores .page-stores .store-item-footer li {
    margin-bottom: 0.71429rem;
}

/*** Responsive part ***/
@media (max-width: 767px) {
    #stores .page-stores {
        width: 100%;
    }

    #stores .page-stores .store-item-container {
        padding: 1.14286rem 0;
    }
}

@media (max-width: 575px) {
    #stores .page-stores .store-item-container {
        display: block;
    }

    #stores .page-stores .store-item-container .divide-left {
        border-left: none;
    }

    #stores .page-stores .store-item-container .store-description a {
        margin-bottom: 0.57143rem;
    }

    #stores .page-stores .store-item-container .store-description address {
        margin-bottom: 0.57143rem;
    }

    #stores .page-stores .store-item-footer {
        display: block;
    }

    #stores .page-stores .store-item-footer.divide-top {
        border-top: #ebebeb 1px solid;
    }

    #stores .page-stores .store-item-footer li {
        margin-bottom: 0.71429rem;
    }

    #stores .page-stores .store-item-footer .card-block {
        padding: 0.85714rem 0.85714rem 0;
    }
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.block-contact {
    border-left: #ebebeb 2px solid;
    padding-left: 3.42857rem;
    color: #acaaa6;
}

.block-contact .block-contact-title {
    color: #414141;
}

.linklist .blockcms-title a {
    color: #414141;
}

.account-list a {
    color: #fff;
}

.account-list a:hover {
    color: #bcbcbc;
}

.blockcms-title,
.myaccount-title,
.myaccount-title a,
.block-contact-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.block-social {
    text-align: right;
}

.rtl .block-social {
    text-align: left;
}

.block-social li {
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
}

.block-social li a {
    height: 3.57143rem;
    line-height: 3.57143rem;
    width: 3.57143rem;
    display: inline-block;
    font-size: 21px;
    position: relative;
    color: #fff;
    text-align: center;
}

.footer-container {
    overflow: hidden;
    margin-bottom: -30px;
}

.footer-container li {
    margin-bottom: 0.11429rem;
}

.footer-container li a {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    text-transform: inherit;
    line-height: 22px;
}

.footer-container .links .collapse {
    display: inherit;
}

@media (max-width: 767px) {
    .footer-container {
        box-shadow: none;
        margin-top: 0;
    }

    .footer-container .wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-container .links .h3 {
        line-height: 1.5;
        font-size: 1.14286rem;
    }

    .footer-container .links .title {
        padding: 0 0 15px;
        margin: 0;
        line-height: 42px;
        border: 1px dashed rgba(255, 255, 255, 0.1);
        cursor: pointer;
    }

    .footer-container .links .title .collapse-icons .remove {
        display: none;
    }

    .footer-container .links .title[aria-expanded="true"] .collapse-icons .add {
        display: none;
    }

    .footer-container .links .title[aria-expanded="true"] .collapse-icons .remove {
        display: block;
    }

    .footer-container .links .navbar-toggler {
        display: inline-block;
        padding: 0;
    }

    .footer-container .links .collapse {
        display: none;
    }

    .footer-container .links .collapse.in {
        display: block;
    }

    .footer-container .links ul {
        background-color: transparent;
        border: 1px dashed rgba(255, 255, 255, 0.1);
        padding: 15px;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .block-contact {
        padding-left: 1.71429rem;
    }
}

.custom-html .intro {
    margin-bottom: 10px;
}

.custom-html ul.list-group li {
    padding: 8px 0;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    margin: 0;
    cursor: pointer;
}

@media (max-width: 767px) {
    .custom-html ul.list-group li {
        padding: 11px 0;
    }
}

.custom-html ul.list-group li i {
    border: 1px solid #999;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #999;
    font-size: 12px;
    line-height: 26px;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    float: left;
}

.rtl .custom-html ul.list-group li i {
    margin-left: 8px;
    margin-right: inherit;
}

.rtl .custom-html ul.list-group li i {
    float: right;
}

.custom-html ul.list-group li:hover i {
    background-color: #8e8e8e;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    border-color: transparent;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.contact-rich {
    color: #878787;
    margin-bottom: 2.28571rem;
}

.contact-rich .block-content {
    padding: 10px;
    background-color: #fff;
}

.contact-rich .block {
    margin-bottom: 0;
    padding: 20px 5px;
    overflow: hidden;
}

.contact-rich .block .icon {
    float: left;
    width: 3.57143rem;
    overflow: hidden;
}

.contact-rich .block .icon i {
    border: 1px solid #ebebeb;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    -webkit-transition: 0.3s all ease 0s;
    -o-transition: 0.3s all ease 0s;
    transition: 0.3s all ease 0s;
}

.contact-rich .block .data {
    color: #414141;
    width: auto;
    overflow: hidden;
}

.contact-rich .block:hover .icon i {
    background-color: #8e8e8e;
    border-color: #8e8e8e;
    color: #fff;
}

.contact-form {
    background: #fff;
    padding: 2.14286rem;
}

.contact-form textarea {
    min-height: 200px;
}

.contact-form h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form .row {
    margin-bottom: 30px;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.page-not-found {
    margin: 50px 0;
    position: relative;
}

@media (min-width: 992px) {
    .page-not-found {
        margin: 110px 0;
    }

    .page-not-found:before {
        background: url(../img/data/404_2.png) right center no-repeat;
        min-height: 310px;
        width: 520px;
        right: -26%;
        top: 0;
        content: "";
        position: absolute;
    }

    .rtl .page-not-found:before {
        left: -26%;
        right: auto;
    }
}

.page-not-found .wrap .img-404 {
    background: url(../img/data/404.png) center center no-repeat;
    /* min-height: 348px; */
    padding: 18%;
    text-align: center;
}

@media (max-width: 575px) {
    .page-not-found .wrap .img-404 {
        background-size: 100%;
    }
}

.page-not-found .wrap h4 {
    text-transform: capitalize;
    font-size: 30px;
    color: #1b1b1b;
    font-weight: bold;
    display: block;
    margin: 40px 0 20px 0;
    position: relative;
    padding-top: 40px;
}

.page-not-found .wrap h4:before {
    position: absolute;
    top: -20%;
    width: 46px;
    height: 40px;
    left: 50%;
    margin-left: -23px;
    content: "";
    background: url("../img/data/title_top1.png") no-repeat center center transparent;
    background-size: 90%;
}

.page-not-found p {
    color: #777;
    font-size: 1.14286rem;
}

.page-not-found .search-widget {
    max-width: 45rem;
    margin: 0 auto;
}

.page-not-found .search-widget input {
    background-color: #f5f5f5;
}

.page-not-found .search-widget .btnsearch {
    border-left: 2px solid #8e8e8e;
}

.rtl .page-not-found .search-widget .btnsearch {
    border-right: 2px solid #8e8e8e;
    border-left: 0;
}

.page-not-found .btn {
    text-transform: uppercase;
    font-size: 0.92857rem;
    font-weight: 700;
    margin-top: 1.42857rem;
}

.page-not-found .btn .fa {
    margin: 0 0.71429rem;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
.customization-modal .modal-content {
    border-radius: 0;
    border: 1px solid #f6f6f6;
}

.customization-modal .modal-content .modal-body {
    padding-top: 0;
}

.customization-modal .modal-content .modal-body .product-customization-line {
    padding-bottom: 1.07143rem;
    padding-top: 1.07143rem;
    border-bottom: 1px solid #f6f6f6;
}

.customization-modal .modal-content .modal-body .product-customization-line .label {
    font-weight: bold;
    text-align: right;
}

.customization-modal .modal-content .modal-body .product-customization-line:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
/*** Responsive part ***/
@media (max-width: 767px) {
    #wrapper {
        box-shadow: none;
    }

    #checkout-cart-summary {
        float: none;
        width: 100%;
        margin-top: 1rem;
    }

    section.checkout-step {
        width: 100%;
    }

    .default-input {
        min-width: 100%;
    }

    label {
        clear: both;
    }

    #products .product-miniature,
    .featured-products .product-miniature {
        margin: 0 auto;
    }

    .block-contact {
        padding-left: 0.9375rem;
        border: none;
    }

    .header-bottom .wrapper {
        position: relative;
    }

    .header-bottom .wrapper #pts-verticalmenu {
        position: static;
        width: 3.57143rem;
    }

    .header-bottom .wrapper #pts-verticalmenu>.title_block {
        padding: 0.71429rem 1.07143rem;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 100%;
    }

    #header .logo {
        width: auto;
    }

    #products .product-miniature,
    .featured-products .product-miniature {
        margin: 0 auto;
    }

    .sub-menu {
        left: 0;
        min-width: 100%;
    }

    .rtl .sub-menu {
        right: 0;
        left: auto;
    }

    #blockcart-modal .product-image {
        width: 100%;
        display: block;
        max-width: 250px;
        margin: 0 auto 1.07143rem;
    }

    #blockcart-modal .cart-content {
        padding-left: 0;
    }

    #blockcart-modal .product-name,
    #procuct-availability {
        margin-top: 0.71429rem;
    }

    #search_filters .facet .facet-label {
        text-align: left;
    }

    .rtl #search_filters .facet .facet-label {
        text-align: right;
    }

    .block-category .category-cover {
        position: relative;
        text-align: center;
    }

    .block-category {
        padding-bottom: 0;
    }
}

/* RIGHT TO LEFT */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* DOUBLE BORDERS */
/* TRIPLE BORDERS */
/* FONT FACE */
/* OPACITY */
/* TEXT SHADOW */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/**parallax**/
/**absolute**/
/*  
 * LAYOUT VARIABLES 
 */
#pts-verticalmenu {
    position: relative;
    margin: 0;
    max-width: 100%;
}

#pts-verticalmenu .pts-verticalmenu {
    position: absolute;
    width: 100%;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
    #pts-verticalmenu:hover .pts-verticalmenu {
        display: block !important;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        top: 3.57143rem;
        visibility: visible;
    }
}

#pts-verticalmenu .title_block {
    color: #fff;
    background-color: #333333;
    font-size: 18px;
    line-height: 1.42857rem;
    margin: 0;
    padding: 0.71429rem 1.42857rem;
}

#pts-verticalmenu .title_block:before,
#pts-verticalmenu .title_block:after {
    display: none;
}

#pts-verticalmenu .vertical-menu-builder .title_block {
    background-color: transparent;
    color: #333333;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 0 0 0.71429rem;
    text-transform: uppercase;
    text-align: left;
}

.rtl #pts-verticalmenu .vertical-menu-builder .title_block {
    text-align: right;
}

#pts-verticalmenu .vertical-menu-builder .block {
    margin-bottom: 0;
}

#pts-verticalmenu .vertical-menu-builder .style1 .grid .owl-item .product-miniature {
    border-bottom: 0;
}

@media (max-width: 1175px) {
    #pts-verticalmenu .vertical-menu-builder .style1 .grid .owl-item .product-miniature {
        border: none !important;
    }
}

#pts-verticalmenu .vertical-menu-builder .style1 .grid .owl-item:last-child .product-miniature {
    border: none;
}

.pts-verticalmenu .navbar-nav {
    position: static;
    padding: 0;
    margin: 0;
    color: #222;
    font-size: #222;
    font-weight: 300;
    font-family: "Crimson";
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.07);
    border: none;
    background-color: #1b1b1b;
    float: none;
    width: 100%;
}

.pts-verticalmenu .navbar-nav>li {
    display: block;
}

.pts-verticalmenu .navbar-nav>li>a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid transparent;
    display: block;
    color: #828282;
    font-size: 0.85714rem;
    padding: 0.82143rem 1.07143rem;
    position: relative;
    text-transform: uppercase;
}

.pts-verticalmenu .navbar-nav>li>a span.hasicon {
    padding-left: 1.42857rem;
}

.rtl .pts-verticalmenu .navbar-nav>li>a span.hasicon {
    padding-right: 1.42857rem;
    padding-left: inherit;
}

.pts-verticalmenu .navbar-nav>li>a span.hasicon.menu-icon {
    padding: 0 !important;
    margin: 0 10px 0 0;
}

.rtl .pts-verticalmenu .navbar-nav>li>a span.hasicon.menu-icon {
    margin: 0 0 0 10px;
}

.pts-verticalmenu .navbar-nav>li>a span.hasicon.menu-icon .menu-title {
    padding: 0 0 0 10px;
}

.rtl .pts-verticalmenu .navbar-nav>li>a span.hasicon.menu-icon .menu-title {
    padding: 0 10px 0 0;
}

.pts-verticalmenu .navbar-nav>li>a .material-icons,
.pts-verticalmenu .navbar-nav>li>a .fa {
    position: absolute;
    left: 1.07143rem;
    top: 0.71429rem;
    cursor: pointer;
}

.rtl .pts-verticalmenu .navbar-nav>li>a .material-icons,
.rtl .pts-verticalmenu .navbar-nav>li>a .fa {
    right: 1.07143rem;
    left: auto;
}

.pts-verticalmenu .navbar-nav>li>a .menu-desc {
    font-style: normal;
    font-family: "Crimson";
    color: #6f757c;
    font-weight: 300;
    font-size: 0.85714rem;
    font-style: italic;
    line-height: 14px;
}

.pts-verticalmenu .navbar-nav>li:focus>a,
.pts-verticalmenu .navbar-nav>li:hover>a {
    color: #8e8e8e;
    border-color: #1b1b1b #1b1b1b rgba(255, 255, 255, 0.07);
}

@media (max-width: 991px) {
    .pts-verticalmenu .navbar-nav>li.open .dropdown-menu {
        display: block;
        top: 0;
    }
}

.pts-verticalmenu .navbar-nav>li:last-child>a {
    border-bottom: 0;
}

.pts-verticalmenu .dropdown-menu {
    top: 0;
    border: 0;
    min-height: 100%;
    min-width: 215px;
    background: #fff;
    font-family: "Crimson";
    color: #8a8a8a;
    margin-top: 1px;
    font-size: 0.92857rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    .pts-verticalmenu .dropdown-menu {
        padding: 20px 0;
        -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        display: block;
        visibility: hidden !important;
    }
}

@media (max-width: 991px) {
    .pts-verticalmenu .dropdown-menu {
        width: 100% !important;
    }
}

.pts-verticalmenu .dropdown-menu a {
    color: #8a8a8a;
}

.pts-verticalmenu .dropdown-menu a:hover {
    color: #8e8e8e;
}

.pts-verticalmenu .dropdown-menu .nav-links li a {
    display: block;
    padding: 0.5rem 0;
}

.pts-verticalmenu .dropdown-menu .dropdown-menu-inner ul {
    margin-bottom: 0;
}

.pts-verticalmenu .dropdown-menu .dropdown-menu-inner ul li {
    border: 0;
    padding: 0 1.42857rem;
    line-height: normal;
    list-style: none;
    display: block;
    position: relative;
}

.pts-verticalmenu .dropdown-menu .dropdown-menu-inner ul li a {
    color: #8a8a8a;
    font-size: 0.92857rem;
    font-weight: 300;
    display: block;
    padding: 0.57143rem 0;
    position: relative;
}

.pts-verticalmenu .dropdown-menu .dropdown-menu-inner ul li:hover>a {
    color: #8e8e8e;
}

.pts-verticalmenu .dropdown-menu .dropdown-menu-inner ul li.last a,
.pts-verticalmenu .dropdown-menu .dropdown-menu-inner ul li:last-child a {
    border: 0;
}

.pts-verticalmenu .widget-subcategories li a {
    padding: 0.5rem 0;
    display: block;
}

@media (min-width: 992px) {
    .vertical-menu-builder {
        padding: 0.71429rem 1.07143rem;
    }
}

.vertical-menu-builder .container {
    max-width: 100%;
}

.vertical-menu-builder .container .title_block {
    padding: 0;
}

@media (max-width: 991px) {

    .pts-verticalmenu .navbar-nav>li>.dropdown-menu,
    .pts-megamenu .navbar-nav>li>.dropdown-menu {
        position: relative;
    }
}

@media (min-width: 992px) {

    #right-column .pts-verticalmenu .navbar-nav>li>.dropdown-menu,
    .right .pts-verticalmenu .navbar-nav>li>.dropdown-menu {
        left: inherit;
        right: 120%;
        -webkit-transition: all 0.2s ease-in 0s;
        -o-transition: all 0.2s ease-in 0s;
        transition: all 0.2s ease-in 0s;
    }

    .rtl #right-column .pts-verticalmenu .navbar-nav>li>.dropdown-menu,
    .rtl .right .pts-verticalmenu .navbar-nav>li>.dropdown-menu {
        left: 120%;
        right: auto;
    }

    #right-column .pts-verticalmenu .navbar-nav>li:focus>.dropdown-menu,
    #right-column .pts-verticalmenu .navbar-nav>li:hover>.dropdown-menu,
    .right .pts-verticalmenu .navbar-nav>li:focus>.dropdown-menu,
    .right .pts-verticalmenu .navbar-nav>li:hover>.dropdown-menu {
        visibility: visible !important;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        right: 100%;
    }

    .rtl #right-column .pts-verticalmenu .navbar-nav>li:focus>.dropdown-menu,
    .rtl #right-column .pts-verticalmenu .navbar-nav>li:hover>.dropdown-menu,
    .rtl .right .pts-verticalmenu .navbar-nav>li:focus>.dropdown-menu,
    .rtl .right .pts-verticalmenu .navbar-nav>li:hover>.dropdown-menu {
        left: 100%;
        right: auto;
    }
}

#right-column .pts-verticalmenu .navbar-nav>li.parent,
.right .pts-verticalmenu .navbar-nav>li.parent {
    position: relative;
}

#right-column .pts-verticalmenu .navbar-nav>li.parent>a:after,
.right .pts-verticalmenu .navbar-nav>li.parent>a:after {
    top: 0.57143rem;
    content: "+";
    border: 0;
    width: 1.42857rem;
    height: 1.42857rem;
    position: absolute;
    display: block;
    text-align: center;
}

#right-column .pts-verticalmenu .navbar-nav>li .parent>a:after,
.right .pts-verticalmenu .navbar-nav>li .parent>a:after {
    top: 0.5rem;
    content: "\f105";
    border: 0;
    width: 1.42857rem;
    height: 1.42857rem;
    position: absolute;
    display: block;
    text-align: center;
}

#right-column .pts-verticalmenu .navbar-nav>li .parent:hover>.dropdown-menu,
.right .pts-verticalmenu .navbar-nav>li .parent:hover>.dropdown-menu {
    right: 100%;
    top: 0px;
    visibility: visible !important;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in 0s;
    -o-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

.rtl #right-column .pts-verticalmenu .navbar-nav>li .parent:hover>.dropdown-menu,
.rtl .right .pts-verticalmenu .navbar-nav>li .parent:hover>.dropdown-menu {
    left: 100%;
    right: auto;
}

@media (min-width: 992px) {

    #left-column .pts-verticalmenu .navbar-nav .parent>a:after,
    .left .pts-verticalmenu .navbar-nav .parent>a:after {
        top: 0.71429rem;
        content: "\f105";
        border: 0;
        width: 1.42857rem;
        height: 1.42857rem;
        position: absolute;
        display: block;
        text-align: center;
        right: 0;
        font-family: "FontAwesome";
    }

    .rtl #left-column .pts-verticalmenu .navbar-nav .parent>a:after,
    .rtl .left .pts-verticalmenu .navbar-nav .parent>a:after {
        left: 0;
        right: auto;
    }

    #left-column .pts-verticalmenu .navbar-nav .parent .dropdown-menu,
    .left .pts-verticalmenu .navbar-nav .parent .dropdown-menu {
        left: 120%;
        visibility: hidden !important;
    }

    .rtl #left-column .pts-verticalmenu .navbar-nav .parent .dropdown-menu,
    .rtl .left .pts-verticalmenu .navbar-nav .parent .dropdown-menu {
        right: 120%;
        left: auto;
    }

    #left-column .pts-verticalmenu .navbar-nav .parent:hover>.dropdown-menu,
    .left .pts-verticalmenu .navbar-nav .parent:hover>.dropdown-menu {
        visibility: visible !important;
        left: 100%;
        top: 0px;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }

    .rtl #left-column .pts-verticalmenu .navbar-nav .parent:hover>.dropdown-menu,
    .rtl .left .pts-verticalmenu .navbar-nav .parent:hover>.dropdown-menu {
        right: 100%;
        left: auto;
    }
}

@media (max-width: 991px) {

    #left-column .pts-verticalmenu .navbar-nav .dropdown-menu,
    .left .pts-verticalmenu .navbar-nav .dropdown-menu {
        position: relative;
    }

    #left-column .pts-verticalmenu .navbar-nav .parent .click-vertical-menu,
    .left .pts-verticalmenu .navbar-nav .parent .click-vertical-menu {
        top: 0.57143rem;
        width: 1.42857rem;
        height: 1.42857rem;
        position: absolute;
        display: block;
        text-align: center;
        cursor: pointer;
        right: 1.42857rem;
    }

    .rtl #left-column .pts-verticalmenu .navbar-nav .parent .click-vertical-menu,
    .rtl .left .pts-verticalmenu .navbar-nav .parent .click-vertical-menu {
        left: 1.42857rem;
        right: auto;
    }
}

.rtl #left-column .pts-verticalmenu .navbar-nav .parent>a::after,
.rtl .left .pts-verticalmenu .navbar-nav .parent>a::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.sidebar.block-borderbox {
    border-top: 0;
}

.sidebar #pts-verticalmenu {
    margin: 0 0 20px !important;
}

.sidebar .pts-verticalmenu {
    z-index: 75;
}

.sidebar #pts-verticalmenu .pts-verticalmenu {
    position: static;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    z-index: 80;
    display: block !important;
    visibility: visible;
}

.widget-module #pts-verticalmenu {
    margin: 0 0 30px !important;
}

.widget-module .pts-verticalmenu {
    z-index: 75;
}

@media (min-width: 992px) {
    .widget-module #pts-verticalmenu .pts-verticalmenu {
        position: static;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        z-index: 80;
        display: block !important;
        visibility: visible;
    }
}

#index #page {
    padding: 0 !important;
}

#index .header2 {
    background-color: transparent;
}

#index .header2.mini-navbar {
    background-color: #fff;
}

.header2.mini-navbar {
    background-color: #080808;
}

.widget-latestblog {
    padding-top: 60px;
    border-top: 1px solid #e8e8e8;
}

.block .title_block:after {
    /*background: url("../img/data/title_bottom3.png") no-repeat center center transparent;*/
}

.block-highlighted .title_block:before {
    background: url("../img/data/title_top3.png") no-repeat center center transparent;
    width: 40px;
    height: 30px;
}


/*UX Agencia*/

.nomostrar {
    display: none;
}

.centrar {
    text-align: center;
    margin: auto;
    width: 100%;
}

.marg-icon {
    text-align: center;
}

.title_block1 {
    position: relative;
    background: transparent;
    color: #1b1b1b;
    text-transform: initial;
    font-family: "Crimson";
    font-size: 1.71429rem;
    padding: 15px 0 35px 0;
    font-weight: 700;
    margin: 0 0 15px;
    /* text-align: left; */
}

.title_block1:after {
    position: absolute;
    text-align: center;
    bottom: 10%;
    width: 100%;
    height: 12px;
    left: 0;
    content: "";
    background: url(../img/data/title_bottom3.png) no-repeat center center transparent;
}

/*finca*/
.finca {
    background-image: url("/tienda/img/finca.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 170px;
    background-position-y: -90px;
    text-align: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.finca h4 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.finca p {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
	font-family: "Crimson";
    line-height: 37px;
		
}

/*cabezotes*/
.historia {
    /*background-image: url("/tienda/img/historia.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 170px;
    background-position-y: -90px;
    text-align: center;
    background-repeat: no-repeat;*/
    background-image: url(/tienda/img/extrem-contacto.jpg);
    background-size: 100%;
    background-position: center -70px;
    padding: 215px;
    text-align: center;
    background-repeat: no-repeat;
    z-index: 99;
    width: 120%;
    left: -25px;
    margin-left: -95px;
    margin-top: -30px;
}

.historia h4 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.historia p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.historia-footer {
    background-image: url(/tienda/img/historia-footer.jpg);
    background-size: 100%;
    background-position: center -190px;
    padding: 110px;
    text-align: center;
    background-repeat: no-repeat;
    z-index: 99;
    width: 117%;
    left: -25px;
    margin-left: -95px;
    margin-top: -15px;
}

.historia-footer h4 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.historia-footer p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.visitanos {
    background-image: url(/tienda/img/extrem-otros-paises-.jpg);
    background-size: 100%;
    background-position: center -70px;
    padding: 215px;
    text-align: center;
    background-repeat: no-repeat;
    z-index: 99;
    width: 120%;
    left: -25px;
    margin-left: -95px;
    margin-top: -30px;
}

.visitanos h4 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.contactenos {
    background-image: url(/tienda/img/extrem-contacto.jpg);
    background-size: 100%;
    background-position: center -70px;
    padding: 215px;
    text-align: center;
    background-repeat: no-repeat;
    z-index: 96;
    width: 120%;
    left: -25px;
    margin-left: -95px;
    margin-top: -70px;
    margin-bottom: 50px;
}

.contactenos h4 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.packs {
    background-image: url("/tienda/img/packs.jpg");
    background-size: 95%;
    background-position: center 34px;
    padding: 215px;
    text-align: center;
    background-repeat: no-repeat;
    z-index: 99;
    width: 120%;
    left: -25px;
    margin-left: -125px;
    margin-top: -64px;
}

.packs h4 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
}

.packs p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.bg-packs {
    background: #fff;
    border: solid 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}

.bg-packs .content {
    margin-top: 0;
    margin-left: 0;
}


/*otros*/

.logo-extrem {
    background-image: url("/tienda/img/logo-extrem.png");
    width: 226px;
    height: 51px;
    background-size: 226px 51px;
    position: center center;
    background-repeat: no-repeat;
    margin-top: 8px;
}

.caracteristicas {
    text-align: left;
    font-size: 14px;
    margin-top: 25px;
}

.bold {
    font-weight: 600;
}

.iconcarc {
    float: left;
    margin: 15px;
    width: 71px;
}

.iconcarc-1 {
    float: left;
    margin-top: -12px;
    width: 65px;
}

.margenlinea {
    margin: 10px 0;
}

.boton {
    padding: 10px 25px;
    border: 1px solid #fff !important;
    color: #fff;
    font-family: "Source", sans-serif;
    font-size: 12px;
}

.boton:hover {
    color: #fff;
    background: #000;
    border: 1px solid #000 !important;
}

.boton-fn {
    padding: 10px 25px;
    border: 1px solid #fff !important;
    color: #fff;
}

.boton-fn:hover {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #fff !important;
}

.boton-negro {
    padding: 10px 25px;
    border: 1px solid #000 !important;
    background: #000;
    color: #fff;
    font-family: "Source", sans-serif;
    font-size: 12px;
}

.boton-negro:hover {
    color: #000;
    background: #fff;
    border: 1px solid #000 !important;
}

.border {
    border: 1 solid #fff;
}

.top {
    margin-top: -90px;
}

.espaciopeq {
    height: 25px;
}

.espaciogrande {
    height: 70px;
}

.tit-grande {
    font-size: 25px;
    color: #fff;
}

.flotar-tit {
    float: left;
}

.negro {
    color: #000;
}

.texto-izq {
    margin-left: -50px;
}

.sellos {
    width: 130px;
    text-align: center;
    margin: 0 auto;
}

.sellos img {
    width: 130px;
    text-align: center;
    margin: 0 auto;
}

.block-categories .category-sub-menu li:only-child {
    border-top: none;
}

.ancho-caja {
    width: 100% !important;
    background: #000;
}

/*foter*/
.footerextreme {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    background-size: 100%;
    background-position: center center;
}

.txtblod {
    font-weight: 600;
}

.espaciopeq {
    height: 25px;
}

.footerleft {
    text-align: left;
    color: #fff;
}

.footerleft a {
    color: #fff;
}

.logosize {
    max-width: 155px;
    height: auto;
    margin-bottom: 25px;
    margin-left: 60px;
    height: auto;
}

.margenfooterb {
    margin-top: 130px;
}

.footer-fuente {
    font-size: 12px;
    list-style: 22px;
}

.title_block2:after {
    position: absolute;
    bottom: 10%;
    width: 56px;
    height: 12px;
    left: 0;
    content: "";
    background: url("/tienda/img/title_bottom_b.png") no-repeat center center transparent;
}

.title_block2:after {
    background: url(/tienda/img/title_bottom_b.png) no-repeat center center transparent;
    left: -10px;
}

.blanco {
    color: #fff;
}

.info {
    color: #fff;
}

.info a {
    color: #fff;
}

.info a:hover {
    color: #838383;
}

.lineamarge {
    margin-top: -10px;
}

.listasfooter ul li {
    line-height: 15px;
}

.banner-promo1 {
    display: block;
	margin-top: 100px !important;
}

.banner-promo2 {
    display: none;
}

/*REMATE*/
.fuenteextreme {
    font-family: "Source", sans-serif;
}

.fuenteextreme a {
    color: #fff;
    font-size: 12px;
}

.fuenteextreme a:hover {
    color: #fff;
}

.redesimg {
    height: 25px;
    margin-left: -4px;
}

.pagos {
    padding: 0 15px;
    margin: auto;
    text-align: center;
	margin-left: -10px;
	margin-top: -20px;
}

@media (max-width: 768px) and (min-width: 200px){
	.pagos {
    padding: 0 15px;
    margin: 0px 0 0 45px;
    text-align: center;
}
}

@media (min-width: 768px) and (max-width: 1024px){
	.pagos {
    padding: 0 15px;
    margin: 0px 0 0 47px;
    text-align: center;
}
}


.margentop {
    margin-top: 50px;
}

/*ESTILOS BLOQUE01*/
/*================*/
.cont01-80 {
    width: 80%;
    text-align: center;
    margin: auto;
    background-image: url(/tienda/img/lineas.png);
    background-position: center 90px;
    background-repeat: no-repeat;

}

.img_descrip {
    text-align: center;
    /*margin-top: 3rem;*/
}

.tcenter {
    text-align: center;
}

.iconos_mitad {
    display: flex;
    justify-content: center;
    align-items: center;
}

.estilo-uno {
    font-family: "Crimson";
    font-weight: 600;
    font-size: 21px;
    color: #000;
}

.p_descrip {
    /*padding: 0px 3rem 0px 3rem;*/
    font-weight: 600;
    font-size: 15px;
}

.tit_descrip {
    text-align: center;
    margin-top: 0;
    padding: 2%;
}

.linea {
    width: 4% !important;
    border-top: solid black !important;
    font-weight: bold !important;
    margin-bottom: 23px;
	margin-top: 23px;
}

.linea_mitad {
    background-color: white;
    width: 1%;
}

.vertical {
    border: 1px dashed black;
    height: 100%;
    width: 0px;
    position: relative;
    top: -21px;
}

.circulo {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    padding: 0px;
    margin: 0px auto;
}

.circulo2 {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    padding: 0px;
    margin: 0px auto;
    position: relative;
    top: 69px;
    margin-bottom: 40px;
}

.imagen_circulo {
    width: 100%;
}

.sec_dos {
    margin-top: 3rem;
    text-align: center;
}

.tit_sec_dos {
    margin-top: 3rem;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: black;
    border-color: black;
}

.seccion_dos {
    width: 50%;
}

.corte {
    width: 110%;
}

.icon_carousel {
    width: 35px;
    height: auto;
}

.carousel-inner {
    height: 320px !important;
}

.carousel-item {
    height: -webkit-fill-available !important;
}

.boton1 {
    padding: 8px 20px;
    border: 0.1rem solid #000 !important;
    color: #000;
    background: #fff;
    font-family: "Source", sans-serif;
    font-size: 11px;
    border-radius: 1px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.boton2 {
    padding: 8px 20px;
    border: 0.1rem solid #000 !important;
    color: #000;
    background: #fff;
    font-family: "Source", sans-serif;
    font-size: 11px;
    border-radius: 1px;
    margin-top: 0px;
    text-transform: uppercase;
}

.marg-top-icon {
    margin-top: 75px;
}

.marg-top-text {
    margin-top: 45px;
}

/*ESTILOS BLOQUE01 FIN*/
/*================*/
/* estilos de nuestra historia */
.text_bold {
    font-weight: bold;
    color: #000;
    margin-bottom: 0px;
}

.icon_bellota {
    width: 25px;
    height: auto;
    margin: 10px 0px 10px 0px;
    display: block;
	margin-left: auto;
    margin-right: auto;
}

.bellotanueva {
    width: 25px;
    height: auto;
    margin: 10px 0px 10px 0px;
    display: block;
	margin-left: auto;
    margin-right: auto;
}

.icon_bellota2 {
    width: 2%;
    height: auto;
}

.content {
    position: relative;
    top: 25%;
    margin-top: 45px;
    /*margin-left: 45px;*/
}

.img_expert {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter 0.4s;
    -webkit-transition: -webkit-filter 1s;
}

.img_expert:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.expert {
    margin-bottom: 4rem;
}

/*HISTORIA*/
/*================*/



/*HISTORIAFIN*/
/*================*/

.cms-extreme {
    width: 100%;
    margin: 0;
    padding: 0;
    margin: auto;
}

.img-historia {
    width: 85%;
}


/* ESTILOS VISITANOS */
.pvisitanos {
    font-weight: 300;
}

.est_form {
    width: 50% !important;
    border: none !important;
    border-bottom: 3px solid gray !important;
    font-size: 25px !important;
    margin-bottom: 2em !important;
}

.est_form2 {
    width: 5% !important;


}

.margintop {
    margin-top: 5em;
    margin-bottom: 3em;
}

/* ESTILOS CONTACTENOS */
.icon_contact {
    margin: 0px auto;
}

.icontac {
    float: left;
}

.tamanoicon {
    width: 50px;
}

.tamanoicon2 {
    width: 30px;
}

.margintop2 {
    margin-top: 2em;
}


/* ESTILOS CONTENEDORES */
.anchoabezotes {
    width: 100%;
}

/*otros*/
.margennegativa {
    margin-bottom: -25px;
}

.altitulo {
    height: 45px;
}

.tit-categoria {
    font-size: 1.71429rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    font-family: "Crimson";
	margin-top: 25px;
	margin-bottom: 1rem !important;
}

.p-categoria {
    font-size: 16px;
    font-family: "Source", sans-serif;
    width: 80%;
    margin: auto;
}

.marg-categoria {
    margin-top: 25px;
}

/*bloque productos*/
.tcenter {
    text-align: center;
    height: 150px;
}

.tcenter img {
    height: 65px;
    margin-bottom: 15px;
}

.tecnica {
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
}

.ftecnica {
    margin-top: 3rem;
    justify-content: center;
    padding-bottom: 35px;
}

.p-ficha {
    color: #000;
}

.p-ficha-txt {
    color: #000;
    width: 95%;
    font-size: 15px;
	line-height: 25px;
}

.icon-b-detalle {
    width: 2%;
    height: auto;
    margin: 20px 0px 20px 0px;
}

.premios {
    height: 150px;
    width: auto;
    margin: 20px;
}

.paloseco {
    font-family: "Source", sans-serif;
}

.filtromapa {
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(99%);
    /* Chrome 19+ & Safari 6+ */
    -webkit-backface-visibility: hidden;
    /* Fix for transition flickering */
}

.interlinea {
    line-height: 22px;
}

.negrita {
    font-weight: 600;
}

.logo-extrem {
    background-image: url(/tienda/img/extrem_logo.png);
    width: 200px;
    height: 60px;
    background-size: 180px 54px;
    background-repeat: no-repeat;
    margin-top: 8px;
}

.iconos-ficha {}

/*estilos cookie's*/
#cookieNoticeContent {
    /*padding: 2% 8%;*/
}

.closeButtonNormal {
    padding: 9px 9px !important;
    color: #000000 !important;
    background: #ddd !important;
    width: 18% !important;
    margin: 0px auto !important;
    text-transform: capitalize;
}

.contiene {
    width: 50%;
    margin: auto;
    text-align: center;
    margin-bottom: 25px;
}

.contiene p {
    font-size: 13px;
}

.sin {
    width: 20%;
    margin: auto;
    text-align: center;
    margin-bottom: 25px;
}

/*fin estilos cookie's*/
/*====responsive====*/

@media (max-width: 991px) {
    @import url("https://fonts.googleapis.com/css?family=Crimson+Text:200,400,500,600,700,800");
    @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,500,600,700,800");

    body {
        font-family: "Crimson" !important;
    }

    #footer .block {
        text-align: center;
    }

    .img-fluid {
        /*width: auto;*/
    }

    .col-inner {
        margin-left: 0;
    }

    .info {
        margin-left: auto;
    }

    .redes {
        margin-left: -35px;
    }

    centrar {
        text-align: center;
    }

    .iconcarc {
        float: none;
    }

    .caracteristicas {
        text-align: center;
    }

    .sellos {
        width: auto;
        margin: auto;
        text-align: center
    }

    .finca {
        background-size: auto;
        padding: 100px 20px;
    }

    .style1 .product-miniature .right-block .action-btn .cart .btn {
        width: 100%;
    }

    .iconcarc-1 {
        margin: 25px;
        text-align: center;
        float: none;
    }

    .redesimg {
        margin-left: 0px;
        margin-top: 25px;
    }

    .header-mobile>div.top {
        margin-bottom: -15px;
        border-bottom: none;
    }

    .logo-extrem {
        background-image: url(/tienda/img/extrem_logo_b.png);
        width: 170px;
        background-size: 170px 51px;
        height: 52px;
        margin-left: 0px;
    }

    #search_widget .search-focus {
        color: #fff;
    }

    .blockcart .header .cart-products-count {
        background: transparent url(/tienda/img/icon-cart-b.png) no-repeat scroll 0 0;
    }

    .blockcart .header .cart-products-count span {
        color: #ffffff;
        margin-top: 8px;
    }

    .video-top {
        margin-top: -75px;
    }

    .footer-center .block .title_block {
        text-align: center;
    }

    .block_newsletter {
        /*margin-left: -25px;*/
        padding: 14px 25px 30px 0;
    }

    audio,
    canvas,
    progress,
    video {
        width: 100%
    }

    .logosize {
        max-width: 155px;
        margin-left: 0;
        margin: auto;
    }

    .historia {
        background-image: url(/tienda/img/extrem-contacto.jpg);
        background-size: auto;
        background-position: center -70px;
        padding: 150px 0;
        width: 109%;
        margin-left: -50px;
        margin-top: -47px;
    }

    .historia-footer {
        background-image: url(/tienda/img/historia-footer.jpg);
        background-size: auto;
        background-position: center -199px;
        padding: 41px;
        text-align: center;
        background-repeat: no-repeat;
        z-index: 99;
        width: 109% !important;
        margin-left: -15px;
        margin-top: 2px;
        width: 100%;
    }

    .iconos-ficha {
        height: 55px;
        margin-bottom: 15px;
    }

    .fila1 {
        display: none;
    }

    .tcenter img {
        height: 60px;
    }

    .icon-b-detalle {
        width: 7%;
    }

    .tecnica {
        font-size: 14px;
        line-height: 14px;
    }

    .p-ficha {
        font-size: 12px;
        line-height: 14px;
    }

    .boton1 {
        margin-top: 25px;
    }
    
    .boton2 {
        margin-top: 25px;
    }

    .featured-products {
        display: none;
    }

    .bg-packs {
        margin: 10px 10px 35px 10px;
        padding-bottom: 40px;
    }

    .banner-promo1 {
        display: none;
    }

    .banner-promo2 {
        display: block;
    }

    .contiene {
        width: 100%;
    }

    .contiene p {
        font-size: 13px;
    }

    .sin {
        width: 80%;
    }
}



@media (min-width: 768px){
  .logo-extrem {
        background-image: url(/tienda/img/extrem_logo.png);
        width: 200px;
        height: 60px;
    }
    .header2 .ps-desktop-megamenu {
    margin-left: 5px;
    }

    .dropdown {
    color: transparent;
    }
    .header2 .blockcart .header {
    color: #000;
    }
    .blockcart .header .cart-products-count {
    background: url(../img/data/icon-cart.png) no-repeat scroll 0 0;
    }
    .blockcart .header .cart-products-count span {
    color: #000;
    margin-top: 8px;
    }
    #search_widget .search-focus {
    color: #000;
    /* padding-top: 5px; */
    }
}

    
/*====responsive==== andres zapata */
@media (max-width: 991px) {
    .marg-top-text {
        height: 65px;
        margin: 40px 0;
    }

    .img_descrip {
        text-align: center;
        margin-top: -6rem;
    }

    .circulo2 {
        top: 0px;
    }

    .iconos_mitad {
        top: -30px;
    }

    #pantallas {
        display: none;
    }

    .seccion_dos {
        width: 100%;
    }

    #pantallas {
        display: none;
    }

    .historia-x {
        display: none;
    }

    .packs-x {
        display: none;
    }

    .cont01-80 {
        background-image: none;
    }

}

@media (min-width:992px) {
    #mobile {
        display: none;
    }

    .historia-m-x {
        display: none;
    }

    .packs-m-x {
        display: none;
    }
}

/*media query jhon*/
@media (max-width: 1920px) {

    .historia-footer,
    .historia,
    .visitanos,
    .contactenos {
        width: 166% !important;
        margin-left: -380px !important;
        background-position: center !important;
    }

    .packs {
        background-size: 95%;
        background-position: center -43px;
        padding: 303px;
        z-index: 94;
        width: 184%;
        left: -23px;
        margin-left: -535px;
        margin-top: -27px;
    }

}

@media (max-width: 1366px) {
    .packs {
        background-image: url(/tienda/img/packs.jpg);
        background-size: 95%;
        background-position: center 34px;
        padding: 215px;
        text-align: center;
        background-repeat: no-repeat;
        z-index: 99;
        width: 120%;
        left: -25px;
        margin-left: -125px;
        margin-top: -64px;
    }
}

@media (max-width: 425px) {
    .content {
        margin-left: 0px !important;
    }

    .packs-m-x {
        display: block;
    }

    .packs {
        margin-top: -55px !important;
        margin-left: -14px !important;
        background-position: -118px 0px !important;
        background-size: 133% !important;
        padding: 60% 0 0 !important;
        width: 108% !important;
    }

    .packs h4 {
        width: 50%;
        margin-top: -178px;
        line-height: 1;
    }

    .packs p {
        width: 50%;
        text-align: left;
        margin-left: 36px;
    }

    .tit_descrip {
        padding: 0 5%;
        margin-bottom: 30px;
    }

    .visitanos,
    .contactenos {
        width: 136% !important;
        margin-left: -75px !important;
        background-position: center !important;
        padding: 100px !important;
        margin-top: -65px !important;
    }

    .historia-footer {
        margin-left: -18px !important;
        width: 108% !important;
    }

    .historia {
        width: 109% !important;
        margin-left: -16px !important;
        background-position: center !important;
    }

    .visitanos {
        width: 110% !important;
        margin-left: -25px !important;
        background-position: center !important;
        margin-top: -86px !important;
        padding: 100px !important;
    }

    .contactenos {
        width: 127% !important;
        margin-left: -65px !important;
        background-position: center !important;
        padding: 93px 0 !important;

    }

    .contiene {
        width: 100%;
    }

    .contiene p {
        font-size: 13px;
    }

    .sin {
        width: 80%;
    }

    .box-icon .form-icon img {
        width: 60%;
    }

    .language-selector-wrapper {
        padding: 0;
        margin: 10px 0;
    }

    /* .scroll-box-arrows.scroll {
        display: none !important;
    }

    #main .images-container .js-qv-mask.scroll {
        display: none !important;
    }*/
}

@media (max-width: 411px) {

    .historia,
    .visitanos {
        width: 117% !important;
        margin-left: -46px !important;
        background-position: center !important;
    }

    .historia-footer {
        margin-left: -12px !important;
        width: 107% !important;
    }

    .contiene {
        width: 100%;
    }

    .contiene p {
        font-size: 13px;
    }

    .sin {
        width: 80%;
    }
}

@media (max-width: 375px) {
    .content {
        margin-left: 0px !important;
    }

    .historia-footer {
        margin-left: -15px !important;
    }

    .historia {
        width: 109% !important;
        margin-left: -15px !important;
        background-position: center !important;
    }

    .visitanos {
        width: 110% !important;
        margin-left: -16px !important;
        margin-top: -97px !important;
        background-position: center !important;
    }

    .contactenos {
        width: 109% !important;
        margin-left: 10px !important;
        background-position: center !important;
        padding: 66px 0 !important;
    }

    #cookieNoticeContent {
        padding: 2% 8%;
    }

    .closeButtonNormal {
        width: 50% !important;
    }

    .ftecnica {
        display: flex;
        flex-wrap: wrap;
    }

    .box-icon .form-icon img {
        width: 50%;
    }

    .contiene {
        width: 100%;
    }

    .contiene p {
        font-size: 13px;
    }

    .sin {
        width: 80%;
    }
}

@media (max-width: 320px) {
    .visitanos {
        width: 110% !important;
        margin-left: -16px !important;
        margin-top: -111px !important;
        background-position: center !important;
    }

    .margin-visitanos {
        margin-top: 0px;
    }

    .contactenos {
        width: 110% !important;
        margin-left: 10px !important;
        background-position: center !important;
        padding: 53px 0 !important;
    }

    .contiene {
        width: 100%;
    }

    .contiene p {
        font-size: 13px;
    }

    .sin {
        width: 80%;
    }
}

/*fin media query jhon*/

.cookies {
    color: #fff !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
}

.txt-newletter {
    color: #fff;
    font-size: 11px;
    line-height: 12px;
    text-align: justify;
}

.nomostrar {
    display: none;
}

.c-check {
    text-align: center !important;
    font-family: sans-serif;
}

.envio-p {
    margin-top: -15px;
}

.sello-es {
    width: 150px;
    height: auto;
    margin: auto;
    text-align: center;
}

.tex-tc {
    margin: 0 auto;
    margin-top: 20px;
}

.tex-tc p {
    font-size: 11px;
}

.bold {
    font-weight: 700;
}


/*slide*/

.slider {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.slider ul {
    display: flex;
    padding: 0;
    width: 400%;

    animation: cambio 20s infinite alternate linear;
}

.slider li {
    width: 100%;
    list-style: none;
}

.slider img {
    width: 100%;
}

.product-reference {
    display: none;
}

@keyframes cambio {
    0% {
        margin-left: 0;
    }

    20% {
        margin-left: 0;
    }

    25% {
        margin-left: -100%;
    }

    45% {
        margin-left: -100%;
    }

    50% {
        margin-left: -200%;
    }

    70% {
        margin-left: -200%;
    }

    75% {
        margin-left: -300%;
    }

    100% {
        margin-left: -300%;
    }
}

.orden {
    margin: 0px;
}

.amazon {
    margin-left: -10px;
    margin-top: 35px;
}

@media only screen and (max-width: 991px) {
    .amazon {
        margin-left: 72px;
        margin-top: 35px;
    }

    .orden {
        margin-left: -60px;
    }
}

.negro {
    color: #000;
    font-size: 12px;
}

#idiomas {
    padding: 5px;
    text-align: right;
    background-color: #fff;
}
.img-fluid1 {
    width: 100%;
}
.img-fluid-popup {
	width: 90%;
	height: auto;
	margin: 0 auto;
}
.txtcheck1 {
	font-size: 11px;
	padding-top: 20px;
}
.dhl {
    width: 60%;
	margin: 0 auto;
	float: left !important
}
.dhlp {
    text-align: none;
}
.logo-footer {
	width: 75% !important;
	margin-left: 42px;
}
.whatsapp {
    width: 55px;
    height: 43px;
    padding: 0px;
    bottom: 17px;
    text-align: center;
    color: #77CEE0;
    position: fixed;
    right: 0.5%;
    /* margin-right: -500px; */
    border-radius: 50%;
    z-index: 1000;
}
.imgwhat {
    width: 45px;
    height: 45px;
}
@media only screen and (max-width: 991px) {
    .dhl {
	float: none;
    margin-left: 40px !important;
    }
	.dhlp {
    text-align: center;
    margin-left: -55px;
    }
	.logo-footer {
	width: 65%;
	margin: 0 auto;
    }
	.whatsapp {
    right: 5%;
    }
    .header-mobile>div.top>div {
    margin: 0 auto;
    /*width: 230px;*/
    }
    .dropdown-item {
    margin-right: 5px;
    }
    .language-selector-wrapper {
    width: 120px;
    }
}  
.bloquecf1 {
	width: 90%;
}
.colornegro {
	color: #000;
}
.colornegro h4 a {
	color: #000;
}
.fuentepromo {
    font-size: 10px !important;
}
.ifs {
    width: 50%;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 900px){
	.ifs {
    width: 50%;
    height: auto;
    text-align: center;
    margin-left: -19px !important;
}
}
.ppopup {
    font-size: 14px !important;
}
/*@media only screen and (max-width: 991px) {
    font-size: 13px !important;  
}*/
.margenlista {
    margin: 15px 0;
}
.griscont {
	background: #f1f1f1;
	padding: 55px;
}
.margnew {
	margin-top: 20px;
}
.margnew p {
	text-align: justify;
	font-family: "source-sans"serif;
	font-size: 17px;
	color: #000;
}
.nomostrar1 {
    display: none;
}
.notapeso {
    color: #a94442;
    padding: 8px 20px;
    margin-top: 8px;
    display: block;
    border: 1px solid #a94442;
    border-radius: 5px;
    font-family: "Source", sans-serif;
    font-size: 12px;
}
.peso {
    width: 25px;
    height: auto;
    margin: 0px 10px 0px 0;
}

.textpaletas {
	 margin-top: 46px;
}

.textsalchichon {
	margin-top: 85px;
}

.textchorizo {
	margin-top: 22px;
	line-height: 25px;
}

.textlomo {
	margin-top: 97px;
	line-height: 25px;
}

.textaceite {
	margin-top: 117px;
	line-height: 25px;
}

@media only screen and (max-width: 991px) {
	.textaceite {
	margin-top: 40px;
	line-height: 25px;
}
	.textlomo {
	margin-top: 40px;
	line-height: 25px;
}
	.textchorizo {
	margin-top: 40px;
	line-height: 25px;
}
	.textpaletas {
	 margin-top: 40px;
}

    .textsalchichon {
	margin-top: 40px;
}
	.griscont {
	background: #f1f1f1;
	padding: 20px;
}
}

.textjamon {
	line-height: 25px
}
.bloque {
    width: 1140px !important;
    display: block;
}
.altoredes {
    height: 45px !important;
}

/*@media only screen and (max-width: 991px) {
    {
    height: 45px !important;
    }
}*/

@media only screen and (max-width: 991px){
.imglladro {
	margin: 0px;
}
}

@media only screen and (max-width: 991px){
.product-miniature .product-title a {
	line-height: 25px;
	font-size: 1.6rem !important;
}
}

@media only screen and (max-width: 991px){
.price {
	font-size: 21px !important;
}
}

@media only screen and (max-width: 991px){
.regular-price {
	font-size: 21px !important;
}
}

.boton2 {
    padding: 10px 26px;
    /* border: 0.1rem solid #000 !important; */
    color: #fff;
    background: #000;
    font-family: "Source", sans-serif;
    font-size: 14px;
    /* border-radius: 1px; */
    margin-top: 8px;
    font-weight: 600;
    width: 100%;
}
.boton2 a hover { 
    color: #fff;
    background: #4a4a4a !important;
}
@media only screen and (max-width: 991px){
.boton2 {
	padding: 15px 50px;
    font-size: 18px;
}
.boton2 a hover { 
    color: #fff;
    background: #4a4a4a !important;
}
}

.product-miniature .product-title a {
    color: #1b1b1b;
    font-size: 1.2rem;
    font-family: "Crimson";
    font-weight: 500;
    line-height: 1.42857rem;
    text-decoration: none;
    display: block;
    height: 36px !important;
    overflow: hidden;
    text-align: left;
}
@media only screen and (max-width: 991px){
.product-miniature .product-title a {
	height: 80px !important;
}
}

@media only screen and (max-width: 991px){
p {
	text-align: center !important;
	font-size: 17px;
	margin-top: 20px;
	line-height: 22px;
	padding: 0px 6px 0 0;
}
}

@media only screen and (max-width: 991px){
.product-prices {
	text-align: center;
}
}

.btn-primary,
.btn-secondary {
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Source", sans-serif;
    font-size: 12px;
	margin-bottom: 02px;
	border-radius: 0px;
}

@media only screen and (max-width: 991px){
.btn-primary,
.btn-secondary {
	font-size: 19px;
}
}

@media only screen and (max-width: 991px){
.product-actions .list-color,
.product-actions .product-quantity{
	width: 100%;
}
}

.product-quantity .qty {
    width: 9.28571rem;
    float: left;
    margin: 0 20px 8px 0;
}

@media only screen and (max-width: 991px){
.product-quantity .qty {
    width: 9.28571rem;
    float: none;
    margin:0 auto;
	margin-bottom: 15px;
	
	}
}

@media only screen and (max-width: 991px){
.product-actions .add-to-cart {
    width: 100%;
	font-size: 20px;
	font-weight: 600;
}
}

@media only screen and (max-width: 991px){
#blockcart-modal .product-name,
	#procuct-availability {
		text-align: center;
}
}

.product-quantity .add {
    float: left;
    margin-bottom: 0.57143rem;
    margin-top: -10px;
}
@media only screen and (max-width: 991px){
.product-quantity .add {
	float: none;
}
}

.americanexpress {
	margin-left: -57px;
}

@media only screen and (max-width: 991px){
.americanexpress  {
	margin-left: 109px;
    margin-top: 70px;
}
}

#cookieNoticeContent p {
	color: #fff;
	font-size: 12px;
}
.botregreso {
    text-align: center;
    background-color: #000;
    color: #fff;
    margin: 15px;
    padding: 15px;
}
.centroreg {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 768px){
    .product-miniature .product-title a {
    line-height: 1.5rem !Important;
    font-size: 1.4rem !Important;
    }
    .icon-b-detalle {
    width: 4%;
    }
    .p-ficha-txt {
    width: 100% !Important;
    }
}
@media (max-width: 1024px){
    .redesimg {
    height: 20px;
	margin-left: 0px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {  
    .logo-extrem {
    margin-left: 280px !important;
    }
    .language-selector-wrapper {
    width: 150px !Important;
    }
    #search_widget .search-focus {
    margin-left: 110px;
    }
    .header2 .blockcart .header {
    padding: 0px 15px;
    }
    .altofijo {
    height: 531px !Important;
    }
    .redesimg {
    height: 21px;
	margin-left: 0px;	
    }
    .ps-desktop-megamenu .megamenu>li.dropdown>a {
    height: 30px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .logo-extrem {
    margin-left: 0px !important;
    text-align: center;
    margin: 0 auto;
}
}


@media (min-width: 1020px) and (max-width: 1024px) {  
    .ps-desktop-megamenu .megamenu>li.dropdown>a {
    height: 30px;
    }
    .header2 .ps-desktop-megamenu {
    margin-left: 24px;
    }
    .header2 .header-top .right-nav {
    margin-left: -50px;
    }
}

@media (min-width: 810px) and (max-width: 830px) {  
    .logo-extrem {
    margin-left: 5px !important;
    }
    .language-selector-wrapper {
    width: 150px !Important;
    }
    #search_widget .search-focus {
    margin-left: 110px;
    }
    .header2 .blockcart .header {
    padding: 0px 15px;
    }
    .altofijo {
    height: 630px !Important;
    }
    .redesimg {
    height: 21px;
	margin-left: 64px;	
    }
    .ps-desktop-megamenu .megamenu>li.dropdown>a {
    height: 30px;
    }
}

td {
	padding: 5px;
    padding-left: 0px;
}

thead {
	background-color: black;
	color: white;
}

.bellotalanding  {
    max-width: 2% !important;
}

@media only screen and (max-width: 991px){
.bellotalanding  {
    max-width: 5% !important;

}
}

.trasporteimg {
	width: 50%;
}

@media only screen and (max-width: 991px){
.trasporteimg {
	width: 100%;
}
}

.redes {
	display: inline-block;
}

.fleft {
    float: left !Important;
}
.com {
    text-align: center;
    margin: 0 auto;
    border: 1px solid #c3c3c3;
    padding-top: 13px;
    border-radius: 10px;
}
.comunicado {
    font-size: 17px;
    font-weight: 600;
    font-family: sans-serif;
}

.paypalfooter {
	margin-top: 17px; 
	width: 25%; 
	margin-left: 3px;
}

.amazonpayfooter {
	margin-top: 22px; 
	margin-left: 14px;
	width: 45%;
}
.lladrofooter {
	width: 34%; 
	margin-top: -33px;
}

.amazonfooter{
	width: 30%;
	margin-top: -15px;
	margin-left: 24px;
}

.bloqueinfofooter {
	    margin-left: -6px;
}
@media (max-width: 900px) {
    .bloqueinfofooter {
	margin-left: -51px;
}
	.paypalfooter {
	margin-top: 22px; 
	width: 21%; 
	margin-left: 41px;
	}
	.amazonpayfooter {
	margin-top: 26px; 
	margin-left: 14px;
	width: 39%;
    }
}
.banderas {
    padding: 5px 90px;
    text-align: right;
    background: white;
    margin-bottom: -5px;
}
@media (max-width: 991px) {
    .banderas {
    padding: 5px 0;
    text-align: center;
    margin-bottom: 0;
    }
}
@media (max-width: 411px){
    .banderas {
    padding: 5px 0;
    text-align: center;
    margin-bottom: 0;
    }
}
@media (min-width: 330px) and (max-width: 990px) {
    .banderas {
    padding: 5px 0;
    text-align: center;
    margin-bottom: 0;
    }
}

.redesfoo {
	margin-top: 38px;
}

@media (max-width: 900px) {
    .redesfoo {
	margin-top: 0px;
}
}

.titulosnuevos {
	font-size: 1.2rem;
    font-family: "Crimson";
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.titulosnuevos2 {
	font-family: "Crimson";
    font-weight: 600;
    font-size: 21px;
    color: #000;
    text-align: center;
}
.product-minimal-quantity {
    display: none;
}

.image-banner {
    width: 100% !important;
}

.h2categorias {
	font-size: 23px;
	font-weight: 600;
	text-align: center;
	font-family: sans-serif;
}

.pcategorias {
	font-size: 15px;
	text-align: justify;
	color: black;
	line-height: 2em;
}

.categoimg {
	background-image: url(/tienda/modules/pspagebuilder/views/img/fondo-jamon-loncheado.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.categoimgembu {
	background-image: url(/tienda/img/cms/imagen-embutidos.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.categoimgcarnes {
	background-image: url(/tienda/img/cms/imagen-carnes.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.imagenloncheados {
	background-image: url(/tienda/img/cms/imagen-loncheados.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.imagenpaleta {
	background-image: url(/tienda/img/cms/imagen-paleta.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.imagenjamonentero {
	background-image: url(/tienda/img/cms/imagen-jamon-entero.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.imagensobrasada {
	background-image: url(/tienda/img/cms/imagen-sobrasada.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.imagenjamonloncheado {
	background-image: url(/tienda/img/cms/imagen-jamon-loncheado.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 60px 60px;
    clear: both;
	background-repeat: no-repeat;
}

.textoimgcate {
	color: white !important;
	font-size: 15px !important;
	text-align: justify !important;
}

.imgcate {
	width: 100%;
}

.margenarriba {
	margin-top: 70px;
}

.lineacategorias {
	width: 10% !important;
    border-top: solid black !important;
    font-weight: bold !important;
    margin-top: 25px;
    margin-bottom: 30px;
}

.paddingright {
	padding-right: 30px;
	padding-left: 30px
}

.paddingleft {
	padding-left: 30px;
	padding-right: 30px;
}

@media (max-width: 900px) {
.categoimg {
	background-image: url(/tienda/img/cms/imagen-jamon-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}
.categoimgembu {
	background-image: url(/tienda/img/cms/imagen-embutidos-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}
.categoimgcarnes {
	background-image: url(/tienda/img/cms/imagen-carnes-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}

.imagenloncheados {
	background-image: url(/tienda/img/cms/imagen-loncheados-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}

.imagenpaleta {
	background-image: url(/tienda/img/cms/imagen-paleta-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}

.imagenjamonentero {
	background-image: url(/tienda/img/cms/imagen-jamon-entero-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}
	
.imagensobrasada {
	background-image: url(/tienda/img/cms/imagen-sobrasada-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}
	
.imagenjamonloncheado {
	background-image: url(/tienda/img/cms/imagen-jamon-loncheado-movil.jpg);
    background-size: 100%;
	background-position: center center;
	text-align: center;
	color: white;
	padding: 30px 20px;
    clear: both;
	background-repeat: no-repeat;
	
}


.textoimgcate {
	color: white !important;
}
}

.lineablanca {
	width: 8% !important;
    border-top: solid white !important;
    font-weight: bold !important;
    margin-top: 25px;
    margin-bottom: 30px;
}

.imghome1 {
	background-image: url("/tienda/img/cms/imgane-home-1.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -90px;
    text-align: center;
    background-repeat: no-repeat;
}

.textoimghome {
	color: white !important;
    font-size: 14px !important;
	text-align: justify !important;
	line-height: 25px;
}

.imghome2 {
	background-image: url("/tienda/img/cms/la-mejor-seleccion.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -90px;
    text-align: center;
    background-repeat: no-repeat;
}

.imagencarnes2 {
	background-image: url("/tienda/img/cms/imagen-carnes-2.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    text-align: center;
    background-repeat: no-repeat;
}

.imagenembutidoseco {
	background-image: url("/tienda/img/cms/imagen-eco.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 100px 100px;
    background-position-y: -90px;
    text-align: center;
    background-repeat: no-repeat;
}

.imagenpaletacortada {
	background-image: url("/tienda/img/cms/imagen-paleta-cortada.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 30px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
}

.categoimglomo{
    background-image: url("/tienda/img/cms/imagen-lomo.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
    clear: both;
}

.imagensalchichon{
    background-image: url("/tienda/img/cms/imagen-salchichon.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
}

.imagenchorizo{
    background-image: url("/tienda/img/cms/imagen-chorizo.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
}

.imagenlomoloncehado{
	background-image: url("/tienda/img/cms/imagen-lomo-loncheado.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
    clear: both;
}

.imagenpaletaloncheada{
	background-image: url("/tienda/img/cms/imagen-paleta-loncheada.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
    clear: both;
}

.imagencampo{
	background-image: url("/tienda/img/cms/imagen-campo-extremadura.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 85px 100px;
    background-position-y: -20px;
    text-align: center;
    background-repeat: no-repeat;
    clear: both;
}

.titulonegro{
	font-size: 23px;
	font-weight: 600;
	text-align: center;
	font-family: sans-serif;
	color: white;
}

.lineablancanegra {
	width: 8% !important;
    border-top: solid white !important;
    font-weight: bold !important;
    margin-top: 25px;
    margin-bottom: 30px;
}

.textonegro {
	color: white!important;
    font-size: 14px !important;
	text-align: justify !important;
	line-height: 25px;
}

@media (max-width: 900px) {
	.imghome1 {
	background-image: url("/tienda/img/cms/imgane-home-1-movil.jpg");
    background-size: 100%;
    background-position: center center;
    padding: 50px 0px;
    background-position-y: -90px;
    text-align: center;
    background-repeat: no-repeat;
    }
    .imghome2 {
        background-image: url("/tienda/img/cms/la-mejor-seleccion-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 50px 0px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        background: none;
    }

    .imagencarnes2 {
        background-image: url("/tienda/img/cms/imagen-carnes-2.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        background: none;
    }

    .imagenembutidoseco {
        background-image: url("/tienda/img/cms/imagen-eco-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        

    }

    .imagenpaletacortada {
        background-image: url("/tienda/img/cms/imagen-paleta-cortada-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 15px 0px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }
        

    .categoimglomo {
        background-image: url("/tienda/img/cms/imagen-lomo-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }
        
    .imagensalchichon {
        background-image: url("/tienda/img/cms/imagen-salchichon-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }
        
    .imagenchorizo {
        background-image: url("/tienda/img/cms/imagen-chorizo-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }

    .imagenlomoloncehado {
        background-image: url("/tienda/img/cms/imagen-lomo-loncheado-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }

    .imagenpaletaloncheada {
        background-image: url("/tienda/img/cms/imagen-paleta-loncheada-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }

    .imagencampo {
        background-image: url("/tienda/img/cms/imagen-campo-extremadura-movil.jpg");
        background-size: 100%;
        background-position: center center;
        padding: 30px 20px;
        background-position-y: -90px;
        text-align: center;
        background-repeat: no-repeat;
        
    }
        
    .textoimghome {
        color: white!important;
        font-size: 14px !important;
        text-align: center!important;
        line-height: 25px;
    }
        .titulonegro{
        font-size: 23px;
        font-weight: 600;
        text-align: center;
        font-family: sans-serif;
        color: black;
    }
        .lineablancanegra {
        width: 8% !important;
        border-top: solid black !important;
        font-weight: bold !important;
        margin-top: 25px;
        margin-bottom: 30px;
    }
        .textonegro {
        color: black !important;
        font-size: 14px !important;
        text-align: center!important;
        line-height: 25px;
    }
}

.limpiar {
    clear: both !important;
}

.imagencentrada {
	display: block; 
	margin: auto; 
	margin-bottom: 10px;
	margin-top: 50px;
}

.tituloh1 {
	text-align: center; 
	font-weight: 500; 
	margin-bottom: 10px;
	color: #000;
}

.parrafop {
	text-align: center; 
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 17px;
	color: #000;
	margin: 0 20%;
}

.botonwhatsapp {
	background-color: #000;
    color: white;
    padding: 10px 35px;
	font-family: "source" sans-serif;
}

botonalign {
	margin-bottom: 50px;
	text-align: right;
}

.imagencentrada2 {
	display: block; 
	margin: auto; 
	margin-top: 8px;
	width: 38%;
}

@media (max-width: 991px) {
	.imagencentrada {
	width: 50%;
}
	
.parrafop{
	margin: 0 5%;
	}
	
.imagencentrada2 {
	width: 95%;
	}
	
.botonwhatsapp {
		padding: 10px 15px;
	}

.tituloh1 {
	font-size: 27px;
	    margin-top: 20px;
	}
}
.logo {
    display: none !important;
}
.menu-fixed {
    position: fixed;
    z-index: 1000;
    top: 0;
    max-width: 1000px;
    width: 99%;
    height: 103px !important;
    padding-top: 27px !important;
}
@media only screen and (max-width: 991px)
{
    .add.active {
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 999;
        margin: auto 0;
        height: 48px;
        left: 0;
    }
    .add.active .add-to-cart {
        font-size: 15px;
        padding-top: -5px;
    }
}

.texto-home-1 {
	color: white;
    font-size: 14px !important;
    text-align: justify !important;
    line-height: 25px;
}

@media only screen and (max-width: 991px){
	.texto-home-1 {
	color: white;
    font-size: 14px !important;
    text-align: center!important;
    line-height: 25px;
}
}

.botonexperience {
	padding: 15px 50px;
    font-size: 18px;
	padding: 10px 26px;
    color: #fff;
    background: #000;
    font-family: "Source", sans-serif;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
	float: right;
}

.tituloexperience{
	text-align: right; 
	font-size: 35px; 
	font-weight: 600;
}

@media only screen and (max-width: 991px){
	.botonexperience {
	padding: 15px 50px;
    font-size: 18px;
	padding: 10px 26px;
    color: #fff;
    background: #000;
    font-family: "Source", sans-serif;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
    float: none;
	text-align: center;
}
	
	.tituloexperience{
	text-align: center; 
	font-size: 35px; 
	font-weight: 600;
}
}

.imagenlive{
	width: 100% !important;
}

.a-live{
	color: white;
	font-size: 16px;
}

.jamoncampo{
	margin-top: 45%;
}

.paletacampo{
	margin-top: 15%;
}

@media only screen and (max-width: 991px){
	.a-live{
	color: white;
	font-size: 14px;
	}
	
    .jamoncampo{
	margin-top: 0%;}
	
	.paletacampo{
	margin-top: 0%;
}
}

.product-pack-price{
	display: none !important;
}

.fondo-promo{
	background-color: #f1f1f1; 
	padding: 0 0; 
	border-radius: 20px;
}

.texto-promo{
	line-height: 19px; 
	letter-spacing: 1px;
	margin-top: 42px;
	margin-left: -10px;
}

.img-promo{
	margin: 0 auto; 
	display: block; 
	width: 28%;
}

.regalo{
    width: 40px;
    margin-top: 33px;
    float: right;
}

@media (max-width: 600px){
	.fondo-promo{
	background-color: #f1f1f1; 
	padding: 25px 0; 
	border-radius: 20px;
		    margin: 0;
}

.texto-promo{
	line-height: 19px; 
	letter-spacing: 1px;
	margin-top: 7px;
	margin-left: -10px;
	margin: 0 20px;
}

.img-promo{
	width: 60%;
    margin-top: 20px;
}

.regalo{
    width: 40px;
    display: block;
    margin: 0 auto;
	float: none;
}
}

.account-footer{
    color:#fff !important;
}
.account-footer:hover,
.offusqued-link:hover{
    cursor:pointer !important;
}
@media (min-width: 1200px){
    .container {
        width: 100% !important;
    }
}
/*NEW CHECKOUT*/
#supercheckout-columnleft,
#supercheckout-columnleft p,
#supercheckout-columnleft .table-bordered th,
#supercheckout-columnleft .table-bordered td{
    font-family: 'Montserrat' !important;
}
.register-col{
    text-align:center
}
.register-col img{
    max-width: 180px;
}
.register-col span{
    font-family: 'Montserrat';
    font-weight: 600;
    text-align: center;
    display: block;
    font-size: 16px;
    margin: 15px 0 0 0;
    padding: 0 100px;
}

body.lang-es .register-col-es,
body.lang-en .register-col-en,
body.lang-es .safepay-es,
body.lang-en .safepay-en,
body.lang-es .transport-es,
body.lang-en .transport-en{display:block !important;}
.register-col-es,
.register-col-en,
.transport-es,
.transport-en,
.safepay-es,
.safepay-en{display:none;}

.opc-container .login-options [type="radio"]:checked + label,
.opc-container .login-options [type="radio"]:not(:checked) + label{
    text-transform: uppercase !important;
    color: #000 !important;
    font-family: 'Montserrat';
    font-weight: 500;
    border-radius: 0px !important;
    height: auto !important;
    border: solid 2px #ebeaea !important;
    padding: 10px 10px !important;
}
.opc-container .login-options [type="radio"]:checked + label {
    background: #ebeaea !important;
    padding: 11px 10px !important;
}
.opc-container .login-options [type="radio"]:not(:checked) + label {
    background: transparent !important;
}
.opc-container .login-options [type="radio"]:checked:hover + label,
.opc-container .login-options [type="radio"]:not(:checked):hover + label{
    background: #ebeaea !important;
    transition:all 0.3s;
}
.opc-container .custom-panel h2:after {
    border-left: 3px solid #000 !important;
}
.opc_shoppingcart > h2,
.title.section-title,
#checkoutShippingAddress > h2,
#checkoutBillingAddress > h2{
    font-family: 'Montserrat';
    font-weight: 700 !important;
}
.title.section-title i,
.opc_shoppingcart > h2 i,
p.kblabel.label-success,
#checkoutShippingAddress > h2 i,
#checkoutBillingAddress > h2 i,
/*.div_custom_fields > div >label,*/
#confirmCheckout > div.div_custom_fields > div:nth-child(1) > label,
#confirmCheckout > div.div_custom_fields > div:nth-child(3) > label{
    display: none !important;
}

div#checkoutShippingAddress {
    margin-top: 20px;
}
#supercheckout-columnleft .totalAmount h3{
    text-align:right;
    font-weight:600;
    position: relative;
    left: -20px;
}
#supercheckout-columnleft span#total_price {
    position: relative;
    top: -3px;
    right: -20px;
}
#supercheckout-columnleft .shopping-cart-description .product-title {
    word-break: normal;
    display: table-cell;
}
#supercheckout-columnleft .shopping-cart-description .product-title span a {
    font-size: 16px;
    word-break: normal;
    display: block;
    line-height:19px
}
#supercheckout-columnleft span.unit-price-text.d-block {
    display: none !important;
}

#supercheckout-columnleft span.price.special-price.d-block {
    font-size: 16px;
    text-align: center;
}
#forgotpasswordlink a {
    font-family: 'Montserrat';
}
#forgotpasswordlink {
    float: right !important;
}
#checkoutLogin input#email,
#checkoutLogin input#password {
    border-radius: 0px;
    font-family: 'Montserrat';
    padding: 20px;
    border-width: 2px;
}
#supercheckout-columnleft .cart-block{
    font-weight: 500;
    display:block;
    margin:20px 0;
}
#supercheckout-fieldset .orangebuttonsmall {
    background: #f6f5f5 !important;
    color: #000 !important;
    border: solid 2px #000 !important;
    font-family: 'Montserrat';
    font-weight: 700 !important;
    padding: 12px !important;
    font-size: 20px !important;
}
#supercheckout-columnleft button.cart_quantity_down.qty-btn.increase_button.quantity-left-minus.btn.btn-primary.btn-number,
#supercheckout-columnleft button.cart_quantity_down.qty-btn.decrease_button.quantity-right-plus.btn.btn-primary.btn-number,
#supercheckout-columnleft input#quantity{
    background: transparent !important;
    border-radius: 0px !important;
    padding: 10px !important;
    height: 32px !important;
}
#supercheckout-columnleft div#supercheckout_confirm_order {
    background-color: #000 !important;
    border: none !important;
    font-weight: 700;
    font-size: 22px;
}
#supercheckout-columnleft .safepay img {
    max-width: 90px;
}
#supercheckout-columnleft .safepay {
    text-align: center;
    margin: 20px 0px;
}
#supercheckout-columnleft .safepay span {
    font-weight: 600;
    font-size: 21px;
    display: inline-block;
    position: relative;
    top: 17px;
    text-align: left;
    left: 16px;
    line-height: 25px;
}
#supercheckout-columnleft span.total-price-text {
    text-transform: uppercase;
}
#supercheckout-columnleft span.cart-product-price.d-block.text-right {
    font-weight: 600;
    font-size: 18px;
}
#supercheckout-columnleft span#supercehckout_total_products_value,
#supercheckout-columnleft td.text-right.title,
#supercheckout-columnleft span#supercehckout_total_tax_value {
    font-weight: 400 !important;
}
@media (max-width:575px){
    .register-col {
        border-top: solid 2px #ebeaea;
        padding-top: 30px;
    }
    #social_login_block{
        margin-bottom:20px;
    }
}
/*end NEW CHEKOUT*/




#footer .block_newsletter{
    background-color: #000000;
    margin: 0 !important;
    border-bottom: 1px solid #ffffff;
}

#footer .block_newsletter .box-newsletter{
    padding: 30px 100px;
    overflow: hidden;
}

#footer .block_newsletter .box-newsletter h2.title_block{
    display:block !important;
    border: none;
    margin: 0;
    color: #ffffff;
}

#footer .block_newsletter .box-newsletter .block_content p.txt-newletter{
    display:none;
}

#footer .block_newsletter .box-newsletter .block_content .input-group-addon input.hidden-sm-up{
    display:block !important;
    background-color: #000;
}

#footer .block_newsletter .box-newsletter .block_content .input-group-addon input.hidden-sm-up:hover{
    background-color: #fff;
    color:#000;
}

#textDiv p {
    color: #000 !important;
}

button#button-coupon {
    height: 34px !important;
    display: block;
    padding: 8px;
}

.product-accessories{
    display:none;
}

/* !!!RSW */
#product .product-accessories{
    display: block;
}

.accessorycheckbox table img {
    width: 80px !important;
}

.accessorycheckbox table td:last-child {
    padding-right: 20px;
}

/*OCULTAMOS HEADER & FOOTER EN CHECKOUT*/
#module-supercheckout-supercheckout .ps_breadcumb.hidden-md-down,
#module-supercheckout-supercheckout footer#footer,
#module-supercheckout-supercheckout .ps_megamenu.col-lg-8,
#module-supercheckout-supercheckout .col-lg-2.text-xs-right.right-nav,
#module-supercheckout-supercheckout .header_promo-banner{
    display: none;
}

#module-supercheckout-supercheckout div#_desktop_logo {
    width: 100% !important;
}

#module-supercheckout-supercheckout div#_desktop_logo a {
    display: block;
    width: 100%;
}

#module-supercheckout-supercheckout div#_desktop_logo .logo-extrem {
    width: 100% !important;
    background-position: center;
}
/*end OCULTAMOS HEADER & FOOTER EN CHECKOUT*/


/********** Adaptación ficha producto **********/
#product .ps_breadcumb .container .wrap.breadcrumb,
#product #main .pts-product{
  max-width: 1092px;
  margin: 0 auto;
}

#product .blockreassurance_product{
    background-color: #EFEFEF;
    padding: 16px 16px 0px 16px;
    margin-top:0;
}

#product .blockreassurance_product div p.block-title{
    border-bottom: none;
    font-family: Source Sans Pro !important;
    font-weight: 400;
}

#product .blockreassurance_product .block-title{
    margin-top: 0px;
    margin-bottom: 5px;
}

#product .product-attachments{
    background-color: #EFEFEF;
    padding: 10px 20px;
    margin-bottom: 25px;
}

#product .product-attachments .attachment p a{
    background-color: #D9D9D9;
    padding: 10px;
    display: block;
    text-align: center;
    color: #414141;
    font-family: Source Sans Pro !important;
    font-size: 16px;
    text-decoration: underline;
}

#product .img_reassurance_pago{
    display: block;
    background-color: #EFEFEF;
    padding: 0px 20px 10px 16px;
}

@media (max-width:991px){
    #product .img_reassurance_pago img{
        width: 100%;
    }
}

#product .product-actions .product-add-to-cart .product-quantity{
    width: 100%;
}

#product .product-actions .product-add-to-cart .product-quantity .add.active{
    width: 100%;
    margin-top: 10px;
}

#product .product-actions .product-add-to-cart .product-quantity .add.active .btn.add-to-cart{
    width: 100%;
}

#product #product-availability{
    color: #A1833D;
    font-size: 16px;
}

#product #product-availability .material-icons.rtl-no-flip.product-available{
    color: #A1833D;
}

#product .new_block_pre_reassur{
    display: flex;
    background-color: #EFEFEF;
    margin-top: 25px;
    padding: 16px 18px;
    border-bottom: 1px solid #D9D9D9;
}

#product .new_block_pre_reassur .new_block_content{
    width: 33%;
}

#product .new_block_pre_reassur .new_block_content img{
    float: left;
    padding-right: 10px;
    width: 70px;
}

#product .new_block_pre_reassur .new_block_content span{
    font-family: Source Sans Pro;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #414141;
    padding-top: 11px;
    display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
    #product .new_block_pre_reassur .new_block_content span{
        float: left;
        text-align: center;
    }

    #product .new_block_pre_reassur .new_block_content img{
        margin-left: 31px;
    }
}

@media (max-width: 565px) {
    #product .new_block_pre_reassur{
        overflow: hidden;
        display: block;
    }

    #product .new_block_pre_reassur .new_block_content{
        overflow: hidden;
        width: 100%;
        padding-bottom: 10px;
    }

    #product .new_block_pre_reassur .new_block_content span{
        font-size: 16px;
        padding-top: 20px;
    }

    #product .new_block_pre_reassur .new_block_content img{
        margin-right: 10px;
    }
}

.payment-option-4_info_container.payment-additional-info p a[data-toggle="modal"] {
    display: none !important;
}

.footer-social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.footer-social-links > a {
    margin: 0 15px;
}


/******************************/
/********** New Home **********/
/******************************/
#index .eliminar-espais-entre-columnes .pts-inner.container .row-inner.row-level-1 .col-lg-4.col-md-4.col-sm-6.col-xs-12,
#index .eliminar-espais-entre-columnes .pts-inner.container .row-inner.row-level-1 .col-lg-8.col-md-4.col-sm-6.col-xs-12{
    padding: 0;
}

#index .eliminar-espais-entre-columnes .pts-inner.container .row-inner.row-level-1 .row.clearfix{
    background: #F2EFEF;
}

#index .eliminar-espais-entre-columnes .pts-inner.container .row-inner.row-level-1 .row.clearfix .widget-images.block.default.wow.fadeInUp{
    margin-bottom: 0px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    #index .eliminar-espais-entre-columnes .widget-html.block{
        margin-bottom: 15px;
    }

    #index .eliminar-espais-entre-columnes .content{
        margin-top: 22px;
    }

    #index .eliminar-espais-entre-columnes .title_dorado_new_home{
        font-size: 30px;
    }

    #index .eliminar-espais-entre-columnes .title_negro_new_home{
        font-size: 25px;
        line-height: 32px;
    }
}

@media (max-width: 991px){
    .no-mostrar-en-responsive{
        display:none;
    }
}

.title_dorado_new_home{
    color: #A1833D;
    font-family: Sabon;
    font-size: 44px;
    font-style: italic;
    line-height: 53px;
    text-align: center;
    margin-bottom: 5px;
}

.title_negro_new_home{
    font-family: Sabon;
    font-size: 35px;
    font-style: normal;
    line-height: 46px;
    text-align: center;
}

.boton_new_home{
    background: #000000;
    padding: 10px 25px;
    margin: 0 auto;
    max-width: 210px;
    text-align: center;
    margin-top: 36px;
}

.boton_new_home a{
    text-decoration: none;
}

#index .home-banner-jpe .pts-inner.container-fluid,
#index .home-banner-jpe .pts-inner.container-fluid .row-inner.row-level-1 .col-lg-4.col-md-4.col-sm-6.col-xs-12{
    padding: 0;
}

#index .home-banner-jpe .block{
    margin-bottom: 0;
}

#index .home-banner-jpe .block .categories-info{
    padding-bottom: 0;
}

#index .home-banner-jpe .block .categories-info .categories-info-content{
    padding-top:0;
}

#index .home-banner-jpe .block_content.boxcarousel .grid .owl-wrapper{
    width:100%;
}

#index .home-4-caracteristicas .home-caracteristica-destacada .widget-inner.block_content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

#index .iconcarc {
    float: left;
    margin: 0px;
    width: 85px;
}

#index .caracteristicas {
    text-align: left;
    font-size: 14px;
    margin-top: 4px;
    color: #414141;
}

@media (min-width: 768px) and (max-width: 991px) {
    #index .corregir-ancho-columnas-new-home .pts-inner.container .row-inner.row-level-1 .col-md-4,
    #index .corregir-ancho-columnas-new-home .pts-inner.container-fluid .row-inner.row-level-1 .col-md-4{
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #index .corregir-ancho-columnas-new-home .pts-inner.container .row-inner.row-level-1 .col-sm-6,
    #index .corregir-ancho-columnas-new-home .pts-inner.container-fluid .row-inner.row-level-1 .col-sm-6{
        width: 100%;
    }
}


@media (min-width: 576px){
    #index .anchura-reducida-new-home .container{
        max-width: 540px;
        font-family: "Source", sans-serif;
    }
}

@media (min-width: 768px){
    #index .anchura-reducida-new-home .container{
        max-width: 720px;
        font-family: "Source", sans-serif;
    }
}

@media (min-width: 992px){
    #index .anchura-reducida-new-home .container{
        max-width: 960px;
        font-family: "Source", sans-serif;
    }
}

@media (min-width: 1200px){
    #index .anchura-reducida-new-home .container{
        max-width: 1140px;
        font-family: "Source", sans-serif;
    }
}

@media (min-width: 1400px){
    #index .anchura-reducida-new-home .container{
        max-width: 1140px;
        font-family: "Source", sans-serif;
    }
}

#index .eliminar-titulo-prod .tit_descrip.limpiar{
    display: none;
}

#index .eliminar-titulo-prod .flexRow .owl-item{
    padding-bottom: 25px;
}

#index #footer .container{
    width:100%;
}

@media (min-width: 992px){
    #footer .container #imagen-de-fondo{
        background-image: url(/tienda/img/bg-new-footer.jpg);
        background-size: 100%;
    }

    #footer .container #imagen-de-fondo .block_newsletter.block{
        background-color: transparent;
        padding-top: 250px;
    }

    #footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter{
        background-color: black;
        opacity: 0.9;
    }
}

ul.home-list li {
    list-style: disc;
    margin: 5px 0;
    line-height: 23px;
    font-size: 15px;
}

/* Nuevo apartado suscripcion */
#footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap{
    max-width: 550px;
    margin: 0 auto;
}

#footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap h2,
#footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap p{
    text-align: center;
    font-size: 55px;
    font-style: italic;
    line-height: 72px;
    color:#fff;
    font-family: "Crimson";
    font-weight: 700;
}

#footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap .block_content .input-group-addon input.hidden-sm-up{
    margin: 0 auto;
    margin-top: 20px;
}

#footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap .block_content input.form-control{
    background: #ffffff;
}

#footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap .input-wrapper label span{
    font-size: 13px;
}

@media (max-width: 575px){
    #footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter{
        padding: 30px 0px 30px 30px;
    }

    #footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter .wrap h2{
        font-size: 36px;
    }
}

@media (min-width: 576px) and (max-width: 704px) {
    #footer .container #imagen-de-fondo .block_newsletter.block .box-newsletter{
        padding: 30px 0px 30px 30px;
    }
}






#index .imagen-flotante-new-home{
    margin-top: -240px !important;
    padding-top: 160px !important;
    font-family: "Source", sans-serif;
}

#index .imagen-flotante-new-home-imatge{
    width: 50%;
    margin: 0 auto;
}

@media (min-width: 576px) and (max-width: 991px) {
    #index .productos-ibericos-gourmet .pts-inner.container .row-inner.row-level-1 .col-lg-6.col-md-4.col-sm-6.col-xs-12,
    #index .extrem-puro-extremadura .pts-inner.container .row-inner.row-level-1 .col-lg-6.col-md-4.col-sm-6.col-xs-12{
        width: 100%;
    }
}

@media(max-width: 991px) {
    #index .extrem-puro-extremadura .pts-inner.container .row-inner.row-level-1 .row.clearfix{
        display: flex;
        flex-direction: column;
    }

    #index .extrem-puro-extremadura .pts-inner.container .row-inner.row-level-1 .row.clearfix .col-lg-6.col-md-4.col-sm-6.col-xs-12:nth-child(1){
        order:2;
    }

    #index .extrem-puro-extremadura .pts-inner.container .row-inner.row-level-1 .row.clearfix .col-lg-6.col-md-4.col-sm-6.col-xs-12:nth-child(2){
        order:1;
    }
}


/* Cofres */

.fullwidth-category-description{
    max-width: 1200px;
    margin: 0 auto;
}

.fullwidth-category-description h2{
    font-size:24px;
}

.category-cofres-regalo p{
    line-height: 22px !important;
}

.category-cofres-regalo .np{
    padding-right:0px !important;
    padding-left:0px !important;
}

.fullwidth-category-description .npl{
    padding-left:0px !important;
}

.fullwidth-category-description .npr{
    padding-right:0px !important;
}

.category-cofres-regalo .vertical-alignment{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.category-cofres-regalo .cofre-bg{
    margin: 50px 0;
    background-image: url('https://www.extremiberico.com/tienda/img/cms/cofres-regalo-3.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 92px !important;
}

.category-cofres-regalo .cofre-bg2{
    margin: 50px 0;
    background-image: url('https://www.extremiberico.com/tienda/img/cms/cofres-regalo-5.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    padding: 92px !important;
}

.category-cofres-regalo h3 {
    color: #a1833d;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 40px;
}

.category-cofres-regalo .m100{
    margin-top:100px;
}

/* .category-cofres-regalo .full-width{
    width: 100vw;
    position: relative;
    left: -435px;
} */

.fullwidth-category-description .row.pfw {
    padding-left: 15px;
    padding-right: 15px;
}

.category-cofres-regalo .overlapping {
    position: relative;
    top: -100px;
}

.category-cofres-regalo .overlapping .whitebg {
    background-color: #fff;
    padding: 30px 60px;
}

@media (max-width:767px){
    .category-cofres-regalo .vertical-alignment {
        display: flex;
        flex-direction: column;
    }
    .category-cofres-regalo .vertical-alignment > div:first-child{
        margin-bottom:20px;
    }
    .fullwidth-category-description {
        padding: 15px;
    }
    .fullwidth-category-description .npl{
        padding-left:15px !important;
        padding-right:15px !important;
    }
    .fullwidth-category-description .npr{
        padding-right:15px !important;
        padding-left:15px !important;
    }
    .fullwidth-category-description .npl img{
        margin-bottom:20px;
    }
    .fullwidth-category-description h2,
    .fullwidth-category-description h3 {
        text-align:center;
    }
    .fullwidth-category-description h3 {
        font-size: 35px;
        line-height: 35px;
    }
    .category-cofres-regalo .cofre-bg,
    .category-cofres-regalo .cofre-bg2 {
        padding: 10px !important;
        /* background-position: center center; */
        background: #f1f1f1;
    }
    .category-cofres-regalo .cofre-bg,
    .category-cofres-regalo .cofre-bg2{
        padding-top:50px !important;
        padding-bottom:50px !important;
    }
    .category-cofres-regalo .overlapping {
        top: 0px;
    }
}

.opc_payment_method li ol li {
    border: none;
    padding: 0px;
}

#payment_methods_additional_container a{
    display:none !important;
}

/*NEW CATEGORIES VISUAL*/
#category #wrapper .container {
    max-width: 1200px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#category #wrapper .container > .row {
    margin-top:40px !important;
}

#category div#js-product-list-top {
    background: #F2EFEF;
    margin-bottom:40px;
}

#category div#js-product-list-top .sort-by-row {
    margin-top:0px !important;
}

#category .product-miniature .product-title a {
    font-size: 16px !important;
}

#category #search_filters .facet .facet-title {
    font-size: 21px !important;
}

#category .block-category{
    display:none;
}

#category .all-product-link {
    width: 100%;
    display: none !important;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
}
@media (max-width:767px){
    #category #wrapper .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/*end NEW CATEGORIES VISUAL*/












/*********************************************************/
/*************** Nuevas categorias GENERAL ***************/
/*********************************************************/
#category-description-new-design h1.tit-categoria{
    color: #A1833D;
    font-size: 45px;
    font-style: italic;
    line-height: 53px;
    font-weight: 400;
}

#category-description-new-design p.pcategorias{
    color: #414141;
    font-family: Source Sans Pro;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fullwidth-category-description{
    max-width: 1200px;
    margin: 0 auto;
}

/*.fullwidth-category-description h2{
    font-size:24px;
}*/

#new-design-category-extrem p{
    line-height: 23px !important;
    color: #414141;
    font-family: Source Sans Pro;
    font-size: 18px;
}

#new-design-category-extrem p span.dorado{
    color: #a1833d;
    text-decoration: underline;
}

#new-design-category-extrem ul li{
    list-style: disc;
    line-height: 23px !important;
    color: #414141;
    font-family: Source Sans Pro;
    font-size: 18px;
}

#new-design-category-extrem .np{
    padding-right:0px !important;
    padding-left:0px !important;
}

.fullwidth-category-description .npl{
    padding-left:0px !important;
}

.fullwidth-category-description .npr{
    padding-right:0px !important;
}

#new-design-category-extrem .vertical-alignment{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#new-design-category-extrem .cat-jamon-bg{
    background-image: url('https://www.extremiberico.com/tienda/img/cms/pieza-entera-jamon-extrem.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 52px !important;
}

#new-design-category-extrem .cat-jamon-bg .fondo-blanco{
    background-color:#ffffff;
    padding: 40px;
}

#new-design-category-extrem .cat-paleta-bg{
    background-image: url('https://www.extremiberico.com/tienda/img/cms/paletas-patas-delanteras.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 52px !important;
}

#new-design-category-extrem .cat-paleta-bg .fondo-blanco{
    background-color:#ffffff;
    padding: 40px;
    float: right;
    width: 40%;
}

#new-design-category-extrem h2{
    color: #a1833d;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 40px;
}

#new-design-category-extrem h3{
    font-weight: bold;
    font-size: 28px;
    font-family: Sabon;
    line-height: 34px !important;
    padding-bottom: 20px;
    color: #000000;
}

#new-design-category-extrem .m150{
    margin-top:150px;
}

#new-design-category-extrem hr.separador-nuevas-categorias{
    width: 80px !important;
    margin: 0 auto;
    margin-bottom: 40px;
    opacity: 1;
    background-color: #a1833d;
    height: 4px;
}

.fullwidth-category-description .row.pfw {
    padding-left: 15px;
    padding-right: 15px;
}

#new-design-category-extrem .overlapping {
    position: relative;
    top: -100px;
}

#new-design-category-extrem .overlapping .whitebg {
    background-color: #fff;
    padding: 30px 60px;
}

@media (max-width:767px){
    #new-design-category-extrem .vertical-alignment {
        display: flex;
        flex-direction: column;
    }
    #new-design-category-extrem .vertical-alignment > div:first-child{
        margin-bottom:20px;
    }
    /*.fullwidth-category-description {
        padding: 15px;
    }*/
    .fullwidth-category-description .npl{
        padding-left:15px !important;
        padding-right:15px !important;
    }
    .fullwidth-category-description .npr{
        padding-right:15px !important;
        padding-left:15px !important;
    }
    .fullwidth-category-description .npl img{
        margin-bottom:20px;
    }
    .fullwidth-category-description h2,
    .fullwidth-category-description h3 {
        text-align:center;
    }
    .fullwidth-category-description h2,
    .fullwidth-category-description h3 {
        font-size: 35px;
        line-height: 35px;
    }
    #new-design-category-extrem .cofre-bg,
    #new-design-category-extrem .cofre-bg2 {
        padding: 10px !important;
        /* background-position: center center; */
        background: #f1f1f1;
    }
    #new-design-category-extrem .cofre-bg,
    #new-design-category-extrem .cofre-bg2{
        padding-top:50px !important;
        padding-bottom:50px !important;
    }
    #new-design-category-extrem .overlapping {
        top: 0px;
    }
}

@media (max-width:575px){
    #new-design-category-extrem .cat-jamon-bg{
        padding: 25px !important;
    }

    #new-design-category-extrem .cat-jamon-bg .fondo-blanco{
        padding: 25px;
    }

    #new-design-category-extrem ul{
        padding-left: 40px;
    }

    #new-design-category-extrem .cat-paleta-bg{
        padding: 25px !important;
    }

    #new-design-category-extrem .cat-paleta-bg .fondo-blanco{
        padding: 25px;
        width:100%;
    }
}

@media (min-width:768px){
    #new-design-category-extrem .bloque-izquierda-newcat{
        padding-right: 40px;
    }
    
    #new-design-category-extrem .bloque-derecha-newcat{
        padding-left: 40px;
    }
}



.black_bg_blackfriday{
    background-color: #000000;
    width: 100%;
    height: 1150px;
    position: absolute;
    left: 0;
    margin-top: 1150px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .black_bg_blackfriday{
        height: 1300px;
        margin-top: 1300px;
    }
}

@media (min-width: 430px) and (max-width: 767px) {
    .black_bg_blackfriday{
        height: 1600px;
        margin-top: 1600px;
    }
}

@media (max-width:429px){
    .black_bg_blackfriday{
        height: 1700px;
        margin-top: 1700px;
    }
}

@media (min-width:768px){
    .amplada-especial-black-friday{
        width: 80%;
    }

    .gold_bg_blackfriday{
        height: 580px;
        width: 60%;
        background-color: #F2EFEF;
        left: 0;
        position: absolute;
    }
}


/***** Especial BlackFriday *****/
@media (min-width: 1200px){
    #category.category-id-113 #wrapper .container,
    #category.category-id-113 #wrapper .container #new-design-category-extrem{
        max-width: none !important;
    }

    #category.category-id-113 #wrapper .container #new-design-category-extrem .row.cat-blackfriday-bg{
        max-width: none !important;
    }

    #category.category-id-113 #wrapper .container .row,
    #category.category-id-113 #wrapper .container .category-description{
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    #category.category-id-113 #wrapper .ps_breadcumb .container{
        max-width: 1200px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

#category.category-id-113 #wrapper .container #new-design-category-extrem .row.cat-blackfriday-bg{
    margin-bottom: 80px;
    margin-top: 0;
}

#new-design-category-extrem .cat-blackfriday-bg{
    background-image: url('https://www.extremiberico.com/tienda/img/cms/black-friday-extrem-iberico-2021.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 52px !important;
}

#new-design-category-extrem .cat-blackfriday-bg h1{
    color: #ffffff;
    font-size: 60px;
    font-style: italic;
    line-height: 72px;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 767px){
    #new-design-category-extrem .cat-blackfriday-bg{
        padding: 25px !important;
    }

    #new-design-category-extrem .cat-blackfriday-bg h1{
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 425px){
    #category.category-id-113 #wrapper{
        padding-top: 0;
    }

    #category.category-id-113 #wrapper .container #category-description-new-design #new-design-category-extrem{
        padding-top: 0;
    }

    #category.category-id-113 #wrapper .container:nth-child(2){
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #category.category-id-113 #wrapper .container .row,
    #category.category-id-113 #wrapper .container .category-description{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


/*end NEW CATEGORIES VISUAL*/


#module-supercheckout-supercheckout div#payment-new {
    font-family: 'Source Sans Pro' !important;
}


#category.category-id-13 #category-description-new-design p.pcategorias{
    max-width: 1100px;
}

#category.category-id-12 #category-description-new-design p.pcategorias,
#category.category-id-97 #category-description-new-design p.pcategorias{
    max-width: 940px;
}

#category.category-id-38 #category-description-new-design p.pcategorias,
#category.category-id-81 #category-description-new-design p.pcategorias{
    max-width: 1000px;
}

#category.category-id-81 span.listado_categoria_numeracion_color{
    padding: 0 8px;
    margin-right: 5px;
    color: #ffffff;
    background-color: #A1833D;
    font-weight: 600;
}


#module-supercheckout-supercheckout .supercheckout-column-middle .supercheckout-blocks #checkoutBillingAddress .opc_billing_address #payment-new label{
    font-size: 16px !important;
}



#module-supercheckout-supercheckout #supercheckout_update_address_button input#supercheckout_update_address_shipping,
#module-supercheckout-supercheckout #supercheckout_update_address_button input#supercheckout_cancel_address{
    font-size: 16px!important;
    padding: 6px!important;
    text-transform: capitalize;
    color: #ffffff !important;
    background-color: #000000 !important;
}

#module-supercheckout-supercheckout #supercheckout_update_address_button input#supercheckout_update_address_shipping:hover,
#module-supercheckout-supercheckout #supercheckout_update_address_button input#supercheckout_cancel_address:hover{
    background-color: #eeeeee!important;
    color: #000!important;
}

/*#js-product-list .products {
    width: 80% !important;
    margin: 0 auto !important;
    margin-top: 20px !important;
}
#js-product-list .ps_sortPagiBar.bottom-line {
    width: 75% !important;
    margin: 0 auto !important;
}*/
#js-product-list .products flexRow owl-wrapper grid products-block style1 {
    width: 80% !important;
    margin: 0 auto !important;
    margin-top: 20px !important;
}


/***** Ocultamos paginacion cuando no hay mas de una pagina *****/
#js-product-list .ps_sortPagiBar.bottom-line .pagination ul.page-list.deshabilitar_paginacion{
    display: none;
}
/* revi--*/
.revi_stars_product_list_container {
    text-align: left !important;
}

/* bloque prensa--*/
.prensa {
    border: solid 1px #999999;
    text-align: center;
    padding: 10px 20px;
    height: 270px;
    margin-bottom: 20px;
}

.txtprensa {
    text-align: center !important;
    font-size: 16px !important;
    line-height: 22px !important;
    margin-top: 10px !important;
    /*height: 80px;*/
}

.aprensa {
    color: #A1833D !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 5px;
}

@media (max-width:1200px){
  .txtprensa{
    /*height:110px !important;*/
  }
  .prensa img {
    width: 70%;
  }
}

body:not(#index) .prensa-block{display:none;}

@media (max-width: 700px){
.prensa {
    /*height: 380px;*/
    margin: 20px !important;
}

.txtprensa {
    /*height: 70px !important;*/
}
}


/***** Multiaccesorios - nuevo modulo *****/
#product #multiAccessoriesTab #group_accessories{
    background-color: transparent;
}

#product #multiAccessoriesTab #group_accessories h3{
    font-size: 15px;
    font-weight: 700;
    color: #000;
    padding: 5px;
    margin: 0;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup tr{

}

#product #multiAccessoriesTab #group_accessories .accessorygroup td.backgrey{
    background-color: #f8f8f8;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup td .block_accessory_name a.ma_accessory_name{
    font-family: "Crimson";
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    text-decoration: none;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup td.productprice{
    padding-left: 10px;
    padding-right: 20px;
    min-width: 85px;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup td.productprice .accessory_price span{
    color: #000;
    font-weight: 600;
    font-size: 14px !important;
    font-family: "Crimson";
}

#product #multiAccessoriesTab #group_accessories .accessorygroup td.productname{
    padding-left: 10px;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup td.productname .ma_block_qty {
    display: none;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup td.productname span select.product-combination{
    height: auto !important;
    width: auto !important;
    display: initial;
    padding: 2px;
    color: #555;
    font-size: inherit;
    border: 1px solid #c0ccda;
    font-weight: 600;
    font-family: "Crimson";
}

#product #multiAccessoriesTab #group_accessories .accessorygroup .backgreyspace{
    padding: 0;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup .backgreyspace .triangular{
    border-top: 25px solid transparent;
    border-right: 12px solid #f8f8f8;
    border-bottom: 25px solid transparent;
}

#product #multiAccessoriesTab #group_accessories .accessorygroup .checkbox_radio_image .hsma_images-container .product-cover{
    border: 0;
}



.block.block-highlighted.ps_categoryproducts{
    max-width: 1092px;
    margin: 0 auto;
}



#product .product-accessories .products .owl-carousel article.product-miniature .product-description #ndk_attr_short_desc{
    display: none;
}

.espacioform {
    margin-top: -14% !important;
}

.tit-arriba {
    z-index: 99 !important;
}

}

.sidebar .list1 .product-miniature {
    display: none !important;
}

.sidebar .list1 .product-miniature {
    display: none !important;
}

#new-design-category-extrem p {    
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 15px;
    color: #000;
    line-height: 2em;
    font-family: "source", sans-serif;
}
#new-design-category-extrem .m150 {
    margin-top: 0;
}

@media (max-width: 429px){
.black_bg_blackfriday {
    height: 790px;
    margin-top: 1150px;
}

#new-design-category-extrem h2 {
    font-size: 30px;
    line-height: 30px !important;
}
}

@media (max-width: 600px) {
  .margen-black {
      margin-top: -150px;
}
}

.alert-success {
    background-color: #ffffff00;
    border-color: #ffffff00;
}
.alert-success {
    background-color: #ffffff00;
    border-color: #ffffff00;
    color: #fff !important;
    font-size: 30px !important;
	line-height: 37px !important;
}

.block_newsletter .form-control {
   color: #000000 !important;
}