/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

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

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {

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

    40%,
    43% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    40%,
    43%,
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06)
    }

    70% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

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

@keyframes bounce {

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

    40%,
    43% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    40%,
    43%,
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06)
    }

    70% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

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

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

@-webkit-keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

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

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

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

@-webkit-keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swing {
    20% {
        -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)
    }

    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

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

    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

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

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

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

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

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

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

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

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

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

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

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

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

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

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

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

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

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

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

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

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }

    0%,
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

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

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    50%,
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }

    0%,
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

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

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    50%,
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

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

    0%,
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

    0%,
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-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
    }

    0%,
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

    0%,
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

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

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

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

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

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

    to {
        -webkit-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;
    backface-visibility: visible !important
}

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

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

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

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

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

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

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

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

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg)
    }

    60%,
    80% {
        opacity: 1
    }

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

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg)
    }

    60%,
    80% {
        opacity: 1
    }

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

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

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

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

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

    0%,
    to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    0%,
    to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

    0%,
    to {
        -webkit-transform-origin: center
    }

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

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

    0%,
    to {
        -webkit-transform-origin: center
    }

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

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

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

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

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

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

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

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

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

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

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

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

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

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

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

    0%,
    to {
        -webkit-transform-origin: left bottom
    }

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

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

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

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

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

    0%,
    to {
        -webkit-transform-origin: right bottom
    }

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

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

@-webkit-keyframes hinge {
    0% {
        transform-origin: top left
    }

    0%,
    20%,
    60% {
        -webkit-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);
        transform-origin: top left
    }

    40%,
    80% {
        -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;
        opacity: 1
    }

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

@keyframes hinge {
    0% {
        transform-origin: top left
    }

    0%,
    20%,
    60% {
        -webkit-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);
        transform-origin: top left
    }

    40%,
    80% {
        -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;
        opacity: 1
    }

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

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

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

@keyframes rollOut {
    0% {
        opacity: 1
    }

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

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

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

    50% {
        opacity: 1
    }
}

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

    50% {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50%,
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50%,
    to {
        opacity: 0
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

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

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: FontAwesome;
    src: url(../../../../static/live162/fonts/fontawesome-webfont_v-4.5.0.eot);
    src: url(../../../../static/live162/fonts/fontawesome-webfont.eot) format('embedded-opentype'), url(../../../../static/live162/fonts/fontawesome-webfont.woff) format('woff2'), url(../../../../static/live162/fonts/fontawesome-webfont_v-4.5.0.woff) format('woff'), url(../../../../static/live162/fonts/fontawesome-webfont_v-4.5.0.ttf) format('truetype'), url(../../../../static/live162/fonts/fontawesome-webfont_v-4.5.0-fontawesomeregular.svg) format('svg');
    font-weight: 400;
    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
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

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

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

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

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

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

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

.fa-ul>li {
    position: relative
}

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

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .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
}

.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(0);
        transform: rotate(0)
    }

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

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

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

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

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

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

.fa-flip-horizontal {
    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 {
    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-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    filter: none
}

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

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

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

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

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-cog:before,
.fa-gear:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-repeat:before,
.fa-rotate-right:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-exclamation-triangle:before,
.fa-warning:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-cogs:before,
.fa-gears:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-floppy-o:before,
.fa-save:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-sort:before,
.fa-unsorted:before {
    content: "\f0dc"
}

.fa-sort-desc:before,
.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-asc:before,
.fa-sort-up:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-gavel:before,
.fa-legal:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-bolt:before,
.fa-flash:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-clipboard:before,
.fa-paste:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-chain-broken:before,
.fa-unlink:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
    content: "\f150"
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
    content: "\f151"
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
    content: "\f152"
}

.fa-eur:before,
.fa-euro:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-inr:before,
.fa-rupee:before {
    content: "\f156"
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
    content: "\f157"
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
    content: "\f158"
}

.fa-krw:before,
.fa-won:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-try:before,
.fa-turkish-lira:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
    content: "\f19c"
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
    content: "\f1c5"
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
    content: "\f1c6"
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

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

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-empire:before,
.fa-ge:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

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

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-paper-plane:before,
.fa-send:before {
    content: "\f1d8"
}

.fa-paper-plane-o:before,
.fa-send-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-bed:before,
.fa-hotel:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-y-combinator:before,
.fa-yc:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-television:before,
.fa-tv:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.bx-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0;
    *zoom: 1
}

.bx-wrapper img {
    max-width: 100%;
    display: block
}

.bx-wrapper .bx-viewport {
    position: initial !important;
    overflow: hidden;
    border: 5px solid #fff;
    left: -5px;
    background: #fff;
    -webkit-transform: translatez(0);
    transform: translatez(0)
}

.bx-wrapper .bx-controls-auto,
.bx-wrapper .bx-pager {
    position: absolute;
    bottom: -30px;
    width: 100%
}

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(../../../../static/live162/images/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000
}

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: 700;
    color: #666;
    padding-top: 20px
}

.bx-wrapper .bx-controls-auto .bx-controls-auto-item,
.bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
    *zoom: 1;
    *display: inline
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 5px
}

.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #000
}

.bx-wrapper .bx-prev {
    left: -10px;
    background: #fff url(../../../../static/live162/images/arrows-1.png);
    border-radius: 50%
}

.bx-wrapper .bx-next {
    right: -10px;
    background: #fff url(../../../../static/live162/images/arrows.png);
    border-radius: 50%
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 100
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none
}

.bx-wrapper .bx-controls-auto {
    text-align: center
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(../../../../static/live162/images/controls.png) -86px -11px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover {
    background-position: -86px 0
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(../../../../static/live162/images/controls.png) -86px -44px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover {
    background-position: -86px -33px
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px
}

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666\9;
    background: rgba(80, 80, 80, .75);
    width: 100%
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px
}

.flag-icon-background {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 1.33333333em;
    line-height: 1em
}

.flag-icon:before {
    content: "\00a0"
}

.flag-icon.flag-icon-squared {
    width: 1em
}

.flag-icon-xk {
    background-image: url(../../../../static/live162/flags/png/xk.png)
}

.flag-icon-ad {
    background-image: url(../../../../static/live162/flags/png/ad.png)
}

.flag-icon-ad.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ad.svg)
}

.flag-icon-ae {
    background-image: url(../../../../static/live162/flags/png/ae.png)
}

.flag-icon-ae.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ae.svg)
}

.flag-icon-af {
    background-image: url(../../../../static/live162/flags/png/af.png)
}

.flag-icon-af.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/af.svg)
}

.flag-icon-ag {
    background-image: url(../../../../static/live162/flags/png/ag.png)
}

.flag-icon-ag.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ag.svg)
}

.flag-icon-ai {
    background-image: url(../../../../static/live162/flags/png/ai.png)
}

.flag-icon-ai.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ai.svg)
}

.flag-icon-al {
    background-image: url(../../../../static/live162/flags/png/al.png)
}

.flag-icon-al.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/al.svg)
}

.flag-icon-am {
    background-image: url(../../../../static/live162/flags/png/am.png)
}

.flag-icon-am.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/am.svg)
}

.flag-icon-ao {
    background-image: url(../../../../static/live162/flags/png/ao.png)
}

.flag-icon-ao.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ao.svg)
}

.flag-icon-aq {
    background-image: url(../../../../static/live162/flags/png/aq.png)
}

.flag-icon-aq.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/aq.svg)
}

.flag-icon-ar {
    background-image: url(../../../../static/live162/flags/png/ar.png)
}

.flag-icon-ar.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ar.svg)
}

.flag-icon-as {
    background-image: url(../../../../static/live162/flags/png/as.png)
}

.flag-icon-as.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/as.svg)
}

.flag-icon-at {
    background-image: url(../../../../static/live162/flags/png/at.png)
}

.flag-icon-at.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/at.svg)
}

.flag-icon-au {
    background-image: url(../../../../static/live162/flags/png/au.png)
}

.flag-icon-au.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/au.svg)
}

.flag-icon-aw {
    background-image: url(../../../../static/live162/flags/png/aw.png)
}

.flag-icon-aw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/aw.svg)
}

.flag-icon-ax {
    background-image: url(../../../../static/live162/flags/png/ax.png)
}

.flag-icon-ax.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ax.svg)
}

.flag-icon-az {
    background-image: url(../../../../static/live162/flags/png/az.png)
}

.flag-icon-az.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/az.svg)
}

.flag-icon-ba {
    background-image: url(../../../../static/live162/flags/png/ba.png)
}

.flag-icon-ba.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ba.svg)
}

.flag-icon-bb {
    background-image: url(../../../../static/live162/flags/png/bb.png)
}

.flag-icon-bb.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bb.svg)
}

.flag-icon-bd {
    background-image: url(../../../../static/live162/flags/png/bd.png)
}

.flag-icon-bd.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bd.svg)
}

.flag-icon-be {
    background-image: url(../../../../static/live162/flags/png/be.png)
}

.flag-icon-be.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/be.svg)
}

.flag-icon-bf {
    background-image: url(../../../../static/live162/flags/png/bf.png)
}

.flag-icon-bf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bf.svg)
}

.flag-icon-bg {
    background-image: url(../../../../static/live162/flags/png/bg.png)
}

.flag-icon-bg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bg.svg)
}

.flag-icon-bh {
    background-image: url(../../../../static/live162/flags/png/bh.png)
}

.flag-icon-bh.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bh.svg)
}

.flag-icon-bi {
    background-image: url(../../../../static/live162/flags/png/bi.png)
}

.flag-icon-bi.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bi.svg)
}

.flag-icon-bj {
    background-image: url(../../../../static/live162/flags/png/bj.png)
}

.flag-icon-bj.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bj.svg)
}

.flag-icon-bl {
    background-image: url(../../../../static/live162/flags/png/bl.png)
}

.flag-icon-bl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bl.svg)
}

.flag-icon-bm {
    background-image: url(../../../../static/live162/flags/png/bm.png)
}

.flag-icon-bm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bm.svg)
}

.flag-icon-bn {
    background-image: url(../../../../static/live162/flags/png/bn.png)
}

.flag-icon-bn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bn.svg)
}

.flag-icon-bo {
    background-image: url(../../../../static/live162/flags/png/bo.png)
}

.flag-icon-bo.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bo.svg)
}

.flag-icon-bq {
    background-image: url(../../../../static/live162/flags/png/nl.png)
}

.flag-icon-bq.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bq.svg)
}

.flag-icon-br {
    background-image: url(../../../../static/live162/flags/png/br.png)
}

.flag-icon-br.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/br.svg)
}

.flag-icon-bs {
    background-image: url(../../../../static/live162/flags/png/bs.png)
}

.flag-icon-bs.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bs.svg)
}

.flag-icon-bt {
    background-image: url(../../../../static/live162/flags/png/bt.png)
}

.flag-icon-bt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bt.svg)
}

.flag-icon-bv {
    background-image: url(../../../../static/live162/flags/png/no.png)
}

.flag-icon-bv.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bv.svg)
}

.flag-icon-bw {
    background-image: url(../../../../static/live162/flags/png/bw.png)
}

.flag-icon-bw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bw.svg)
}

.flag-icon-by {
    background-image: url(../../../../static/live162/flags/png/by.png)
}

.flag-icon-by.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/by.svg)
}

.flag-icon-bz {
    background-image: url(../../../../static/live162/flags/png/bz.png)
}

.flag-icon-bz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/bz.svg)
}

.flag-icon-ca {
    background-image: url(../../../../static/live162/flags/png/ca.png)
}

.flag-icon-ca.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ca.svg)
}

.flag-icon-cc {
    background-image: url(../../../../static/live162/flags/png/cc.png)
}

.flag-icon-cc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cc.svg)
}

.flag-icon-cd {
    background-image: url(../../../../static/live162/flags/png/cd.png)
}

.flag-icon-cd.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cd.svg)
}

.flag-icon-cf {
    background-image: url(../../../../static/live162/flags/png/cf.png)
}

.flag-icon-cf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cf.svg)
}

.flag-icon-cg {
    background-image: url(../../../../static/live162/flags/png/cg.png)
}

.flag-icon-cg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cg.svg)
}

.flag-icon-ch {
    background-image: url(../../../../static/live162/flags/png/ch.png)
}

.flag-icon-ch.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ch.svg)
}

.flag-icon-ci {
    background-image: url(../../../../static/live162/flags/png/ci.png)
}

.flag-icon-ci.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ci.svg)
}

.flag-icon-ck {
    background-image: url(../../../../static/live162/flags/png/ck.png)
}

.flag-icon-ck.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ck.svg)
}

.flag-icon-cl {
    background-image: url(../../../../static/live162/flags/png/cl.png)
}

.flag-icon-cl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cl.svg)
}

.flag-icon-cm {
    background-image: url(../../../../static/live162/flags/png/cm.png)
}

.flag-icon-cm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cm.svg)
}

.flag-icon-cn {
    background-image: url(../../../../static/live162/flags/png/cn.png)
}

.flag-icon-cn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cn.svg)
}

.flag-icon-co {
    background-image: url(../../../../static/live162/flags/png/co.png)
}

.flag-icon-co.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/co.svg)
}

.flag-icon-cr {
    background-image: url(../../../../static/live162/flags/png/cr.png)
}

.flag-icon-cr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cr.svg)
}

.flag-icon-cu {
    background-image: url(../../../../static/live162/flags/png/cu.png)
}

.flag-icon-cu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cu.svg)
}

.flag-icon-cv {
    background-image: url(../../../../static/live162/flags/png/cv.png)
}

.flag-icon-cv.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cv.svg)
}

.flag-icon-cw {
    background-image: url(../../../../static/live162/flags/png/cw.png)
}

.flag-icon-cw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cw.svg)
}

.flag-icon-cx {
    background-image: url(../../../../static/live162/flags/png/cx.png)
}

.flag-icon-cx.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cx.svg)
}

.flag-icon-cy {
    background-image: url(../../../../static/live162/flags/png/cy.png)
}

.flag-icon-cy.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cy.svg)
}

.flag-icon-cz {
    background-image: url(../../../../static/live162/flags/png/cz.png)
}

.flag-icon-cz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/cz.svg)
}

.flag-icon-de {
    background-image: url(../../../../static/live162/flags/png/de.png)
}

.flag-icon-de.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/de.svg)
}

.flag-icon-dj {
    background-image: url(../../../../static/live162/flags/png/dj.png)
}

.flag-icon-dj.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/dj.svg)
}

.flag-icon-dk {
    background-image: url(../../../../static/live162/flags/png/dk.png)
}

.flag-icon-dk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/dk.svg)
}

.flag-icon-dm {
    background-image: url(../../../../static/live162/flags/png/dm.png)
}

.flag-icon-dm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/dm.svg)
}

.flag-icon-do {
    background-image: url(../../../../static/live162/flags/png/do.png)
}

.flag-icon-do.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/do.svg)
}

.flag-icon-dz {
    background-image: url(../../../../static/live162/flags/png/dz.png)
}

.flag-icon-dz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/dz.svg)
}

.flag-icon-ec {
    background-image: url(../../../../static/live162/flags/png/ec.png)
}

.flag-icon-ec.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ec.svg)
}

.flag-icon-ee {
    background-image: url(../../../../static/live162/flags/png/ee.png)
}

.flag-icon-ee.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ee.svg)
}

.flag-icon-eg {
    background-image: url(../../../../static/live162/flags/png/eg.png)
}

.flag-icon-eg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/eg.svg)
}

.flag-icon-eh {
    background-image: url(../../../../static/live162/flags/png/eh.png)
}

.flag-icon-eh.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/eh.svg)
}

.flag-icon-er {
    background-image: url(../../../../static/live162/flags/png/er.png)
}

.flag-icon-er.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/er.svg)
}

.flag-icon-es {
    background-image: url(../../../../static/live162/flags/png/es.png)
}

.flag-icon-es.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/es.svg)
}

.flag-icon-et {
    background-image: url(../../../../static/live162/flags/png/et.png)
}

.flag-icon-et.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/et.svg)
}

.flag-icon-fi {
    background-image: url(../../../../static/live162/flags/png/fi.png)
}

.flag-icon-fi.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/fi.svg)
}

.flag-icon-fj {
    background-image: url(../../../../static/live162/flags/png/fj.png)
}

.flag-icon-fj.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/fj.svg)
}

.flag-icon-fk {
    background-image: url(../../../../static/live162/flags/png/fk.png)
}

.flag-icon-fk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/fk.svg)
}

.flag-icon-fm {
    background-image: url(../../../../static/live162/flags/png/fm.png)
}

.flag-icon-fm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/fm.svg)
}

.flag-icon-fo {
    background-image: url(../../../../static/live162/flags/png/fo.png)
}

.flag-icon-fo.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/fo.svg)
}

.flag-icon-fr {
    background-image: url(../../../../static/live162/flags/png/fr.png)
}

.flag-icon-fr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/fr.svg)
}

.flag-icon-ga {
    background-image: url(../../../../static/live162/flags/png/ga.png)
}

.flag-icon-ga.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ga.svg)
}

.flag-icon-gb {
    background-image: url(../../../../static/live162/flags/png/gb.png)
}

.flag-icon-gb.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gb.svg)
}

.flag-icon-gd {
    background-image: url(../../../../static/live162/flags/png/gd.png)
}

.flag-icon-gd.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gd.svg)
}

.flag-icon-ge {
    background-image: url(../../../../static/live162/flags/png/ge.png)
}

.flag-icon-ge.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ge.svg)
}

.flag-icon-gf {
    background-image: url(../../../../static/live162/flags/png/gf.png)
}

.flag-icon-gf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gf.svg)
}

.flag-icon-gg {
    background-image: url(../../../../static/live162/flags/png/gg.png)
}

.flag-icon-gg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gg.svg)
}

.flag-icon-gh {
    background-image: url(../../../../static/live162/flags/png/gh.png)
}

.flag-icon-gh.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gh.svg)
}

.flag-icon-gi {
    background-image: url(../../../../static/live162/flags/png/gi.png)
}

.flag-icon-gi.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gi.svg)
}

.flag-icon-gl {
    background-image: url(../../../../static/live162/flags/png/gl.png)
}

.flag-icon-gl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gl.svg)
}

.flag-icon-gm {
    background-image: url(../../../../static/live162/flags/png/gm.png)
}

.flag-icon-gm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gm.svg)
}

.flag-icon-gn {
    background-image: url(../../../../static/live162/flags/png/gn.png)
}

.flag-icon-gn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gn.svg)
}

.flag-icon-gp {
    background-image: url(../../../../static/live162/flags/png/fr.png)
}

.flag-icon-gp.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gp.svg)
}

.flag-icon-gq {
    background-image: url(../../../../static/live162/flags/png/gq.png)
}

.flag-icon-gq.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gq.svg)
}

.flag-icon-gr {
    background-image: url(../../../../static/live162/flags/png/gr.png)
}

.flag-icon-gr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gr.svg)
}

.flag-icon-gs {
    background-image: url(../../../../static/live162/flags/png/gs.png)
}

.flag-icon-gs.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gs.svg)
}

.flag-icon-gt {
    background-image: url(../../../../static/live162/flags/png/gt.png)
}

.flag-icon-gt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gt.svg)
}

.flag-icon-gu {
    background-image: url(../../../../static/live162/flags/png/gu.png)
}

.flag-icon-gu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gu.svg)
}

.flag-icon-gw {
    background-image: url(../../../../static/live162/flags/png/gw.png)
}

.flag-icon-gw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gw.svg)
}

.flag-icon-gy {
    background-image: url(../../../../static/live162/flags/png/gy.png)
}

.flag-icon-gy.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gy.svg)
}

.flag-icon-hk {
    background-image: url(../../../../static/live162/flags/png/hk.png)
}

.flag-icon-hk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/hk.svg)
}

.flag-icon-hm {
    background-image: url(../../../../static/live162/flags/png/hm.png)
}

.flag-icon-hm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/hm.svg)
}

.flag-icon-hn {
    background-image: url(../../../../static/live162/flags/png/hn.png)
}

.flag-icon-hn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/hn.svg)
}

.flag-icon-hr {
    background-image: url(../../../../static/live162/flags/png/hr.png)
}

.flag-icon-hr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/hr.svg)
}

.flag-icon-ht {
    background-image: url(../../../../static/live162/flags/png/ht.png)
}

.flag-icon-ht.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ht.svg)
}

.flag-icon-hu {
    background-image: url(../../../../static/live162/flags/png/hu.png)
}

.flag-icon-hu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/hu.svg)
}

.flag-icon-id {
    background-image: url(../../../../static/live162/flags/png/id.png)
}

.flag-icon-id.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/id.svg)
}

.flag-icon-ie {
    background-image: url(../../../../static/live162/flags/png/ie.png)
}

.flag-icon-ie.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ie.svg)
}

.flag-icon-il {
    background-image: url(../../../../static/live162/flags/png/il.png)
}

.flag-icon-il.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/il.svg)
}

.flag-icon-im {
    background-image: url(../../../../static/live162/flags/png/im.png)
}

.flag-icon-im.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/im.svg)
}

.flag-icon-in {
    background-image: url(../../../../static/live162/flags/png/in.png)
}

.flag-icon-in.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/in.svg)
}

.flag-icon-io {
    background-image: url(../../../../static/live162/flags/png/io.png)
}

.flag-icon-io.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/io.svg)
}

.flag-icon-iq {
    background-image: url(../../../../static/live162/flags/png/iq.png)
}

.flag-icon-iq.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/iq.svg)
}

.flag-icon-ir {
    background-image: url(../../../../static/live162/flags/png/ir.png)
}

.flag-icon-ir.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ir.svg)
}

.flag-icon-is {
    background-image: url(../../../../static/live162/flags/png/is.png)
}

.flag-icon-is.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/is.svg)
}

.flag-icon-it {
    background-image: url(../../../../static/live162/flags/png/it.png)
}

.flag-icon-it.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/it.svg)
}

.flag-icon-je {
    background-image: url(../../../../static/live162/flags/png/je.png)
}

.flag-icon-je.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/je.svg)
}

.flag-icon-jm {
    background-image: url(../../../../static/live162/flags/png/jm.png)
}

.flag-icon-jm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/jm.svg)
}

.flag-icon-jo {
    background-image: url(../../../../static/live162/flags/png/jo.png)
}

.flag-icon-jo.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/jo.svg)
}

.flag-icon-jp {
    background-image: url(../../../../static/live162/flags/png/jp.png)
}

.flag-icon-jp.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/jp.svg)
}

.flag-icon-ke {
    background-image: url(../../../../static/live162/flags/png/ke.png)
}

.flag-icon-ke.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ke.svg)
}

.flag-icon-kg {
    background-image: url(../../../../static/live162/flags/png/kg.png)
}

.flag-icon-kg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kg.svg)
}

.flag-icon-kh {
    background-image: url(../../../../static/live162/flags/png/kh.png)
}

.flag-icon-kh.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kh.svg)
}

.flag-icon-ki {
    background-image: url(../../../../static/live162/flags/png/ki.png)
}

.flag-icon-ki.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ki.svg)
}

.flag-icon-km {
    background-image: url(../../../../static/live162/flags/png/km.png)
}

.flag-icon-km.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/km.svg)
}

.flag-icon-kn {
    background-image: url(../../../../static/live162/flags/png/kn.png)
}

.flag-icon-kn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kn.svg)
}

.flag-icon-kp {
    background-image: url(../../../../static/live162/flags/png/kp.png)
}

.flag-icon-kp.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kp.svg)
}

.flag-icon-kr {
    background-image: url(../../../../static/live162/flags/png/kr.png)
}

.flag-icon-kr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kr.svg)
}

.flag-icon-kw {
    background-image: url(../../../../static/live162/flags/png/kw.png)
}

.flag-icon-kw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kw.svg)
}

.flag-icon-ky {
    background-image: url(../../../../static/live162/flags/png/ky.png)
}

.flag-icon-ky.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ky.svg)
}

.flag-icon-kz {
    background-image: url(../../../../static/live162/flags/png/kz.png)
}

.flag-icon-kz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/kz.svg)
}

.flag-icon-la {
    background-image: url(../../../../static/live162/flags/png/la.png)
}

.flag-icon-la.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/la.svg)
}

.flag-icon-lb {
    background-image: url(../../../../static/live162/flags/png/lb.png)
}

.flag-icon-lb.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lb.svg)
}

.flag-icon-lc {
    background-image: url(../../../../static/live162/flags/png/lc.png)
}

.flag-icon-lc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lc.svg)
}

.flag-icon-li {
    background-image: url(../../../../static/live162/flags/png/li.png)
}

.flag-icon-li.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/li.svg)
}

.flag-icon-lk {
    background-image: url(../../../../static/live162/flags/png/lk.png)
}

.flag-icon-lk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lk.svg)
}

.flag-icon-lr {
    background-image: url(../../../../static/live162/flags/png/lr.png)
}

.flag-icon-lr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lr.svg)
}

.flag-icon-ls {
    background-image: url(../../../../static/live162/flags/png/ls.png)
}

.flag-icon-ls.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ls.svg)
}

.flag-icon-lt {
    background-image: url(../../../../static/live162/flags/png/lt.png)
}

.flag-icon-lt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lt.svg)
}

.flag-icon-lu {
    background-image: url(../../../../static/live162/flags/png/lu.png)
}

.flag-icon-lu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lu.svg)
}

.flag-icon-lv {
    background-image: url(../../../../static/live162/flags/png/lv.png)
}

.flag-icon-lv.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/lv.svg)
}

.flag-icon-ly {
    background-image: url(../../../../static/live162/flags/png/ly.png)
}

.flag-icon-ly.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ly.svg)
}

.flag-icon-ma {
    background-image: url(../../../../static/live162/flags/png/ma.png)
}

.flag-icon-ma.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ma.svg)
}

.flag-icon-mc {
    background-image: url(../../../../static/live162/flags/png/mc.png)
}

.flag-icon-mc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mc.svg)
}

.flag-icon-md {
    background-image: url(../../../../static/live162/flags/png/md.png)
}

.flag-icon-md.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/md.svg)
}

.flag-icon-me {
    background-image: url(../../../../static/live162/flags/png/me.png)
}

.flag-icon-me.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/me.svg)
}

.flag-icon-mf {
    background-image: url(../../../../static/live162/flags/png/fr.png)
}

.flag-icon-mf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mf.svg)
}

.flag-icon-mg {
    background-image: url(../../../../static/live162/flags/png/mg.png)
}

.flag-icon-mg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mg.svg)
}

.flag-icon-mh {
    background-image: url(../../../../static/live162/flags/png/mh.png)
}

.flag-icon-mh.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mh.svg)
}

.flag-icon-mk {
    background-image: url(../../../../static/live162/flags/png/mk.png)
}

.flag-icon-mk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mk.svg)
}

.flag-icon-ml {
    background-image: url(../../../../static/live162/flags/png/ml.png)
}

.flag-icon-ml.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ml.svg)
}

.flag-icon-mm {
    background-image: url(../../../../static/live162/flags/png/mm.png)
}

.flag-icon-mm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mm.svg)
}

.flag-icon-mn {
    background-image: url(../../../../static/live162/flags/png/mn.png)
}

.flag-icon-mn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mn.svg)
}

.flag-icon-mo {
    background-image: url(../../../../static/live162/flags/png/mo.png)
}

.flag-icon-mo.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mo.svg)
}

.flag-icon-mp {
    background-image: url(../../../../static/live162/flags/png/mp.png)
}

.flag-icon-mp.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mp.svg)
}

.flag-icon-mq {
    background-image: url(../../../../static/live162/flags/png/mq.png)
}

.flag-icon-mq.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mq.svg)
}

.flag-icon-mr {
    background-image: url(../../../../static/live162/flags/png/mr.png)
}

.flag-icon-mr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mr.svg)
}

.flag-icon-ms {
    background-image: url(../../../../static/live162/flags/png/ms.png)
}

.flag-icon-ms.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ms.svg)
}

.flag-icon-mt {
    background-image: url(../../../../static/live162/flags/png/mt.png)
}

.flag-icon-mt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mt.svg)
}

.flag-icon-mu {
    background-image: url(../../../../static/live162/flags/png/mu.png)
}

.flag-icon-mu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mu.svg)
}

.flag-icon-mv {
    background-image: url(../../../../static/live162/flags/png/mv.png)
}

.flag-icon-mv.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mv.svg)
}

.flag-icon-mw {
    background-image: url(../../../../static/live162/flags/png/mw.png)
}

.flag-icon-mw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mw.svg)
}

.flag-icon-mx {
    background-image: url(../../../../static/live162/flags/png/mx.png)
}

.flag-icon-mx.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mx.svg)
}

.flag-icon-my {
    background-image: url(../../../../static/live162/flags/png/my.png)
}

.flag-icon-my.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/my.svg)
}

.flag-icon-mz {
    background-image: url(../../../../static/live162/flags/png/mz.png)
}

.flag-icon-mz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/mz.svg)
}

.flag-icon-na {
    background-image: url(../../../../static/live162/flags/png/na.png)
}

.flag-icon-na.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/na.svg)
}

.flag-icon-nc {
    background-image: url(../../../../static/live162/flags/png/nc.png)
}

.flag-icon-nc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/nc.svg)
}

.flag-icon-ne {
    background-image: url(../../../../static/live162/flags/png/ne.png)
}

.flag-icon-ne.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ne.svg)
}

.flag-icon-nf {
    background-image: url(../../../../static/live162/flags/png/nf.png)
}

.flag-icon-nf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/nf.svg)
}

.flag-icon-ng {
    background-image: url(../../../../static/live162/flags/png/ng.png)
}

.flag-icon-ng.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ng.svg)
}

.flag-icon-ni {
    background-image: url(../../../../static/live162/flags/png/ni.png)
}

.flag-icon-ni.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ni.svg)
}

.flag-icon-nl {
    background-image: url(../../../../static/live162/flags/png/nl.png)
}

.flag-icon-nl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/nl.svg)
}

.flag-icon-no {
    background-image: url(../../../../static/live162/flags/png/no.png)
}

.flag-icon-no.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/no.svg)
}

.flag-icon-np {
    background-image: url(../../../../static/live162/flags/png/np.png)
}

.flag-icon-np.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/np.svg)
}

.flag-icon-nr {
    background-image: url(../../../../static/live162/flags/png/nr.png)
}

.flag-icon-nr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/nr.svg)
}

.flag-icon-nu {
    background-image: url(../../../../static/live162/flags/png/nu.png)
}

.flag-icon-nu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/nu.svg)
}

.flag-icon-nz {
    background-image: url(../../../../static/live162/flags/png/nz.png)
}

.flag-icon-nz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/nz.svg)
}

.flag-icon-om {
    background-image: url(../../../../static/live162/flags/png/om.png)
}

.flag-icon-om.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/om.svg)
}

.flag-icon-pa {
    background-image: url(../../../../static/live162/flags/png/pa.png)
}

.flag-icon-pa.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pa.svg)
}

.flag-icon-pe {
    background-image: url(../../../../static/live162/flags/png/pe.png)
}

.flag-icon-pe.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pe.svg)
}

.flag-icon-pf {
    background-image: url(../../../../static/live162/flags/png/pf.png)
}

.flag-icon-pf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pf.svg)
}

.flag-icon-pg {
    background-image: url(../../../../static/live162/flags/png/pg.png)
}

.flag-icon-pg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pg.svg)
}

.flag-icon-ph {
    background-image: url(../../../../static/live162/flags/png/ph.png)
}

.flag-icon-ph.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ph.svg)
}

.flag-icon-pk {
    background-image: url(../../../../static/live162/flags/png/pk.png)
}

.flag-icon-pk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pk.svg)
}

.flag-icon-pl {
    background-image: url(../../../../static/live162/flags/png/pl.png)
}

.flag-icon-pl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pl.svg)
}

.flag-icon-pm {
    background-image: url(../../../../static/live162/flags/png/fr.png)
}

.flag-icon-pm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pm.svg)
}

.flag-icon-pn {
    background-image: url(../../../../static/live162/flags/png/pn.png)
}

.flag-icon-pn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pn.svg)
}

.flag-icon-pr {
    background-image: url(../../../../static/live162/flags/png/pr.png)
}

.flag-icon-pr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pr.svg)
}

.flag-icon-ps {
    background-image: url(../../../../static/live162/flags/png/ps.png)
}

.flag-icon-ps.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ps.svg)
}

.flag-icon-pt {
    background-image: url(../../../../static/live162/flags/png/pt.png)
}

.flag-icon-pt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pt.svg)
}

.flag-icon-pw {
    background-image: url(../../../../static/live162/flags/png/pw.png)
}

.flag-icon-pw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/pw.svg)
}

.flag-icon-py {
    background-image: url(../../../../static/live162/flags/png/py.png)
}

.flag-icon-py.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/py.svg)
}

.flag-icon-qa {
    background-image: url(../../../../static/live162/flags/png/qa.png)
}

.flag-icon-qa.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/qa.svg)
}

.flag-icon-re {
    background-image: url(../../../../static/live162/flags/png/fr.png)
}

.flag-icon-re.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/re.svg)
}

.flag-icon-ro {
    background-image: url(../../../../static/live162/flags/png/ro.png)
}

.flag-icon-ro.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ro.svg)
}

.flag-icon-rs {
    background-image: url(../../../../static/live162/flags/png/rs.png)
}

.flag-icon-rs.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/rs.svg)
}

.flag-icon-ru {
    background-image: url(../../../../static/live162/flags/png/ru.png)
}

.flag-icon-ru.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ru.svg)
}

.flag-icon-rw {
    background-image: url(../../../../static/live162/flags/png/rw.png)
}

.flag-icon-rw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/rw.svg)
}

.flag-icon-sa {
    background-image: url(../../../../static/live162/flags/png/sa.png)
}

.flag-icon-sa.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sa.svg)
}

.flag-icon-sb {
    background-image: url(../../../../static/live162/flags/png/sb.png)
}

.flag-icon-sb.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sb.svg)
}

.flag-icon-sc {
    background-image: url(../../../../static/live162/flags/png/sc.png)
}

.flag-icon-sc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sc.svg)
}

.flag-icon-sd {
    background-image: url(../../../../static/live162/flags/png/sd.png)
}

.flag-icon-sd.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sd.svg)
}

.flag-icon-se {
    background-image: url(../../../../static/live162/flags/png/se.png)
}

.flag-icon-se.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/se.svg)
}

.flag-icon-sg {
    background-image: url(../../../../static/live162/flags/png/sg.png)
}

.flag-icon-sg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sg.svg)
}

.flag-icon-sh {
    background-image: url(../../../../static/live162/flags/png/gb.png)
}

.flag-icon-sh.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sh.svg)
}

.flag-icon-si {
    background-image: url(../../../../static/live162/flags/png/si.png)
}

.flag-icon-si.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/si.svg)
}

.flag-icon-sj {
    background-image: url(../../../../static/live162/flags/png/no.png)
}

.flag-icon-sj.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sj.svg)
}

.flag-icon-sk {
    background-image: url(../../../../static/live162/flags/png/sk.png)
}

.flag-icon-sk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sk.svg)
}

.flag-icon-sl {
    background-image: url(../../../../static/live162/flags/png/sl.png)
}

.flag-icon-sl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sl.svg)
}

.flag-icon-sm {
    background-image: url(../../../../static/live162/flags/png/sm.png)
}

.flag-icon-sm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sm.svg)
}

.flag-icon-sn {
    background-image: url(../../../../static/live162/flags/png/sn.png)
}

.flag-icon-sn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sn.svg)
}

.flag-icon-so {
    background-image: url(../../../../static/live162/flags/png/so.png)
}

.flag-icon-so.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/so.svg)
}

.flag-icon-sr {
    background-image: url(../../../../static/live162/flags/png/sr.png)
}

.flag-icon-sr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sr.svg)
}

.flag-icon-ss {
    background-image: url(../../../../static/live162/flags/png/ss.png)
}

.flag-icon-ss.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ss.svg)
}

.flag-icon-st {
    background-image: url(../../../../static/live162/flags/png/st.png)
}

.flag-icon-st.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/st.svg)
}

.flag-icon-sv {
    background-image: url(../../../../static/live162/flags/png/sv.png)
}

.flag-icon-sv.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sv.svg)
}

.flag-icon-sx {
    background-image: url(../../../../static/live162/flags/png/sx.png)
}

.flag-icon-sx.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sx.svg)
}

.flag-icon-sy {
    background-image: url(../../../../static/live162/flags/png/sy.png)
}

.flag-icon-sy.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sy.svg)
}

.flag-icon-sz {
    background-image: url(../../../../static/live162/flags/png/sz.png)
}

.flag-icon-sz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/sz.svg)
}

.flag-icon-tc {
    background-image: url(../../../../static/live162/flags/png/tc.png)
}

.flag-icon-tc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tc.svg)
}

.flag-icon-td {
    background-image: url(../../../../static/live162/flags/png/td.png)
}

.flag-icon-td.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/td.svg)
}

.flag-icon-tf {
    background-image: url(../../../../static/live162/flags/png/tf.png)
}

.flag-icon-tf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tf.svg)
}

.flag-icon-tg {
    background-image: url(../../../../static/live162/flags/png/tg.png)
}

.flag-icon-tg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tg.svg)
}

.flag-icon-th {
    background-image: url(../../../../static/live162/flags/png/th.png)
}

.flag-icon-th.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/th.svg)
}

.flag-icon-tj {
    background-image: url(../../../../static/live162/flags/png/tj.png)
}

.flag-icon-tj.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tj.svg)
}

.flag-icon-tk {
    background-image: url(../../../../static/live162/flags/png/tk.png)
}

.flag-icon-tk.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tk.svg)
}

.flag-icon-tl {
    background-image: url(../../../../static/live162/flags/png/tl.png)
}

.flag-icon-tl.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tl.svg)
}

.flag-icon-tm {
    background-image: url(../../../../static/live162/flags/png/tm.png)
}

.flag-icon-tm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tm.svg)
}

.flag-icon-tn {
    background-image: url(../../../../static/live162/flags/png/tn.png)
}

.flag-icon-tn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tn.svg)
}

.flag-icon-to {
    background-image: url(../../../../static/live162/flags/png/to.png)
}

.flag-icon-to.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/to.svg)
}

.flag-icon-tr {
    background-image: url(../../../../static/live162/flags/png/tr.png)
}

.flag-icon-tr.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tr.svg)
}

.flag-icon-tt {
    background-image: url(../../../../static/live162/flags/png/tt.png)
}

.flag-icon-tt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tt.svg)
}

.flag-icon-tv {
    background-image: url(../../../../static/live162/flags/png/tv.png)
}

.flag-icon-tv.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tv.svg)
}

.flag-icon-tw {
    background-image: url(../../../../static/live162/flags/png/tw.png)
}

.flag-icon-tw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tw.svg)
}

.flag-icon-tz {
    background-image: url(../../../../static/live162/flags/png/tz.png)
}

.flag-icon-tz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/tz.svg)
}

.flag-icon-ua {
    background-image: url(../../../../static/live162/flags/png/ua.png)
}

.flag-icon-ua.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ua.svg)
}

.flag-icon-ug {
    background-image: url(../../../../static/live162/flags/png/ug.png)
}

.flag-icon-ug.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ug.svg)
}

.flag-icon-um {
    background-image: url(../../../../static/live162/flags/png/us.png)
}

.flag-icon-um.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/um.svg)
}

.flag-icon-us {
    background-image: url(../../../../static/live162/flags/png/us.png)
}

.flag-icon-us.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/us.svg)
}

.flag-icon-uy {
    background-image: url(../../../../static/live162/flags/png/uy.png)
}

.flag-icon-uy.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/uy.svg)
}

.flag-icon-uz {
    background-image: url(../../../../static/live162/flags/png/uz.png)
}

.flag-icon-uz.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/uz.svg)
}

.flag-icon-va {
    background-image: url(../../../../static/live162/flags/png/va.png)
}

.flag-icon-va.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/va.svg)
}

.flag-icon-vc {
    background-image: url(../../../../static/live162/flags/png/vc.png)
}

.flag-icon-vc.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/vc.svg)
}

.flag-icon-ve {
    background-image: url(../../../../static/live162/flags/png/ve.png)
}

.flag-icon-ve.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ve.svg)
}

.flag-icon-vg {
    background-image: url(../../../../static/live162/flags/png/vg.png)
}

.flag-icon-vg.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/vg.svg)
}

.flag-icon-vi {
    background-image: url(../../../../static/live162/flags/png/vi.png)
}

.flag-icon-vi.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/vi.svg)
}

.flag-icon-vn {
    background-image: url(../../../../static/live162/flags/png/vn.png)
}

.flag-icon-vn.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/vn.svg)
}

.flag-icon-vu {
    background-image: url(../../../../static/live162/flags/png/vu.png)
}

.flag-icon-vu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/vu.svg)
}

.flag-icon-wf {
    background-image: url(../../../../static/live162/flags/png/wf.png)
}

.flag-icon-wf.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/wf.svg)
}

.flag-icon-ws {
    background-image: url(../../../../static/live162/flags/png/ws.png)
}

.flag-icon-ws.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ws.svg)
}

.flag-icon-ye {
    background-image: url(../../../../static/live162/flags/png/ye.png)
}

.flag-icon-ye.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/ye.svg)
}

.flag-icon-yt {
    background-image: url(../../../../static/live162/flags/png/yt.png)
}

.flag-icon-yt.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/yt.svg)
}

.flag-icon-za {
    background-image: url(../../../../static/live162/flags/png/za.png)
}

.flag-icon-za.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/za.svg)
}

.flag-icon-zm {
    background-image: url(../../../../static/live162/flags/png/zm.png)
}

.flag-icon-zm.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/zm.svg)
}

.flag-icon-zw {
    background-image: url(../../../../static/live162/flags/png/zw.png)
}

.flag-icon-zw.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/zw.svg)
}

.flag-icon-eu {
    background-image: url(../../../../static/live162/flags/png/eu.png)
}

.flag-icon-eu.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/eu.svg)
}

.flag-icon-gb-eng {
    background-image: url(../../../../static/live162/flags/png/gb-eng.png)
}

.flag-icon-gb-eng.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gb-eng.svg)
}

.flag-icon-gb-sct {
    background-image: url(../../../../static/live162/flags/png/gb-sct.png)
}

.flag-icon-gb-sct.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gb-sct.svg)
}

.flag-icon-gb-wls {
    background-image: url(../../../../static/live162/flags/png/gb-wls.png)
}

.flag-icon-gb-wls.flag-icon-squared {
    background-image: url(https://www.islamicfinder.org/static/live162/flags/1x1/gb-wls.svg)
}

.has-warning .twitter-typeahead .tt-hint,
.has-warning .twitter-typeahead .tt-input {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .twitter-typeahead .tt-hint:focus,
.has-warning .twitter-typeahead .tt-input:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-error .twitter-typeahead .tt-hint,
.has-error .twitter-typeahead .tt-input {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .twitter-typeahead .tt-hint:focus,
.has-error .twitter-typeahead .tt-input:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-success .twitter-typeahead .tt-hint,
.has-success .twitter-typeahead .tt-input {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .twitter-typeahead .tt-hint:focus,
.has-success .twitter-typeahead .tt-input:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.input-group .twitter-typeahead:first-child .tt-hint,
.input-group .twitter-typeahead:first-child .tt-input {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.input-group .twitter-typeahead:last-child .tt-hint,
.input-group .twitter-typeahead:last-child .tt-input {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.input-group.input-group-sm .twitter-typeahead .tt-hint,
.input-group.input-group-sm .twitter-typeahead .tt-input {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group.input-group-sm .twitter-typeahead .tt-hint,
select.input-group.input-group-sm .twitter-typeahead .tt-input {
    height: 30px;
    line-height: 30px
}

select[multiple].input-group.input-group-sm .twitter-typeahead .tt-hint,
select[multiple].input-group.input-group-sm .twitter-typeahead .tt-input,
textarea.input-group.input-group-sm .twitter-typeahead .tt-hint,
textarea.input-group.input-group-sm .twitter-typeahead .tt-input {
    height: auto
}

.input-group.input-group-sm .twitter-typeahead:not(:first-child):not(:last-child) .tt-hint,
.input-group.input-group-sm .twitter-typeahead:not(:first-child):not(:last-child) .tt-input {
    border-radius: 0
}

.input-group.input-group-sm .twitter-typeahead:first-child .tt-hint,
.input-group.input-group-sm .twitter-typeahead:first-child .tt-input {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group.input-group-sm .twitter-typeahead:last-child .tt-hint,
.input-group.input-group-sm .twitter-typeahead:last-child .tt-input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.input-group.input-group-lg .twitter-typeahead .tt-hint,
.input-group.input-group-lg .twitter-typeahead .tt-input {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px
}

select.input-group.input-group-lg .twitter-typeahead .tt-hint,
select.input-group.input-group-lg .twitter-typeahead .tt-input {
    height: 46px;
    line-height: 46px
}

select[multiple].input-group.input-group-lg .twitter-typeahead .tt-hint,
select[multiple].input-group.input-group-lg .twitter-typeahead .tt-input,
textarea.input-group.input-group-lg .twitter-typeahead .tt-hint,
textarea.input-group.input-group-lg .twitter-typeahead .tt-input {
    height: auto
}

.input-group.input-group-lg .twitter-typeahead:not(:first-child):not(:last-child) .tt-hint,
.input-group.input-group-lg .twitter-typeahead:not(:first-child):not(:last-child) .tt-input {
    border-radius: 0
}

.input-group.input-group-lg .twitter-typeahead:first-child .tt-hint,
.input-group.input-group-lg .twitter-typeahead:first-child .tt-input {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group.input-group-lg .twitter-typeahead:last-child .tt-hint,
.input-group.input-group-lg .twitter-typeahead:last-child .tt-input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.twitter-typeahead {
    width: 100%
}

.input-group .twitter-typeahead {
    display: table-cell !important;
    float: left
}

.twitter-typeahead .tt-hint {
    color: #999
}

.twitter-typeahead .tt-input {
    z-index: 2
}

.twitter-typeahead .tt-input[disabled],
.twitter-typeahead .tt-input[readonly],
fieldset[disabled] .twitter-typeahead .tt-input {
    cursor: not-allowed;
    background-color: #eee !important
}

.tt-dropdown-menu {
    overflow: hidden;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 160px;
    width: 100%;
    margin: 7px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #3b98bd;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    max-height: 350px
}

@media (max-width:768px) {
    .tt-dropdown-menu {
        max-height: 250px
    }
}

.tt-dropdown-menu .tt-suggestion {
    display: block;
    padding: 7px 10px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #6e6e6e;
    white-space: nowrap
}

.tt-dropdown-menu .tt-suggestion.tt-cursor {
    text-decoration: none;
    outline: 0;
    background-color: #3b98bd;
    color: #fff
}

.tt-dropdown-menu .tt-suggestion.tt-cursor a {
    color: #fff
}

.tt-dropdown-menu .tt-suggestion p {
    margin: 0
}

/*! Hint.css - v2.3.1 - 2016-06-05
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour; Licensed  */
[class*=hint--] {
    position: relative;
    display: table-cell
}

[class*=hint--]:after,
[class*=hint--]:before {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s
}

[class*=hint--].is-shown:hover:after,
[class*=hint--].is-shown:hover:before,
[class*=hint--]:hover:after,
[class*=hint--]:hover:before {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    transition-delay: .1s
}

[class*=hint--]:before {
    content: '';
    position: absolute;
    background: 0 0;
    border: 6px solid transparent;
    z-index: 1000001
}

[class*=hint--]:after {
    background: #3b98bd;
    color: #fff;
    font-weight: 500;
    padding: 8px 10px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 12px;
    white-space: nowrap;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .4)
}

[class*=hint--][aria-label]:after {
    content: attr(aria-label)
}

[class*=hint--][data-hint]:after {
    content: attr(data-hint)
}

[aria-label='']:after,
[aria-label='']:before,
[data-hint='']:after,
[data-hint='']:before {
    display: none !important
}

.hint--top-left:before,
.hint--top-right:before,
.hint--top:before {
    border-top-color: #3b98bd
}

.hint--bottom-left:before,
.hint--bottom-right:before,
.hint--bottom:before {
    border-bottom-color: #3b98bd
}

.hint--top:after,
.hint--top:before {
    bottom: 100%;
    left: 50%
}

.hint--top:before {
    margin-bottom: -11px;
    left: calc(50% - 6px)
}

.hint--top:after {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.hint--top:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px)
}

.hint--top:hover:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px)
}

.hint--bottom:after,
.hint--bottom:before {
    top: 70%;
    left: 50%
}

.hint--bottom:before {
    margin-top: -10px;
    left: calc(50% - 6px)
}

.hint--bottom:after {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%)
}

.hint--bottom.is-shown:hover:before,
.hint--bottom:hover:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px)
}

.hint--bottom.is-shown:hover:after,
.hint--bottom:hover:after {
    -webkit-transform: translateX(-50%) translateY(8px);
    -moz-transform: translateX(-50%) translateY(8px);
    transform: translateX(-50%) translateY(8px)
}

.hint--right:before {
    border-right-color: #383838;
    margin-left: -11px;
    margin-bottom: -6px
}

.hint--right:after {
    margin-bottom: -14px
}

.hint--right:after,
.hint--right:before {
    left: 100%;
    bottom: 50%
}

.hint--right:hover:after,
.hint--right:hover:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px)
}

.hint--left:before {
    border-left-color: #383838;
    margin-right: -11px;
    margin-bottom: -6px
}

.hint--left:after {
    margin-bottom: -14px
}

.hint--left:after,
.hint--left:before {
    right: 100%;
    bottom: 50%
}

.hint--left:hover:after,
.hint--left:hover:before {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px)
}

.hint--top-left:after,
.hint--top-left:before {
    bottom: 100%;
    left: 50%
}

.hint--top-left:before {
    margin-bottom: -11px;
    left: calc(50% - 6px)
}

.hint--top-left:after {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    margin-left: 12px
}

.hint--top-left:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px)
}

.hint--top-left:hover:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    -moz-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px)
}

.hint--top-right:after,
.hint--top-right:before {
    bottom: 100%;
    left: 50%
}

.hint--top-right:before {
    margin-bottom: -11px;
    left: calc(50% - 6px)
}

.hint--top-right:after {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    margin-left: -12px
}

.hint--top-right:hover:after,
.hint--top-right:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px)
}

.hint--bottom-left:after,
.hint--bottom-left:before {
    top: 100%;
    left: 50%
}

.hint--bottom-left:before {
    margin-top: -11px;
    left: calc(50% - 6px)
}

.hint--bottom-left:after {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    margin-left: 12px
}

.hint--bottom-left:hover:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px)
}

.hint--bottom-left:hover:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    -moz-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px)
}

.hint--bottom-right:after,
.hint--bottom-right:before {
    top: 100%;
    left: 50%
}

.hint--bottom-right:before {
    margin-top: -11px;
    left: calc(50% - 6px)
}

.hint--bottom-right:after {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    margin-left: -12px
}

.hint--bottom-right:hover:after,
.hint--bottom-right:hover:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px)
}

.hint--large:after,
.hint--medium:after,
.hint--small:after {
    white-space: normal;
    line-height: 1.4em
}

.hint--small:after {
    width: 80px
}

.hint--medium:after {
    width: 150px
}

.hint--large:after {
    width: 300px
}

.hint--error:after {
    background-color: #b34e4d;
    text-shadow: 0 -1px 0 #592726
}

.hint--error.hint--top-left:before,
.hint--error.hint--top-right:before,
.hint--error.hint--top:before {
    border-top-color: #b34e4d
}

.hint--error.hint--bottom-left:before,
.hint--error.hint--bottom-right:before,
.hint--error.hint--bottom:before {
    border-bottom-color: #b34e4d
}

.hint--error.hint--left:before {
    border-left-color: #b34e4d
}

.hint--error.hint--right:before {
    border-right-color: #b34e4d
}

.hint--warning:after {
    background-color: #c09854;
    text-shadow: 0 -1px 0 #6c5328
}

.hint--warning.hint--top-left:before,
.hint--warning.hint--top-right:before,
.hint--warning.hint--top:before {
    border-top-color: #c09854
}

.hint--warning.hint--bottom-left:before,
.hint--warning.hint--bottom-right:before,
.hint--warning.hint--bottom:before {
    border-bottom-color: #c09854
}

.hint--warning.hint--left:before {
    border-left-color: #c09854
}

.hint--warning.hint--right:before {
    border-right-color: #c09854
}

.hint--info:after {
    background-color: #3986ac;
    text-shadow: 0 -1px 0 #1a3c4d
}

.hint--info.hint--top-left:before,
.hint--info.hint--top-right:before,
.hint--info.hint--top:before {
    border-top-color: #3986ac
}

.hint--info.hint--bottom-left:before,
.hint--info.hint--bottom-right:before,
.hint--info.hint--bottom:before {
    border-bottom-color: #3986ac
}

.hint--info.hint--left:before {
    border-left-color: #3986ac
}

.hint--info.hint--right:before {
    border-right-color: #3986ac
}

.hint--success:after {
    background-color: #458746;
    text-shadow: 0 -1px 0 #1a321a
}

.hint--success.hint--top-left:before,
.hint--success.hint--top-right:before,
.hint--success.hint--top:before {
    border-top-color: #458746
}

.hint--success.hint--bottom-left:before,
.hint--success.hint--bottom-right:before,
.hint--success.hint--bottom:before {
    border-bottom-color: #458746
}

.hint--success.hint--left:before {
    border-left-color: #458746
}

.hint--success.hint--right:before {
    border-right-color: #458746
}

.hint--always:after,
.hint--always:before {
    opacity: 1;
    visibility: visible
}

.hint--always.hint--top:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px)
}

.hint--always.hint--top:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px)
}

.hint--always.hint--top-left:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px)
}

.hint--always.hint--top-left:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    -moz-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px)
}

.hint--always.hint--top-right:after,
.hint--always.hint--top-right:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px)
}

.hint--always.hint--bottom:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px)
}

.hint--always.hint--bottom:after {
    -webkit-transform: translateX(-50%) translateY(8px);
    -moz-transform: translateX(-50%) translateY(8px);
    transform: translateX(-50%) translateY(8px)
}

.hint--always.hint--bottom-left:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px)
}

.hint--always.hint--bottom-left:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    -moz-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px)
}

.hint--always.hint--bottom-right:after,
.hint--always.hint--bottom-right:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px)
}

.hint--always.hint--left:after,
.hint--always.hint--left:before {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px)
}

.hint--always.hint--right:after,
.hint--always.hint--right:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px)
}

.hint--rounded:after {
    border-radius: 4px
}

.hint--no-animate:after,
.hint--no-animate:before {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    transition-duration: 0s
}

.hint--bounce:after,
.hint--bounce:before {
    -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    -moz-transition: opacity .3s ease, visibility .3s ease, -moz-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24)
}

.fade-in.mui-enter,
.fade-out.mui-leave,
.hinge-in-from-bottom.mui-enter,
.hinge-in-from-left.mui-enter,
.hinge-in-from-middle-x.mui-enter,
.hinge-in-from-middle-y.mui-enter,
.hinge-in-from-right.mui-enter,
.hinge-in-from-top.mui-enter,
.hinge-out-from-bottom.mui-leave,
.hinge-out-from-left.mui-leave,
.hinge-out-from-middle-x.mui-leave,
.hinge-out-from-middle-y.mui-leave,
.hinge-out-from-right.mui-leave,
.hinge-out-from-top.mui-leave,
.scale-in-down.mui-enter,
.scale-in-up.mui-enter,
.scale-out-down.mui-leave,
.scale-out-up.mui-leave,
.slide-in-down.mui-enter,
.slide-in-left.mui-enter,
.slide-in-right.mui-enter,
.slide-in-up.mui-enter,
.slide-out-down.mui-leave,
.slide-out-left.mui-leave,
.slide-out-right.mui-leave,
.slide-out-up.mui-leave,
.spin-in-ccw.mui-enter,
.spin-in.mui-enter,
.spin-out-ccw.mui-leave,
.spin-out.mui-leave {
    transition-duration: .5s;
    transition-timing-function: linear
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

.foundation-mq {
    font-family: "small=0em&medium=40em&large=65.625em&xlarge=75em&xxlarge=90em"
}

html {
    font-size: 100%;
    box-sizing: border-box
}

*,
:after,
:before {
    box-sizing: inherit
}

body {
    padding: 0;
    margin: 0;
    font-family: Roboto, Helvetica, Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background: #e9e9e9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
    display: inline-block;
    vertical-align: middle
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0
}

select {
    width: 100%;
    border-radius: 0
}

#map_canvas embed,
#map_canvas img,
#map_canvas object,
.map_canvas embed,
.map_canvas img,
.map_canvas object,
.mqa-display embed,
.mqa-display img,
.mqa-display object {
    max-width: none !important
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    line-height: 1
}

.is-visible {
    display: block !important
}

.is-hidden {
    display: none !important
}

.row {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto
}

.row::after,
.row::before {
    content: ' ';
    display: table
}

.row::after {
    clear: both
}

.row.collapse>.column,
.row.collapse>.columns {
    padding-left: 0;
    padding-right: 0
}

.row .row {
    margin-left: -.625rem;
    margin-right: -.625rem
}

@media screen and (min-width:40em) {
    .row .row {
        margin-left: -.9375rem;
        margin-right: -.9375rem
    }
}

.row .row.collapse {
    margin-left: 0;
    margin-right: 0
}

.row.expanded {
    max-width: none
}

.row.expanded .row {
    margin-left: auto;
    margin-right: auto
}

.column,
.columns {
    padding-left: .625rem;
    padding-right: .625rem;
    width: 100%;
    float: left
}

@media screen and (min-width:40em) {

    .column,
    .columns {
        padding-left: .9375rem;
        padding-right: .9375rem
    }
}

.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
    float: right
}

.column.end:last-child:last-child,
.end.columns:last-child:last-child {
    float: left
}

.column.row.row,
.row.row.columns {
    float: none
}

.row .column.row.row,
.row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0
}

.small-1 {
    width: 8.33333%
}

.small-push-1 {
    position: relative;
    left: 8.33333%
}

.small-pull-1 {
    position: relative;
    left: -8.33333%
}

.small-offset-0 {
    margin-left: 0
}

.small-2 {
    width: 16.66667%
}

.small-push-2 {
    position: relative;
    left: 16.66667%
}

.small-pull-2 {
    position: relative;
    left: -16.66667%
}

.small-offset-1 {
    margin-left: 8.33333%
}

.small-3 {
    width: 25%
}

.small-push-3 {
    position: relative;
    left: 25%
}

.small-pull-3 {
    position: relative;
    left: -25%
}

.small-offset-2 {
    margin-left: 16.66667%
}

.small-4 {
    width: 33.33333%
}

.small-push-4 {
    position: relative;
    left: 33.33333%
}

.small-pull-4 {
    position: relative;
    left: -33.33333%
}

.small-offset-3 {
    margin-left: 25%
}

.small-5 {
    width: 41.66667%
}

.small-push-5 {
    position: relative;
    left: 41.66667%
}

.small-pull-5 {
    position: relative;
    left: -41.66667%
}

.small-offset-4 {
    margin-left: 33.33333%
}

.small-6 {
    width: 50%
}

.small-push-6 {
    position: relative;
    left: 50%
}

.small-pull-6 {
    position: relative;
    left: -50%
}

.small-offset-5 {
    margin-left: 41.66667%
}

.small-7 {
    width: 58.33333%
}

.small-push-7 {
    position: relative;
    left: 58.33333%
}

.small-pull-7 {
    position: relative;
    left: -58.33333%
}

.small-offset-6 {
    margin-left: 50%
}

.small-8 {
    width: 66.66667%
}

.small-push-8 {
    position: relative;
    left: 66.66667%
}

.small-pull-8 {
    position: relative;
    left: -66.66667%
}

.small-offset-7 {
    margin-left: 58.33333%
}

.small-9 {
    width: 75%
}

.small-push-9 {
    position: relative;
    left: 75%
}

.small-pull-9 {
    position: relative;
    left: -75%
}

.small-offset-8 {
    margin-left: 66.66667%
}

.small-10 {
    width: 83.33333%
}

.small-push-10 {
    position: relative;
    left: 83.33333%
}

.small-pull-10 {
    position: relative;
    left: -83.33333%
}

.small-offset-9 {
    margin-left: 75%
}

.small-11 {
    width: 91.66667%
}

.small-push-11 {
    position: relative;
    left: 91.66667%
}

.small-pull-11 {
    position: relative;
    left: -91.66667%
}

.small-offset-10 {
    margin-left: 83.33333%
}

.small-12 {
    width: 100%
}

.small-offset-11 {
    margin-left: 91.66667%
}

.small-up-1>.column,
.small-up-1>.columns {
    width: 100%;
    float: left
}

.small-up-1>.column:nth-of-type(1n),
.small-up-1>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-1>.column:nth-of-type(1n+1),
.small-up-1>.columns:nth-of-type(1n+1) {
    clear: both
}

.small-up-1>.column:last-child,
.small-up-1>.columns:last-child {
    float: left
}

.small-up-2>.column,
.small-up-2>.columns {
    width: 50%;
    float: left
}

.small-up-2>.column:nth-of-type(1n),
.small-up-2>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-2>.column:nth-of-type(2n+1),
.small-up-2>.columns:nth-of-type(2n+1) {
    clear: both
}

.small-up-2>.column:last-child,
.small-up-2>.columns:last-child {
    float: left
}

.small-up-3>.column,
.small-up-3>.columns {
    width: 33.33333%;
    float: left
}

.small-up-3>.column:nth-of-type(1n),
.small-up-3>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-3>.column:nth-of-type(3n+1),
.small-up-3>.columns:nth-of-type(3n+1) {
    clear: both
}

.small-up-3>.column:last-child,
.small-up-3>.columns:last-child {
    float: left
}

.small-up-4>.column,
.small-up-4>.columns {
    width: 25%;
    float: left
}

.small-up-4>.column:nth-of-type(1n),
.small-up-4>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-4>.column:nth-of-type(4n+1),
.small-up-4>.columns:nth-of-type(4n+1) {
    clear: both
}

.small-up-4>.column:last-child,
.small-up-4>.columns:last-child {
    float: left
}

.small-up-5>.column,
.small-up-5>.columns {
    width: 20%;
    float: left
}

.small-up-5>.column:nth-of-type(1n),
.small-up-5>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-5>.column:nth-of-type(5n+1),
.small-up-5>.columns:nth-of-type(5n+1) {
    clear: both
}

.small-up-5>.column:last-child,
.small-up-5>.columns:last-child {
    float: left
}

.small-up-6>.column,
.small-up-6>.columns {
    width: 16.66667%;
    float: left
}

.small-up-6>.column:nth-of-type(1n),
.small-up-6>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-6>.column:nth-of-type(6n+1),
.small-up-6>.columns:nth-of-type(6n+1) {
    clear: both
}

.small-up-6>.column:last-child,
.small-up-6>.columns:last-child {
    float: left
}

.small-up-7>.column,
.small-up-7>.columns {
    width: 14.28571%;
    float: left
}

.small-up-7>.column:nth-of-type(1n),
.small-up-7>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-7>.column:nth-of-type(7n+1),
.small-up-7>.columns:nth-of-type(7n+1) {
    clear: both
}

.small-up-7>.column:last-child,
.small-up-7>.columns:last-child {
    float: left
}

.small-up-8>.column,
.small-up-8>.columns {
    width: 12.5%;
    float: left
}

.small-up-8>.column:nth-of-type(1n),
.small-up-8>.columns:nth-of-type(1n) {
    clear: none
}

.small-up-8>.column:nth-of-type(8n+1),
.small-up-8>.columns:nth-of-type(8n+1) {
    clear: both
}

.small-up-8>.column:last-child,
.small-up-8>.columns:last-child {
    float: left
}

.small-collapse>.column,
.small-collapse>.columns {
    padding-left: 0;
    padding-right: 0
}

.small-collapse .row {
    margin-left: 0;
    margin-right: 0
}

.small-uncollapse>.column,
.small-uncollapse>.columns {
    padding-left: .625rem;
    padding-right: .625rem
}

.small-centered {
    float: none;
    margin-left: auto;
    margin-right: auto
}

.small-pull-0,
.small-push-0,
.small-uncentered {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left
}

@media screen and (min-width:40em) {
    .medium-1 {
        width: 8.33333%
    }

    .medium-push-1 {
        position: relative;
        left: 8.33333%
    }

    .medium-pull-1 {
        position: relative;
        left: -8.33333%
    }

    .medium-offset-0 {
        margin-left: 0
    }

    .medium-2 {
        width: 16.66667%
    }

    .medium-push-2 {
        position: relative;
        left: 16.66667%
    }

    .medium-pull-2 {
        position: relative;
        left: -16.66667%
    }

    .medium-offset-1 {
        margin-left: 8.33333%
    }

    .medium-3 {
        width: 25%
    }

    .medium-push-3 {
        position: relative;
        left: 25%
    }

    .medium-pull-3 {
        position: relative;
        left: -25%
    }

    .medium-offset-2 {
        margin-left: 16.66667%
    }

    .medium-4 {
        width: 33.33333%
    }

    .medium-push-4 {
        position: relative;
        left: 33.33333%
    }

    .medium-pull-4 {
        position: relative;
        left: -33.33333%
    }

    .medium-offset-3 {
        margin-left: 25%
    }

    .medium-5 {
        width: 41.66667%
    }

    .medium-push-5 {
        position: relative;
        left: 41.66667%
    }

    .medium-pull-5 {
        position: relative;
        left: -41.66667%
    }

    .medium-offset-4 {
        margin-left: 33.33333%
    }

    .medium-6 {
        width: 50%
    }

    .medium-push-6 {
        position: relative;
        left: 50%
    }

    .medium-pull-6 {
        position: relative;
        left: -50%
    }

    .medium-offset-5 {
        margin-left: 41.66667%
    }

    .medium-7 {
        width: 58.33333%
    }

    .medium-push-7 {
        position: relative;
        left: 58.33333%
    }

    .medium-pull-7 {
        position: relative;
        left: -58.33333%
    }

    .medium-offset-6 {
        margin-left: 50%
    }

    .medium-8 {
        width: 66.66667%
    }

    .medium-push-8 {
        position: relative;
        left: 66.66667%
    }

    .medium-pull-8 {
        position: relative;
        left: -66.66667%
    }

    .medium-offset-7 {
        margin-left: 58.33333%
    }

    .medium-9 {
        width: 75%
    }

    .medium-push-9 {
        position: relative;
        left: 75%
    }

    .medium-pull-9 {
        position: relative;
        left: -75%
    }

    .medium-offset-8 {
        margin-left: 66.66667%
    }

    .medium-10 {
        width: 83.33333%
    }

    .medium-push-10 {
        position: relative;
        left: 83.33333%
    }

    .medium-pull-10 {
        position: relative;
        left: -83.33333%
    }

    .medium-offset-9 {
        margin-left: 75%
    }

    .medium-11 {
        width: 91.66667%
    }

    .medium-push-11 {
        position: relative;
        left: 91.66667%
    }

    .medium-pull-11 {
        position: relative;
        left: -91.66667%
    }

    .medium-offset-10 {
        margin-left: 83.33333%
    }

    .medium-12 {
        width: 100%
    }

    .medium-offset-11 {
        margin-left: 91.66667%
    }

    .medium-up-1>.column,
    .medium-up-1>.columns {
        width: 100%;
        float: left
    }

    .medium-up-1>.column:nth-of-type(1n),
    .medium-up-1>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-1>.column:nth-of-type(1n+1),
    .medium-up-1>.columns:nth-of-type(1n+1) {
        clear: both
    }

    .medium-up-1>.column:last-child,
    .medium-up-1>.columns:last-child {
        float: left
    }

    .medium-up-2>.column,
    .medium-up-2>.columns {
        width: 50%;
        float: left
    }

    .medium-up-2>.column:nth-of-type(1n),
    .medium-up-2>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-2>.column:nth-of-type(2n+1),
    .medium-up-2>.columns:nth-of-type(2n+1) {
        clear: both
    }

    .medium-up-2>.column:last-child,
    .medium-up-2>.columns:last-child {
        float: left
    }

    .medium-up-3>.column,
    .medium-up-3>.columns {
        width: 33.33333%;
        float: left
    }

    .medium-up-3>.column:nth-of-type(1n),
    .medium-up-3>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-3>.column:nth-of-type(3n+1),
    .medium-up-3>.columns:nth-of-type(3n+1) {
        clear: both
    }

    .medium-up-3>.column:last-child,
    .medium-up-3>.columns:last-child {
        float: left
    }

    .medium-up-4>.column,
    .medium-up-4>.columns {
        width: 25%;
        float: left
    }

    .medium-up-4>.column:nth-of-type(1n),
    .medium-up-4>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-4>.column:nth-of-type(4n+1),
    .medium-up-4>.columns:nth-of-type(4n+1) {
        clear: both
    }

    .medium-up-4>.column:last-child,
    .medium-up-4>.columns:last-child {
        float: left
    }

    .medium-up-5>.column,
    .medium-up-5>.columns {
        width: 20%;
        float: left
    }

    .medium-up-5>.column:nth-of-type(1n),
    .medium-up-5>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-5>.column:nth-of-type(5n+1),
    .medium-up-5>.columns:nth-of-type(5n+1) {
        clear: both
    }

    .medium-up-5>.column:last-child,
    .medium-up-5>.columns:last-child {
        float: left
    }

    .medium-up-6>.column,
    .medium-up-6>.columns {
        width: 16.66667%;
        float: left
    }

    .medium-up-6>.column:nth-of-type(1n),
    .medium-up-6>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-6>.column:nth-of-type(6n+1),
    .medium-up-6>.columns:nth-of-type(6n+1) {
        clear: both
    }

    .medium-up-6>.column:last-child,
    .medium-up-6>.columns:last-child {
        float: left
    }

    .medium-up-7>.column,
    .medium-up-7>.columns {
        width: 14.28571%;
        float: left
    }

    .medium-up-7>.column:nth-of-type(1n),
    .medium-up-7>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-7>.column:nth-of-type(7n+1),
    .medium-up-7>.columns:nth-of-type(7n+1) {
        clear: both
    }

    .medium-up-7>.column:last-child,
    .medium-up-7>.columns:last-child {
        float: left
    }

    .medium-up-8>.column,
    .medium-up-8>.columns {
        width: 12.5%;
        float: left
    }

    .medium-up-8>.column:nth-of-type(1n),
    .medium-up-8>.columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-8>.column:nth-of-type(8n+1),
    .medium-up-8>.columns:nth-of-type(8n+1) {
        clear: both
    }

    .medium-up-8>.column:last-child,
    .medium-up-8>.columns:last-child {
        float: left
    }

    .medium-collapse>.column,
    .medium-collapse>.columns {
        padding-left: 0;
        padding-right: 0
    }

    .medium-collapse .row {
        margin-left: 0;
        margin-right: 0
    }

    .medium-uncollapse>.column,
    .medium-uncollapse>.columns {
        padding-left: .9375rem;
        padding-right: .9375rem
    }

    .medium-centered {
        float: none;
        margin-left: auto;
        margin-right: auto
    }

    .medium-pull-0,
    .medium-push-0,
    .medium-uncentered {
        position: static;
        margin-left: 0;
        margin-right: 0;
        float: left
    }
}

@media screen and (min-width:65.625em) {
    .large-1 {
        width: 8.33333%
    }

    .large-push-1 {
        position: relative;
        left: 8.33333%
    }

    .large-pull-1 {
        position: relative;
        left: -8.33333%
    }

    .large-offset-0 {
        margin-left: 0
    }

    .large-2 {
        width: 16.66667%
    }

    .large-push-2 {
        position: relative;
        left: 16.66667%
    }

    .large-pull-2 {
        position: relative;
        left: -16.66667%
    }

    .large-offset-1 {
        margin-left: 8.33333%
    }

    .large-3 {
        width: 25%
    }

    .large-push-3 {
        position: relative;
        left: 25%
    }

    .large-pull-3 {
        position: relative;
        left: -25%
    }

    .large-offset-2 {
        margin-left: 16.66667%
    }

    .large-4 {
        width: 33.33333%
    }

    .large-push-4 {
        position: relative;
        left: 33.33333%
    }

    .large-pull-4 {
        position: relative;
        left: -33.33333%
    }

    .large-offset-3 {
        margin-left: 25%
    }

    .large-5 {
        width: 41.66667%
    }

    .large-push-5 {
        position: relative;
        left: 41.66667%
    }

    .large-pull-5 {
        position: relative;
        left: -41.66667%
    }

    .large-offset-4 {
        margin-left: 33.33333%
    }

    .large-6 {
        width: 50%
    }

    .large-push-6 {
        position: relative;
        left: 50%
    }

    .large-pull-6 {
        position: relative;
        left: -50%
    }

    .large-offset-5 {
        margin-left: 41.66667%
    }

    .large-7 {
        width: 58.33333%
    }

    .large-push-7 {
        position: relative;
        left: 58.33333%
    }

    .large-pull-7 {
        position: relative;
        left: -58.33333%
    }

    .large-offset-6 {
        margin-left: 50%
    }

    .large-8 {
        width: 66.66667%
    }

    .large-push-8 {
        position: relative;
        left: 66.66667%
    }

    .large-pull-8 {
        position: relative;
        left: -66.66667%
    }

    .large-offset-7 {
        margin-left: 58.33333%
    }

    .large-9 {
        width: 75%
    }

    .large-push-9 {
        position: relative;
        left: 75%
    }

    .large-pull-9 {
        position: relative;
        left: -75%
    }

    .large-offset-8 {
        margin-left: 66.66667%
    }

    .large-10 {
        width: 83.33333%
    }

    .large-push-10 {
        position: relative;
        left: 83.33333%
    }

    .large-pull-10 {
        position: relative;
        left: -83.33333%
    }

    .large-offset-9 {
        margin-left: 75%
    }

    .large-11 {
        width: 91.66667%
    }

    .large-push-11 {
        position: relative;
        left: 91.66667%
    }

    .large-pull-11 {
        position: relative;
        left: -91.66667%
    }

    .large-offset-10 {
        margin-left: 83.33333%
    }

    .large-12 {
        width: 100%
    }

    .large-offset-11 {
        margin-left: 91.66667%
    }

    .large-up-1>.column,
    .large-up-1>.columns {
        width: 100%;
        float: left
    }

    .large-up-1>.column:nth-of-type(1n),
    .large-up-1>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-1>.column:nth-of-type(1n+1),
    .large-up-1>.columns:nth-of-type(1n+1) {
        clear: both
    }

    .large-up-1>.column:last-child,
    .large-up-1>.columns:last-child {
        float: left
    }

    .large-up-2>.column,
    .large-up-2>.columns {
        width: 50%;
        float: left
    }

    .large-up-2>.column:nth-of-type(1n),
    .large-up-2>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-2>.column:nth-of-type(2n+1),
    .large-up-2>.columns:nth-of-type(2n+1) {
        clear: both
    }

    .large-up-2>.column:last-child,
    .large-up-2>.columns:last-child {
        float: left
    }

    .large-up-3>.column,
    .large-up-3>.columns {
        width: 33.33333%;
        float: left
    }

    .large-up-3>.column:nth-of-type(1n),
    .large-up-3>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-3>.column:nth-of-type(3n+1),
    .large-up-3>.columns:nth-of-type(3n+1) {
        clear: both
    }

    .large-up-3>.column:last-child,
    .large-up-3>.columns:last-child {
        float: left
    }

    .large-up-4>.column,
    .large-up-4>.columns {
        width: 25%;
        float: left
    }

    .large-up-4>.column:nth-of-type(1n),
    .large-up-4>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-4>.column:nth-of-type(4n+1),
    .large-up-4>.columns:nth-of-type(4n+1) {
        clear: both
    }

    .large-up-4>.column:last-child,
    .large-up-4>.columns:last-child {
        float: left
    }

    .large-up-5>.column,
    .large-up-5>.columns {
        width: 20%;
        float: left
    }

    .large-up-5>.column:nth-of-type(1n),
    .large-up-5>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-5>.column:nth-of-type(5n+1),
    .large-up-5>.columns:nth-of-type(5n+1) {
        clear: both
    }

    .large-up-5>.column:last-child,
    .large-up-5>.columns:last-child {
        float: left
    }

    .large-up-6>.column,
    .large-up-6>.columns {
        width: 16.66667%;
        float: left
    }

    .large-up-6>.column:nth-of-type(1n),
    .large-up-6>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-6>.column:nth-of-type(6n+1),
    .large-up-6>.columns:nth-of-type(6n+1) {
        clear: both
    }

    .large-up-6>.column:last-child,
    .large-up-6>.columns:last-child {
        float: left
    }

    .large-up-7>.column,
    .large-up-7>.columns {
        width: 14.28571%;
        float: left
    }

    .large-up-7>.column:nth-of-type(1n),
    .large-up-7>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-7>.column:nth-of-type(7n+1),
    .large-up-7>.columns:nth-of-type(7n+1) {
        clear: both
    }

    .large-up-7>.column:last-child,
    .large-up-7>.columns:last-child {
        float: left
    }

    .large-up-8>.column,
    .large-up-8>.columns {
        width: 12.5%;
        float: left
    }

    .large-up-8>.column:nth-of-type(1n),
    .large-up-8>.columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-8>.column:nth-of-type(8n+1),
    .large-up-8>.columns:nth-of-type(8n+1) {
        clear: both
    }

    .large-up-8>.column:last-child,
    .large-up-8>.columns:last-child {
        float: left
    }

    .large-collapse>.column,
    .large-collapse>.columns {
        padding-left: 0;
        padding-right: 0
    }

    .large-collapse .row {
        margin-left: 0;
        margin-right: 0
    }

    .large-uncollapse>.column,
    .large-uncollapse>.columns {
        padding-left: .9375rem;
        padding-right: .9375rem
    }

    .large-centered {
        float: none;
        margin-left: auto;
        margin-right: auto
    }

    .large-pull-0,
    .large-push-0,
    .large-uncentered {
        position: static;
        margin-left: 0;
        margin-right: 0;
        float: left
    }
}

blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
    margin: 0;
    padding: 0
}

p {
    font-size: inherit;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility
}

em,
i {
    font-style: italic;
    line-height: inherit
}

b,
strong {
    font-weight: 700;
    line-height: inherit
}

small {
    font-size: 80%;
    line-height: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, Helvetica, Roboto, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: inherit;
    margin-top: 0;
    margin-bottom: 0rem;
    line-height: 1.4
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    color: #cacaca;
    line-height: 0
}

h1 {
    font-size: 1.5rem
}

h2 {
    font-size: 1.25rem
}

h3 {
    font-size: 1.1875rem
}

h4 {
    font-size: 1.125rem
}

h5 {
    font-size: 1.0625rem
}

h6 {
    font-size: 1rem
}

@media screen and (min-width:40em) {
    h1 {
        font-size: 3rem
    }

    h2 {
        font-size: 2.5rem
    }

    h3 {
        font-size: 1.1875rem ;
    }

    h4 {
        font-size: 1.5625rem
    }

    h5 {
        font-size: 1.25rem
    }

    h6 {
        font-size: 1rem
    }
}

a {
    color: #2199e8;
    text-decoration: none;
    line-height: inherit;
    cursor: pointer
}

a:focus,
a:hover {
    color: #1585cf
}

a img {
    border: 0
}

hr {
    max-width: 75rem;
    height: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #cacaca;
    border-left: 0;
    margin: 1.25rem auto;
    clear: both
}

dl,
ol,
ul {
    line-height: 1.6;
    margin-bottom: 1rem;
    list-style-position: outside
}

li {
    font-size: inherit
}

ul {
    list-style-type: disc;
    margin-left: 1.25rem
}

ol {
    margin-left: 1.25rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-left: 1.25rem;
    margin-bottom: 0
}

dl {
    margin-bottom: 1rem
}

dl dt {
    margin-bottom: .3rem;
    font-weight: 700
}

blockquote {
    margin: 0 0 1rem;
    padding: .5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #cacaca
}

blockquote,
blockquote p {
    line-height: 1.6;
    color: #8a8a8a
}

cite {
    display: block;
    font-size: .8125rem;
    color: #8a8a8a
}

cite:before {
    content: '\2014 \0020'
}

abbr {
    color: #333;
    cursor: help;
    border-bottom: 1px dotted #0a0a0a
}

code {
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: 400;
    color: #0a0a0a;
    background-color: #e6e6e6;
    border: 1px solid #cacaca;
    padding: .125rem .3125rem .0625rem
}

kbd {
    padding: .125rem .25rem 0;
    margin: 0;
    background-color: #e6e6e6;
    color: #0a0a0a;
    font-family: Consolas, "Liberation Mono", Courier, monospace
}

.subheader {
    margin-top: .2rem;
    margin-bottom: .5rem;
    font-weight: 400;
    line-height: 1.4;
    color: #8a8a8a
}

.lead {
    font-size: 125%;
    line-height: 1.6
}

.stat {
    font-size: 2.5rem;
    line-height: 1
}

p+.stat {
    margin-top: -1rem
}

.no-bullet {
    margin-left: 0;
    list-style: none
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

@media screen and (min-width:40em) {
    .medium-text-left {
        text-align: left
    }

    .medium-text-right {
        text-align: right
    }

    .medium-text-center {
        text-align: center
    }

    .medium-text-justify {
        text-align: justify
    }
}

@media screen and (min-width:65.625em) {
    .large-text-left {
        text-align: left
    }

    .large-text-right {
        text-align: right
    }

    .large-text-center {
        text-align: center
    }

    .large-text-justify {
        text-align: justify
    }
}

.show-for-print {
    display: none !important
}

@media print {
    * {
        background: 0 0 !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    .show-for-print {
        display: block !important
    }

    .hide-for-print {
        display: none !important
    }

    table.show-for-print {
        display: table !important
    }

    thead.show-for-print {
        display: table-header-group !important
    }

    tbody.show-for-print {
        display: table-row-group !important
    }

    tr.show-for-print {
        display: table-row !important
    }

    td.show-for-print {
        display: table-cell !important
    }

    th.show-for-print {
        display: table-cell !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " ("attr(href) ")"
    }

    .ir a:after,
    a[href^='#']:after,
    a[href^='javascript:']:after {
        content: ''
    }

    abbr[title]:after {
        content: " ("attr(title) ")"
    }

    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img,
    tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    @page {
        margin: .5cm
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }
}

.button {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    transition: background-color .25s ease-out, color .25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 0;
    padding: .5em 1em .5em 1em;
    margin: 0;
    font-size: .9rem;
/*     background-image: linear-gradient(106deg, #34b9ef, #008bc3);
 */    color: #fff;
    background-color:#3b98bd;
}

[data-whatinput=mouse] .button {
    outline: 0
}

.button:focus,
.button:hover {
    background-color: #0f97cf;
    color: #fff
}

.button.tiny {
    font-size: .6rem
}

.button.small {
    font-size: .75rem
}

.button.large {
    font-size: 1.25rem
}

.button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0
}

.button.primary {
    background-color: #2199e8;
    color: #fff
}

.button.primary:focus,
.button.primary:hover {
    background-color: #147cc0;
    color: #fff
}

.button.secondary {
    background-color: #777;
    color: #fff
}

.button.secondary:focus,
.button.secondary:hover {
    background-color: #5f5f5f;
    color: #fff
}

.button.success {
    background-color: #3adb76;
    color: #fff
}

.button.success:focus,
.button.success:hover {
    background-color: #22bb5b;
    color: #fff
}

.button.alert {
    background-color: #ec5840;
    color: #fff
}

.button.alert:focus,
.button.alert:hover {
    background-color: #da3116;
    color: #fff
}

.button.warning {
    background-color: #ffae00;
    color: #fff
}

.button.warning:focus,
.button.warning:hover {
    background-color: #cc8b00;
    color: #fff
}

.button.hollow {
    border: 1px solid #2199e8;
    color: #2199e8;
    background-image:unset;
}

.button.hollow,
.button.hollow:focus,
.button.hollow:hover {
    background-color: transparent
}

.button.hollow:focus,
.button.hollow:hover {
    border-color: #0c4d78;
    color: #0c4d78
}

.button.hollow.primary {
    border: 1px solid #2199e8;
    color: #2199e8
}

.button.hollow.primary:focus,
.button.hollow.primary:hover {
    border-color: #0c4d78;
    color: #0c4d78
}

.button.hollow.secondary {
    border: 1px solid #777;
    color: #777
}

.button.hollow.secondary:focus,
.button.hollow.secondary:hover {
    border-color: #3c3c3c;
    color: #3c3c3c
}

.button.hollow.success {
    border: 1px solid #3adb76;
    color: #3adb76
}

.button.hollow.success:focus,
.button.hollow.success:hover {
    border-color: #157539;
    color: #157539
}

.button.hollow.alert {
    border: 1px solid #ec5840;
    color: #ec5840
}

.button.hollow.alert:focus,
.button.hollow.alert:hover {
    border-color: #881f0e;
    color: #881f0e
}

.button.hollow.warning {
    border: 1px solid #ffae00;
    color: #ffae00
}

.button.hollow.warning:focus,
.button.hollow.warning:hover {
    border-color: #805700;
    color: #805700
}

.button.disabled,
.button[disabled] {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none
}

.button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset .4em;
    border-color: #fefefe transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: relative;
    top: .4em;
    float: right;
    margin-left: 1em;
    display: inline-block
}

.button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: .2em
}

[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    padding: .5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #0a0a0a;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, .1);
    border-radius: 0;
    transition: box-shadow .5s, border-color .25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none
}

[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=datetime]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus {
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    outline: 0;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow .5s, border-color .25s ease-in-out
}

textarea {
    max-width: 100%
}

textarea[rows] {
    height: auto
}

input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
    background-color: #e6e6e6;
    cursor: default
}

[type=button],
[type=submit] {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none
}

input[type=search] {
    box-sizing: border-box
}

[type=checkbox],
[type=file],
[type=radio] {
    margin: 0 0 1rem
}

[type=checkbox]+label,
[type=radio]+label {
    display: inline-block;
    margin-left: .5rem;
    margin-right: 1rem;
    margin-bottom: 0;
    vertical-align: baseline
}

label>[type=checkbox],
label>[type=label] {
    margin-right: .5rem
}

[type=file] {
    width: 100%
}

label {
    display: block;
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.8;
    color: #0a0a0a
}

label.middle {
    margin: 0 0 1rem;
    padding: .5625rem 0
}

.help-text {
    margin-top: -.5rem;
    font-size: .8125rem;
    font-style: italic;
    color: #333
}

.input-group {
    display: table;
    width: 100%;
    margin-bottom: 1rem
}

.input-group>:first-child {
    border-radius: 0
}

.input-group>:last-child>* {
    border-radius: 0
}

.input-group-button,
.input-group-field,
.input-group-label {
    display: table-cell;
    margin: 0;
    vertical-align: middle
}

.input-group-label {
    text-align: center;
    width: 1%;
    height: 100%;
    padding: 0 1rem;
    background: #e6e6e6;
    color: #0a0a0a;
    border: 1px solid #cacaca;
    white-space: nowrap
}

.input-group-label:first-child {
    border-right: 0
}

.input-group-label:last-child {
    border-left: 0
}

.input-group-field {
    border-radius: 0;
    height: 2.5rem
}

.input-group-button {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 1%
}

.input-group-button a,
.input-group-button button,
.input-group-button input {
    margin: 0
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0
}

legend {
    margin-bottom: .5rem;
    max-width: 100%
}

.fieldset {
    border: 1px solid #cacaca;
    padding: 1.25rem;
    margin: 1.125rem 0
}

.fieldset legend {
    background: #e9e9e9;
    padding: 0 .1875rem;
    margin: 0;
    margin-left: -.1875rem
}

select {
    height: 2.4375rem;
    padding: .5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-size: 1rem;
    font-family: inherit;
    line-height: normal;
    color: #0a0a0a;
    background-color: #fefefe;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=http://www.w3.org/2000/svg version=1.1 width=32 height=24 viewBox=0 0 32 24><polygon points=0,0 32,0 16,24 style=fill: rgb%2851, 51, 51%29></polygon></svg>");
    background-size: 9px 6px;
    background-position: right center;
    background-origin: content-box;
    background-repeat: no-repeat
}

@media screen and (min-width:0\0) {
    select {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==)
    }
}

select:disabled {
    background-color: #e6e6e6;
    cursor: default;
    opacity:0.5;
}

select::-ms-expand {
    display: none
}

select[multiple] {
    height: auto
}

.is-invalid-input:not(:focus) {
    background-color: rgba(236, 88, 64, .1);
    border-color: #ec5840
}

.is-invalid-label {
    color: #ec5840
}

.form-error {
    display: none;
    margin-top: -.5rem;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: 700;
    color: #ec5840
}

.form-error.is-visible {
    display: block
}

.hide {
    display: none !important
}

.invisible {
    visibility: hidden
}

@media screen and (min-width:0em) and (max-width:39.9375em) {
    .hide-for-small-only {
        display: none !important
    }
}

@media screen and (max-width:0em),
screen and (min-width:40em) {
    .show-for-small-only {
        display: none !important
    }
}

@media screen and (min-width:40em) {
    .hide-for-medium {
        display: none !important
    }
}

@media screen and (max-width:39.9375em) {
    .show-for-medium {
        display: none !important
    }
}

@media screen and (min-width:40em) and (max-width:65.5625em) {
    .hide-for-medium-only {
        display: none !important
    }
}

@media screen and (max-width:39.9375em),
screen and (min-width:65.625em) {
    .show-for-medium-only {
        display: none !important
    }
}

@media screen and (min-width:65.625em) {
    .hide-for-large {
        display: none !important
    }
}

@media screen and (max-width:65.5625em) {
    .show-for-large {
        display: none !important
    }
}

@media screen and (min-width:65.625em) and (max-width:74.9375em) {
    .hide-for-large-only {
        display: none !important
    }
}

@media screen and (max-width:65.5625em),
screen and (min-width:75em) {
    .show-for-large-only {
        display: none !important
    }
}

.show-for-sr,
.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.show-on-focus:active,
.show-on-focus:focus {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto
}

.hide-for-portrait,
.show-for-landscape {
    display: block !important
}

@media screen and (orientation:landscape) {

    .hide-for-portrait,
    .show-for-landscape {
        display: block !important
    }
}

@media screen and (orientation:portrait) {

    .hide-for-portrait,
    .show-for-landscape {
        display: none !important
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important
}

@media screen and (orientation:landscape) {

    .hide-for-landscape,
    .show-for-portrait {
        display: none !important
    }
}

@media screen and (orientation:portrait) {

    .hide-for-landscape,
    .show-for-portrait {
        display: block !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-center {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.clearfix::after,
.clearfix::before {
    content: ' ';
    display: table
}

.clearfix::after {
    clear: both
}

.accordion {
    list-style-type: none;
    background: #fefefe;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    border-radius: 0;
    margin-left: 0
}

.accordion-title {
    display: block;
    padding: 1.25rem 1rem;
    line-height: 1;
    font-size: .75rem;
    color: #2199e8;
    position: relative;
    border-bottom: 1px solid #e6e6e6
}

.accordion-title:focus,
.accordion-title:hover {
    background-color: #e6e6e6
}

.accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -.5rem
}

.is-active>.accordion-title::before {
    content: '–'
}

.accordion-content {
    padding: 1rem;
    display: none;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fefefe
}

.is-accordion-submenu-parent>a {
    position: relative
}

.is-accordion-submenu-parent>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 1rem
}

.is-accordion-submenu-parent[aria-expanded=true]>a::after {
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -ms-transform: scaleY(-1);
    transform: scaleY(-1)
}

.badge {
    display: inline-block;
    padding: .3em;
    min-width: 2.1em;
    font-size: .6rem;
    text-align: center;
    border-radius: 50%;
    background: #2199e8;
    color: #fefefe
}

.badge.secondary {
    background: #777;
    color: #fefefe
}

.badge.success {
    background: #3adb76;
    color: #fefefe
}

.badge.alert {
    background: #ec5840;
    color: #fefefe
}

.badge.warning {
    background: #ffae00;
    color: #fefefe
}

.breadcrumbs {
    list-style: none;
    margin: 0
}

.breadcrumbs::after,
.breadcrumbs::before {
    content: ' ';
    display: table
}

.breadcrumbs::after {
    clear: both
}

.breadcrumbs li {
    float: left;
    color: #0a0a0a;
    font-size: .8125rem;
    cursor: default
}

.breadcrumbs li:not(:last-child)::after {
    color: #cacaca;
    content: "/";
    margin: 0 .5rem;
    position: relative;
    top: 1px;
    opacity: 1
}

.breadcrumbs a {
    color: #2199e8
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs .disabled {
    color: #cacaca
}

.button-group {
    margin-bottom: 1rem;
    font-size: .9rem
}

.button-group::after,
.button-group::before {
    content: ' ';
    display: table
}

.button-group::after {
    clear: both
}

.button-group .button {
    float: left;
    margin: 0;
    font-size: inherit
}

.button-group .button:not(:last-child) {
    border-right: 1px solid #e9e9e9
}

.button-group.tiny {
    font-size: .6rem
}

.button-group.small {
    font-size: .75rem
}

.button-group.large {
    font-size: 1.25rem
}

.button-group.expanded {
    display: table;
    table-layout: fixed;
    width: 100%
}

.button-group.expanded::after,
.button-group.expanded::before {
    display: none
}

.button-group.expanded .button {
    display: table-cell;
    float: none
}

.button-group.primary .button {
    background-color: #2199e8;
    color: #fefefe
}

.button-group.primary .button:focus,
.button-group.primary .button:hover {
    background-color: #147cc0;
    color: #fefefe
}

.button-group.secondary .button {
    background-color: #777;
    color: #fefefe
}

.button-group.secondary .button:focus,
.button-group.secondary .button:hover {
    background-color: #5f5f5f;
    color: #fefefe
}

.button-group.success .button {
    background-color: #3adb76;
    color: #fefefe
}

.button-group.success .button:focus,
.button-group.success .button:hover {
    background-color: #22bb5b;
    color: #fefefe
}

.button-group.alert .button {
    background-color: #ec5840;
    color: #fefefe
}

.button-group.alert .button:focus,
.button-group.alert .button:hover {
    background-color: #da3116;
    color: #fefefe
}

.button-group.warning .button {
    background-color: #ffae00;
    color: #fefefe
}

.button-group.warning .button:focus,
.button-group.warning .button:hover {
    background-color: #cc8b00;
    color: #fefefe
}

.button-group.stacked .button,
.button-group.stacked-for-small .button {
    width: 100%
}

.button-group.stacked .button:not(:last-child),
.button-group.stacked-for-small .button:not(:last-child) {
    border-right: 1px solid
}

@media screen and (min-width:40em) {
    .button-group.stacked-for-small .button {
        width: auto
    }

    .button-group.stacked-for-small .button:not(:last-child) {
        border-right: 1px solid #e9e9e9
    }
}

@media screen and (min-width:0em) and (max-width:39.9375em) {
    .button-group.stacked-for-small.expanded {
        display: block
    }

    .button-group.stacked-for-small.expanded .button {
        display: block;
        border-right: 0
    }
}

.callout {
    margin: 0 0 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(10, 10, 10, .25);
    border-radius: 0;
    position: relative;
    color: #333;
    background-color: #fff
}

.callout>:first-child {
    margin-top: 0
}

.callout>:last-child {
    margin-bottom: 0
}

.callout.primary {
    background-color: #def0fc
}

.callout.secondary {
    background-color: #ebebeb
}

.callout.success {
    background-color: #e1faea
}

.callout.alert {
    background-color: #fce6e2
}

.callout.warning {
    background-color: #fff3d9
}

.callout.small {
    padding-top: .5rem;
    padding-right: .5rem;
    padding-bottom: .5rem;
    padding-left: .5rem
}

.callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem
}

.close-button {
    position: absolute;
    color: #8a8a8a;
    right: 1rem;
    top: .5rem;
    font-size: 2em;
    line-height: 1;
    cursor: pointer
}

[data-whatinput=mouse] .close-button {
    outline: 0
}

.close-button:focus,
.close-button:hover {
    color: #0a0a0a
}

.is-drilldown {
    position: relative;
    overflow: hidden
}

.is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fefefe;
    transition: transform .15s linear
}

.is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.is-drilldown-submenu.is-closing {
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.is-drilldown-submenu-parent>a {
    position: relative
}

.is-drilldown-submenu-parent>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem
}

.js-drilldown-back>a::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    border-left-width: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: .75rem
}

.dropdown-pane {
    background-color: #e9e9e9;
    border: 1px solid #cacaca;
    border-radius: 0;
    display: block;
    font-size: 1rem;
    padding: 1rem;
    position: absolute;
    visibility: hidden;
    width: 300px;
    z-index: 10
}

.dropdown-pane.is-open {
    visibility: visible
}

.dropdown-pane.tiny {
    width: 100px
}

.dropdown-pane.small {
    width: 300px
}

.dropdown-pane.large {
    width: 400px
}

[data-whatinput=mouse] .dropdown.menu a {
    outline: 0
}

.no-js .dropdown.menu ul {
    display: none
}

.dropdown.menu:not(.vertical) .is-dropdown-submenu.first-sub {
    top: 100%;
    left: 0;
    right: auto
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    left: auto;
    right: 0
}

.is-dropdown-menu.vertical {
    width: 100px
}

.is-dropdown-menu.vertical.align-right {
    float: right
}

.is-dropdown-menu.vertical>li .is-dropdown-submenu {
    top: 0;
    left: 100%
}

.is-dropdown-submenu-parent {
    position: relative
}

.is-dropdown-submenu-parent a::after {
    float: right;
    margin-top: 3px;
    margin-left: 10px
}

.is-dropdown-submenu-parent.is-left-arrow.opens-inner .is-dropdown-submenu {
    right: 0;
    left: auto
}

.is-dropdown-submenu-parent.is-right-arrow.opens-inner .is-dropdown-submenu {
    left: 0;
    right: auto
}

.is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
    top: 100%
}

.is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%
}

.is-dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 211px;
    z-index: 1;
    background: #fefefe;
    border: 1px solid #cacaca
}

.is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px
}

.is-dropdown-submenu>li {
    width: 100%
}

.is-dropdown-submenu.js-dropdown-active,
.is-dropdown-submenu:not(.js-dropdown-nohover)>.is-dropdown-submenu-parent:hover>.is-dropdown-submenu {
    display: block
}

.flex-video {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    margin-bottom: 1rem;
    overflow: hidden
}

.flex-video embed,
.flex-video iframe,
.flex-video object,
.flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.flex-video.widescreen {
    padding-bottom: 56.25%
}

.flex-video.vimeo {
    padding-top: 0
}

.label {
    display: inline-block;
    padding: .33333rem .5rem;
    font-size: .8rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    border-radius: 0;
    background: #2199e8;
    color: #fefefe
}

.label.secondary {
    background: #777;
    color: #fefefe
}

.label.success {
    background: #3adb76;
    color: #fefefe
}

.label.alert {
    background: #ec5840;
    color: #fefefe
}

.label.warning {
    background: #ffae00;
    color: #fefefe
}

.media-object {
    margin-bottom: 1rem;
    display: block
}

.media-object img {
    max-width: none
}

@media screen and (min-width:0em) and (max-width:39.9375em) {
    .media-object.stack-for-small .media-object-section {
        display: block;
        padding: 0;
        padding-bottom: 1rem
    }

    .media-object.stack-for-small .media-object-section img {
        width: 100%
    }
}

.media-object-section {
    display: table-cell;
    vertical-align: top
}

.media-object-section:first-child {
    padding-right: 1rem
}

.media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem
}

.media-object-section.middle {
    vertical-align: middle
}

.media-object-section.bottom {
    vertical-align: bottom
}

.menu {
    margin: 0;
    list-style-type: none
}

.menu>li {
    display: table-cell;
    vertical-align: middle
}

[data-whatinput=mouse] .menu>li {
    outline: 0
}

.menu>li>a {
    display: block;
    padding: .7rem 1rem;
    line-height: 1;word-break: break-word;
}

.menu a,
.menu button,
.menu input {
    margin-bottom: 0
}

.menu>li>a>em,
.menu>li>a>img {
    vertical-align: middle
}

.menu>li>a>span {
    vertical-align: middle
}

.menu>li>a>em,
.menu>li>a>img {
    display: inline-block;
    margin-right: .25rem
}

.menu>li {
    display: table-cell
}

.menu.vertical>li {
    display: block
}

@media screen and (min-width:40em) {
    .menu.medium-horizontal>li {
        display: table-cell
    }

    .menu.medium-vertical>li {
        display: block
    }
}

@media screen and (min-width:65.625em) {
    .menu.large-horizontal>li {
        display: table-cell
    }

    .menu.large-vertical>li {
        display: block
    }
}

.menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem
}

.menu.simple a {
    padding: 0
}

.menu.align-right>li {
    float: right
}

.menu.expanded {
    display: table;
    table-layout: fixed;
    width: 100%
}

.menu.expanded>li:first-child:last-child {
    width: 100%
}

.menu.icon-top>li>a {
    text-align: center
}

.menu.icon-top>li>a>em,
.menu.icon-top>li>a>img {
    display: block;
    margin: 0 auto .25rem
}

.menu.nested {
    margin-left: 1rem
}

.menu-text {
    font-weight: 700;
    color: inherit;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding: .7rem 1rem
}

.no-js [data-responsive-menu] ul {
    display: none
}

body,
html {
    height: 100%
}

.off-canvas-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-overflow-scrolling: auto
}

.off-canvas-wrapper-inner {
    position: relative;
    width: 100%;
    transition: transform .5s ease
}

.off-canvas-wrapper-inner::after,
.off-canvas-wrapper-inner::before {
    content: ' ';
    display: table
}

.off-canvas-wrapper-inner::after {
    clear: both
}

.off-canvas-content {
    min-height: 100%;
    background: #e9e9e9;
    transition: transform .5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    box-shadow: 0 0 10px rgba(10, 10, 10, .5)
}

.js-off-canvas-exit {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 254, 254, .25);
    cursor: pointer;
    transition: background .5s ease
}

.off-canvas {
    position: absolute;
    background: #e6e6e6;
    z-index: -1;
    max-height: 100%;
    overflow-y: auto;
    -ms-transform: translateX(0);
    transform: translateX(0)
}

[data-whatinput=mouse] .off-canvas {
    outline: 0
}

.off-canvas.position-left {
    left: -250px;
    top: 0;
    width: 250px
}

.is-open-left {
    -ms-transform: translateX(250px);
    transform: translateX(250px)
}

.off-canvas.position-right {
    right: -250px;
    top: 0;
    width: 250px
}

.is-open-right {
    -ms-transform: translateX(-250px);
    transform: translateX(-250px)
}

@media screen and (min-width:40em) {
    .position-left.reveal-for-medium {
        left: 0;
        z-index: auto;
        position: fixed
    }

    .position-left.reveal-for-medium~.off-canvas-content {
        margin-left: 250px
    }

    .position-right.reveal-for-medium {
        right: 0;
        z-index: auto;
        position: fixed
    }

    .position-right.reveal-for-medium~.off-canvas-content {
        margin-right: 250px
    }
}

@media screen and (min-width:65.625em) {
    .position-left.reveal-for-large {
        left: 0;
        z-index: auto;
        position: fixed
    }

    .position-left.reveal-for-large~.off-canvas-content {
        margin-left: 250px
    }

    .position-right.reveal-for-large {
        right: 0;
        z-index: auto;
        position: fixed
    }

    .position-right.reveal-for-large~.off-canvas-content {
        margin-right: 250px
    }
}

.orbit {
    position: relative
}

.orbit-container {
    position: relative;
    margin: 0;
    overflow: hidden;
    list-style: none
}

.orbit-slide {
    width: 100%;
    max-height: 100%
}

.orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0
}

.orbit-figure {
    margin: 0
}

.orbit-image {
    margin: 0;
    width: 100%;
    max-width: 100%
}

.orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    margin-bottom: 0;
    color: #fefefe;
    background-color: rgba(10, 10, 10, .5)
}

.orbit-next,
.orbit-previous {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #fefefe
}

[data-whatinput=mouse] .orbit-next,
[data-whatinput=mouse] .orbit-previous {
    outline: 0
}

.orbit-next:active,
.orbit-next:focus,
.orbit-next:hover,
.orbit-previous:active,
.orbit-previous:focus,
.orbit-previous:hover {
    background-color: rgba(10, 10, 10, .5)
}

.orbit-previous {
    left: 0
}

.orbit-next {
    left: auto;
    right: 0
}

.orbit-bullets {
    position: relative;
    margin-top: .8rem;
    margin-bottom: .8rem;
    text-align: center
}

[data-whatinput=mouse] .orbit-bullets {
    outline: 0
}

.orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: .1rem;
    background-color: #cacaca;
    border-radius: 50%
}

.orbit-bullets button:hover {
    background-color: #8a8a8a
}

.orbit-bullets button.is-active {
    background-color: #8a8a8a
}

.pagination {
    margin-left: 0;
    margin-bottom: 1rem
}

.pagination::after,
.pagination::before {
    content: ' ';
    display: table
}

.pagination::after {
    clear: both
}

.pagination li {
    font-size: .875rem;
    margin-right: .0625rem;
    border-radius: 0;
    display: none
}

.pagination li:first-child,
.pagination li:last-child {
    display: inline-block
}

@media screen and (min-width:40em) {
    .pagination li {
        display: inline-block
    }
}

.pagination a,
.pagination button {
    color: #0a0a0a;
    display: block;
    padding: .1875rem .625rem;
    border-radius: 0
}

.pagination a:hover,
.pagination button:hover {
    background: #e6e6e6
}

.pagination .current {
    padding: .1875rem .625rem;
    background: #2199e8;
    color: #fefefe;
    cursor: default
}

.pagination .disabled {
    padding: .1875rem .625rem;
    color: #cacaca;
    cursor: default
}

.pagination .disabled:hover {
    background: 0 0
}

.pagination .ellipsis::after {
    content: '…';
    padding: .1875rem .625rem;
    color: #0a0a0a
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
    content: '«';
    display: inline-block;
    margin-right: .5rem
}

.pagination-next a::after,
.pagination-next.disabled::after {
    content: '»';
    display: inline-block;
    margin-left: .5rem
}

.progress {
    background-color: #cacaca;
    height: 1rem;
    margin-bottom: 1rem;
    border-radius: 0
}

.progress.primary .progress-meter {
    background-color: #2199e8
}

.progress.secondary .progress-meter {
    background-color: #777
}

.progress.success .progress-meter {
    background-color: #3adb76
}

.progress.alert .progress-meter {
    background-color: #ec5840
}

.progress.warning .progress-meter {
    background-color: #ffae00
}

.progress-meter {
    position: relative;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #2199e8
}

.progress-meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
    font-size: .75rem;
    font-weight: 700;
    color: #fefefe;
    white-space: nowrap
}

.slider {
    position: relative;
    height: .5rem;
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    background-color: #e6e6e6;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: none;
    touch-action: none
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    max-width: 100%;
    height: .5rem;
    background-color: #cacaca;
    transition: all .2s ease-in-out
}

.slider-fill.is-dragging {
    transition: all 0s linear
}

.slider-handle {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #2199e8;
    transition: all .2s ease-in-out;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    border-radius: 0
}

[data-whatinput=mouse] .slider-handle {
    outline: 0
}

.slider-handle:hover {
    background-color: #1583cc
}

.slider-handle.is-dragging {
    transition: all 0s linear
}

.slider.disabled,
.slider[disabled] {
    opacity: .25;
    cursor: not-allowed
}

.slider.vertical {
    display: inline-block;
    width: .5rem;
    height: 12.5rem;
    margin: 0 1.25rem;
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

.slider.vertical .slider-fill {
    top: 0;
    width: .5rem;
    max-height: 100%
}

.slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.sticky-container {
    position: relative
}

.sticky {
    position: absolute;
    z-index: 0;
    transform: translate3d(0, 0, 0)
}

.sticky.is-stuck {
    position: fixed;
    z-index: 5
}

.sticky.is-stuck.is-at-top {
    top: 0
}

.sticky.is-stuck.is-at-bottom {
    bottom: 0
}

.sticky.is-anchored {
    position: absolute;
    left: auto;
    right: auto
}

.sticky.is-anchored.is-at-bottom {
    bottom: 0
}

body.is-reveal-open {
    overflow: hidden
}

.reveal-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, .75);
    overflow-y: scroll
}

.reveal {
    display: none;
    z-index: 1001;
    padding: 1rem;
    border: 0 solid #cacaca;
    margin: 6.25rem auto 0;
    background-color: #fefefe;
    border-radius: 3px;
    position: absolute;
    overflow-y: auto
}

[data-whatinput=mouse] .reveal {
    outline: 0
}

@media screen and (min-width:40em) {
    .reveal {
        min-height: 0
    }
}

.reveal .column,
.reveal .columns {
    min-width: 0
}

.reveal>:last-child {
    margin-bottom: 0
}

@media screen and (min-width:40em) {
    .reveal {
        width: 600px;
        max-width: 75rem
    }
}

@media screen and (min-width:40em) {
    .reveal .reveal {
        left: auto;
        right: auto;
        margin: 0 auto
    }
}

.reveal.collapse {
    padding: 0
}

@media screen and (min-width:40em) {
    .reveal.tiny {
        width: 30%;
        max-width: 75rem
    }
}

@media screen and (min-width:40em) {
    .reveal.small {
        width: 50%;
        max-width: 75rem
    }
}

@media screen and (min-width:40em) {
    .reveal.large {
        width: 90%;
        max-width: 75rem
    }
}

.reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0
}

.switch {
    margin-bottom: 1rem;
    outline: 0;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fefefe;
    font-weight: 700;
    font-size: .875rem
}

.switch-input {
    opacity: 0;
    position: absolute
}

.switch-paddle {
    background: #cacaca;
    cursor: pointer;
    display: block;
    position: relative;
    width: 4rem;
    height: 2rem;
    transition: all .25s ease-out;
    border-radius: 0;
    color: inherit;
    font-weight: inherit
}

input+.switch-paddle {
    margin: 0
}

.switch-paddle::after {
    background: #fefefe;
    content: '';
    display: block;
    position: absolute;
    height: 1.5rem;
    left: .25rem;
    top: .25rem;
    width: 1.5rem;
    transition: all .25s ease-out;
    transform: translate3d(0, 0, 0);
    border-radius: 0
}

input:checked~.switch-paddle {
    background: #2199e8
}

input:checked~.switch-paddle::after {
    left: 2.25rem
}

[data-whatinput=mouse] input:focus~.switch-paddle {
    outline: 0
}

.switch-active,
.switch-inactive {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.switch-active {
    left: 8%;
    display: none
}

input:checked+label>.switch-active {
    display: block
}

.switch-inactive {
    right: 15%
}

input:checked+label>.switch-inactive {
    display: none
}

.switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: .625rem
}

.switch.tiny .switch-paddle::after {
    width: 1rem;
    height: 1rem
}

.switch.tiny input:checked~.switch-paddle:after {
    left: 1.75rem
}

.switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: .75rem
}

.switch.small .switch-paddle::after {
    width: 1.25rem;
    height: 1.25rem
}

.switch.small input:checked~.switch-paddle:after {
    left: 2rem
}

.switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem
}

.switch.large .switch-paddle::after {
    width: 2rem;
    height: 2rem
}

.switch.large input:checked~.switch-paddle:after {
    left: 2.75rem
}

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0
}

tbody,
tfoot,
thead {
    border: 1px solid #f1f1f1;
    background-color: #fefefe
}

caption {
    font-weight: 700;
    padding: .5rem .625rem .625rem
}

tfoot,
thead {
    background: #f8f8f8;
    color: #333
}

tfoot tr,
thead tr {
    background: 0 0
}

tfoot td,
tfoot th,
thead td,
thead th {
    padding: .5rem .625rem .625rem;
    font-weight: 700;
    text-align: left
}

tbody tr:nth-child(even) {
    background-color: #f1f1f1
}

tbody td,
tbody th {
    padding: .5rem .25rem .625rem
}

@media screen and (max-width:65.5625em) {
    table.stack thead {
        display: none
    }

    table.stack tfoot {
        display: none
    }

    table.stack td,
    table.stack th,
    table.stack tr {
        display: block
    }

    table.stack td {
        border-top: 0
    }
}

table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto
}

table.hover tr:hover {
    background-color: #f9f9f9
}

table.hover tr:nth-of-type(even):hover {
    background-color: #ececec
}

.tabs {
    margin: 0;
    list-style-type: none;
    background: #fefefe;
    border: 1px solid #e6e6e6
}

.tabs::after,
.tabs::before {
    content: ' ';
    display: table
}

.tabs::after {
    clear: both
}

.tabs.vertical>li {
    width: auto;
    float: none;
    display: block
}

.tabs.simple>li>a {
    padding: 0
}

.tabs.simple>li>a:hover {
    background: 0 0
}

.tabs.primary {
    background: #2199e8
}

.tabs.primary>li>a {
    color: #fefefe
}

.tabs.primary>li>a:focus,
.tabs.primary>li>a:hover {
    background: #1893e4
}

.tabs-title {
    float: left
}

.tabs-title>a {
    display: block;
    padding: 1.25rem 1.5rem;
    line-height: 1;
    font-size: 12px;
    color: #2199e8
}

.tabs-title>a:hover {
    background: #fefefe
}

.tabs-title>a:focus,
.tabs-title>a[aria-selected=true] {
    background: #e6e6e6
}

.tabs-content {
    background: #fefefe;
    transition: all .5s ease;
    border: 1px solid #e6e6e6;
    border-top: 0
}

.tabs-content.vertical {
    border: 1px solid #e6e6e6;
    border-left: 0
}

.tabs-panel {
    display: none;
    padding: 1rem
}

.tabs-panel.is-active {
    display: block
}

.thumbnail {
    border: solid 4px #fefefe;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, .2);
    display: inline-block;
    line-height: 0;
    max-width: 100%;
    transition: box-shadow .2s ease-out;
    border-radius: 0;
    margin-bottom: 1rem
}

.thumbnail:focus,
.thumbnail:hover {
    box-shadow: 0 0 6px 1px rgba(33, 153, 232, .5)
}

.title-bar {
    background: #0a0a0a;
    color: #fefefe;
    padding: .5rem
}

.title-bar::after,
.title-bar::before {
    content: ' ';
    display: table
}

.title-bar::after {
    clear: both
}

.title-bar .menu-icon {
    margin-left: .25rem;
    margin-right: .5rem
}

.title-bar-left {
    float: left
}

.title-bar-right {
    float: right;
    text-align: right
}

.title-bar-title {
    font-weight: 700;
    vertical-align: middle;
    display: inline-block
}

.menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 16px
}

.menu-icon::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #fefefe;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe
}

.menu-icon:hover::after {
    background: #cacaca;
    box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca
}

.menu-icon.dark {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 16px
}

.menu-icon.dark::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a
}

.menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a
}

.has-tip {
    border-bottom: dotted 1px #8a8a8a;
    font-weight: 700;
    position: relative;
    display: inline-block;
    cursor: help
}

.tooltip {
    background-color: #78c63a;
    color: #fefefe;
    font-size: 80%;
    padding: .75rem;
    position: absolute;
    z-index: 10;
    top: calc(100% + 0);
    max-width: 10rem !important;
    border-radius: 2px
}

.tooltip::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0;
    border-color: transparent transparent #78c63a;
    border-bottom-style: solid;
    border-top-width: 0;
    bottom: 100%;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.tooltip.top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0;
    border-color: #78c63a transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    top: 100%;
    bottom: auto
}

.tooltip.left::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0;
    border-color: transparent transparent transparent #78c63a;
    border-left-style: solid;
    border-right-width: 0;
    bottom: auto;
    left: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.tooltip.right::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0;
    border-color: transparent #78c63a transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.top-bar {
    padding: 0rem
}

.top-bar::after,
.top-bar::before {
    content: ' ';
    display: table
}

.top-bar::after {
    clear: both
}

.top-bar{
    /* background-color: #0f97cf */
    background-color: #1F1F1F;
}
.top-bar ul {
    background-color: #ffffff
}

.top-bar input {
    width: 100%;
    margin-right: 1rem
}

.top-bar input.button {
    width: auto
}

@media screen and (max-width:39.9375em) {
    .stacked-for-small .top-bar-title {
        width: 100%
    }

    .stacked-for-small .top-bar-right {
        width: 100%
    }

    .stacked-for-small .top-bar-left {
        width: 100%
    }
}

@media screen and (max-width:65.5625em) {
    .stacked-for-medium .top-bar-title {
        width: 100%
    }

    .stacked-for-medium .top-bar-right {
        width: 100%
    }

    .stacked-for-medium .top-bar-left {
        width: 100%
    }
}

@media screen and (max-width:74.9375em) {
    .stacked-for-large .top-bar-title {
        width: 100%
    }

    .stacked-for-large .top-bar-right {
        width: 100%
    }

    .stacked-for-large .top-bar-left {
        width: 100%
    }
}

@media screen and (min-width:0em) and (max-width:39.9375em) {
    .top-bar-title {
        width: 100%
    }

    .top-bar-right {
        width: 100%
    }

    .top-bar-left {
        width: 100%
    }
}

.top-bar-title {
    float: left;
    margin-right: 0rem
}

.top-bar-left {
    float: left
}

.top-bar-right {
    float: right
}

.slide-in-down.mui-enter {
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-in-down.mui-enter.mui-enter-active {
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.slide-in-left.mui-enter {
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-in-left.mui-enter.mui-enter-active {
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.slide-in-up.mui-enter {
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-in-up.mui-enter.mui-enter-active {
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.slide-in-right.mui-enter {
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-in-right.mui-enter.mui-enter-active {
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.slide-out-down.mui-leave {
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-out-down.mui-leave.mui-leave-active {
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.slide-out-right.mui-leave {
    -ms-transform: translateX(0);
    transform: translateX(0);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-out-right.mui-leave.mui-leave-active {
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.slide-out-up.mui-leave {
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-out-up.mui-leave.mui-leave-active {
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.slide-out-left.mui-leave {
    -ms-transform: translateX(0);
    transform: translateX(0);
    transition-property: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide-out-left.mui-leave.mui-leave-active {
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.fade-in.mui-enter {
    opacity: 0;
    transition-property: opacity
}

.fade-in.mui-enter.mui-enter-active {
    opacity: 1
}

.fade-out.mui-leave {
    opacity: 1;
    transition-property: opacity
}

.fade-out.mui-leave.mui-leave-active {
    opacity: 0
}

.hinge-in-from-top.mui-enter {
    transform: perspective(2000px) rotateX(-90deg);
    -ms-transform-origin: top;
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-top.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0);
    opacity: 1
}

.hinge-in-from-right.mui-enter {
    transform: perspective(2000px) rotateY(-90deg);
    -ms-transform-origin: right;
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-right.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0);
    opacity: 1
}

.hinge-in-from-bottom.mui-enter {
    transform: perspective(2000px) rotateX(90deg);
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0);
    opacity: 1
}

.hinge-in-from-left.mui-enter {
    transform: perspective(2000px) rotateY(90deg);
    -ms-transform-origin: left;
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-left.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0);
    opacity: 1
}

.hinge-in-from-middle-x.mui-enter {
    transform: perspective(2000px) rotateX(-90deg);
    -ms-transform-origin: center;
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0);
    opacity: 1
}

.hinge-in-from-middle-y.mui-enter {
    transform: perspective(2000px) rotateY(-90deg);
    -ms-transform-origin: center;
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0);
    opacity: 1
}

.hinge-out-from-top.mui-leave {
    transform: perspective(2000px) rotate(0);
    -ms-transform-origin: top;
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-top.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0
}

.hinge-out-from-right.mui-leave {
    transform: perspective(2000px) rotate(0);
    -ms-transform-origin: right;
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-right.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0
}

.hinge-out-from-bottom.mui-leave {
    transform: perspective(2000px) rotate(0);
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(90deg);
    opacity: 0
}

.hinge-out-from-left.mui-leave {
    transform: perspective(2000px) rotate(0);
    -ms-transform-origin: left;
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-left.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0
}

.hinge-out-from-middle-x.mui-leave {
    transform: perspective(2000px) rotate(0);
    -ms-transform-origin: center;
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0
}

.hinge-out-from-middle-y.mui-leave {
    transform: perspective(2000px) rotate(0);
    -ms-transform-origin: center;
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0
}

.scale-in-up.mui-enter {
    -ms-transform: scale(.5);
    transform: scale(.5);
    transition-property: transform, opacity;
    opacity: 0
}

.scale-in-up.mui-enter.mui-enter-active {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.scale-in-down.mui-enter {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    transition-property: transform, opacity;
    opacity: 0
}

.scale-in-down.mui-enter.mui-enter-active {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.scale-out-up.mui-leave {
    -ms-transform: scale(1);
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1
}

.scale-out-up.mui-leave.mui-leave-active {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0
}

.scale-out-down.mui-leave {
    -ms-transform: scale(1);
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1
}

.scale-out-down.mui-leave.mui-leave-active {
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0
}

.spin-in.mui-enter {
    -ms-transform: rotate(-.75turn);
    transform: rotate(-.75turn);
    transition-property: transform, opacity;
    opacity: 0
}

.spin-in.mui-enter.mui-enter-active {
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1
}

.spin-out.mui-leave {
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1
}

.spin-out.mui-leave.mui-leave-active {
    -ms-transform: rotate(.75turn);
    transform: rotate(.75turn);
    opacity: 0
}

.spin-in-ccw.mui-enter {
    -ms-transform: rotate(.75turn);
    transform: rotate(.75turn);
    transition-property: transform, opacity;
    opacity: 0
}

.spin-in-ccw.mui-enter.mui-enter-active {
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1
}

.spin-out-ccw.mui-leave {
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1
}

.spin-out-ccw.mui-leave.mui-leave-active {
    -ms-transform: rotate(-.75turn);
    transform: rotate(-.75turn);
    opacity: 0
}

.slow {
    transition-duration: 750ms !important
}

.fast {
    transition-duration: 250ms !important
}

.linear {
    transition-timing-function: linear !important
}

.ease {
    transition-timing-function: ease !important
}

.ease-in {
    transition-timing-function: ease-in !important
}

.ease-out {
    transition-timing-function: ease-out !important
}

.ease-in-out {
    transition-timing-function: ease-in-out !important
}

.bounce-in {
    transition-timing-function: cubic-bezier(.485, .155, .24, 1.245) !important
}

.bounce-out {
    transition-timing-function: cubic-bezier(.485, .155, .515, .845) !important
}

.bounce-in-out {
    transition-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important
}

.short-delay {
    transition-delay: .3s !important
}

.long-delay {
    transition-delay: .7s !important
}

.shake {
    animation-name: shake-7
}

@keyframes shake-7 {

    0%,
    10%,
    20%,
    30%,
    40%,
    50%,
    60%,
    70%,
    80%,
    90% {
        transform: translateX(7%)
    }

    15%,
    25%,
    35%,
    45%,
    5%,
    55%,
    65%,
    75%,
    85%,
    95% {
        transform: translateX(-7%)
    }
}

.spin-cw {
    animation-name: spin-cw-1turn
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(-1turn)
    }

    100% {
        transform: rotate(0)
    }
}

.spin-ccw {
    animation-name: spin-cw-1turn
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(1turn)
    }
}

.wiggle {
    animation-name: wiggle-7deg
}

@keyframes wiggle-7deg {

    40%,
    50%,
    60% {
        transform: rotate(7deg)
    }

    35%,
    45%,
    55%,
    65% {
        transform: rotate(-7deg)
    }

    0%,
    100%,
    30%,
    70% {
        transform: rotate(0)
    }
}

.infinite {
    animation-iteration-count: infinite
}

.slow {
    animation-duration: 750ms !important
}

.fast {
    animation-duration: 250ms !important
}

.linear {
    animation-timing-function: linear !important
}

.ease {
    animation-timing-function: ease !important
}

.ease-in {
    animation-timing-function: ease-in !important
}

.ease-out {
    animation-timing-function: ease-out !important
}

.ease-in-out {
    animation-timing-function: ease-in-out !important
}

.bounce-in {
    animation-timing-function: cubic-bezier(.485, .155, .24, 1.245) !important
}

.bounce-out {
    animation-timing-function: cubic-bezier(.485, .155, .515, .845) !important
}

.bounce-in-out {
    animation-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important
}

.short-delay {
    animation-delay: .3s !important
}

.long-delay {
    animation-delay: .7s !important
}

.row .row {
    margin-left: -1.25rem;
    margin-right: -1.25rem
}

@media screen and (min-width:40em) {
    .row .row {
        margin-left: -1.25rem;
        margin-right: -1.25rem
    }
}

.column,
.columns {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    float: left
}

@media screen and (min-width:40em) {

    .column,
    .columns {
         padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

html {
    font-size: 16px
}

.top-bar {
    box-shadow: 0 0 7px rgba(0, 0, 0, .3)
}

h6 small {
    line-height: normal !important
}

@media (max-width:768px) {

    p,
    select {
        font-size: .9rem
    }
}

header {
    position: fixed;
    width: 100%;
    z-index: 99999
}

.container {
    width: 1082px;/* previously:1050 */
    margin: 0 auto
}

@media (max-width:1080px) {
    .container {
        width: 100%
    }
}

.container.duas {
    width: 1200px;
    margin: 0 auto;
    padding-top: 72px
}

@media (max-width:1199px) {
    .container.duas {
        width: 100%
    }
}

@media (max-width:768px) {
    .container.duas {
        padding-top: 195px
    }
}

.top-bar-search {
    display: table;
    width: 440px
}

nav.top-bar .item {
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
    cursor: pointer
}

nav.top-bar .item.dropdown-expanded {
    padding-left: 0
}

nav.top-bar .item.brand {
    width: 235px;
    padding-left: 20px;
    height: 18px;
}

@media (max-width:1199px) {
    nav.top-bar .item.brand {
        width: auto
    }
}

nav.top-bar .am-logo {
    height: 40px
}

nav.top-bar .item.dropdown li span {
    color: #fefefe
}

nav.top-bar .item.dropdown li a {
    color: #fefefe;
    padding: 10px
}

nav.top-bar .item.dropdown li a:hover {
    background-color: rgba(0, 0, 0, .075);
    border-radius: 4px
}

nav.top-bar .item.dropdown li a.active,
nav.top-bar .item.dropdown li a.active:hover {
    background-color: #3b98bd;
    border-radius: 4px
}

nav.top-bar .item .submenu li a {
    color: #333
}

nav.top-bar .item .submenu li a:hover {
    background-color: transparent;
    color: #3b98bd
}

nav.top-bar .item .submenu li a.active,
nav.top-bar .item .submenu li a.active:hover {
    background-color: #fefefe;
    color: #3b98bd;
    font-weight: 600
}

nav.top-bar .input-group {
    width: auto
}

nav.top-bar .input-group .twitter-typeahead {
    float: none !important
}

nav.top-bar img {
    max-width: none;
    display: block
}

nav.top-bar img.logo-desktop {
    display: block
}

nav.top-bar img.logo-responsive {
    display: none
}

nav.top-bar .trig-get-location img#my-location-search-auto {
    max-width: 22px
}

nav.top-bar .get-athan {
    padding: 8px 10px;
    background-color: #3b98bd
}

nav.top-bar .top-bar-left {
    margin-top: 6px
}

@media (max-width:1199px) {
    nav.top-bar .dropdown.download-athan-link {
        display: none
    }

    nav.top-bar .item.brand {
        padding-left: 10px
    }

    nav.top-bar .top-bar-left {
        margin-top: 0;
        padding: 6px 0
    }

    nav.top-bar .input-group {
        width: calc(100% - 145px);
        padding: 0
    }

    nav.top-bar .top-bar-search {
        width: 100%
    }

    nav.top-bar .top-bar-left,
    nav.top-bar .top-bar-right {
        display: -ms-flexbox;
        display: flex;
        float: none
    }

    nav.top-bar #responsive-menu li a {
        color: #0f97cf;
        padding: 1rem;
        display: inline-block
    }
    nav.top-bar #responsive-menu li a.active {
        background-color: #0f97cf;
        color:#ffffff;
        width:100%;
    }

    nav.top-bar .dropdown-expanded,
    nav.top-bar .get-athan {
        display: none
    }

    nav.top-bar img.logo-desktop {
        display: none
    }

    nav.top-bar img.logo-responsive {
        display: block
    }

    nav.nav-blog .icon {
        position: absolute;
        right: 5px;
        top: 18px
    }
}

@media (max-width:1280px) {
    nav.top-bar #responsive-menu {
        max-height: 100vh;
        overflow-y: auto;
            min-height: -webkit-fill-available;
        z-index:99999;
        width: 100%;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 20px;
        
    }
}

@media (max-width:768px) {
    nav.top-bar #responsive-menu {
/*         max-height: 400px;
 */        overflow-y: auto;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 20px;
        
    }

    .quran-body .quran-header {
        display: -ms-flexbox;
        display: flex
    }

    .quran-body .quran-header #juz-dropdown,
    .quran-body .quran-header #sura-dropdown {
        width: 34%;
        margin-right: 39px
    }

    .quran-body.box .quran-header #juz-dropdown#sura-dropdown,
    .quran-body.box .quran-header #sura-dropdown#sura-dropdown {
        margin-right: 0
    }
}

nav.top-bar.nav-blog .item.brand {
    width: auto
}

#container {
    padding-top: 72px;
    max-width: 1170px;
    margin: 0 auto
}

@media (max-width:1366px) {
    #container {
        width: 100%;
        padding-top: 72px
    }
}

ul li ul {
    position: absolute;
    background: #fff !important;
    border: 0 !important;
    box-shadow: 0 1px 7px #ccc
}

.menu {
    border: 0
}

.menu .search {
    width: 370px;
    padding-left: 15px;
    color: #555
}

@media (max-width:992px) {
    .menu .search {
        width: auto;
        float: right
    }

    .mainContainer {
        overflow: hidden
    }
}

input::-webkit-input-placeholder {
    color: #cacaca !important
}

input:-moz-placeholder {
    color: #cacaca !important
}

input::-moz-placeholder {
    color: #cacaca !important
}

input:-ms-input-placeholder {
    color: #cacaca !important
}

.box {
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    margin-bottom: 20px;
    overflow: hidden
}

@media (max-width:768px) {
    .box {
        margin-bottom: 10px
    }
}

.add {
    min-height: 250px;
    background: #ddd;
    color: #fefefe
}

aside {
    position: relative
}

.fixed {
    position: fixed;
    top: 42px
}

.notFixed {
    position: fixed;
    bottom: 70px
}

.button {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 24px;
    transition: all .1s ease-in;
    line-height: inherit
}

@media (max-width:768px) {
    .button {
        font-size: .8rem
    }
}

.breadcrumbs a,
a {
    color: #6f6f6f
}

.breadcrumbs a {
    transition: all .2s ease
}

li.current {
    cursor: default
}

li.current:hover {
    text-decoration: none
}

.upcoming-event p {
    font-size: 1.1rem
}

@media (max-width:768px) {
    .upcoming-event p {
        font-size: .9rem
    }
}

#changePasswordModal,
#changePasswordModal .changePassword label>input,
#prayer-table table td:nth-child(2),
.card-place .image,
.location-menu li ul,
.location-menu li ul::before,
.new-athan-card h3,
.strip,
.text-center {
    text-align: center
}

.upcoming {
    display: table-cell;
    vertical-align: middle;
    height: auto;
    min-height: 250px;
    background: #fefefe;
    color: #fefefe;
    position: relative;
    padding: 0
}

.upcoming div {
    padding-left: 0;
    padding-right: 0
}

.upcoming div.upcoming-event {
    padding: .625rem
}

.upcoming .title {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.upcoming .title h1 {
    font-size: 2.5em;
    line-height: 1.2
}

.upcoming .title h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 10px
}

.upcoming em {
    margin-right: .45rem
}

.upcoming .bottom {
    display: -ms-flexbox;
    display: flex;
    padding: 0 .625rem;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    bottom: .3125rem;
    left: 0
}

.upcoming .bottom div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    vertical-align: text-top
}

.upcoming .bottom div:nth-child(1) {
    top: 10px
}

.upcoming .bottom div:nth-child(2) {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: end;
    justify-content: flex-end;
    bottom: 4px
}

@media (max-width:992px) {
    .upcoming .title h1 {
        font-size: 1.7em
    }

    .upcoming .title h2 {
        font-size: 1.1em
    }

    .upcoming a.button {
        font-size: .8em
    }

    .upcoming .bottom {
        padding: 0 1em !important
    }
}

@media (max-width:768px) {
    .upcoming em {
        margin-right: 7px
    }

    .upcoming .bottom {
        bottom: .6em;
    }

    .upcoming .pad-tb {
        padding-top: 7px
    }

    .upcoming .title {
        position: static;
        -ms-transform: none;
        transform: none;
        padding: 20px 0
    }

    .upcoming .bottom {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .upcoming .bottom div:nth-child(1) {
        padding-bottom: .625rem;
        top: 5px
    }

    @-moz-document url-prefix() {
        .upcoming .bottom div:nth-child(1) {
            top: 10px
        }
    }

    .upcoming .bottom div:nth-child(2) {
        -ms-flex-pack: center;
        justify-content: center;
        bottom: 0
    }

    .upcoming .bottom>div {
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
        -ms-flex: 1;
        flex: 1
    }

    .upcoming .bottom>div p {
        margin-top: 5px;
        margin-bottom: 0
    }

    @-moz-document url-prefix() {
        .upcoming .bottom>div p {
            padding-bottom: 10px
        }
    }
}

@media (max-width:350px) {
    .upcoming a.button {
        font-size: .7em
    }

    p small {
        font-size: .63em
    }
}

.upcoming {
    background-size: cover;
    background-repeat: no-repeat
}

.event-1 {
    background-image: url(https://www.islamicfinder.org/static/live162/images/ashoora-background.jpg);
    background-position: center
}

.event-2,
.event-3,
.event-4,
.event-6,
.event-7 {
    background-image: url(../../../../static/live162/images/bg-upcoming.jpg)
}

.event-5 {
    background-image: url(../../../../static/live162/images/hajj-background.jpg);
    background-position: center
}

@media (max-width:992px) {
    .hajj {
        background-position: center center
    }
}

.card-place {
    display: table;
    width: 100%;
    margin: 3px 0;
    color: #6e6e6e;
    transition: all .3s ease
}

@media (max-width:768px) {
    .card-place {
        margin: .3125rem 0
    }
}

.card-place h4 {
    color: #3b98bd;
    display: block;
    display: -webkit-box;
    height: inherit;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 34px;
    word-break: break-all;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis
}

.card-place h6 small {
    font-weight: 500;
    top: -4px;
    position: relative;
    font-size: .9rem;
    color: #333
}

.card-place h6.zero-margin {
    position: relative;
    left: 1px
}

.card-place .text {
    display: table-cell;
    vertical-align: middle;
    max-height: 100px;
    padding-left: .625rem
}

@media (max-width:992px) {
    .card-place .text {
        padding-left: .625rem
    }
}

.card-place .image {
    width: 100px;
    height: 100px !important;
    max-height: 100px;
    border-radius: 2px;
    background: #eee;
    display: table-cell;
    position: relative;
    vertical-align: middle
}

.card-place .image img {
    position: absolute;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.card-place .details {
    font-size: 1rem;
    padding: .6em 0 .5em 0;
    background: #f8f8f8
}

.card-place .details p {
    margin-bottom: 0;
    line-height: 1.4
}

@media (max-width:992px) {
    .card-place .image {
        width: 75px;
        height: 75px !important
    }

    .card-place .image img {
        height: 30px
    }
}

@media (max-width:768px) {
    .card-place h4 {
        font-size: initial
    }

    .card-place .text {
        padding-left: .625rem;
        padding-top: 0
    }
}

.card-place-list h3 {
    display: inline-block;
    font-size: 1.1em;
    color: #fefefe;
    margin-bottom: 1em
}

.card-place-list em {
    color: #fefefe;
    font-size: 1.4em;
    margin-right: .4em
}

@media (max-width:768px) {
    #mosque {
        text-align: center
    }
}

.location-menu {
    width: 100%;
    margin: 0
}

.location-menu li {
    display: inline-block;
    position: relative;
    cursor: pointer
}

.location-menu li a {
    color: #333 !important
}

.location-menu li ul {
    display: none;
    box-shadow: 0 1px 7px #ccc;
    background: #fff;
    position: absolute;
    text-align: center;
    margin-left: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 265px;
    top: 150%;
    z-index: 999
}

@media (max-width:992px) {
    .location-menu li ul {
        width: 210px;
        font-size: .8rem
    }
}

@media (max-width:630px) {
    .location-menu li ul {
        width: 265px;
        font-size: .9rem
    }
}

.location-menu li ul li {
    display: list-item;
    width: 100%;
    text-align: left;
    padding-left: 1em;
    list-style: none
}

.location-menu li ul li a {
    color: #555 !important;
    width: 100%;
    display: inline-block;
    padding: 10px 0
}

.location-menu li ul li a:hover {
    color: #3b98bd !important
}

.location-menu li ul::before {
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 10px solid #eee;
    content: "\0005";
    text-align: center;
    background: #fff;
    position: absolute;
    bottom: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -100
}

.global-search {
    width: 275px
}

.tt-footer {
    display: block;
    padding: .625rem;
    font-size: .9rem;
    line-height: 24px;
    clear: both;
    font-weight: 400;
    color: #3b98bd;
    font-weight: 500;
    white-space: nowrap;
    border-top: 1px solid #3b98bd
}

.tt-change-lat-lng {
    color: #fefefe;
    background-color: #3b98bd;
    border-top: 0
}

.tt-hint,
.tt-query,
.typeahead {
    transition: all .2s ease;
    width: 275px;
    font-size: .9rem !important;
    border: 2px solid #ddd;
    box-shadow: none;
    border-radius: 8px;
    outline: 0;
    margin: 0 !important;
    text-align: left;
    color: #333 !important
}

.countries {
    display: inline-block !important
}

.tt-input,
input[type=text] {
    display: inline-block
}

.typeahead {
    padding-left: .5rem;
    background-color: #fff;
    color: #333
}

.tt-query {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.tt-hint {
    color: #333;
    width: 100% !important
}

.tt-menu {
    width: 100%;
    margin: 12px 0;
    color: #333;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    z-index: 9999;
    text-align: left;
    overflow: hidden
}

.tt-suggestion {
    padding: .625rem;
    font-size: .9rem;
    line-height: 24px;
    z-index: 9999;
    background-color: #fff;
    border-bottom: 1px solid #eee
}

@media (max-width:768px) {
    .tt-suggestion {
        font-size: .8rem
    }
}

.tt-suggestion:last-of-type {
    border-bottom: 0
}

.tt-suggestion:hover {
    cursor: pointer;
    color: #fefefe;
    background-color: #3b98bd
}

.tt-suggestion.tt-cursor {
    color: #fefefe;
    background-color: #3b98bd
}

.tt-suggestion p {
    margin: 0
}

.gist {
    font-size: 14px
}

#the-basics {
    width: 100%;
    border: 0;
    border-radius: 3px 0 0 3px;
    margin: 0 auto;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 80% center
}

#the-basics:focus {
    box-shadow: none
}

input#small-search {
    background-color: #fff;
    border-radius: 3px 0 0 3px;
    border: 0;
    font-size: .84rem;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 80% center
}

input#small-search:focus {
    box-shadow: none
}

@media (max-width:1024px) {
    .dropdown-options {
        display: none !important
    }
}

@media (min-width:769px) and (max-width:992px) {
    #the-basics {
        text-align: left
    }

    .tt-hint,
    .tt-menu,
    .tt-query,
    .typeahead {
        text-align: left
    }
}

@media (max-width:1024px) and (max-width:1024px) {
    .language-selector {
        display: none
    }
}

@media (max-width:1024px) {

    .tt-hint,
    .tt-menu,
    .tt-query,
    .typeahead {
        text-align: left;
        font-size: .9rem !important
    }

    .top-bar-left .menu>li>a {
        display: inline-block !important;
        padding: .7rem
    }
}

@media (max-width:700px) {

    .tt-hint,
    .tt-menu,
    .tt-query,
    .typeahead {
        text-align: left;
        font-size: .9rem
    }
}

@media (max-width:400px) {

    .tt-hint,
    .tt-menu,
    .tt-query,
    .typeahead {
        width: 100%;
        margin: 0 auto;
        text-align: left;
        font-size: .9rem !important
    }

    .top-bar-left .menu li a {
        font-size: .9rem
    }
}

.responsive-options {
    display: none !important
}
.mainFeatures, .mainFeatures a {
  font-family: Roboto;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #323637;
  text-transform:uppercase;
}
.categoryTitle{
  font-family: Roboto;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #b3babd; 
  text-transform:uppercase;
}
.otherCategory, .otherCategory a{
  font-family: Roboto;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
   color: #515457 ;
   padding-top:20px;
	  line-height: normal;
}
.otherCategory .active, .mainFeatures .active{
	color:#0b94cc;
}
.menuclosebtn{
	font-size: large;margin-right: 15px;width: 25px;height: 25px;
}

.responsive-options a.separator {
    margin: 0;
    padding: .7rem 0 !important
}

@media (max-width:1199px) {
    .responsive-options {
        display: inherit !important
    }
}

.footer {
    padding: 2rem 0;
    background: #fff;
    color: #333
}

.footer .links {
    padding-top: 20px
}

.footer ul {
    list-style-type: none;
    margin-left: 0;
    font-size: 1.2rem;
    color: #3b98bd
}

.footer ul li {
    line-height: 1.4
}

.footer ul li a {
    font-size: .8rem;
    font-weight: 400;
    color: #333;
    padding: 0;
    margin: 0;
    line-height: normal
}

.footer .icon__newsletter {
    color: #f4c227;
    margin-right: .625rem
}

@media (max-width:992px) {
    .footer {
        font-size: .85em
    }
}

.strip {
    padding: 17px 0 0 0;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #f5f5f5;
    background: #32373b
}

@media (max-width:768px) {
    .strip.is-docked {
        padding-bottom: 70px
    }
    .margin-bottom{
    	margin-bottom:10px !important;
    }
    .margin-top{
    	margin-top:10px !important;
    }
}

.strip-left {
    text-align: left
}

.strip-left a {
    color: #3b98bd;
    font-weight: 600;
    border-bottom: 1px solid #3b98bd
}

.strip-left a:hover {
    color: #4facd1
}

.strip-left p {
    margin-bottom: 1.4rem;
    margin-top: .2rem;
    font-size: .8rem
}

@media (max-width:992px) {
    .strip-left p {
        margin-bottom: 1rem
    }
}

.strip-right {
    text-align: right;
    display: block
}

.strip-right div {
    text-align: right;
    display: inline-block;
    width: auto;
    vertical-align: middle
}

.strip-right h4 {
    display: inline-block;
    font-size: 1.3em;
    margin-right: 10px
}

.strip-right em {
    margin-left: 20px;
    font-size: 2em;
    line-height: 50px;
    vertical-align: super;
    display: inline-block;
    transition: all .2s ease
}

.strip-right em:hover {
    color: #3b98bd;
    cursor: pointer
}

.inline {
    display: inline-block
}

.inline-button {
    display: inline-block
}

.is-inline-block {
    display: inline-block
}

@media (max-width:992px) {
    .strip-right {
        text-align: center;
        margin-bottom: 1rem
    }

    .strip-right div {
        display: block;
        text-align: center
    }

    .strip-right em {
        margin: 0 10px
    }

    .strip-left {
        text-align: center
    }
}

@media (max-width:768px) {
    .inline {
        display: block
    }
}

.preferences {
    display: none;
    z-index: 500;
    padding: 30px 0;
    width: 100%;
    background: #333;
    color: #fefefe
}

.preferences .preference-container {
    padding-top: 0;
    width: 1199px;
    margin: 0 auto
}

@media (max-width:1080px) {
    .preferences .preference-container {
        width: 100%
    }
}

.preferences img {
    width: 18px;
    margin-top: 10px
}

@media (max-width:768px) {
    .preferences img {
        width: 12px;
        margin-top: 3px
    }
}

.preferences select {
    border-radius: 3px;
    color: #333
}

.preferences h3,
.preferences h5 {
    margin-bottom: .5rem
}

.preferences .button {
    min-width: 140px
}

.preferences input {
    display: inline;
    color: #fefefe
}

.preferences a em {
    color: #fefefe
}

.preferences a em:hover {
    color: #3b98bd
}

#overlay {
    position: fixed;
    z-index: 550;
    background: #000;
    opacity: 0;
    width: 100%;
    height: 3500px;
    overflow: hidden
}

@media (max-height:320px) {
    .preferences {
        padding-top: 17px
    }

    .preferences h5 {
        font-size: .9em
    }

    .preferences h3 {
        margin-bottom: 0
    }

    .preferences button {
        margin: 0 .3em 0 .3em !important
    }
}

#popup {
    overflow: visible;
    position: relative;
    width: 500px;
    height: 150px
}

#popup h5 {
    font-size: 1.2em;
    color: #333;
    padding: .5em 0 !important
}

#popup input[type=submit] {
    position: absolute;
    bottom: 2em;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media (max-width:768px) {
    #popup h5 {
        font-size: 1em
    }

    #popup input[type=submit] {
        bottom: 1.5em
    }
}

#popup #centered {
    padding: 25px 0
}

#popup .typeahead {
    position: relative !important;
    padding: 5px !important;
    margin: 0 !important;
    text-align: center !important
}

#popup .tt-hint {
    display: none !important
}

#popup #the-basics {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important
}

ul.bxSlider,
ul.bxslider {
    margin-left: 0;
    list-style-type: none
}

#prayer-slider .bxslider {
    margin: 0 !important
}

.controls {
    padding: 1.3em 0
}

#prayer-slider {
    color: #333
}

#prayer-slider .controls {
    margin: 1.5em 0
}

#prayer-table .date {
    margin: .7em 0
}

#prayer-table .controls {
    margin: 1.5em 0
}

#prayer-table table {
    margin-bottom: 0;
    width: 100%
}

#prayer-table table tbody {
    color: #333
}

@media (max-width:768px) {
    #prayer-table table tbody {
        font-size: .8rem
    }
}

#prayer-table table tr:nth-child(odd) {
    background: #e9e9e9
}

#prayer-table table tr:nth-child(even) {
    background: #fefefe
}

#prayer-table table td:nth-child(1) {
    text-align: left;
    padding-left: 3em
}

@media (max-width:992px) {
    #prayer-table table td:nth-child(1) {
        padding-left: 1em
    }
}

#prayer-table table td:nth-child(2) {
    text-align: center
}

#prayer-table table td:nth-child(3) {
    text-align: right;
    padding-right: 3em
}

@media (max-width:992px) {
    #prayer-table table td:nth-child(3) {
        padding-right: 1em
    }
}

#prayer-table table tr td {
    height: 3.6em
}

#prayer-table .current {
    color: #3b98bd;
    font-weight: 700
}

.btn-green {
    background-color: #3b98bd !important
}

.btn-green:hover {
    background-color: #6dd296 !important
}

.btn-yellow {
    background-color: #f4c227 !important
}

.btn-yellow:hover {
    background-color: #ffd63b !important
}

#green {
    background: #3b98bd;
    padding: .625rem 0
}

@media (max-width:768px) {
    #green {
        padding: 10px 0
    }
}

#green:hover {
    background: #4facd1
}

#green h6 {
    color: #fefefe;
    font-weight: 600;
    font-size: 14px;
    display: inline-block
}

@media (max-width:768px) {
    #green h6 {
        font-size: .9rem
    }
}

#green a {
    color: #fefefe !important
}

#green span {
    color: #fefefe;
    font-size: 1.1em;
    font-weight: 700;
    margin-left: 1.7em
}

.info {
    background: #696969;
    padding: .625rem;
    color: #fff
}

#grey {
    background: #fefefe;
    color: #333;
    border-bottom: 1px solid #eee;
    padding: .625rem
}

@media (max-width:768px) {
    #grey {
        padding: .625rem !important
    }
}

#grey h3 {
    display: inline-block;
    font-size: 1.1rem
}

@media (max-width:768px) {
    #grey h3 {
        font-size: .9rem;
        line-height: 1.4
    }
}

#grey em {
    margin-right: .5em
}

#grey button.button {
    padding: .2rem .625rem
}

#grey button.button.small {
    padding: .3rem;
    vertical-align: super
}

#grey button.button.small img {
    vertical-align: text-bottom
}

#grey button.switch.button::before {
    display: inline-block;
    content: "\f0ec";
    font-family: FontAwesome;
    margin-right: 5px;
    width: auto;
    height: inherit
}

#blogs-slider .bxslider,
#place-slider .bxslider {
    margin: 0 !important
}

#place-table {
    border: 1px solid #ddd;
    width: 100%;
    overflow: hidden;
    transition: all .2s ease
}

#place-table h3 {
    font-size: 1.5em
}

@media (max-width:992px) {
    #place-table h3 {
        font-size: initial
    }
}

#place-slider {
    padding: 1.025rem
}

#blogs-slider {
    padding: 10px
}

#blogs-slider ul {
    width: calc(100% - 20px)
}

#place-slider ul {
    width: 80%
}

#blogs-slider .bx-wrapper {
    max-width: none !important;
    width: 100%
}

#blogs-slider .bx-wrapper .bx-viewport {
    border: 0
}

.bx-wrapper img {
    display: initial !important;
    margin: 1em auto;
    width: 40px;
    height: auto;
    padding-top: 10px
}

.grey-strip {
    background: #e9e9e9;
    font-size: .9em;
    font-weight: 500;
    color: #333
}

#blogs-slider .category-link {
    font-size: .9rem;
    background-color: #3b98bd;
    color: #fff;
    display: inline-block;
    padding: 0 .625rem
}

#blogs-slider .article-post-date {
    font-weight: 100;
    font-size: .9rem
}

#blogs-slider .article-post-title {
    font-size: 1.4rem;
    line-height: 1.8rem
}

#blogs-slider .article-post-text {
    font-size: 1rem;
    line-height: 1.4rem
}

@media (max-width:768px) {
    .grey-strip {
        margin-top: 1em;
        font-size: .8em
    }

    #blogs-slider .category-link {
        font-weight: 700;
        font-size: .8rem
    }

    #blogs-slider .article-post-date {
        font-weight: 100;
        font-size: .8rem
    }

    #blogs-slider .article-post-title {
        font-size: 1.2rem;
        line-height: 1.6rem
    }

    #blogs-slider .article-post-text {
        font-size: .9rem;
        line-height: 1.3rem
    }
}

@media (max-width:768px) {
    .tags {
        overflow-x: scroll
    }
}

.tags .tags-container {
    padding: .625rem 0;
    padding-bottom: 0
}

@media (max-width:768px) {
    .tags .tags-container {
        width: calc(100% + 100px);
        padding: 1.25rem 0;
        padding-bottom: 0
    }
}

.tag {
    padding: 4px 16px;
    border: 2px solid #3b98bd;
    background: 0 0;
    color: #3b98bd !important;
    border-radius: 4px;
    font-size: .85rem;
    font-weight: 700;
    margin-right: 5px
}

@media (max-width:768px) {
    .tag {
        padding: 3px 10px;
        font-size: .75rem
    }
}

.on {
    background: #3b98bd;
    color: #fefefe !important
}

a.tag.on:hover {
    color: #fff !important
}

a.tag.on:hover {
    color: #fff !important
}

#clockdiv {
    font-family: Roboto, sans-serif;
    color: #fff;
    display: inline-block;
    text-align: right;
    font-size: 1.8rem
}

#clockdiv div {
    display: inline-block
}

#clockdiv span {
    font-size: 28px
}

#countdown h3 {
    color: #fefefe;
    font-weight: 300;
    font-size: 28px
}

.smalltext {
    padding-top: 5px;
    font-size: 16px
}

#monthly h4 {
    color: #333
}

green>* {
    color: #3b98bd
}

#hijriMonth a {
    color: #3b98bd;
    text-decoration: underline;
    white-space:nowrap;
}

.scrollable {
    position: relative
}

@media (max-width:992px) {
    .scrollable {
        overflow-x: scroll !important
    }
}

@media print {
    .scrollable {
        overflow-x: visible !important
    }
}

table#monthly-prayers {
    margin-bottom: 0
}

table#monthly-prayers tbody {
    border: 0
}

#monthly-prayers td {
    height: 1.5em;
    font-size: .75rem;
    text-transform: capitalize
}

@media (max-width:768px) {
    #monthly-prayers td {
        font-size: .7rem
    }
}

.row-body td:nth-child(10),
.row-body td:nth-child(4),
.row-body td:nth-child(5),
.row-body td:nth-child(6),
.row-body td:nth-child(7),
.row-body td:nth-child(8),
.row-body td:nth-child(9) {
    border-bottom: 1px solid #f4f4f4;
    color: #333
}

.row-body:last-child td {
    border-bottom: 0
}

#monthly-prayers tbody tr:nth-child(even),
tbody tr.new-month td:nth-child(even) {
    background-color: #fefefe
}

.new-month td,
.row-title td {
    height: 1.4em;
    background: #7d7d7d;
    font-size: .9em;
    font-weight: 700;
    color: #ffffff
}

.row-title td:nth-child(1),
.row-title td:nth-child(3) {
    background: #313743
}

.row-title td:nth-child(2) {
    background: #313743
}

.new-month td:nth-child(2) {
    background-color:#7d7d7d !important
}

.row-title td:nth-child(2) {
    max-width: 85px
}

.row-title td:nth-child(5),
.row-title td:nth-child(7),
.row-title td:nth-child(9) {
    background: #6c6c6c
}

.row-body td:nth-child(1) {
    background: #6c6c6c;
    color: #fefefe
}

.row-body td:nth-child(2) {
    background: #7d7d7d;
    color: #fefefe
}

.row-body td:nth-child(3) {
    background: #6c6c6c;
    color: #fefefe
}

.new-month td:nth-child(5),
.row-body td:nth-child(5) {
    background: #f6f6f6
}

.new-month td:nth-child(7),
.row-body td:nth-child(7) {
    background: #f6f6f6
}

.new-month td:nth-child(9),
.row-body td:nth-child(9) {
    background: #f6f6f6
}

.table-control {
    padding: .15em 1.5em;
    font-weight: 700;
    color: #333;
    background: #f6f6f6;
    border: 1px solid #ddd;
    border-right: 0;
    border-left: 0
}

#mp-next {
    position: relative;
    left: -5px
}

.table-control a {
    color: #333
}

.next,
.prev {
    padding: .15em .4em;
    background: #f6f6f6;
    border: 1px solid #ddd
}

#cal-next em,
#cal-prev em,
#pr-next em,
#pr-prev em {
    color: #333
}

.prev {
    border-radius: 3px 0 0 3px
}

.next {
    border-radius: 0 3px 3px 0
}

#all-cities ul,
#all-countries ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 0 17px 0
}

#all-countries .row .row div div {
    line-height: .8em;
    padding: 0 3px;
    margin: 3px 0
}

#all-cities ul li a,
#all-countries ul li a {
    color: #555 !important
}

#all-cities ul li a:hover,
#all-countries ul li a:hover {
    color: #3b98bd !important
}

#all-cities a {
    text-decoration: underline
}

#all-countries span {
    height: auto;
    width: 19px;
    box-shadow: 0 1px 2px #ddd
}

#all-countries a {
    position: relative;
    top: 0;
    font-size: .9rem !important;
    font-weight: 500 !important;
    color: #555 !important;
    transition: all .3s ease
}

#all-countries a:hover {
    color: #3b98bd;
    text-decoration: underline
}

#all-countries ul li {
    padding: 3px 0
}

@media (max-width:768px) {
    #top-city-table {
        overflow-x: scroll
    }
}

#top-city-table {
    padding: .625rem 0
}

#top-city-table table {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    font-size: .85rem
}

#top-city-table table tr td {
    height: 3.6em
}

@media (max-width:768px) {
    #top-city-table table tr td {
        height: 2.5em;
        font-size: .8em
    }
}

#top-city-table table tr td a {
    color: #3b98bd;
    transition: all .3s ease
}

#top-city-table table tr td a:hover {
    text-decoration: underline
}

#top-city-table .row-title td {
    background: #3b98bd
}

#top-city-table table tr td:nth-child(1) {
    width: 23%;
    font-weight: 700;
    text-align: left;
    padding-left: 1.25rem
}

#top-city-table .active {
    color: #3b98bd
}

#card-location {
    color: #333
}

#card-location h2 {
    position: relative;
    line-height: 1.4;
    font-size: 2rem !important
}

#card-location img {
    margin-top: .625rem;
    padding: 0 .3125rem
}

@media (max-width:992px) {
    #card-location h2 {
        font-size: 1.2rem !important
    }

    #card-location img {
        padding: 10px 0
    }
}

#card-location h2 {
    margin: .5rem 0 0 0 !important
}

.form-title {
    padding: 1.25em .625rem;
    padding-bottom: 0
}

.form-title .number {
    display: table-cell;
    min-width: 2.5em;
    height: 2.5em;
    background: #a2a2a2;
    color: #fefefe;
    font-weight: 700;
    text-align: center;
    vertical-align: middle
}

.form-title .title {
    display: table-cell;
    width: 100%;
    height: 2.5em;
    background: #ddd;
    color: #7a7a7a;
    font-weight: 600;
    padding-left: 1em;
    vertical-align: middle
}

.form-section {
    padding: .5rem .625rem
}

.form-group input {
    margin-bottom: 0
}

#map {
    margin-top: 1rem
}

.searcher .tt-menu {
    margin-top: 2.5rem
}

#placesuggestion .selectors {
    margin-left: 0
}

table {
    border-collapse: collapse
}

.calendar-dropdown-month,
.calendar-dropdown-year {
    font-size: .9rem;
    margin-bottom: 0;
    color: #333;
    border-radius: 3px;
    position: relative
}

.calendar-dropdown-month:focus,
.calendar-dropdown-year:focus {
    outline: 0
}

.calendar-dropdown-year {
    width: 100px
}

.calendar-dropdown-month {
    width: 160px
}

.controls.calendar .calendar-dropdown-month,
.controls.calendar .calendar-dropdown-year {
    padding: 6px;
    height: inherit
}

.controls.calendar .calendar-dropdown-year {
    width: 65px;
    border-radius: 0 3px 3px 0
}

.controls.calendar .calendar-dropdown-month {
    width: 155px;
    right: -5px;
    border-radius: 3px 0 0 3px
}

.btn-reset {
    color: #3b98bd;
    font-size: .9rem
}

#calendar table {
    margin-bottom: 0
}

#calendar .title td {
    border: 1px solid #313743;
    height: 1.2em;
    max-width: 2em;
    min-width: 2em;
    font-weight: 500;
    text-align: center;
    background: #313743;
    color: #fefefe;
    font-size: small;
}

tr.row-today td {
    font-weight: 600;
    background-color: #3b98bd !important;
    color: #fff !important
}

#table-ramadan tr.row-today td {
 font-weight: 600;
    background-color: #3b98bd !important;
    color: #fff !important
}

#calendar .days td {
    height: 80px;
    max-width: 2em;
    min-width: 24px;
    background: #fefefe;
    border: 1px solid #f1f1f1;
    text-align: center;
    vertical-align: middle
}

@-moz-document url-prefix() {
    #calendar .days td {
        height: 80px
    }
}

#calendar .days td:hover {
    background: #fbfbfb
}

#calendar .days h4 {
    font-size: 1.2em;
    margin-bottom: .2em !important;
    margin-top: .5em !important;
    color: #555
}

#calendar .days h6 {
    margin-bottom: .1rem !important;
    color: #3b98bd
}

#calendar .today {
    background: #e7e7e7 !important
}

#calendar .event {
    background: #313743 !important;
    color: #fefefe;
    /* padding: 0; */
    cursor: default;
    border: 1px solid #313743 !important;
}

#calendar .event div {
    display: block;
    vertical-align: middle;
    text-align: center;
    position: relative;
/*    // height: 50%;
 */    width: 100%;
 line-height:16px;
}

@-moz-document url-prefix() {
    #calendar .event div {
        height: 55%
    }
}

#calendar .event div:nth-child(1) {
    background: #fff;
    color: #333
}

#calendar .event div:nth-child(2) {
    background: #3b98bd;
    border-collapse: collapse
}

/* #calendar .event h4,
#calendar .event h6,
#calendar .event p {
    position: absolute;
    margin: 0 !important;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
} */

#calendar .event h4 {
    font-size: 1rem
}

#calendar .event h6 {
    font-size: 1rem;
    bottom: 0
}

#calendar .event p {
    font-size: .8rem;
/*     line-height: 15px;
 */    text-align: center;
    width: 100%;
    overflow: hidden;
    margin: 0
}

@media (max-width:768px) {
    #calendar .event p {
        height: 100%
    }
    
}

#calendar .event span {
    cursor: default;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0
}

@media (max-width:768px) {
    #calendar {
        width: 100%
    }

    #calendar .days h4 {
        font-size: .8rem
    }

    #calendar .days h6 {
        font-size: .7rem
    }

    #calendar .days td {
        height: 90px
    }

    @-moz-document url-prefix() {
        #calendar .days td {
            height: 90px
        }
    }

    #calendar .title td {
        height: 1em !important
    }

    #calendar .event p {
        font-size: .6rem !important
    }
}

#cookies {
    background: #333;
    color: #fefefe;
    padding-top: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: .9em
}

#cookies .container {
    display: table;
    padding: 0 0 7px 0
}

#cookies .container>div {
    display: table-cell;
    vertical-align: text-bottom
}

#cookies p {
    position: relative;
    top: 4px
}

#cookies p a {
    color: #fefefe !important;
    text-decoration: underline !important;
    -webkit-text-decoration-color: #fefefe !important;
    text-decoration-color: #fefefe !important;
    margin-left: 2px
}

@media (max-width:786px) {
    #cookies .container>div {
        display: table-row;
        text-align: center
    }

    #cookies a.button {
        margin-bottom: 1em !important
    }
}

@media (max-width:992px) {
    #cookies .container {
        padding-left: 1em;
        padding-right: 1em
    }
}

.error-page {
    padding: 0;
    padding-top: 52px;
    min-height: 620px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.error-page .error-page-container {
    text-align: center;
    margin: 0 auto
}

.error-page input[type=password] {
    width: 320px;
    text-align: center
}

.error-page input[type=password]:focus {
    border: 1px solid #ddd
}

.error-page .heading,
.error-page h1 {
    line-height: 1;
    font-size: 30px;
    font-weight: 600;
    color: #333
}

.error-page h2 {
    line-height: 1.61;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333
}

.error-page h3.heading {
    line-height: 1.61;
    font-size: 1.6rem;
    color: #333
}

.error-page p {
    font-size: 1.2rem;
    color: #333
}

.error-page a {
    font-size: 1.2rem
}

.error-page .subheading,
.error-page h5 {
    line-height: 1.61;
    font-weight: 300;
    font-size: 1rem;
    margin: 0
}

.error-page .round {
    background: #fefefe;
    width: 350px;
    height: 350px;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-item-align: center;
    align-self: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #3b98bd;
    color: #fefefe;
    border-radius: 100%;
    box-shadow: 0 2px 3px #777
}

.error-page .round h1 {
    color: #fefefe;
    position: relative;
    font-size: 9em;
    font-weight: 100;
    background: 0 0
}

.error-page .round h5 {
    font-size: 1.1em;
    font-weight: 500;
    padding: 0 3.2em;
    background: 0 0
}

@media (max-width:768px) {
    .error-page {
        min-height: 450px
    }

    .error-page .heading,
    .error-page h1 {
        line-height: 1.61;
        font-size: 1.4rem
    }

    .error-page h2 {
        line-height: 1.61;
        font-size: 1.2rem
    }

    .error-page h3.heading {
        line-height: 1.61;
        font-size: 1.1rem;
        color: #333
    }

    .error-page p {
        font-size: 1rem;
        color: #333
    }

    .error-page a {
        font-size: 1rem
    }
}

.special-days {
/*     padding: 1.25rem .975rem !important
 */}

#prayer-slider #pr-prev {
    position: relative;
    right: -5px
}

#special-days .table-control {
    padding: .15em 1.5em;
    font-weight: 700;
    color: #333;
    background: #f6f6f6;
    border: 1px solid #ddd;
    border-right: 0;
    border-left: 0
}

#special-days .next,
#special-days .prev {
    padding: .15em .4em;
    color: #333;
    background: #f6f6f6;
    border: 1px solid #ddd
}

#special-days #pr-next em,
#special-days #pr-prev em{
    color: #333
}

#special-days .prev {
    border-radius: 3px 0 0 3px
}

#special-days .next {
    border-radius: 0 3px 3px 0
}

#special-days h4 {
    color: #333
}

#special-days h6 small {
    color: #555 !important;
    position: relative;
    top: 4px
}

#special-days #special-days-table td {
    border-bottom: 1px solid #f1f1f1
}

#special-days #special-days-table tr td:nth-child(1) {
    padding-right: 0;
    padding-left: .9em;
    width: 70px;
    height: auto
}

@-moz-document url-prefix() {
    #special-days #special-days-table tr td:nth-child(1) {
        width: auto;
        height: auto
    }
}

#special-days #special-days-table tr td:nth-child(2) {
    padding-left: 0
}

@media (max-width:992px) {
    #special-days #special-days-table tr td:nth-child(1) {
        padding-right: .5em;
        padding-left: .8em;
        width: auto;
        height: auto
    }

    @-moz-document url-prefix() {
        #special-days #special-days-table tr td:nth-child(1) {
            width: auto;
            height: auto
        }
    }
}

#special-days #special-days-table tbody tr:nth-child(even) {
    background-color: #fefefe !important
}

#special-days #special-days-table .date-box {
    width: 70px;
    height: 70px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center
}

#special-days #special-days-table .date-box .title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #0790c9;
    font-weight: 700;
    font-size: .75rem;
    color: #fefefe
}

#special-days #special-days-table .date-box .date {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 2;
    flex: 2;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fefefe;
    font-weight: 300;
    font-size: 1.8rem;
    color: #333;
    width: 100%;
    border: 1px solid #ddd;
    border-top: 0
}

@media (max-width:768px) {
    #special-days #special-days-table .date-box {
        width: 55px;
        height: 55px
    }

    #special-days #special-days-table .date-box .date {
        font-size: 1.3rem
    }

    #special-days #special-days-table .date-box .title {
        font-size: .55rem
    }
}

#special-days #special-days-table .day-details {
    text-align: left
}

#special-days #special-days-table .day-details h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #333
}

#special-days #special-days-table .day-details h4 {
    font-size: .9em;
    font-weight: 700;
    color: #333
}

@media (max-width:992px) {
    #special-days #special-days-table .day-details h2 {
        font-size: 1.3em
    }

    #special-days #special-days-table .day-details h4 {
        font-size: .75em
    }
}

@media (max-width:768px) {
    #special-days #special-days-table .day-details h2 {
        font-size: 1em
    }

    #special-days #special-days-table .day-details h4 {
        font-size: .5em
    }
}

@media (max-width:350px) {
    #special-days #special-days-table .day-details h2 {
        font-size: .7rem
    }

    #special-days #special-days-table .day-details h4 {
        font-size: .6rem
    }
}

#special-days #special-days-table .see-more {
    text-align: right
}

#special-days #special-days-table .see-more a.button {
    background: 0 0 !important;
    color: #3b98bd !important
}

#special-days #special-days-table .see-more a.button:hover {
    background: #3b98bd !important;
    color: #fefefe !important
}

#special-days #special-days-table .see-more a:after {
    content: "\f061";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: lighter;
    color: inherit;
    margin-left: .5em
}

@media (max-width:768px) {
    #special-days #special-days-table .see-more a.button {
        font-size: .8rem !important
    }
}

@media (max-width:400px) {
    #special-days #special-days-table .see-more a.button {
        padding: .45em .7rem !important;
        min-width: auto !important;
        font-size: .7rem !important
    }
}

#special-day h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: .8em !important
}

#special-day p {
    font-size: .9rem;
    color: #333
}

#special-day a:nth-child(2) {
    background: 0 0 !important;
    color: #3b98bd !important;
    margin-left: .5em !important
}

#special-day a:nth-child(2):hover {
    background: #3b98bd !important;
    color: #fefefe !important
}

#special-day #special-day-slider {
    background: #3b98bd;
    color: #fefefe;
    display: table;
    text-align: center;
    padding: 11px 0
}

#special-day #special-day-slider div {
    display: table-row;
    vertical-align: middle;
    text-align: center
}

#special-day #special-day-slider span {
    display: inline-block;
    vertical-align: middle;
    margin: 11px
}

#special-day #special-day-slider em {
    font-size: 2em;
    cursor: pointer;
    color: #fefefe !important
}

#special-day #special-day-slider h5 {
    font-size: 1em;
    font-weight: 600
}

#special-day #special-day-slider h3 {
    font-size: 1.7em;
    font-weight: 700;
    color: #fefefe;
    margin-bottom: 0 !important
}

@media (max-width:992px) {
    #special-day #special-day-slider h5 {
        font-size: .9em
    }

    #special-day #special-day-slider h3 {
        font-size: 1.5em
    }
}

#special-day #special-day-slider .bxslider {
    width: 100%
}

#special-day #special-day-slider .slider-container {
    display: inline-block;
    background-color: rgba(255, 255, 255, .15);
    padding: 20px;
    text-align: center;
    margin-bottom: 7px
}

#special-day #special-day-slider .slider-container h3 {
    font-weight: 400;
    font-size: 1.5em
}

@media (max-width:992px) {
    #special-day #special-day-slider .slider-container h3 {
        font-size: 1.2em
    }
}

#card-location .callout {
    border: 2px solid #3b98bd !important;
    border-radius: 5px !important;
    margin: 5px !important;
    color: #45aa6e !important;
    font-weight: 600 !important;
    background: rgba(120, 198, 58, .05) !important
}

#card-location .callout span {
    color: #3b98bd !important
}

.places {
    padding: .625rem
}

@media (max-width:768px) {
    .places {
        padding: .3125rem .625rem !important
    }
}

.place-title {
    text-align: center;
    height: 210px
}

.address-container {
    padding: .9375rem !important;
    height: 72px
}

.place-name-container {
    height: 75px
}

@media (max-width:768px) {
    .place-name-container {
        margin-bottom: 4px
    }
}

.place-name {
    text-align: center;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: inherit;
    margin: 0 auto;
    font-size: 28px;
    line-height: 36px;
    word-break: break-word;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width:768px) {
    .place-name {
        font-size: 20px;
        line-height: 24px;
        -webkit-line-clamp: 3
    }
}

.place-address {
    text-align: left;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 40px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 20px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

.divider {
    height: 1px;
    border: 0;
    background-color: #eee;
    margin: .625rem 0
}

.place-title-container {
    height: 2.2rem;
    overflow: hidden
}

.description {
    height: 1.4rem;
    overflow: hidden
}

.description p {
    position: relative;
    top: -2px;
    display: block;
    display: -webkit-box;
    max-width: 99%;
    height: inherit;
    font-size: 1rem;
    word-break: break-all;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis
}

#upload {
    margin-right: .5em !important
}

#filename::after {
    display: inline-block;
    content: "\f00c";
    color: #3b98bd;
    font-family: FontAwesome;
    margin-left: 5px;
    width: auto;
    height: inherit;
    display: none
}

#filename.selected::after {
    display: initial
}

@media (max-width:768px) {
    #upload {
        margin-right: .3em !important
    }

    #filename {
        font-size: .9em
    }
}

input[type=file] {
    margin-bottom: 0 !important
}

.fileupload {
    color: #333;
    font-size: .9em;
    position: relative;
    padding-left: 70px
}

@-moz-document url-prefix() {
    .fileupload {
        padding-left: 0
    }
}

.fileupload::-webkit-file-upload-button {
    visibility: hidden
}

.fileupload::-moz-file-upload-button {
    visibility: hidden
}

.fileupload:focus,
a:focus,
body:focus,
button:focus,
html:focus {
    outline: 0
}

.fileupload::before {
    content: 'Choose an Image';
    display: inline-block;
    background: #3b98bd !important;
    border-radius: 100px;
    border: 2px solid #3b98bd !important;
    padding: .3em 1em !important;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fefefe !important;
    font-size: .9rem;
    font-weight: 600 !important;
    transition: all .5s ease;
    cursor: pointer
}

.fileupload:hover::before {
    background: 0 0 !important;
    color: #3b98bd !important
}

.fileupload:active {
    outline: 0
}

.fileupload:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9)
}

#prayer-time-heading {
    display: inherit;
    box-shadow: 0 2px 3px #ccc
}

.navigation li {
    position: relative
}

.navigation li a:hover {
    color: #333 !important;
    font-weight: 700
}

.navigation li.active::after {
    position: absolute;
    right: 0;
    top: .45em;
    color: #3b98bd;
    content: "\f0da";
    font-family: FontAwesome
}

.navigation .active a {
    color: #0790c9 !important;
    font-weight: 700
}

.navigation .active a:hover {
    color: #0790c9 !important
}

.text-body {
    padding: 1.5em 1.5em 0 1.5em !important;
    color: #333
}

.text-body span {
    display: block;
    font-size: 1.1em;
    text-align: center;
    font-weight: 500;
    margin: 2em .5em
}

.text-body p {
    font-size: .9em
}

.text-body p:last-child {
    margin-bottom: 5em
}

.text-body h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: .8em !important
}

.text-body a {
    margin: 1.5em 0 3em 0 !important;
    padding: .7em 2em !important
}

@media (max-width:768px) {
    .text-body p:first-child {
        font-size: .9em
    }

    .text-body p {
        font-size: .8em
    }

    .text-body h3 {
        font-size: initial
    }
}

.info-container {
    text-align: center;
    display: table;
    padding: 0 1.5em;
    width: 100%;
    margin-bottom: 1em
}

.info-box {
    border: 1px solid #eee;
    width: 30% !important;
    margin: 0 10px;
    display: inline-block;
    width: 170px !important;
    height: 170px;
    padding-top: 58px;
    cursor: default;
    transition: all .5s ease
}

.info-box span:first-child {
    display: block;
    font-weight: 500;
    font-size: 2em;
    line-height: 1;
    color: #3b98bd
}

.info-box span {
    color: #333;
    font-size: .9em;
    font-weight: 700
}

@media (max-width:992px) {
    .info-box {
        width: 140px !important;
        height: 140px;
        padding-top: 47px;
        margin: 7px
    }

    .info-box span:first-child {
        font-size: 1.8em;
        line-height: .9
    }

    .info-box span {
        font-size: .8em
    }
}

@media (max-width:768px) {
    .info-box {
        display: block;
        margin: 7px auto
    }
}

.info-box:hover {
    background: #3b98bd;
    color: #fefefe
}

.info-box:hover span {
    color: #fefefe
}

.contact-us {
    color: #333;
    font-size: .9em;
    padding: 0 1.6em .5em 1.6em;
    display: table;
    width: 100%
}

.contact-us div {
    display: table-cell
}

@media (max-width:768px) {
    .contact-us div {
        display: table-row;
        text-align: center
    }

    .contact-us div a {
        margin-bottom: 1.5em !important
    }

    .contact-us div p {
        font-size: .9em
    }
}

.help {
    color: #333;
    font-size: .9em;
    display: table;
    width: 100%
}

.help div {
    display: table-cell
}

.help p {
    margin-bottom: 0 !important
}

.help a {
    margin-bottom: 1em !important
}

@media (max-width:768px) {
    .help div {
        display: table-row;
        text-align: center
    }
}

.accept span {
    color: #333
}

.accept span span {
    display: inline !important;
    color: #3b98bd !important
}

.accept input[type=checkbox] {
    display: none;
    line-height: 1.4;
    transition: all .3s ease
}

.accept input[type=checkbox]+label {
    position: relative;
    line-height: 1.4;
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    margin: 0 2px 0 10px;
    vertical-align: middle;
    background-color: transparent;
    border: 2px solid #3b98bd;
    cursor: pointer;
    transition: all .3s ease
}

.accept input[type=checkbox]+label::before {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -1px;
    content: "\f00c";
    font-family: FontAwesome;
    opacity: 0;
    color: #3b98bd;
    font-size: 1em
}

.accept input[type=checkbox]+label span {
    display: inline-block;
    cursor: default;
    width: 600px;
    transition: all .3s ease
}

.accept input[type=checkbox]+label span {
    margin-left: 35px
}

.accept input[type=checkbox]+label span span {
    margin-left: 0
}

.accept input[type=checkbox]:checked+label {
    background-color: #3b98bd;
    transition: all .3s ease
}

.accept input[type=checkbox]:checked+label::before {
    color: #fefefe;
    transition: all .3s ease;
    opacity: 1
}

.ad-form {
    padding: 1.3em 2em 1.3em 2em !important
}

@media (max-width:768px) {
    .ad-form {
        padding: .625rem !important
    }
}

.help {
    margin-bottom: 2.5em
}

.help p {
    font-size: 1em
}

.help a {
    margin-left: 2em !important;
    padding: 0 !important
}

.help span {
    display: inline;
    margin: 0 5px
}

@media (max-width:768px) {
    .help {
        margin-bottom: 1.5em
    }

    .help div {
        display: table-row;
        text-align: center
    }

    .help p {
        margin-top: .5em
    }

    .help a {
        margin-left: 1em !important;
        margin-right: 1em !important
    }

    .help span {
        font-size: .8em
    }
}

.local-prayers {
    font-size: .9rem;
    margin-bottom: 0
}

.local-prayers td {
    height: 1.5em;
    color: #333
}

.local-prayers tr:first-child {
    font-weight: 600
}

@media (max-width:768px) {
    .local-prayers td {
        font-size: .8em
    }
}

.image-upload {
    padding: 5px;
    border: 1px solid #cacaca;
    display: table;
    width: 100%
}

.image-upload div {
    display: table-cell
}

.image-upload a.button {
    border-radius: 5px;
    background: #ddd !important;
    border-color: #ddd !important;
    color: #333 !important
}

.image-upload a.button:hover {
    color: #474747 !important
}

@media (max-width:768px) {
    .image-upload div {
        display: table-row;
        text-align: center
    }
}

#hijriMonth {
    font-size: .85em
}

.switch {
    float: right
}

.date-convertor {
    text-align: center;
    padding-top: 30px
}

.date-convertor .date-convertor-title {
    font-weight: 700;
    font-size: .9em;
    color: #333
}

.date-convertor .date-convertor-selectors {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 35px 0 35px;
    margin-bottom: 10px
}

.date-convertor .date-convertor-selectors select {
    font-weight: 600;
    margin: 0 7px;
    color: #333
}

.date-convertor .date-convertor-selectors select:nth-child(2) {
    width: 200%
}

.date-convertor .date-convertor-button {
    padding: .5em 1.4em;
    font-weight: 700;
    background: #3b98bd;
    border: 2px solid #318eb3;
    color: #fefefe;
    border-radius: 3px;
    margin-bottom: 30px;
    transition: all .3s ease
}

.date-convertor .date-convertor-button:hover {
    background: 0 0;
    color: #3b98bd
}

.date-convertor .date-convertor-button:focus {
    outline: 0
}

.date-convertor .date-converted .date-converted-date,
.date-convertor .date-converted .date-converted-day {
    display: block;
    color: #333;
    font-size: 1.8em
}

.date-convertor .date-converted .note {
    font-size: .8em;
    color: #5b5b5b
}

.date-convertor hr {
    border-color: #e7e7e7;
    margin-bottom: 0
}

.date-convertor .actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 0
}

.date-convertor .actions a {
    margin: 0 6px !important
}

@media (max-width:768px) {
    .date-convertor .date-convertor-selectors {
        padding: 10px 20px 0 20px
    }

    .date-convertor .date-convertor-selectors select {
        margin: 0 4px
    }

    .date-convertor .actions {
        padding: 13px 0;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 auto;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        width: auto
    }

    .date-convertor .actions a {
        font-size: .8em;
        margin: 6px 0 !important
    }
}

@media (max-width:768px) {

    .date-convertor .date-converted .date-converted-date,
    .date-convertor .date-converted .date-converted-day {
        font-size: 1.2rem
    }
}

.slider-controls {
    margin-top: .6em
}

.slider-controls #sdl-prev {
    position: relative;
    right: -5px
}

.accordion {
    margin: 2.5% 0
}

.accordion .accordion-title {
    font-size: .9em;
    font-weight: 600
}

.accordion .accordion-title:hover {
    color: #333 !important
}

.tabs .tabs-title {
    position: relative;
    left: -1px
}

.tabs .tabs-title a {
    font-size: .9em !important
}

.tabs .tabs-title a:hover {
    color: #333 !important
}

.tabs-content span {
    font-size: .8em
}

.tabs-content code {
    font-size: .8em;
    word-break: break-word
}

.tabs-content span {
    font-size: .8em
}

.tabs-content code {
    font-size: .8em;
    word-break: break-word
}

.icon {
    position: relative;
    padding: .5rem 0
}

.icon a {
    color: #fff
}

.nav-right .twitter-typeahead {
    float: right
}

.tt-suggestion {
    text-align: left
}

.tt-cursor,
.tt-suggestion:hover {
    background: #3b98bd;
    color: #fff
}

.search-result-item {
    display: block;
    width: 100%;
    white-space: nowrap
}

.search-result-item:hover {
    background: #3b98bd;
    color: #fff
}

.pagination li {
    display: inline-block;
    font-size: .9rem
}

.pagnation a:hover {
    background: #3b98bd
}

.pagination .current {
    padding: 0;
    background: #3b98bd;
    border-radius: 4px
}

.pagination .current a {
    font-weight: 700;
    color: #fff
}

h4.zero-margin {
    color: #333
}

[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea {
    border-radius: 4px
}

.inactive {
    cursor: default
}

.inactive em {
    color: #ddd !important
}

#dvLoading {
    background: #fff url(../../../../static/live162/images/loading.gif) no-repeat center center;
    position: absolute;
    opacity: .9;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 100
}

#loader {
    background: #fff url(../../../../static/live162/images/loading.gif) no-repeat center center;
    background-size: contain;
    position: relative;
    opacity: 1;
    height: 40px;
    width: 100%;
    margin: 0
}

#calendar-slider,
#monthly-prayer-slider,
#place-list,
#special-days-slider,
.placelist {
    position: relative
}

.table {
    padding: 1.25rem
}

@media (max-width:768px) {
    .table {
        padding: .625rem
    }
}

.table-controller {
    display: table;
    padding: 1.25rem .975rem;
    width: 100%
}

.table-controller .controls,
.table-controller .headings {
    display: table-cell;
    vertical-align: middle
}

.table-controller .controls {
    padding: 0;
    text-align: right
}

.table-controller .headings h4 {
    color: #333;
    text-transform: capitalize
}

.table-controller .headings span {
    color: #0790c9;
    font-weight: 600
}

@media (max-width:992px) {

    .table-controller .controls,
    .table-controller .headings {
        display: table-row;
        text-align: center;
        padding: .325rem 0
    }

    .table-controller .headings h4 {
        font-size: 1rem
    }

    .table-controller .headings span {
        font-size: .9rem
    }
}

.selector-container {
    width: 100%;
    overflow-x: scroll
}

.selectors {
    margin-left: -.625rem;
    width: calc(100% + 100px)
}

.selectors div {
    display: inline-block
}

.city-search,
.searcher .twitter-typeahead {
    display: inline !important;
    margin-bottom: 0;
    color: #333;
    font-size: .8rem !important
}

.city-search.tt-hint {
    display: none !important
}

.callout.small {
    position: fixed;
    z-index: 200;
    width: 100%;
    top: 52px;
    left: 0;
    opacity: .99;
    border: 1px solid rgba(10, 10, 10, .1);
    color: #fff;
    background: #3b98bd
}

.callout.small p {
    font-size: 1.2rem;
    font-weight: 100;
    margin-bottom: 0
}

.callout.small .close-button {
    color: #fff
}

.tabs-title>a[aria-selected=true] {
    background: #fff !important
}

.tabs .tabs-title a {
    background: #eee
}

.tabs .tabs-title a:hover {
    background: #e9e9e9
}

table.prayer-widget tr td {
    height: 60px;
    font-size: .8rem
}

table.prayer-widget select,
table.prayer-widget tr td input[type=text] {
    margin: 0 !important;
    font-size: .8rem
}

table.prayer-widget tr td {
    height: 60px;
    font-size: .8rem
}

table.prayer-widget select,
table.prayer-widget tr td input[type=text] {
    margin: 0 !important;
    font-size: .8rem
}

.popup-account,
.popup-newsletter {
    overflow: visible;
    width: 600px;
    height: auto;
    background: #3b98bd;
    padding: 20px;
    text-align: center;
    border-radius: 3px;
    border: 0;
    margin: 0 auto
}

@media (max-width:768px) {

    .popup-account,
    .popup-newsletter {
        width: 90%
    }
}

.popup-account .close-button,
.popup-newsletter .close-button {
    right: 1.6rem;
    top: 1rem
}

.popup-account .newsletter-wrapper,
.popup-newsletter .newsletter-wrapper {
    border: 1px solid #fff;
    height: 100%;
    padding: 30px
}

@media (max-width:768px) {

    .popup-account .newsletter-wrapper,
    .popup-newsletter .newsletter-wrapper {
        padding: 20px
    }
}

.popup-account .newsletter-wrapper p.popup-title,
.popup-newsletter .newsletter-wrapper p.popup-title {
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase
}

.popup-account .newsletter-wrapper p.popup-title-dark,
.popup-newsletter .newsletter-wrapper p.popup-title-dark {
    font-size: 1.6rem;
    color: #333;
    text-transform: uppercase
}

.popup-account .newsletter-wrapper .detail,
.popup-newsletter .newsletter-wrapper .detail {
    display: block;
    padding: 0 20px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

@media (max-width:768px) {

    .popup-account .newsletter-wrapper .detail,
    .popup-newsletter .newsletter-wrapper .detail {
        font-size: .9rem
    }
}

.popup-account .newsletter-wrapper span,
.popup-newsletter .newsletter-wrapper span {
    color: #fff
}

.popup-account .newsletter-wrapper .newsletter-input,
.popup-newsletter .newsletter-wrapper .newsletter-input {
    padding: 7px 12px;
    height: 55px;
    color: #777;
    background: #fff;
    border-radius: 4px;
    display: inline-block;
    width: 50%;
    margin: 1rem .5rem;
    border: 0
}

@media (max-width:768px) {

    .popup-account .newsletter-wrapper .newsletter-input,
    .popup-newsletter .newsletter-wrapper .newsletter-input {
        display: block;
        width: 100%;
        margin: 1rem auto
    }
}

.popup-account .newsletter-wrapper .newsletter-submit,
.popup-newsletter .newsletter-wrapper .newsletter-submit {
    padding: 7px 12px;
    height: 55px;
    background: #3b98bd;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    display: inline-block;
    width: 35%;
    margin: 1rem .5rem;
    transition: all .3s ease
}

@media (max-width:768px) {

    .popup-account .newsletter-wrapper .newsletter-submit,
    .popup-newsletter .newsletter-wrapper .newsletter-submit {
        display: block;
        width: 100%;
        margin: 0 auto
    }
}

.popup-account .newsletter-wrapper .newsletter-submit:focus,
.popup-newsletter .newsletter-wrapper .newsletter-submit:focus {
    outline: 0
}

.popup-account .newsletter-wrapper .newsletter-submit:hover,
.popup-newsletter .newsletter-wrapper .newsletter-submit:hover {
    background: #0f97cf
}

.popup-account .newsletter-wrapper .newsletter-close,
.popup-newsletter .newsletter-wrapper .newsletter-close {
    color: #fff;
    font-size: 1rem;
    border-bottom: 1px solid #fff;
    display: inline-block;
    margin: 0 auto;
    margin-top: 1.5rem;
    cursor: pointer
}

@media (max-width:768px) {

    .popup-account .newsletter-wrapper .newsletter-close,
    .popup-newsletter .newsletter-wrapper .newsletter-close {
        font-size: .9rem
    }
}

.popup-account .newsletter-wrapper .btn-close,
.popup-newsletter .newsletter-wrapper .btn-close {
    position: absolute;
    top: 27px;
    right: 30px;
    cursor: pointer
}

.popup-account .newsletter-wrapper .btn-close img,
.popup-newsletter .newsletter-wrapper .btn-close img {
    height: 1rem;
    width: 1rem
}

.popup-account {
    background: #fefefe
}

.popup-account .newsletter-input,
.popup-account .newsletter-wrapper {
    border: 1px solid #ddd !important
}

.popup-account .close-button,
.popup-account .newsletter-wrapper h1,
.popup-account .newsletter-wrapper span,
.popup-account span.detail,
.popup-account span.newsletter-close {
    color: #333 !important
}

.popup-newsletter::before {
    content: '\00a0';
    width: 127px;
    height: 127px;
    background: url(../../../../static/live162/images/icon-subscribe.png);
    position: absolute;
    top: -32px;
    left: -32px
}

@media (max-width:768px) {
    .popup-newsletter::before {
        background: 0 0
    }
}

.popup-newsletter.sub-alerts::before {
    content: '';
    width: 0;
    height: 0
}

.dimmer {
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: rgba(0, 0, 0, .8);
    overflow: hidden
}

.popup-inspirations {
    width: 627px;
    height: 315px;
    border-radius: 3px;
    background: url(../../../../static/live162/images/popup-inspirations.png) 0 0 no-repeat;
    background-position: center;
    border: 0
}

a.download-inspirations {
    width: 130px;
    height: 39px;
    position: absolute;
    bottom: 22px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

a.download-inspirations:hover {
    background-color: rgba(255, 255, 255, .1)
}

.popup-inspirations .close-button {
    color: #fff
}

@media (max-width:630px) {
    .popup-inspirations {
        width: 480px !important;
        height: 241px;
        background-size: contain
    }

    a.download-inspirations {
        width: 100px;
        height: 30px;
        bottom: 18px
    }
}

@media (max-width:480px) {
    .popup-inspirations {
        width: 320px !important;
        height: 161px;
        background-size: contain
    }

    a.download-inspirations {
        width: 68px;
        height: 21px;
        bottom: 11px
    }
}

.ad {
    cursor: pointer
}

.ad-container {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 1.25rem
}

@media (max-width:992px) {
    .ad-container {
        margin: 0 .625rem;
        margin-bottom: .625rem;
        width: auto
    }

    .ad-container img {
        width: auto
    }
}

.ad-728 {
    width: 728px;
    height: 90px;
    margin: 0 auto;
    background-color: #fff;
    background-size: cover
}

@media (max-width:768px) {
    .ad-728 {
        width: inherit
    }
}

.empty {
    padding: .625rem !important;
    color: #333;
    text-align: left;
    width: 100% !important;
    font-size: .9rem
}

.ad-leaderboard {
    max-height: 100px;
    text-align: center;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .ad-leaderboard {
        height: auto;
        margin-bottom: .625rem
    }
}

@media (max-width:320px) {
    .ad-leaderboard {
        max-height: 100px
    }
}

.ad-medium-rectangle {
    width: 305px;
    height: 255px;
    margin: 1.5rem auto 1.25rem auto;
    clear: both
}

.error {
    position: relative;
    color: #e74c3c;
    font-weight: 600
}

.search-state {
    font-style: normal !important;
    font-style: .9rem !important
}

.calculation-method {
    font-size: .9rem !important;
    line-height: 20px !important
}

@media (max-width:768px) {
    .calculation-method {
        font-size: .8rem !important
    }
}

.page-title {
    text-align: center;
    color: #333;
    font-weight: 500;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.page-title h1 {
    font-size: 1.6rem
}

@media (max-width:768px) {
    .page-title h1 {
        font-size: 1.4rem
    }
}

.advertise .page-title {
    margin-bottom: -2rem !important;
    margin-top: 2rem !important
}

@media (max-width:768px) {
    .advertise .text-body span {
        font-size: .9rem
    }
}

.map {
    width: 87%;
    margin: 0 auto;
    height: auto;
    margin-top: 2rem;
    position: relative
}

.map img {
    width: 100%
}

.pin {
    position: absolute;
    width: 100px;
    height: 70px;
    background: url(../../../../static/live162/images/pin.png) no-repeat 0 0;
    background-size: contain;
    background-position: center;
    transition: all .3s ease
}

@media (max-width:320px) {
    .pin {
        width: 75px;
        height: 60px
    }
}

.pin::after {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    color: #fff;
    font-weight: 700;
    font-size: .9rem
}

.pin.north-america {
    top: 10%;
    left: 11%
}

.pin.north-america::after {
    content: '48%'
}

.pin.europe {
    top: 3%;
    left: 45%
}

.pin.europe::after {
    content: '16%'
}

.pin.middle-east {
    top: 14%;
    left: 57%
}

.pin.middle-east::after {
    content: '27%'
}

.pin.asia {
    top: -5%;
    left: 73%
}

.pin.asia::after {
    content: '6%'
}

@media (max-width:992px) and (min-width:768px) {
    .pin.north-america {
        top: 6.1%;
        left: 9.5%
    }

    .pin.europe {
        top: -1.5%;
        left: 45%
    }

    .pin.middle-east {
        top: 9.5%;
        left: 57%
    }

    .pin.asia {
        top: -10.5%;
        left: 70%
    }
}

@media (max-width:768px) {
    .pin.north-america {
        top: -4%;
        left: 5.5%
    }

    .pin.europe {
        top: -12%;
        left: 39%
    }

    .pin.middle-east {
        top: 0;
        left: 53%
    }

    .pin.asia {
        top: -20%;
        left: 70%
    }
}

.subscribers {
    text-align: center;
    font-size: .9rem;
    color: #333;
    margin-bottom: 2rem
}

.subscribers em {
    font-size: 1.3rem;
    margin-right: .5rem;
    vertical-align: text-bottom
}

.apps {
    text-align: center
}

.apps img {
    width: 230px;
    height: auto;
    margin: 1rem auto
}

.apps h1,
.apps h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333
}

.apps ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem auto;
    color: #333;
    font-size: .8rem
}

.apps ul li {
    margin: .2rem auto
}

.stats {
    text-align: center;
    margin: 3rem auto;
    color: #333
}

.stats .stats-icon {
    display: inline-block;
    margin: 0 2px .5rem 2px
}

.stats .stats-icon.male {
    height: 50px;
    width: 18px
}

.stats .stats-icon.female {
    height: 50px;
    width: 20px
}

.stats .male {
    background: url(../../../../static/live162/images/male.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.stats .male.selected {
    background: url(../../../../static/live162/images/male-selected.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.stats .female {
    background: url(../../../../static/live162/images/female.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.stats .female.selected {
    background: url(../../../../static/live162/images/female-selected.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.stats span {
    display: block
}

.stats .female-users,
.stats .male-users {
    margin: 1rem auto
}

.stats .male-users .highlighted {
    color: #05bbc6
}

.stats .female-users .highlighted {
    color: #a3d7b1
}

.chart {
    height: 300px
}

.chart .canvasjs-chart-credit {
    display: none
}

.chart #chartContainer {
    width: 90%;
    height: inherit;
    margin: 0 auto
}

.rates {
    color: #333;
    text-align: center;
    margin: 2rem auto;
    padding: 0 150px
}

.rates h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem !important
}

.rates span {
    font-size: .9rem
}

@media (max-width:768px) {
    .rates {
        padding: 0 1.25rem
    }
}

.ads {
    color: #333;
    margin-top: 0;
    text-align: center;
    padding: 0 20px
}

.ads h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem !important
}

.ads h4 {
    font-size: .9rem;
    font-weight: 600
}

.ads span {
    font-weight: 300;
    font-size: 1rem
}

.ads .ad-970 {
    width: 100%;
    height: 90px
}

.ads .ad-728 {
    width: 90%;
    height: 90px
}

.ads .ad-468 {
    width: 468px;
    height: 60px
}

.ads .ad-320 {
    width: 320px;
    height: 100px
}

.ads .ad-300 {
    width: 300px;
    height: 250px
}

@media (max-width:480px) {
    .ads .ad-468 {
        width: 80%
    }

    .ads .ad-320 {
        width: 75%
    }

    .ads .ad-300 {
        width: 70%
    }
}

.ads .ad {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin: 0 auto 1rem auto;
    border: 1px dashed #aaa
}

.contact {
    text-align: center;
    padding: 0 20px;
    color: #333;
    margin: 2rem 0;
    margin-top: 0
}

.contact h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem !important
}

.contact span {
    font-size: .9rem
}

@media (max-width:768px) {
    .contact h4 {
        font-size: 1.2rem
    }

    .contact .button.circular {
        font-size: 1rem;
        padding: 10px 20px !important
    }
}

.privacy-policy {
    padding: 0 1.25rem !important;
    color: #333
}

@media (max-width:768px) {
    .privacy-policy {
        padding: 0 .625rem !important
    }
}
.privacy-policy h1 {
    font-size: 22px !important;
    font-weight: 600
}

@media (max-width:768px) {
    .privacy-policy h1 {
        font-size: 20px !important;
    }
}

.privacy-policy h2 {
    font-size: 20px !important;
    font-weight: 600
}

@media (max-width:768px) {
    .privacy-policy h2 {
        font-size: 18px !important
    }
}
.privacy-policy h3 {
    font-size: 18px !important;
    font-weight: 600
}

@media (max-width:768px) {
    .privacy-policy h3 {
        font-size: 16px !important
    }
}
.privacy-policy p, .privacy-policy ul li {
    font-size: 14px !important
}
.privacy-policy .page-title {
    margin: 2rem 0 !important;
    font-size: 1.6rem
}

@media (max-width:768px) {
    .privacy-policy .page-title {
        font-size: 1.2rem
    }
}

.terms {
    padding: 0 1.25rem !important;
    color: #333
}

@media (max-width:768px) {
    .terms {
        padding: 0 .625rem !important
    }
}

.terms h1 {
    font-size: 1.6rem;
    font-weight: 600
}

@media (max-width:768px) {
    .terms h1 {
        font-size: 1.2rem
    }
}

.terms h2 {
    font-weight: 1.4rem;
    font-weight: 600
}

@media (max-width:768px) {
    .terms h2 {
        font-size: 1rem
    }
}

.terms p {
    font-size: .9rem
}

@media (max-width:768px) {
    .terms p {
        font-size: .8rem
    }
}

.terms .page-title {
    margin: 2rem 0 !important;
    font-size: 1.6rem
}

@media (max-width:768px) {
    .terms .page-title {
        font-size: 1.2rem
    }
}

.terms ol li {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600
}

@media (max-width:768px) {
    .terms ol li {
        font-size: .8rem
    }
}

.banner {
    display: table;
/* 	background: linear-gradient(to right, #59be82, #3b98bd);
 */    position: relative;
    z-index: 10;
    min-height: 334px;
    background-image:url(../../../../static/live162/images/bg-footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media (max-width:768px){
	.banner{
	background-image:url(../../../../static/live162/images/bg-footer-mob.png);
	    min-height: 500px;
	
	}
	.banner-links{
		    padding: 24px 0;
		    min-height: unset !important;
	}
	.banner-links .xl {
		    max-width: unset !important;
		}
	.banner-links .download-buttons {
       margin: 1rem 0;
	    display: flex;
	    flex-wrap: wrap;
	    gap: 12px;
	    justify-content: center;
	}
	
}
.banner-links{
	    min-height: 334px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* .banner .banner-image,
.banner .banner-links {
    display: table-cell;
    vertical-align: middle
} */

.banner-links p.banner-title {
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0
}

.banner-links .xl {
font-style: normal;
font-weight: 700;
font-size: 28.5443px;
line-height: 43px;
    max-width: 50%;
}

.banner-links .download-buttons {
    margin: 1rem 0;
    display:flex;
}

.banner-links .download-buttons a {
    
    margin-right: .5rem
}

.banner-links a.learn-more {
    color: #fff;
        padding: 8px 0;
    width: 138px;
    text-align: center;
    background: #05A88B;
border-radius: 4.99526px;
}

.banner-image {
    height: 260px;
    overflow: hidden;
    vertical-align: bottom
}

.banner-image img {
    width: 350px
}

@media (max-width:992px) {
   /*  .banner {
        padding: 50px 0
    }
 */
    .banner-links {
        width: 100%;
        text-align: center
    }

   /*  .banner-links .download-buttons img {
        margin: .25rem
    }
 */
    .banner-links .download-buttons .download-button {
        margin: .25rem
    }

    .banner-image,
    .banner-image img {
        display: none !important
    }
}

/* @media (max-width:370px) {
    .banner-links .download-buttons img {
        margin: .625rem
    }
}
 */
.footer-banner {
    width: 330px;
    height: 180px;
    background-color: #fff;
    position: relative;
    overflow: hidden
}

@media (max-width:360px) {
    .footer-banner {
        width: 100%;
        height: 165px
    }
}

@media (max-width:400px) {
    .footer-banner {
        margin: 0 auto
    }
}

.banner-text,
.footer-banner #newsletter {
    position: absolute
}

.banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b98bd;
    text-align: center;
    width: 100%;
    padding: 0 12px;
    top: 20px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.footer-banner #newsletter {
    font-size: 60px;
    top: 50px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.search-tooltip {
    float: right;
    border-bottom: 0 !important;
    font-weight: 400 !important;
    font-size: .9rem;
    z-index: 300
}

@media (max-width:768px) {
    .search-tooltip {
        width: calc(100% - 30px)
    }
}

.tooltip {
    background: #3b98bd !important;
    font-weight: 700;
    border-radius: 3px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .2);
    z-index: 300
}

.about {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../../../../static/live162/images/about-bg.jpg) no-repeat 0 0;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1
}

.about-container {
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all .4s ease-in-out
}

@media (max-width:768px) {
    .about-container {
        margin-bottom: .625rem
    }
}

.about-intro {
    padding: 30px;
    background: #3b98bd
}

.about-intro h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff
}

.about-intro p {
    font-size: 1rem;
    color: #fff;
    display: table-cell;
    width: 60%
}

.about-intro .if-logo {
    display: table-cell;
    background: url(../../../../static/live162/images/if-logo.png) no-repeat right bottom;
    background-size: contain !important
}

.about-cities {
    text-align: center;
    background: #474747;
    padding: 50px 20px
}

.about-cities span {
    color: #fff;
    display: block;
    font-size: 18px
}

.about-cities span.number {
    font-size: 48px;
    font-weight: 300
}

.about-follow {
    background: rgba(255, 255, 255, .9);
    text-align: center;
    padding: 20px 0
}

.about-follow h2 {
    color: #3b98bd;
    font-size: 30px;
    font-weight: 300
}

.about-social-icons {
    background: #3b98bd;
    padding: 17px 0;
    text-align: center;
    position: relative;
    display: table;
    width: 100%
}

.about-social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    border: 1px solid #fff
}

.about-social-icons .social-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    color: #fff;
    font-size: 20px;
    vertical-align: middle
}

.about-social-icons a:nth-child(1) {
    border-right: 0
}

.about-social-icons a:nth-child(3) {
    border-left: 0
}

.about-feeds {
    padding: 120px 20px;
    background: rgba(255, 255, 255, .975);
    color: #333;
    text-align: center
}

.about-contact {
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, .9);
    color: #333
}

.about-contact span {
    display: block;
    font-size: 18px
}

.about-contact span.hello {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 1rem
}

.athanW-container {
    position: relative;
    margin-bottom: 1.25rem;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: -160px;
    transition: all .4s ease-in-out
}

@media (max-width:768px) {
    .athanW-container {
        margin-bottom: .625rem
    }
}

.athanW-intro {
    padding: 30px;
    padding-top: 0;
    background: #fefefe
}

.athanW-intro h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #333
}

.athanW-intro h2 {
    font-size: 1.5rem;
    font-weight: 100;
    color: #3d3d3d;
    position: relative;
    left: 4px;
    top: -4px
}

.athanW-intro div {
    display: table-cell;
    width: 50%;
    font-size: .9rem;
    color: #333;
    vertical-align: middle
}

.athanW-intro p {
    font-size: .9rem;
    color: #333
}

.athanW-intro .athan-desktop {
    display: table-cell;
    height: 200px;
    background: url(https://www.islamicfinder.org/static/live162/img/athanWindows/windows.png) no-repeat right bottom;
    background-size: contain
}

.athanW-intro .athan-mobile {
    height: 280px;
    width: 150px !important;
    position: absolute;
    right: 0;
    top: 0;
    background: url(https://www.islamicfinder.org/static/live162/img/athanWindows/mobile.png) no-repeat left 38px;
    background-size: contain
}

.athanW-intro .athan-mobile a {
    margin-left: 8px
}

.athanW-intro.mobile {
    background: #fcfcfc;
    position: relative;
    overflow: hidden
}

.athanW-intro.mobile div {
    margin-top: 1.25rem;
    display: block;
    width: 70%;
    font-size: .9rem;
    color: #333;
    vertical-align: middle
}

.mobile-info {
    padding: 30px;
    background: #fff
}

.mobile-info h3 {
    font-size: 1.3rem;
    font-weight: 100;
    color: #474747
}

.mobile-info h4 {
    margin-top: 1.25rem !important;
    font-size: 1.2rem;
    font-weight: 100;
    color: #474747
}

.mobile-info p {
    font-size: .9rem;
    color: #3d3d3d
}

.mobile-info ul {
    margin: .625rem;
    color: #474747;
    font-size: .9rem;
    list-style-type: none
}

.mobile-info a {
    display: block;
    font-size: .9rem;
    text-decoration: underline;
    color: #333;
    margin-bottom: .3125rem
}

@media (max-width:768px) {
    .athanW-intro .athan-mobile {
        height: 280px;
        width: 150px !important;
        position: relative;
        margin: 0 auto;
        display: block;
        background: url(https://www.islamicfinder.org/static/live162/img/athanWindows/mobile.png) no-repeat center 60px;
        background-size: contain
    }

    .athanW-intro.mobile {
        background: #fcfcfc;
        position: relative;
        overflow: hidden
    }

    .athanW-intro.mobile div {
        margin-top: 0;
        top: 20px;
        display: block;
        width: 100%;
        font-size: .9rem;
        color: #333;
        vertical-align: middle
    }

    .athanW-intro.mobile .athan-mobile a {
        margin-left: auto
    }

    .athanW-intro h2 {
        margin-top: -1rem !important
    }
}

.athanW-tableHeader {
    background: #3b98bd;
    width: 200px;
    height: 170px;
    padding: 40px 30px;
    color: #fff;
    position: relative;
    z-index: 100
}

.athanW-tableHeader h2 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    width: 150px;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle
}

.athanW-tableHeader .tableColumns {
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 70%;
    position: relative
}

.athanW-tableHeader .tableColumns div {
    position: absolute;
    margin: 0 auto;
    width: 190px;
    padding: 20px;
    display: table-cell;
    vertical-align: middle;
    background: #45aa6e;
    top: -10px
}

.athanW-tableHeader .tableColumns div span {
    display: block
}

.athanW-tableHeader .tableColumns div:nth-child(1) {
    right: 200px
}

.athanW-tableHeader .tableColumns div:nth-child(2) {
    right: 0
}

.athanW-tableHeader .tableColumns .features {
    position: absolute;
    left: 0;
    top: 112px;
    background: #fff;
    text-align: center;
    width: 100%;
    border: 1px solid #ddd
}

.athanW-tableHeader .tableColumns .features a {
    font-size: .6rem;
    font-weight: 600
}

.athanW-tableHeader .tableColumns .features .details {
    position: relative;
    top: 10px;
    background: #fff;
    color: #3b98bd
}

.athanW-tableHeader .tableColumns .features .details em {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.athan-table {
    position: relative;
    background: #fff
}

.filler {
    position: absolute;
    height: 170px;
    width: 100%;
    top: 0;
    left: 0;
    background: #3b98bd
}

.plan {
    direction: rtl;
   font-size: 14px;
    
}

.price {
    font-size: 24px;
    font-weight: 600
}

.featuresTable {
    padding: 10px 20px;
    position: relative;
    z-index: 0;
    top: -160px;
    color: #333
}

.featuresTable table,
.featuresTable tbody,
.featuresTable thead {
    border: 0
}

.featuresTable thead tr td {
    width: 33%;
    padding: 20px 0;
    border-bottom: 0;
    text-align: center;
    vertical-align: middle;
    background: #ffffff;
    color: #676767;
    z-index: 400
}

.featuresTable table tbody tr td:nth-child(even) {
    border: 1px solid #ddd;
    border-top: 0;
    text-align: center
}

.featuresTable table tbody tr {
    border-bottom: 1px solid #ddd
}

.featuresTable table tr td.separation {
    width: 0;
    background: 0 0;
    visibility: hidden
}

.featuresTable tbody tr.downloadButtons td:nth-child(1),
.featuresTable thead tr td:nth-child(1) {
    visibility: hidden
}

.featuresTable tbody tr td {
    width: 30%;
    background: #fff;
    height: 40px
}

.featuresTable tbody tr.downloadButtons td {
    text-align: center;
    height: 60px
}

.featuresTable tbody tr.downloadButtons td span {
    font-size: .6rem
}

.featuresTable span {
    display: block
}

.featuresTable span.trig-popup {
    display: inline-block
}

.featuresTable tbody tr.appFeatures {
    font-size: .7rem
}

.athan-java {
    padding: 20px 10px;
    background: #fcfcfc;
    width: 100%;
    text-align: center;
    font-size: .9rem;
    color: #333
}

.athan-java a {
    text-decoration: underline;
    font-weight: 700
}

input.athan1 {
    font-size: .6rem
}

.downloads-menu {
    width: 166px !important
}

.downloads-menu ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0
}

.downloads-menu ul a li {
    font-size: .8rem;
    padding: 5px 0;
    width: 100%
}

.downloads-menu-windows {
    width: 130px !important
}

.downloads-menu-windows ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0
}

.downloads-menu-windows ul a li {
    font-size: .8rem;
    padding: 5px 0;
    width: 100%
}

@media (max-width:768px) {
    .athanW-intro {
        padding: 30px;
        padding-top: 0;
        text-align: center
    }

    .athanW-intro h1 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem !important
    }

    .athanW-intro div {
        display: table-row;
        text-align: center;
        padding: 10px
    }

    .athanW-intro .athan-desktop {
        display: block;
        width: inherit;
        background-position: center bottom;
        margin-top: .625rem
    }

    .athanW-intro p {
        text-align: center;
        margin-top: 1rem
    }

    .athan-table {
        height: auto
    }

    .athanW-tableHeader {
        width: 100%;
        height: auto;
        text-align: center
    }

    .athanW-tableHeader h2 {
        width: inherit;
        display: inline-block
    }

    .athan-tableHeader {
        width: 100%;
        padding: 40px 30px
    }

    .filler {
        display: none
    }

    .featuresTable {
        padding: 5px;
        top: 0
    }

    .featuresTable table tr td.separation {
        display: none
    }

    .featuresTable span.plan {
        display: none
    }

    .featuresTable span.price {
        font-size: 1.4rem
    }

    .featuresTable table tbody tr.downloadButtons {
        display: none
    }

    .featuresTable table tr td.separation {
        display: none
    }

    .featuresTable table tr td:nth-child(even) {
        width: 16%
    }
}

#accord {
    list-style: none;
    margin-left: 0 !important;
    padding: 0;
    height: 270px;
    width: 100%;
    margin: 0 0 0 11px;
    overflow: hidden;
    border: 10px solid #fff;
    background: #fff
}

#accord .panel {
    float: left;
    display: block;
    height: 270px;
    width: 44px;
    overflow: hidden;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5em
}

#accord .panel.active {
    width: 80%
}

#accord .panelContent {
    padding: 15px 15px 15px 55px;
    height: 240px;
    width: 80%
}

#accord .pink {
    width: 42px;
    height: 270px;
    float: left;
    position: relative;
    background: #3b98bd;
    cursor: pointer
}

#accord .pink::before {
    content: "\f005";
    font-family: FontAwesome;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

#accord .last {
    border: none
}

.widget {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    text-align: center;
    font-size: 12px;
    font-weight: 600
}

.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6,
.widget p {
    font-size: 12px
}

.widget .title td {
    font-size: 9px;
    font-weight: 700 !important
}

.widget #calendar table td {
    height: 30px
}

.widget table td {
    height: auto;
    min-width: auto;
    padding: 0;
    font-size: .8rem
}

.widget #calendar table tr td h4,
.widget #calendar table tr td h6 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.widget #special-days-table tr td:nth-child(1) {
    padding: .2rem !important
}

.widget #special-days-table .day-details h2 {
    font-size: .8rem !important
}

.widget #special-days-table .date-box {
    height: auto !important;
    width: auto !important
}

.widget #special-days-table .date-box {
    padding: .2rem !important
}

.widget #special-days-table .date-box .date {
    font-size: 1rem !important
}

.widget #special-days-table .date-box .title {
    padding: .2rem !important
}

.widget #grey {
    padding: .3125rem 1.25rem !important
}

.widget .table-controller {
    padding: .3125rem 0
}

.widget .table-controller a {
    color: #3b98bd
}

.widget .table-controller .headings h4 {
    font-size: 12px
}

.widget .table-controller .controls,
.widget .table-controller .headings {
    display: table-row
}

.widget.small {
    width: 180px
}

.form-row {
    display: block;
    height: auto;
    padding: .625rem;
    background: #ccc;
    color: #333 !important;
    font-weight: 600
}

.widget .headings span {
    font-size: 10px !important
}

.tabs-title.is-active {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd
}

.widget-dateconvertor tbody td {
    padding: .3125rem
}

.widget-dateconvertor tr td {
    height: auto;
    padding: .3125rem
}

.widget-dateconvertor tr td input[type=submit],
.widget-dateconvertor tr td label {
    font-size: .8rem
}

.widget-dateconvertor tr td select {
    margin: 0 !important
}

.widget-prayertimes {
    text-align: center
}

.widget-prayertimes select {
    margin: 0 0 .3125rem
}

.widget-prayertimes input[type=button] {
    font-size: .8rem
}

.disclaimer-callout {
    font-weight: 400;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    color: #333
}

.disclaimer-callout h5 {
    color: #333;
    font-weight: 600
}

.disclaimer-callout p.disclaimer-text {
    color: #333;
    font-weight: 400;
    font-size: 15px;
    display: block;
    text-align: center;
    margin-bottom: .5rem
}

.disclaimer-link {
    font-weight: 700;
    color: #3597bf !important;
    border-bottom: 1px solid #3597bf
}

.disclaimer-anchor {
    cursor: pointer
}

select.preferenceHijriAdjustement,
select.preferenceJuristicMethod {
    width: 100% !important;
    font-size: .8rem;
    color: #333
}

select.preferenceCalculationMethod {
    font-size: .8rem;
    color: #333
}

.curved {
    border-radius: 4px
}

.btn-action {
    background: #3b98bd;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
    font-weight: 600
}

.btn-action:hover {
    color: #fcfcfc
}

.search-bar {
    width: 280px;
    background-color: #fff
}

.card {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    margin-bottom: 1.25rem;
    overflow: hidden
}

.titleContainer {
    padding: 1rem 0;
    text-align: left;
    font-size: .9rem
}

.titleContainer div:first-child {
    text-align: left
}

.titleContainer div:last-child {
    text-align: left
}

@media (max-width:768px) {

    .titleContainer div:first-child,
    .titleContainer div:last-child {
        text-align: center
    }
}

.prayer-times-display {
    border-top: 2px solid #fff
}

.prayerTimesToday {
    font-weight: 500;
    color: #3b98bd
}

.prayerTimesToday.active {
    color: #333
}

.dateToday {
    font-size: .9rem;
    color: #3b98bd;
    margin: 0;
    font-weight: 600;
    float: right
}

@media (max-width:768px) {

    .dateToday,
    .prayerTimesToday {
        font-size: .9rem;
        float: none
    }

    .dateToday {
        display: block
    }
}

.upcomingPrayerContainer {
    background-color: #3b98bd;
    padding: .6rem 0;
    color: #fff;
    position: relative;
    border-bottom: 2px solid #fff
}

.btn-refresh {
    font-size: 1.1rem;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 5px;
    opacity: 0;
    display: none
}

.btn-refresh em {
    transition: all .4s ease
}

.btn-refresh:hover {
    color: #fff
}

.btn-refresh:hover em {
    text-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

@media (max-width:768px) {
    .btn-refresh {
        font-size: 1rem
    }
}

.upcomingPrayerTitle {
    margin-top: .5rem;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase
}

.upcomingPrayerName,
.upcomingPrayerTime {
    margin: 0 .625rem;
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase
}

.todayPrayer {
    display: table-cell;
    padding: 10px 16px 0;
    border-right: 0;
    position: relative;
    overflow: hidden
}

.ribbon {
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
    background-color: #cf4646;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 45%;
    left: -63%;
    transform: rotateZ(-45deg) translate3d(50%, -40%, 0)
}

.ribbon::before {
    display: block;
    text-transform: uppercase
}

.ribbon.beta::before {
    content: 'Beta'
}

.ribbon.hey::before {
    content: 'Hey'
}

.ribbon.sale::before {
    content: 'Sale'
}

.ribbon.off-10::before {
    content: '10%'
}

.ribbon.off-20::before {
    content: '20%'
}

.todayPrayer:first-child {
    border-left: 0
}

.todayPrayer:last-child {
    border-right: 0
}

.todayPrayer span {
    display: block
}

span.todayPrayerName {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #3b98bd;
    margin: 2px 0
}

span.todayPrayerTime {
    font-size: 14px;
    color: #333;
    line-height: 1.2
}

span.todayPrayerFormat {
    font-size: .9rem;
    font-weight: 400;
    color: #6e6e6e
}

.seeMonthlyContainer {
    text-align: center;
    padding: .8rem 0
}

.settingsContainer {
    display: flex;
    clear: both;
    width: 100%;
    color: #333
}

.settingsContainer div {
    display: table-cell;
    vertical-align: top
}
.settingsContainer .columns span p{
	    font-family: Roboto;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.2px;
    text-align: left;
    color: #333333;
	
}
.settingsContainer div:first-child {
    width: auto;
    margin-right: 10px;
}

.settingsContainer span {
    display: block;
    font-size: 12px
}

.settingsContainer span.link-settings {
    color: #3b98bd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer
}

@media (max-width:768px) {
    .card {
        margin-bottom: .625rem
    }

    span.todayPrayerTime {
        font-size: 1rem
    }
}

@media (max-width:1199px) {

    .todayPrayerDetailContainer,
    .todayPrayerNameContainer {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        padding: .625rem
    }

    .todayPrayerNameContainer {
        text-align: left;
        padding-left: 3rem
    }

    .todayPrayerDetailContainer {
        text-align: right;
        padding-right: 3rem
    }

    .todayPrayer {
        padding: 0;
        width: 100% !important;
        display: table;
        border-left: 0;
        border-right: 0
    }

    .todayPrayerDetailContainer span {
        display: inline
    }

    .ribbon {
        display: inline-block;
        text-align: center;
        position: absolute;
        padding: 0 .625rem;
        width: auto;
        top: 50%;
        left: .625rem;
        transform: rotateZ(0) translate3d(0, -50%, 0)
    }
}

@media (max-width:560px) {
    .settingsContainer div {
        display: block;
        margin-bottom: .625rem
    }

    .settingsContainer span {
        font-size: .8rem
    }

    .settingsContainer div:first-child {
        width: 100%
    }

    .settingsContainer div:last-child {
        text-align: left
    }
}

.banner-box {
    background: url(../../../../static/live162/images/athan-logo-faded.png) no-repeat;
    background-position: right bottom;
    background-size: 160px
}

.banner-box img {
    width: 220px
}

@media (max-width:992px) {

    .hint--bottom:after,
    .hint--bottom:before {
        display: none
    }
}

.member-login-user {
    color: #333;
    padding: .625rem;
    position: relative
}

.member-login-user h3 {
    position: relative;
    left: -1px
}

.member-login-user a {
    position: absolute;
    top: 10px;
    right: 10px
}

.member-login-user p {
    margin: 0;
    font-size: .9rem
}

.member-login-purchases {
    margin-top: 10px
}

.member-download {
    background-color: #3b98bd;
    border-color: #318eb3
}

.member-download:hover {
    background-color: #4facd1
}

.stat-box-container {
    display: table;
    width: 100%
}

.stat-box {
    min-height: 100px;
    height: 100px;
    width: 20%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #333
}

.stat-box span {
    border: 1px solid #eee;
    border-collapse: collapse;
    display: block;
    min-height: 100px;
    text-align: center;
    width: 100%;
    position: relative
}

.stat-box>span>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

@media (max-width:768px) {
    .member-login-user {
        text-align: center
    }

    .member-login-user a {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 6px
    }

    .stat-box {
        font-size: .9rem;
        display: block;
        width: 100%
    }

    .stat-box span {
        display: inline-block;
        width: 50%
    }

    .stat-box span.download-cell {
        width: 100%
    }

    .empty-filler {
        display: none !important
    }
    .settingsContainer{
    	flex-direction:column !important;
    }
}

.tt-dataset-city-search .tt-footer {
    display: none !important
}

.error-message {
    margin: 0;
    padding: 1rem .625rem 0;
    color: #333;
    text-align: center;
    font-weight: 600
}

#placesuggestion .tt-dropdown-menu {
    margin-top: 25px !important
}

.link-print,
.navigate-athan-cta {
    float: right;
    cursor: pointer
}

@media (max-width:768px) {
    .navigate-athan {
        text-align: center
    }

    .navigate-athan-title {
        display: block;
        margin-bottom: .5rem
    }

    .navigate-athan-cta {
        float: none;
        display: inline-block;
        margin: auto
    }
}

.printable--table {
    min-width: 700px;
    margin: 0 auto;
    margin-top: 1.25rem;
    background: #fff !important;
    background-color: #fff !important;
    -webkit-print-color-adjust: exact
}

.printable--table .box {
    background: #fff !important;
    background-color: #fff !important
}

.printable--table .table {
    padding-top: 0;
    padding-bottom: 0
}

.printable--table .table #grey {
    padding: .75rem 0 !important
}

.printable--table .table #monthly-prayers {
    border: 1px solid #aaa !important
}

.printable--table .table #monthly-prayers td {
    padding: .24rem;
    font-size: 10px;
    border-bottom: 1px solid #aaa !important;
    border-left: 1px solid #aaa !important;
    border-right: 1px solid #aaa !important
}

.printable--table .row-body td {
    border-bottom-color: #aaa !important
}

.printable--table .new-month td:nth-child(2) {
    color: #fff !important
}

.printable--table .table .new-month td,
.printable--table .table .row-title td {
    background: #696969 !important;
    color: #fff !important
}

.printable--table .new-month td:nth-child(4),
.printable--table .new-month td:nth-child(5),
.printable--table .new-month td:nth-child(6),
.printable--table .new-month td:nth-child(7),
.printable--table .new-month td:nth-child(8),
.printable--table .new-month td:nth-child(9) {
    background: #fff !important;
    background-color: #fff !important
}

.printable--dates>div {
    font-size: 13px;
    color: #333;
    padding: .625rem 0 !important
}

@media print {
    .printable--table .table #monthly-prayers td {
        padding: .2rem;
        font-size: 12px
    }
    

    .printable--dates>div {
        font-size: 12px;
        color: #000 !important
    }
}

.printable--topbar {
  	background-color: #313743 !important;
    background: #313743 !important;
    display: block;
    padding: .5rem 1rem;
    height: 73px;
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 50px 24PX;
}

.printable--topbar__logo {
    text-align: left;
    padding: 0 !important
}

.printable--topbar img {
/*     height: 40px
 */}

.printable--topbar__title {
    padding: 0 !important;
    display: table;
    height: 40px;
    text-align: center;
    color: #fff !important
}

.printable--topbar__location {
    padding: 0 !important;
    display: table;
    height: 40px;
    text-align: right;
    color: #fff !important
}

.printable--topbar__title span {
    height: inherit;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff !important
}

.printable--topbar__location span {
    height: inherit;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    color: #fff !important
}

.printable--copyrights {
    padding: 1.5rem .5rem;
    text-align: center;
    font-size: 13px !important;
    color: #333 !important
}

.printable--table .settingsContainer {
    background: #eee !important;
    background-color: #eee !important;
    border: 1px solid #aaa !important;
    border-top: 0 !important
}

.printable--calculation-method {
    background: #eee !important;
    background-color: #eee !important;
    color: #333
}

select {
    background-image: url(../../../../static/live162/images/arrow-down.png)
}

.sprite {
    background: url(../../../../static/live162/css/spritesheet.png);
    background-repeat: no-repeat;
    display: inline-block
}

.sprite.badge-apple {
    background-position: -301px -100px;
    background-size: 512px;
    width: 161px
}

.sprite.badge-google {
    background-position: -301px -174.5px;
    background-size: 512px;
    width: 161px
}

.sprite.badge-apple-small,
.sprite.badge-google-small {
    background-size: 512px;
    width: 100px;
    height: 35px
}

.sprite.badge-apple-small {
    background-position: -301px -560px
}

.sprite.badge-google-small {
    background-position: -301px -606px
}

.sprite.badge-windows {
    background-position: -301px -250.5px;
    background-size: 512px;
    width: 161px
}

.sprite.footer-phone {
    background-position: -20px -2720px;
    background-size: 512px
}

.location-icon-lg {
    width: 60px;
    height: 60px;
    background-size: 600px
}

.sprite.location-icon-lg.icon-mosque {
    background-position: -196px -28px
}

.sprite.location-icon-lg.icon-business {
    background-position: -112px -28px
}

.sprite.location-icon-lg.icon-organization {
    background-position: -284px -28px
}

.sprite.location-icon-lg.icon-school {
    background-position: -26px -29px
}

@media (max-width:992px) {
    .location-icon-lg {
        width: 40px;
        height: 40px;
        background-size: 400px
    }

    .sprite.location-icon-lg.icon-mosque {
        background-position: -132px -19px
    }

    .sprite.location-icon-lg.icon-business {
        background-position: -75px -18px
    }

    .sprite.location-icon-lg.icon-organization {
        background-position: -190px -19px
    }

    .sprite.location-icon-lg.icon-school {
        background-position: -18px -19px
    }
}

.place-location-icon {
    width: 100px;
    height: 100px;
    background-size: 700px;
    margin: 0 auto
}

.sprite.place-location-icon.icon-mosque {
    background-position: -216px -19px
}

.sprite.place-location-icon.icon-business {
    background-position: -116px -19px
}

.sprite.place-location-icon.icon-organization {
    background-position: -318px -19px
}

.sprite.place-location-icon.icon-school {
    background-position: -16px -20px
}

@media (max-width:1024px) {
    .place-location-icon {
        width: 40px;
        height: 40px;
        background-size: 400px;
        margin: .6rem 0 .2rem 0
    }

    .sprite.place-location-icon.icon-mosque {
        background-position: -132px -20px
    }

    .sprite.place-location-icon.icon-business {
        background-position: -75px -19px
    }

    .sprite.place-location-icon.icon-organization {
        background-position: -190px -19px
    }

    .sprite.place-location-icon.icon-school {
        background-position: -18px -19px
    }
}

.sprite.icon-search {
    background-position: -500px -930px;
    background-size: 850px;
    width: 20px;
    height: 20px
}

.pagination-next a::after,
.pagination-next.disabled::after {
    font-family: FontAwesome;
    content: '\f054'
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
    font-family: FontAwesome;
    content: '\f053'
}

.pagination-next a::after,
.pagination-previous a::before {
    color: #3b98bd
}

.title-icon {
    height: 24px;
    margin-right: .2rem
}

.subtitle-icon {
    height: 16px;
    margin-right: .2rem
}

.title-icon.i-islamic-calendar {
    vertical-align: -2px
}

.title-icon.i-qibla-finder {
    vertical-align: -4px
}

@media (max-width:768px) {
    .title-icon.i-islamic-calendar {
        height: 20px
    }

    .title-icon.i-qibla-finder {
        vertical-align: -5px
    }
}

.subtitle-icon.i-prayer-times {
    vertical-align: -7px
}

.subtitle-icon.i-upcoming-event {
    vertical-align: text-top
}

.subtitle-icon.i-islamic-places {
    vertical-align: -4px
}

@media (max-width:768px) {
    .subtitle-icon {
        height: 18px
    }

    .subtitle-icon.i-prayer-times {
        display: none
    }

    .subtitle-icon.i-islamic-places {
        vertical-align: -4px
    }
}

.reveal {
    outline: 0
}

.reveal:focus {
    outline: 0
}

.cal-prev-ref {
    margin-right: -4px
}

.cal-next-ref {
    margin-left: -4px
}

@media (max-width:992px) {
    .cal-prev-ref {
        margin-right: -4px
    }
}

.vertical-divider::before {
    content: '|';
    font-size: 1rem;
    color: #3b98bd;
    margin: 0 .4rem;
    vertical-align: baseline
}

a.filter-week {
    color: #3b98bd
}

.weekly-table {
    margin-bottom: 0;
    font-size: .8rem
}

.weekly-table td {
    text-align: center;
    height: auto
}

.weekly-table tbody td,
.weekly-table thead td {
    background-color: #fff;
    color: #3b98bd
}

.weekly-table tbody td {
    padding: 15px 10px;
    color: #333;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.weekly-table tbody td:first-child {
    border-left: 0
}

.weekly-table tbody td:nth-child(1),
.weekly-table tbody td:nth-child(3) {
    background-color: #a2a2a2;
    color: #fff;
    border: 0
}

.weekly-table tbody td:nth-child(2) {
    background-color: #acacac;
    color: #fff;
    border: 0
}

#popup-coordinates {
    width: 420px;
    padding: 30px 60px;
    color: #333
}

#popup-coordinates h5 {
    margin: 1rem auto
}

#popup-coordinates a.button {
    margin-top: 1rem
}

#popup-coordinates label {
    color: #333
}

@media (max-width:768px) {
    #popup-coordinates {
        width: auto
    }
}

.location-coordinates {
    display: block;
    margin: 1rem auto;
    height: 65px
}

.map-helper {
    color: #333;
    text-align: center;
    margin: .5rem 0;
    font-size: .8rem;
    font-style: italic
}

.angle-isha span.input-group-label,
.angles.angle-fajr span.input-group-label {
    background: #fff;
    color: #333;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 3px 0 0 3px;
    cursor: default
}

.angle-isha.disabled span.input-group-label,
.angles.angle-fajr.disabled span.input-group-label {
    background: #e6e6e6
}

.angles select {
    margin-bottom: 0;
    border-radius: 0 3px 3px 0
}

select:focus {
    outline: 0
}

.prayer-times {
    background-color: #3b98bd !important
}

.prayer-times:hover {
    background-color: #6dd296 !important
}

.map-details {
    background-color: #e5e5e5;
    box-sizing: border-box;
    padding: 7px
}

.map-details p {
    font-size: 14px;
    color: #333;
    margin-bottom: 0
}

.if-qibla {
    height: 400px;
    width: 100%;
    overflow: hidden
}

.if-widget {
    height: 250px;
    width: 100%;
    overflow: hidden
}

.icon-enlarge img {
    height: 26px
}

h3 img {
    height: 24px;
    margin-right: 5px
}

.add-this {
    padding: 10px 0
}

.add-this p {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px
}

p.help {
    font-weight: 600;
    color: #5e5e5e;
    margin-bottom: 0
}

.ads-center {
    margin-bottom: 10px;
    text-align: center
}

@media (max-width:768px) {
    .ads-center {
        margin-bottom: 10px
    }
}

.content-divider {
    margin-top: 10px;
    border: 1px solid #3b98bd
}

.card-content p {
    font-size: 14px;
    color: #5e5e5e;
    margin-bottom: 1rem
}

.trig-get-location {
    background-color: #fff;
    border-radius: 0 3px 3px 0;
    padding: 0 .5rem
}

.trig-change-settings {
    background-color: #eee;
    border-left: 2px solid #ddd;
    border-radius: 0 3px 3px 0 !important;
    padding: 0 .5rem
}

.tt-dataset,
.tt-dataset-my-location-search {
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto
}

.recent-searches p {
    padding: .3rem .6rem;
    background-color: #eee;
    color: #777;
    font-size: .7rem;
    margin-bottom: 0
}

input[type=text],
textarea {
    margin-bottom: 0
}

.ytembed {
    position: relative
}

.ytembed img {
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0
}

.trig-popup {
    cursor: pointer
}

.cards-container {
    height: 100%
}

.grid.row>div {
    height: 100px;
    display: table;
    border: 1px solid #eee;
    color: #6e6e6e
}

.grid.row>div>span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    word-wrap: break-word
}

.grid-heading {
    font-weight: 700
}

.vertically-aligned {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:1024px) {
    .vertically-aligned {
        display: block
    }

    .vertically-aligned.no-expand {
        display: -ms-flexbox;
        display: flex
    }
}

.athan-intro p {
    font-size: .9rem;
    color: #333
}

.athan-heading {
    padding: 20px;
    background-color: #fff
}

.athan-intro {
    padding: 0 20px;
    background-color: #fff
}

.athan-heading h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #6e6e6e
}

.athan-heading h2 {
    font-size: 1.5rem;
    font-weight: 100;
    color: #787878
}

@media (max-width:992px) {

    .desktop .athan-heading,
    .desktop .athan-intro {
        text-align: center
    }
}

.mobile .athan-heading,
.mobile .athan-intro {
    background-color: #fcfcfc
}

.mobile .image-phone {
    height: 140px;
    overflow: hidden
}

@media (max-width:992px) {

    .mobile .athan-heading,
    .mobile .athan-intro {
        text-align: center
    }
}

.box-padded {
    padding: 20px 10px
}

.card-date-convertor>div,
.card-introducing-quran>div,
.card-see-prayer-book>div {
    padding: 0 10px
}

.card-date-convertor .title,
.card-introducing-quran .title,
.card-see-prayer-book .title {
    font-size: 24px;
    color: #3b98bd;
    margin-bottom: 0
}

.card-date-convertor .text,
.card-introducing-quran .text,
.card-see-prayer-book .text {
    font-size: 14px;
    color: #6e6e6e;
    margin-bottom: 0
}

p {
    margin-bottom: 0
}

@media (max-width:1024px) {

    .card-date-convertor>div,
    .card-introducing-quran>div,
    .card-see-prayer-book>div {
        text-align: center;
        padding: 10px 0
    }

    .card-date-convertor img,
    .card-introducing-quran img,
    .card-see-prayer-book img {
        width: 73px
    }
}

.preferences h5 {
    margin-bottom: 10px
}

.preferences h5 span {
    display: inline-block
}

.preferences h5 span img {
    height: 24px;
    width: auto !important
}

.hint-preferences {
    cursor: help
}

.hint-preferences::after {
    background-color: #fff !important;
    box-shadow: 0 1px 14px rgba(0, 0, 0, .8) !important;
    width: 275px !important;
    color: #5e5e5e !important;
    font-size: .8rem !important;
    font-weight: 400 !important;
    display: block !important
}

.hint--top.hint-preferences::before {
    border-top-color: #fff;
    display: block !important
}

.hint--bottom.hint-preferences::before {
    border-bottom-color: #fff;
    display: block !important
}

.hint--bottom-right.hint-preferences::before {
    border-bottom-color: #fff;
    display: block !important
}

@media (max-width:768px) {
    .preferences h5 {
        margin-bottom: 5px
    }

    .hint-preferences::after {
        width: 175px !important
    }
}

.prayer-widget .hint-preferences,
.prayer-widget label {
    display: inline-block
}

.prayer-widget .hint-preferences::after {
    width: 180px !important
}

.error-title {
    font-size: 1.8rem;
    color: #3b98bd
}

.error-detail {
    margin: 2rem auto;
    font-size: .9rem;
    color: #333
}

.error-link {
    font-size: 1rem;
    color: #3b98bd;
    text-decoration: underline;
    margin: auto 1rem
}

@media (max-width:768px) {
    .error-link {
        display: block;
        margin: .5rem auto;
        font-size: .9rem
    }
}

.prayer-view-options {
    margin-left: -.625rem;
    border: 0
}

.prayer-view-options .tabs-title {
    cursor: pointer
}

.prayer-view-options .tabs-title,
.prayer-view-options .tabs-title:active,
.prayer-view-options .tabs-title:focus {
    outline: 0
}

.prayer-view-options .tabs-title span {
    background-color: #fff;
    color: #3b98bd;
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 1.25rem 1rem;
    line-height: 1;
    cursor: pointer
}

.prayer-view-options .tabs-title.is-active {
    border-left: 0;
    border-right: 0
}

.prayer-view-options .tabs-title.is-active span {
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline
}

.prayer-view-options .tabs-title.is-active.is-active span {
    color: #3b98bd
}

.table-header {
    border-top: 1px solid #eee
}

@media (max-width:768px) {
    .prayer-view-options .tabs-title span {
        padding: 1rem .8rem;
        font-size: .8rem
    }
}

#popup-yearly-print {
    width: 400px;
    padding: 30px 60px
}

.radio-buttons {
    display: table;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem auto
}

.radio-buttons input[type=radio] {
    display: inline-block
}

input[type=radio].print-option+label {
    cursor: pointer;
    box-sizing: border-box;
    display: table-cell;
    min-width: 100px;
    font-weight: 600;
    font-size: .9rem;
    padding: .4rem 0;
    text-align: center;
    border: 0;
    color: #333 !important;
    background-color: #eee;
    transition: all .2s ease
}

input[type=radio]:checked.print-option+label {
    color: #fefefe !important;
    background-color: #3b98bd
}

#clipboard {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

div.row.toggle-prayer-link {
    background-color: #eee;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .2) inset;
    position: relative;
    padding: 10px 0
}

.toggle-prayer-link .js-copytextarea {
    background-color: transparent;
    border: 0;
    padding: 0 0 10px;
    box-shadow: none;
    min-height: inherit;
    font-size: .8rem;
    color: #3b98bd;
    text-decoration: underline;
    resize: none;
    word-break: break-all
}

.get-link {
    margin-bottom: 4px
}

@media (max-width:1024px) {
    .get-link {
        margin-top: -10px
    }
}

.toggler {
    cursor: pointer;
    font-size: 14px;
    color: #3b98bd
}

.toggler img {
    height: 10px;
    margin-right: 5px
}

#bookmark-this,
.bookmark-links button {
    margin-left: .6rem;
    color: #3b98bd;
    font-size: .8rem;
    font-weight: 600
}

@media (max-width:1024px) {
    div.row.toggle-prayer-link {
        display: block
    }
}

.printable--table_calendar .printable--topbar__location span a {
    color: #fff !important;
    text-decoration: none !important
}

.printable--table_calendar.printable--table #calendar table {
    direction: ltr
}

.printable--table_calendar.printable--table #calendar table h4 {
    font-size: 1.2rem !important
}

.printable--table_calendar.printable--table #calendar table tr.days td,
.printable--table_calendar.printable--table .box {
    border: 2px solid !important;
    border-color: #aaa !important;
    box-shadow: none !important
}

.printable--table_calendar.printable--table #calendar table tr.days td.event {
    border: 3px solid !important;
    border-color: #666 !important
}

.printable--table_calendar.printable--table #calendar table tr.days td h6 {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: #666 !important
}

.printable--table_calendar.printable--table #calendar .event div:nth-child(2) {
    background-color: #666 !important
}

.printable--table_calendar.printable--table #calendar .event div:nth-child(2) p {
    color: #fff !important
}

.printable--table_calendar.printable--table #calendar .title td {
    background-color: #666 !important;
    color: #fff !important
}

.printable--table_calendar .printable--dates {
    padding: .5rem 0 .8rem 0
}

.printable--table_calendar .printable--dates>div {
    padding: .2rem 0 !important
}

.printable--table_calendar .printable--dates>div.printable--dates_primary {
    font-size: 1.2rem !important
}

.printable--table_calendar .printable--dates>div.printable--dates_secondary {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: #666 !important
}

.printable--table_calendar.printable--table #grey h1 {
    font-size: 1.4rem !important;
    display: inline-block
}

.printable--table_calendar.printable--table #grey h1,
.printable--table_calendar.printable--table .link-print,
.printable--table_calendar.printable--table .link-print span {
    color: #666 !important;
    text-decoration: none !important
}

.printable--table_calendar.printable--table .printable--topbar__location span p {
    display: none;
    color: #fff !important
}

@media print {
    .printable--table_calendar.printable--table .printable--topbar__location span a {
        display: none !important
    }

    .printable--table_calendar.printable--table .printable--topbar__location span p {
        display: block !important
    }
}

@media (max-width:768px) {
    .printable--table_calendar.printable--table #calendar .event p {
        font-size: .8rem !important;
        height: auto !important
    }
    
}

.break-after {
    page-break-after: always !important
}

.yearly-prayers-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 6px;
    display: table;
    background-color: #fff !important;
    -webkit-print-color-adjust: exact !important
}



.yearly-month {
    display: table-cell;
    padding: 8px 6px
}

.yearly-month table {
    border-collapse: collapse
}

.yearly-month table tr td {
    height: 10px;
    font-size: 8px;
    font-weight: 500;
    padding: 1px;
/*     border: 1px solid #aaa;
 */    text-align: center
}

.yearly-table-header {
    width: 100%;
    margin: 0 auto;
    -webkit-print-color-adjust: exact !important;
}

.yearly-table-header .printable--topbar__location span p {
    display: none;
    color: #fff !important
}

@media print {
    .yearly-month table tr.row-title td, .th-container th {
        background-color: #555 !important;
        color: #fff !important;
    }

    .yearly-month table tr td {
        background-color: #fff !important;
        border: 1px solid #ddd !important
    }

    .yearly-prayers-container {
        height: calc(80%) !important
    }

    .yearly-table-header .printable--topbar__location span a {
        display: none !important
    }

    .yearly-table-header .printable--topbar__location span p {
        display: block !important
    }
}

div.accept a[href="/terms-and-conditions/"],
div.accept a[href="/terms-and-conditions/?language=ar"],
div.accept a[href="/terms-and-conditions/?language=en"],
div.accept a[href="/terms-and-conditions/?language=fr"] {
    color: #3b98bd;
    font-weight: 600;
    text-decoration: underline
}

.qibla-box {
    text-align: center;
    padding: 1.5rem
}

.qibla-box img {
    width: 70%
}

.qibla-box .title {
    font-size: 24px;
    color: #3b98bd;
    margin-top: 1rem
}

.qibla-box .text {
    font-size: 14px;
    color: #6e6e6e;
    margin-bottom: 1.25rem
}

.ad-box {
    padding: 1rem 0
}

.all-posts .article-post {
    overflow: auto;
    overflow-wrap: break-word
}

.all-posts .article-post-details,
.all-posts .article-post-thumbnail {
    display: table-cell;
    float: left
}

.all-posts .article-post-thumbnail {
    width: 45%;
    background-position: center;
    background-size: cover;
    background-color: #fff
}

.all-posts .article-post-details {
    width: 55%;
    box-sizing: border-box;
    padding: 0 1.25rem
}

.all-posts .article-post-date {
    color: #3b98bd
}

.all-posts .article-post-title {
    font-weight: 600;
    margin: .5rem auto
}

.all-posts .article-post-text {
    margin: .5rem auto
}

@media (min-width:1440px) {
    .all-posts .article-post-date {
        font-size: 1.2rem;
        color: #3b98bd
    }

    .all-posts .article-post-title {
        font-size: 1.6rem;
        line-height: 2rem
    }

    .all-posts .article-post-text {
        font-size: 1.2rem;
        line-height: 1.6rem
    }

    .all-posts .article-post-thumbnail {
        height: 250px
    }
}

@media (max-width:1439px) {

    .all-posts .article-post-date,
    .all-posts .category-link {
        font-size: 1rem
    }

    .all-posts .article-post-title {
        font-size: 1.49rem;
        line-height: 2rem
    }

    .all-posts .article-post-text {
        font-size: 1rem;
        line-height: 1.4rem
    }

    .all-posts .article-post-thumbnail {
        height: 230px
    }
}

@media (max-width:992px) {

    .all-posts .article-post-date,
    .all-posts .category-link {
        font-size: .9rem
    }

    .all-posts .article-post-title {
        font-size: 1.4rem;
        line-height: 1.9rem
    }

    .all-posts .article-post-text {
        font-size: .9rem;
        line-height: 1.3rem
    }

    .all-posts .article-post-thumbnail {
        height: 210px
    }
}

@media (max-width:768px) {

    .all-posts .article-post-date,
    .all-posts .category-link {
        font-size: .8rem
    }

    .all-posts .article-post-title {
        font-size: 1.2rem;
        line-height: 1.6rem
    }

    .all-posts .article-post-text {
        font-size: .8rem;
        line-height: 1.2rem
    }

    .all-posts .article-post-details,
    .all-posts .article-post-thumbnail {
        display: block;
        width: 100%
    }

    .all-posts .article-post-details {
        padding: 0
    }

    .all-posts .article-post-thumbnail {
        width: 100%;
        height: 200px;
        margin-bottom: 1.25rem
    }

    .all-posts .article-post-text,
    .all-posts .article-post-title {
        margin: .5rem auto
    }
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    left: 50%;
    bottom: 0;
    transform: translate3d(-50%, 0, 0)
}

#snackbar.show {
    visibility: visible;
    animation: fadein .5s
}

@media (max-width:768px) {
    #snackbar {
        width: 100%;
        left: 0;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes fadeout {
    from {
        bottom: 0;
        opacity: 1
    }

    to {
        bottom: 0;
        opacity: 0
    }
}

.new {
    position: relative
}

.new::after {
    display: inline-block;
    position: relative;
    margin-left: 6px;
    content: '\f111';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    font-size: .5rem;
    color: #f4c227
}

@media all {

    .print.yearly.calendar .yearly-prayers-container,
    .print.yearly.calendar .yearly-table-header {
        /* width: 700px */
    }

    .print.yearly.calendar .yearly-table-header h1 {
        font-size: 1.4rem;
        display: inline-block
    }

    .print.yearly.calendar .yearly-prayers-container {
        height: auto !important
    }

    .print.yearly.calendar .yearly-month {
        width: 100% !important
    }

    .print.yearly.calendar table tr td{
        height: 35px !important;
    }

    .print.yearly.calendar table tr td p {
        font-size: 8px !important
    }

    .print.yearly.calendar .printable--topbar__title span strong {
        color: #fff !important
    }

    .print.yearly.calendar #calendar .event p {
        height: auto !important;
        color: #0a0a0a !important
    }

    .print.yearly.calendar #calendar .event {
        border: 0 !important
    }

    .print.yearly.calendar #calendar .event div:nth-child(1),
    .print.yearly.calendar #calendar .event div:nth-child(2) {
        background-color: #ccc !important
    }

    .print.yearly.calendar .calendar-footer span {
        font-size: 10px
    }

    .print.yearly.calendar table tr.row-title td.text-left, 
    .print.yearly.calendar table tr.th-container th.text-left{
        font-size: 14px;
        font-weight: 700;
        padding: 2px 5px;
        width: 10px;
        text-align: left
    }

    .print.yearly.calendar table tr.row-title td.text-right, 
    .print.yearly.calendar table tr.th-container th.text-right {
        padding: 2px 5px;
        text-align: right
    }
}

.horizontal-divider {
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 10px 0;
    position: relative;
    background-color: #fff
}

.horizontal-divider span {
    background-color: #fff;
    padding: 0 .4rem;
    position: relative;
    z-index: 200
}

.horizontal-divider:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    border-top: 1px solid #ddd
}

.facebook-login {
    border-radius: 4px;
    overflow: hidden
}

.facebook-login .button {
    background-color: #3b5998;
    border-color: #314f8e;
    font-size: .85rem;
    padding: 1rem .625rem
}

.facebook-login .button:hover {
    background-color: #4f6dac
}

.facebook-login .button:active,
.facebook-login .button:focus {
    background-color: #274584
}

.facebook-login .button:first-child {
    width: 50px
}

@-moz-document url-prefix() {
    .facebook-login .button:first-child {
        width: 15%
    }
}

.facebook-login .download-buttons .download-button {
    margin: .2rem !important
}

.google-login {
    border-radius: 4px;
    overflow: hidden
}

.google-login .button {
    background-color: #dd4b39;
    border-color: #d3412f;
    font-size: .85rem;
    padding: 1rem .625rem
}

.google-login .button:hover {
    background-color: #f15f4d
}

.google-login .button:active,
.google-login .button:focus {
    background-color: #c93725
}

.google-login .button:first-child {
    width: 50px
}

@-moz-document url-prefix() {
    .google-login .button:first-child {
        width: 15%
    }
}

.google-login .download-buttons .download-button {
    margin: .2rem !important
}

.login-header {
    font-size: .9rem
}

.login-buttons {
    font-size: .9rem
}

.login-buttons .button.big,
.login-buttons input {
    border-radius: 0;
    height: 50px;
    line-height: 1;
    padding: 1rem .625rem;
    font-size: .85rem
}

.login-buttons .button.big {
    line-height: inherit
}

.login-icon img {
    height: 100px
}

.screen-login h1 {
    font-size: 1rem
}

.screen-login .athan-logo {
    height: 400px
}

.screen-invite h1 {
    font-size: 2rem;
    color: #3b98bd
}

.screen-invite h2 {
    font-size: 1.8rem;
    color: #3b98bd
}

.screen-invite .invite-code {
    font-size: 1.25rem;
    padding: .5rem 1rem;
    margin: .5rem 0;
    border: 2px solid #3b98bd;
    color: #3b98bd
}

.screen-invite .athan-logo {
    max-height: 450px
}

.clickable {
    cursor: pointer
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.shadow {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.shadow-light {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.margin-left {
    margin-left: 20px
}

.margin-right {
    margin-right: 20px
}

.margin-left-right {
    margin: 0 .3125rem
}

.close-button.inverted {
    width: 2rem;
    background-color: #fff;
    color: #5e5e5e
}

.full {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch
}

.full.vertical {
    -ms-flex-direction: column;
    flex-direction: column
}

.close-button.inverted.adjust-right {
    right: .5rem
}

table.prayerbook-table {
    margin-bottom: 0
}

table.prayerbook-table tr td {
    text-align: center;
    height: auto;
    font-size: .8rem;
    color: #fff
}

table.prayerbook-table thead.prayerbook-table-header tr td {
    background-color: #3b98bd;
    font-weight: 700
}

table.prayerbook-table thead.prayerbook-table-header tr td:nth-child(even) {
    background-color: #4facd1
}

table.prayerbook-table tbody.prayerbook-table-body tr td:nth-child(even) {
    background-color: #fff
}

table.prayerbook-table tbody.prayerbook-table-body tr td:nth-child(odd) {
    background-color: #f6f6f6
}

table.prayerbook-table tbody.prayerbook-table-body tr td:nth-child(1),
table.prayerbook-table tbody.prayerbook-table-body tr td:nth-child(3) {
    background-color: #a2a2a2
}

table.prayerbook-table tbody.prayerbook-table-body tr td:nth-child(2) {
    background-color: #acacac
}

table.prayerbook-table tbody.prayerbook-table-body tr.prayers-missed td {
    background-color: #fff;
    color: #e74c3c;
    text-align: center
}

table.prayerbook-table tbody.prayerbook-table-body tr.prayers-missed td:first-child {
    background-color: #e74c3c;
    color: #fff
}

table.prayerbook-table tbody.prayerbook-table-body tr.prayer-logs td.missed,
table.prayerbook-table tbody.prayerbook-table-body tr.prayer-logs td.offered {
    padding: .2rem 1rem
}

table.prayerbook-table tbody.prayerbook-table-body tr.prayer-logs td.missed::before,
table.prayerbook-table tbody.prayerbook-table-body tr.prayer-logs td.offered::before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    color: #3b98bd;
    font-size: 1.5rem
}

table.prayerbook-table tbody.prayerbook-table-body tr.prayer-logs td.offered::before {
    content: '\f058'
}

table.prayerbook-table tbody.prayerbook-table-body tr.prayer-logs td.missed::before {
    content: '\f1db'
}

.forgot-password {
    position: relative;
    text-transform: uppercase;
    background-color: #3b98bd;
    color: #fff;
    font-size: 1.2rem;
    padding: .625rem
}

.forgot-password>.inline-button {
    color: #fff;
    position: absolute;
    left: .5rem;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 4px
}

.message>p {
    color: #5e5e5e
}

.fader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .8)
}

.user-avatar {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: .5rem;
    border-radius: 2px;
    background-color: #fff;
    background-image: url(../../../../static/live162/images/user-icon-default.png);
    background-size: cover;
    background-position: center
}

table.prayer-count {
    margin-top: .5rem;
    text-align: center
}

table.prayer-count tbody {
    border: 0
}

table.prayer-count tr td {
    width: 20%;
    height: auto;
    color: #333;
    font-size: .9rem;
    border: 0;
    border-right: 1px solid #aaa
}

table.prayer-count tr td:last-child {
    border-right: 0
}

table.prayer-count tr td:nth-child(odd)>div:last-child {
    color: #3b98bd
}

table.prayer-count tr td:nth-child(even)>div:last-child {
    color: #e74c3c
}

table.prayer-count tr td:last-child>div:last-child {
    color: #f4c227
}

@media (max-width:768px) {
    table.prayer-count tr td {
        display: table;
        width: 100%;
        height: 40px;
        padding: 1rem;
        border: 0;
        border-bottom: 1px solid #ddd
    }

    table.prayer-count tr td>div {
        display: table-cell;
        vertical-align: middle;
        text-align: left
    }

    table.prayer-count tr td>div:last-child {
        text-align: right
    }
}

@font-face {
    font-family: IslamicFinderArabic;
    src: url(https://www.islamicfinder.org/static/live162/fonts/islamicfinder-arabic.ttf)
}

@font-face {
    font-family: Muhammadi;
    src: url(../../../../static/live162/fonts/muhammadi-quranic.ttf)
}

@font-face {
    font-family: Typesetting;
    src: url(../../../../static/live162/fonts/arabic-typesetting.ttf)
}

@font-face {
    font-family: Noor;
    src: url(../../../../static/live162/fonts/noorehira.ttf)
}

@font-face {
    font-family: Uthmani;
    src: url(../../../../static/live162/fonts/uthmanic.ttf)
}

@font-face {
    font-family: Indo_Pak_QuranFont-signed;
    src: url(https://www.islamicfinder.org/static/live162/fonts/Indo_Pak_QuranFont-signed.ttf)
}

.duas .dua-menu {
    position: relative;
    box-shadow: none;
    margin-left: 0
}

.duas .toggle-menu {
    border-bottom: 1px solid #ddd
}

.duas .dua-menu li {
    border-bottom: 1px solid #eee !important
}

.duas .dua-menu li a {
    font-size: .9rem;
    padding: .9rem
}

.duas ul.accordion {
    margin-bottom: 0
}

.duas .sidebar {
    border-top: 1px solid #eee;
    min-height: 80px !important;
    height: calc(100vh - 52px);
    width: 100%;
    overflow: auto
}

.duas .sidebar h1 {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700
}

.duas .sidebar .vertical.menu {
    overflow: auto
}

.duas .sidebar li a img {
    height: 1.2rem;
    margin-right: 1rem;
    vertical-align: sub
}

.duas .dua-sub-category {
    padding: .7rem 1rem;
    color: #333;
    font-size: .9rem;
    font-weight: 700;
    display: none;
    cursor: pointer
}

@media (max-width:1024px) {
    .duas .sidebar {
        background-color: #fff;
        box-shadow: 0 0 7px rgba(0, 0, 0, .3);
        height: auto !important;
        max-height: 50vh !important;
        max-width: 100% !important;
/*         position: fixed;
 */        z-index: 2;
        top: 60px !important;
        left: 0;
        overflow: auto
    }

    .duas .sticky-container {
        background-color: #fff;
        height: auto !important
    }

    .duas .dua-list {
        overflow: auto
    }

    .duas .dua-menu {
        display: none
    }

    .duas .dua-sub-category {
        display: block
    }
}

.duas section {
    border: 1px solid #eee
}

.duas .dua {
    padding: .5rem;
    background-color: #fff;
    border-bottom: 1px solid #eee
}

.duas .dua:last-child {
    border-bottom: 0
}

.duas .dua.active {
    background-color: #f8f4e4
}

.duas .dua:hover {
    background-color: #f8f4e4
}

.duas ul.nested>li>a.active {
    font-weight: 700
}

.duas .title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: .625rem
}

.duas .arabic {
    font-family: Noor, Tahoma, Arial;
    font-size: 2rem;
    line-height: 2;
    direction: rtl;
    margin: .625rem auto
}

@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0) {

    .duas .arabic,
    .duas ::i-block-chrome {
        word-spacing: 7px
    }
}

.duas .transliteration {
    font-weight: 700;
    font-style: italic;
    color: #333333c4;
    margin: .65rem auto
}

.duas .translation {
    font-size: 1rem;
    line-height: 1.61;
    margin: .65rem auto
}

.duas .reference {
    font-size: 1rem;
    margin: 0 auto .65rem auto;
    color: #777
}

.duas li a {
    color: #333
}

.duas .menu>li {
    border: 1px solid #ddd;
    border-top: 0;
    border-collapse: collapse
}

.duas .nested.menu>li {
    border: 0
}

.duas .menu .active>a {
    background-color: #fff;
    font-weight: 600;
    color: #0790c9
}

.duas .button.hollow {
    display: inline-block;
    transition-duration: .5s
}

.duas .button-margin {
    margin-left: .5rem
}

.duas .button.hollow::before {
    content: '\00a0';
    display: inline-block;
    height: 1rem;
    width: 15px;
    margin-right: .5rem;
    vertical-align: text-bottom;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.duas .button.hollow.copy::before {
    background-image: url(../../../../static/live162/images/dua/icon-copy.png)
}

.duas .button.hollow.share::before {
    background-image: url(../../../../static/live162/images/dua/icon-share.png)
}

.duas .button.hollow:hover {
    background: #333 !important;
    background-color: #333 !important;
    color: #fff !important
}

.duas .button.hollow:hover::before {
    filter: invert(100%) brightness(400%)
}

.back-to-top {
    display: none;
    background-color: #fff;
    border-radius: 100px;
    position: fixed;
    z-index: 9999;
    bottom: .5rem;
    left: .5rem;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: lighter;
    font-size: 2.5rem;
    line-height: .8;
    color: #3b98bd;
    cursor: pointer
}

.back-to-top em {
    line-height: 0
}

#main-column {
    padding-left: 20px;
    padding-right: 10px
}

#sidebar {
    padding-right: 20px;
    padding-left: 10px
}

@media (max-width:768px) {
    #main-column {
        padding-left: 10px;
        padding-right: 10px
    }

    #sidebar {
        padding-right: 10px;
        padding-left: 10px
    }
}

@media (max-width:768px) {
    #eq-row {
        display: block
    }
}

aside {
    width: 230px;
    background-color: #f4f4f4
}

aside nav {
    background-color: #fff;
    padding-bottom: 30px
}

aside nav.places {
    background-color: #e9e9e9
}

main {
    width: calc(100% - 230px)
}

ul.sidebar {
    width: 230px;
    background-color: #fff;
    padding-top: 1rem;
    margin: 0
}

ul.sidebar li {
    display: block
}

ul.sidebar li a {
    position: relative;
    display: block;
    font-size: .75rem;
    font-size: .75rem;
    font-weight: 600;
    color: #333;
    padding: .4rem 1rem;
    border-bottom: 1px solid #ddd;
/*     padding-left: 43px
 */}

ul.sidebar li a em {
    position: absolute;
    left: 15px
}

ul.sidebar li a img {
    display: inline-block;
    height: 1.1rem;
    vertical-align: sub;
    margin-right: 1rem
}

ul.sidebar li a:hover,
ul.sidebar li.active {
    color: #000;
    background-color: #cecece
}

ul.sidebar li.get-athan,
ul.sidebar li.get-athan:hover {
    background-image: linear-gradient(270deg, #514EFF 22.88%, #332BCC 104.13%);
}

ul.sidebar li.get-athan a,
ul.sidebar li.get-athan:hover a {
    color: #fff;
    font-weight: 700
}

ul.sidebar li.get-athan a img,
ul.sidebar li.get-athan:hover a img {
    margin-right: .625rem
}

ul.sidebar li.get-athan a:hover,
ul.sidebar li.get-athan:hover a:hover {
background-image: linear-gradient(270deg, #514EFF 22.88%, #332BCC 104.13%);
 box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width:1199px) {
    aside {
        display: none !important
    }

    main {
        width: 100% !important
    }
    #special-days #special-days-table tr td:nth-child(1){
    	width:auto;
    }
}


.m-ico-advertise {
    height: 16px;
    background-position: 0 0
}

.m-ico-advertise.outline {
    height: 16px;
    background-position: 0 -16px
}

.m-ico-calendar {
    height: 16px;
    background-position: 0 -32px
}

.m-ico-calendar.outline {
    height: 16px;
    background-position: 0 -48px
}

.m-ico-dateconverter {
    height: 16px;
    background-position: 0 -64px
}

.m-ico-dateconverter.outline {
    height: 16px;
    background-position: 0 -80px
}

.m-ico-dua {
    height: 16px;
    background-position: 0 -96px
}

.m-ico-dua.outline {
    height: 16px;
    background-position: 0 -112px
}

.m-ico-feedback {
    height: 16px;
    background-position: 0 -128px
}

.m-ico-feedback.outline {
    height: 16px;
    background-position: 0 -142px
}

.m-ico-gallery {
    height: 13px;
    background-position: 0 -158px
}

.m-ico-gallery.outline {
    height: 13px;
    background-position: 0 -170px
}

.m-ico-home {
    height: 16px;
    background-position: 0 -184px
}

.m-ico-home.outline {
    height: 16px;
    background-position: 0 -199px
}

.m-ico-iqra {
    height: 16px;
    background-position: 0 -216px
}

.m-ico-iqra.outline {
    height: 16px;
    background-position: 0 -231px
}

.m-ico-islamicdays {
    height: 16px;
    background-position: 0 -246px
}

.m-ico-islamicdays.outline {
    height: 16px;
    background-position: 0 -264px
}

.m-ico-places {
    height: 17px;
    background-position: 0 -279px
}

.m-ico-places.outline {
    height: 17px;
    background-position: 0 -296px
}

.m-ico-prayerbook {
    height: 16px;
    background-position: 0 -313px
}

.m-ico-prayerbook.outline {
    height: 16px;
    background-position: 0 -330px
}

.m-ico-prayers {
    height: 16px;
    background-position: 0 -345px
}

.m-ico-prayers.outline {
    height: 16px;
    background-position: 0 -361px
}

.m-ico-qibladirection {
    height: 16px;
    background-position: 0 -376px
}

.m-ico-qibladirection.outline {
    height: 16px;
    background-position: 0 -392px
}

.m-ico-quran {
    height: 16px;
    background-position: 0 -408px
}

.m-ico-quran.outline {
    height: 16px;
    background-position: 0 -426px
}

.m-ico-zakatcalculator {
    height: 16px;
    background-position: 0 -440px
}

.m-ico-zakatcalculator.outline {
    height: 16px;
    background-position: 0 -456px
}
.m-ico-hadith {
 background-size: contain;
    width: 20px;
  	height: 20px;
    background-image: url(../../../../static/live162/images/hadith-icon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: bottom;
    margin-right: .625rem;
    display:none;
}

.m-ico-hadith.outline {
    height: 20px;
    background-position: 0 -426px
}
#quran-search {
    width: 100vw
}

#quran-search .input-group {
    background-color: #fff;
    border: 1px solid #cacaca;
    border-radius: 4px;
    padding: .2rem
}

#quran-search .input-group-label {
    width: 160px;
    background-color: #fff;
    padding: 0;
    border: 0;
    border-right: 1px solid #cacaca
}

@media (max-width:768px) {
    #quran-search .input-group-label {
        width: 100px
    }

    #quran-search .input-group-label #search-options {
        font-size: .8rem
    }
}

#quran-search .input-group-label .dropdown {
    border: 0;
    color: #333
}

#quran-search .input-group-field {
    border: 0;
    box-shadow: none
}

#quran-search .input-group .close-button {
    top: .25rem
}

.quran-body em.fa {
    vertical-align: baseline
}

.quran-body div.aya-reference,
.quran-body div.aya-text,
.quran-body div.aya-translation,
.quran-body div.aya-transliteration,
.quran-body div.aya.bismillah {
    padding: 1.25rem
}

.quran-body div.aya-search-text,
.quran-body div.aya-translation,
.quran-body div.aya-transliteration {
    font-size: 1rem;
/*     text-align: left;
 */    direction: ltr
}

.quran-body div.aya-search-text {
    font-style: italic;
    padding: 1.25rem
}

.quran-body div.aya-transliteration {
    font-family: Roboto, sans-serif;
    font-style: italic;
    padding-bottom: 0
}

div.aya.bismillah {
    text-align: center
}

div.bismillah:before {
    content: 'بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ';
    font-family: Uthmani;
    direction: rtl;
    text-align: center
}

.aya-text {
    font-family: Uthmani;
    text-align: right;
    direction: rtl;
    vertical-align: top;

}
.aya-text-img{
	    padding: 20px 20px 0 0;
}
.activeAyatBlack{
	 background-color:#1A254F;
}
/* .activeAyat h1{
	    background-color:#f6f1e0;
} */
.activeAyatBlack h1{
	    background-color:#000;
}
.aya-text {
    word-spacing: 10px;
    line-height: 2
}

.aya-reference {
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    vertical-align: bottom
}

.quran-header {
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 200
}

.quran-header.is_stuck {
    box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .2)
}

.quran-filters li {
    color: #6e6e6e;
    padding: .3125rem
}

#current-juz,
#current-sura {
    font-weight: 600
}

#current-juz:after,
#current-sura:after {
    content: "\f0d7";
    font-family: FontAwesome;
    display: inline-block;
    margin: 0 .3125rem
}

@media (max-width:768px) {

    #juz-dropdown .menu>li>a,
    #sura-dropdown .menu>li>a {
        font-size: .9rem;
        padding: .5rem
    }
}

.quran-settings input[type=radio] {
    display: none
}

.quran-settings input[type=radio]+label {
    margin: 0
}
.backbtn{
	align-self:center;
	    position: absolute;
    left: 20px;
	
}
@media (max-width:639px) {
    .quran-filters [data-toggle=quran-search] {
        padding-right: .3125rem
    }

    .quran-settings {
        position: fixed;
        top: -100%;
        right: 0;
        max-height: 80%;
        overflow-y: auto;
        z-index: 200;
        box-shadow: 0 1px 14px rgba(0, 0, 0, .5);
        transition-duration: .4s
    }
    .playersetting{
    	position: fixed;
        bottom: -100%;
        right: 0;
        max-height: 80%;
        overflow-y: auto;
        z-index: 200;
        box-shadow: 0 1px 14px rgba(0, 0, 0, .5);
        transition-duration: .4s
    }
	.playersetting.visible {
	    bottom: -16px;
	    transition-duration: .4s;
	    height: 300px;
	    z-index: 9999999;
	    background: #303737;
border-radius: 24px 24px 8px 8px;
    }
    .quran-settings.visible {
        top: 52px;
        transition-duration: .4s
    }
}

@media (min-width:640px) {
    .quran-settings {
        display: block !important
    }
}

.font-0 .aya,
.font-0 .aya-text {
    font-size: 24px
}

.font-1 .aya,
.font-1 .aya-text {
    font-size: 28px
}

.font-2 .aya,
.font-2 .aya-text {
    font-size: 32px
}

.font-3 .aya,
.font-3 .aya-text {
    font-size: 36px
}

.font-4 .aya,
.font-4 .aya-text {
    font-size: 40px
}

.font-5 .aya,
.font-5 .aya-text {
    font-size: 44px
}

.font-6 .aya,
.font-6 .aya-text {
    font-size: 48px
}

.q-ico {
    background: url(../../../../static/live162/images/sprite-quran.png) no-repeat;
    background-size: 126px 121px;
    display: inline-block;
    vertical-align: text-top;
    margin-right: 1rem
}

.q-ico-bookmark {
    width: 23px;
    height: 22px;
    background-position: -5px -5px
}

.q-ico-bookmark.outline {
    width: 23px;
    height: 22px;
    background-position: -38px -5px
}

.q-ico-font {
    width: 17px;
    height: 19px;
    background-position: -71px -5px
}

.q-ico-font.outline {
    width: 17px;
    height: 19px;
    background-position: -71px -34px
}

.q-ico-help {
    width: 19px;
    height: 20px;
    background-position: -5px -63px
}

.q-ico-help.outline {
    width: 19px;
    height: 20px;
    background-position: -34px -63px
}

.q-ico-report {
    width: 21px;
    height: 21px;
    background-position: -63px -63px
}

.q-ico-report.outline {
    width: 21px;
    height: 21px;
    background-position: -98px -5px
}

.q-ico-search {
    width: 21px;
    height: 20px;
    background-position: -98px -36px
}

.q-ico-search.outline {
    width: 21px;
    height: 20px;
    background-position: -94px -66px
}

.q-ico-theme {
    width: 19px;
    height: 20px;
    background-position: -5px -96px
}

.q-ico-theme.outline {
    width: 19px;
    height: 20px;
    background-position: -34px -96px
}

.q-ico-transliteration {
    width: 24px;
    height: 20px;
    background-position: -63px -96px
}

.q-ico-transliteration.outline {
    width: 24px;
    height: 20px;
    background-position: -97px -96px
}

.slider.zero-margin {
    height: .2rem;
    background-color: #6e6e6e
}

.slider-handle {
    height: 1rem;
    width: 1rem;
    border-radius: 50px;
    background-color: #3b98bd;
    outline: 0
}

.slider-handle:hover {
    background-color: #3b98bd
}

.slider-fill {
    height: .2rem;
    background-color: #3b98bd
}

.config input[name=theme]+label {
    height: 18px;
    width: 18px;
    margin-left: 10px;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer
}

.config input[value=default]+label {
    background-color: #f1e7c8
}

.config input[value=dark]+label {
    background-color: #0f0f0f
}

.config input[name=theme]:checked+label {
    height: 25px;
    width: 25px
}

.config input[value=default]:checked+label {
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #000
}

.config input[value=dark]:checked+label {
    border: 4px solid #292929;
    box-shadow: 0 0 0 2px #a2a2a2
}

.config input[name=theme]:checked+label::before {
    content: '\00a0';
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.config input[value=default]:checked+label::before {
    color: #333
}

.config .switch {
    margin-bottom: 0;
    font-size: 0
}

.config .switch .switch-paddle {
    border-radius: 50px;
    height: 1rem;
    width: 2.5rem
}

.config .switch .switch-paddle::after {
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 50px;
    top: -.125rem;
    left: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .6)
}

.config input:checked~.switch-paddle {
    background: #3b98bd
}

.config input:checked~.switch-paddle::after {
    left: 1.25rem
}

.configurations button {
    text-align: left;
    width: 100%
}

.available-translations,
.menu-surahs {
    max-height: 185px;
    overflow-y: auto
}

@media (max-width:768px) {
    .available-translations {
        max-height: 140px
    }
}

.available-translations>button {
    padding: .75rem 1.25rem;
    border-bottom: 1px solid
}

.setting-title {
    padding: .3125rem .625rem
}

#sidebar .upcomingPrayerContainer {
    border-bottom: 0
}

#quran-help {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, .75);
    z-index: 1000
}

#quran-help .callout {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1100;
    background: #fff url(../../../../static/live162/images/quran/quran-background.png) center/cover no-repeat;
    width: 100%;
    max-width: 680px
}

#quran-slider .bx-viewport {
    position: relative;
    background: 0 0;
    border: 0
}

#quran-slider .bx-wrapper .bx-pager {
    bottom: auto;
    top: -35px
}

#quran-slider .custom-pagers {
    padding: 1rem;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

#quran-slider .custom-pagers a {
    background: 0 0;
    font-size: 1.5rem
}

#quran-slider .bx-wrapper .bx-pager.bx-default-pager a {
    background: #fff;
    border: 1px solid
}

#quran-slider .bx-wrapper .bx-pager.bx-default-pager a.active,
#quran-slider .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #3b98bd
}

#quran-slider #slide-previous {
    float: left
}

#quran-slider #slide-next {
    float: right
}

.quran-logo {
    width: 240px !important
}

.quran-slide-img {
    width: 450px !important;
    display: inline-block;
    margin: 2rem 0
}

ul.menu-surahs li a:active,
ul.menu-surahs li a:focus,
ul.menu-surahs li a:hover {
    color: #222;
    background-color: #efefef
}

.available-translations label {
    display: block;
    font-size: 1rem !important;
    padding: .75rem 1.25rem;
    cursor: pointer
}

@media (max-width:768px) {
    #quran-slider .custom-pagers a {
        font-size: 2.5rem
    }
}

.aya-search-result .aya-text {
    font-size: 1rem;
    text-align: left;
    direction: ltr
}

.aya-search-result {
    display: block;
    overflow-y: auto
}

body.theme-default {
    background-color: #fefbf1
}

body.theme-default aside:before {
    background: #fefbf1
}

.theme-default ul li a:active,
.theme-default ul li a:focus,
.theme-default ul li a:hover {
    color: #222
}

.theme-default aside nav,
.theme-default ul.sidebar {
    background-color: #fff
}

.theme-default ul.sidebar li a:hover,
.theme-default ul.sidebar li.active {
    color: #333;
    background-color: #f6f1e0
}

.theme-default ul.sidebar li a {
    border-color: #eee
}

.theme-default .quran-header,
.theme-default .quran-header .menu {
    background-color: #f6f1e0
}

.theme-default .aya {
    background-color: #f6f1e0;
    color: #333
}

.theme-default .aya.bismillah {
    background-color: #fefbf1
}

.theme-default .aya-translation {
    background-color: #fefbf1;
    color: #333
}

.theme-default .aya-transliteration {
    background-color: #fefbf1;
    color: #333
}

.theme-default .setting-title {
    background-color: #f6f1e0;
    color: #333
}

.theme-default .config>.row {
    border-bottom: 1px solid #ddd
}

.theme-default .config a {
    color: #333
}

.theme-default .available-translations>button {
    background-color: #fcfaf5;
    border-color: #e7e7e7
}

.theme-default .available-translations>button:hover {
    background-color: #f6f1e0
}

.theme-default .quran-header {
    border-bottom: 1px solid #ddd
}

.theme-default .available-translations label {
    background-color: #fcfaf5;
    border-color: #e7e7e7;
    color: #333
}

.theme-default .available-translations input[type=radio]:checked+label,
.theme-default .available-translations label:hover {
    background-color: #f6f1e0
}

.theme-default #sura-body .aya-search-result:nth-child(odd) * {
    background-color: #f6f1e0
}

.theme-default #sura-body .aya-search-result:nth-child(even) * {
    background-color: #fefbf1
}

body.theme-dark {
    background-color: #161616;
    color: #e0e0e0
}

.theme-dark ul li a#current-juz,
.theme-dark ul li a#current-sura {
    color: #fff
}
.theme-dark .breadcrumbs li{
	color: #6f6f6f
}
.theme-dark .box {
    background-color: #0f0f0f;
    color: #e0e0e0
}

.theme-dark .aya-translation {
    background-color: #232323;
    color: #e0e0e0
}

.theme-dark .aya-transliteration {
    background-color: #232323;
    color: #e0e0e0
}

.theme-dark .aya {
    background-color: #000;
    color: #e0e0e0
}

.theme-dark .aya.bismillah {
    background-color: #232323
}

.theme-dark .setting-title {
    background-color: #000;
    color: #e0e0e0
}

.theme-dark .config>.row {
    border-bottom: 1px solid #2a2a2a
}

.theme-dark .config a {
    color: #e0e0e0
}

.theme-dark .quran-header,
.theme-dark .quran-header .menu {
    background-color: #000
}

.theme-dark aside nav,
.theme-dark ul.sidebar {
    background-color: #0f0f0f
}

.theme-dark ul.sidebar li a:hover,
.theme-dark ul.sidebar li.active {
    color: #e0e0e0;
    background-color: #232323
}

.theme-dark ul.sidebar li a {
    color: #e0e0e0;
    border-color: #2a2a2a
}

.theme-dark .available-translations>button {
    background-color: #282828;
    border-color: #383838
}

.theme-dark .available-translations>button:hover {
    background-color: #5e5d5d
}

.theme-dark .quran-header {
    border-bottom: 1px solid #5e5d5d
}

.theme-dark .available-translations label {
    background-color: #282828;
    border-color: #383838;
    color: #e0e0e0
}

.theme-dark .available-translations input[type=radio]:checked+label,
.theme-dark .available-translations label:hover {
    background-color: #5e5d5d
}

.theme-dark #sura-body .aya-search-result {
    color: #e0e0e0
}

.theme-dark #sura-body .aya-search-result:nth-child(odd) * {
    background-color: #000
}

.theme-dark #sura-body .aya-search-result:nth-child(even) * {
    background-color: #232323
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .9) url(../../../../static/live162/images/loading.svg) center center no-repeat;
    z-index: 200
}

.popup-info {
    font-size: .8rem;
    max-height: 80%;
    overflow-y: auto
}

.popup-info table td {
    padding: .5rem;
    height: auto;
    text-align: center;
    border: 1px solid #ddd
}

.spinner {
    height: 32px;
    width: 32px;
    margin: 2rem auto;
    border: 2px solid #eee;
    border-top-color: #3b98bd;
    border-radius: 50%;
    z-index: 100;
    animation: spin 1.2s ease-in-out infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(1440deg)
    }
}

.prefs-container {
    background-color: #fff;
    padding: .3125rem;
    box-shadow: 0 1px 14px rgba(0, 0, 0, .4);
    height: 77vh
}

.prefs-container .hint--bottom {
    cursor: pointer;
    display: inline
}

.prefs {
    height: calc(100% - 62px);
    overflow-y: auto
}

.prefs .row {
    margin-left: -.3125rem;
    margin-right: -.3125rem
}

.prefs .column,
.prefs .columns {
    padding-left: .625rem;
    padding-right: .625rem
}

@media (min-width:1367px) {
    .prefs-container {
        height: auto
    }
}

@media (max-width:640px) {
    .prefs-container {
        height: calc(100vh - 120px);
        max-height: none;
        overflow-y: hidden
    }
}

.prefs input,
.prefs select {
    margin-bottom: .3125rem;
    border-radius: 3px !important;
    color: #333
}

.prefs select:disabled {
    color: #cacaca
}

hr {
    margin-top: 0
}

label {
    display: inline-block;
    margin: 0 .3125rem
}

.setting-toggle {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.setting-toggle .switch-paddle {
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid;
    border-color: #999
}

.setting-toggle .switch-paddle:after {
    border-radius: 50px;
    background-color: #999;
    top: .1625rem;
    left: .15rem
}

.setting-toggle input:checked~.switch-paddle {
    background-color: #f4c227;
    border-color: #f4c227
}

.setting-toggle input:checked~.switch-paddle:after {
    background-color: #fff
}

.preferences .hint--right:before {
    border-right-color: #3b98bd;
    margin-left: -10px
}

.preferences .hint--left:before {
    border-left-color: #3b98bd;
    margin-right: -10px
}

.preferences .hint--left:after,
.preferences .hint--right:after {
    width: 165px;
    font-size: 12px;
    line-height: 16px;
    white-space: normal;
    transform: translate3d(0, 40%, 0) !important
}

.preferences .hint--left,
.preferences .hint--right {
    display: inline-block;
    cursor: help
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background-color: rgba(0, 0, 0, .65)
}

.preferences-callout {
    position: absolute;
    min-width: 320px;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1000
}

.docked {
    position: fixed;
    z-index: 600;
    left: 0;
	right:0;
	margin-left:auto;
	margin-right:auto;
    background-color: #fff;
    box-shadow: 0 -1px 7px rgba(0, 0, 0, .2)
}

.docked.visible {
    bottom: 0;
}

.docked .close {
    line-height: 1.6;
    color: #5e5e5e;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 24px;
    width: 24px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer
}

@media (min-width:1024px) {
    .docked {
        display: none
    }
}

@page letter {
    size: 216mm 279mm;
    margin: 0
}

.page.size-letter {
    page: letter;
    position: relative;
    width: 105%;
    height: 275mm;
    margin: 0 auto;
    overflow: hidden
}

@media (max-width:1024px) {
    .page.size-letter {
        width: 216mm
    }
}

@supports (overflow:-webkit-marquee) and (justify-content:inherit) {
    .duas .arabic {
        word-spacing: 5px
    }
}

.pr-col {
    -webkit-print-color-adjust: exact
}

.pr-only {
        display: none !important
}

@media print {
    .pr-hide {
        display: none !important
    }

    .pr-only {
        display: flex !important
    }
    .yearly-month{
    	width:50%!important;
    }
    .yearly-month table tr td {
    
    	padding:7px !important;
    }
     @page 
    {
         size: A4;
        margin: 0mm;  /* this affects the margin in the printer settings */
    }
    .print.yearly.calendar table tr td{
    	height:10px !important
    }
     .print-header, .background{
    	 background-color: #313743 !important;
    	         color: white !important;
    	 
        -webkit-print-color-adjust: exact;
        
    } 
    html, body {
	    width: 210mm;
	    height: 297mm;
  	}
    .print-header{
    width: 102.5%;
    margin-right: -9px;
    }.table-ramadan tr td{
    padding: 3px !important;}
    .print-header div h2,  .background th,.background th strong {
    color: white !important;
    }
        .row-title td {
    border: none !important;
    background: #313743 !important;
    text-align: left;
	}
	.adp_interactive_ad {
		display: none !important
	}

}

.hide {
    display: none
}

#addplace input:not(.button),
#addplace textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: none;
    color: #333
}

.zakat-calculator {
    background-color: #59be82;
    table-layout: fixed;
    border: 0
}

.zakat-calculator li {
    border: 0;
    border-right: 2px solid #fff;
    position: relative
}

.zakat-calculator li:last-child {
    border-right: 0
}

.zakat-calculator li a {
    display: block;
    padding: .3125rem;
    color: #fff
}

.zakat-calculator .cell::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, -100%, 0);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 7px solid #3b98bd;
    transition-duration: .4s
}

.zakat-calculator .cell.is-active::after {
    transform: translate3d(-50%, 0, 0)
}

.zakat-calculator .cell.alert {
    background-color: #e26954
}

.zakat-calculator .cell.alert::after {
    border-top-color: #e26954
}
.zakat-calculator .cell.green {
    background-color: #59be82
}

.zakat-calculator .cell.green::after {
    border-top-color: #59be82
}


.zakat-calculator .cell.warning {
    background-color: #f4c227
}

.zakat-calculator .cell.warning::after {
    border-top-color: #f4c227
}

[data-zakat-content] {
    transition-duration: .4s
}

[data-zakat-content] div .input-group-label {
    min-width: 150px
}

table.zakat-details {
    table-layout: fixed;
    width: 100%
}

table.zakat-details tr td {
    height: auto;
    padding: .625rem .3125rem;
    border: 1px solid #ddd
}

.moon {
    border-radius: 50%;
    overflow: hidden;
    height: 90px;
    width: 90px;
    margin: 0 auto;
    position: relative;
    background: transparent url(../../../../static/live162/images/ramadan/moon.png) center no-repeat;
    background-size: 85px 85px
}

.phase {
    position: absolute;
    height: 95px;
    width: 95px;
    border-radius: 50%;
    background-color: #3f4f6c;
    top: 50%;
    left: 100%;
    -ms-transform: translate(0, -30%);
    transform: translate(0, -30%)
}

.is-phasing {
    animation: phase 48s linear infinite
}

@keyframes phase {
    0% {
        transform: translate(0, -100%);
        opacity: 1
    }

    99% {
        opacity: 1
    }

    100% {
        transform: translate(-200%, 0);
        opacity: 0
    }
}

.ram {
    background-image: url(../../../../static/live162/css/ramadan-sprite.png);
    background-repeat: no-repeat;
    display: block
}

.ram-f1 {
    width: 28px;
    height: 34px;
    background-position: 0 0
}

.ram-f2 {
    width: 34px;
    height: 26px;
    background-position: -28px 0
}

.ram-f3 {
    width: 22px;
    height: 20px;
    background-position: -62px 0
}

.ram-lantern {
    width: 176px;
    height: 190px;
    background-position: -84px 0
}

.ram-lantern-light {
    width: 176px;
    height: 190px;
    background-position: -260px 0
}

.ram-stars {
    width: 100%;
    height: 176px;
    background-position: -436px 0;
    background-size: cover
}

.ramadan-card #countdown {
    display: inline-block;
    font-weight: 100;
    font-size: 30px;
    text-align: left;
    position: relative;
    z-index: 2
}

.ramadan-card #countdown>div {
    display: inline-block;
    margin-left: .625rem
}

.ramadan-card #countdown div.days,
.ramadan-card #countdown div.hours,
.ramadan-card #countdown div.minutes,
.ramadan-card #countdown div.seconds {
    color: #fff;
    padding: 8px;
    background-color: rgba(0, 0, 0, .3);
    width: 58px;
    text-align: center
}

.ramadan-card #countdown div>span {
    display: block
}

.ramadan-card .moon {
    position: absolute;
    left: 0;
    top: 0;
    background-size: 45px 45px
}

.ramadan-card .moon,
.ramadan-card .phase {
    height: 50px;
    width: 50px
}

.ramadan-card .lantern {
    bottom: 8px;
    left: 40px;
    z-index: 1;
    height: 85px;
    width: 75px;
    background-position: -39px 0;
    background-size: cover;
    animation: light 4s linear infinite
}

@keyframes light {
    0.00% {
        background-position: -39px 0
    }

    49.999% {
        background-position: -39px 0
    }

    50.00% {
        background-position: -118px 0
    }

    99.999% {
        background-position: -118px 0
    }
}

.ramadan-card .lantern-glow {
    left: 5px;
    bottom: -24px;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background: radial-gradient(#e7c331 10%, rgba(231, 195, 49, 0) 50%);
    z-index: 0;
    animation: glow 2s ease-in-out infinite alternate-reverse
}

@keyframes glow {
    0% {
        opacity: .25;
        transform: scale(1.1)
    }

    100% {
        opacity: .75;
        transform: scale(1.3)
    }
}

@media (max-width:768px) {
    .ramadan-card #countdown>div {
        margin: 0 .03125rem
    }
}

.ramadan-card .stars {
    animation: shrink 3s ease-in-out infinite alternate-reverse
}

.ramadan-card .star-1 {
    top: 23px;
    right: 240px;
    animation: shrink 2s ease-in-out infinite alternate-reverse
}

.ramadan-card .star-2 {
    top: 34px;
    right: 260px;
    animation: shrink 1.2s ease-in-out infinite alternate-reverse
}

.ramadan-card .star-3 {
    top: 52px;
    left: 255px;
    animation: shrink 2s ease-in-out infinite alternate-reverse
}

.ramadan-card .star-4 {
    top: 65px;
    left: 310px;
    animation: shrink 3s ease-in-out infinite alternate-reverse
}

.ramadan-card .star-5 {
    top: 71px;
    left: 356px;
    animation: shrink 1.2s ease-in-out infinite alternate-reverse
}

@keyframes shrink {
    0% {
        transform: scale(1);
        opacity: .2
    }

    100% {
        transform: scale(1.4);
        opacity: 1
    }
}

.ramadan-card .ram-f1 {
    bottom: 1px;
    left: 35px;
    width: 11px;
    height: 90px;
    background-size: cover;
    animation: fly 1.3s ease-in-out infinite alternate-reverse
}

.ramadan-card .ram-f2 {
    bottom: 11px;
    left: 110px;
    width: 14px;
    height: 85px;
    background-position: -13px 0;
    background-size: cover;
    animation: fly 1.4s ease-in-out infinite alternate-reverse
}

.ramadan-card .ram-f3 {
    bottom: 12px;
    left: 67px;
    width: 10px;
    height: 95px;
    background-position: -31px 0;
    background-size: cover;
    animation: fly 1.5s ease-in-out infinite alternate-reverse
}

@keyframes fly {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-7%)
    }
}

.ramadan-card .moon {
    top: 20px;
    left: 20px
}

.ramadan-card .ramadan-subtitle {
    font-size: 20px;
    line-height: 26px
}

.ramadan-card .ramadan-title {
    padding-right: 1.25rem
}

@media (max-width:768px) {
    .ramadan-card .ramadan-subtitle {
        font-size: 14px;
        line-height: 22px
    }

    .ramadan-card .ramadan-title {
        padding-right: 0
    }
}

.floating {
    position: fixed !important;
    z-index: 999999 !important;
    width: auto
}

.floating.bottom.left {
    bottom: 10px;
    left: 20px
}

.floating.bottom.right {
    bottom: 10px;
    right: 20px
}

.survey {
    padding: .625rem 1.25rem
}

.sura-divider {
    height: 100px;
    background: url(../../../../static/live162/images/quran/sura-divider.png) center/cover no-repeat
}

.theme-dark .sura-divider {
    background-image: url(../../../../static/live162/images/quran/sura-divider-dark.png)
}

.iqra [data-blog-menu] {
    padding-top: 31px;
    padding-right: 50px;
    -ms-flex: 1;
    flex: 1;
    max-width: 90%;
    min-width: 50%;
    overflow: hidden
}

.iqra ul#categoryMenu {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    padding-bottom: 15px
}

.iqra ul#categoryMenu li a {
    white-space: nowrap
}

@media (max-width:992px) {
    .iqra [data-blog-menu] {
        padding-top: 15px;
        padding-right: 1rem
    }
}

.iqra nav.iqra-nav .item.dropdown li a {
    color: #5e5e5e
}

.iqra nav.iqra-nav .menu {
    background-color: #fff
}

.iqra nav.iqra-nav .menu>li>a {
    position: relative;
    padding: 0;
    margin-right: 1.25rem
}

.iqra nav.iqra-nav .menu>li:last-child>a {
    margin-right: 0
}

.iqra nav.iqra-nav .menu>li.active a,
.iqra nav.iqra-nav .menu>li>a:focus,
.iqra nav.iqra-nav .menu>li>a:hover {
    color: #333
}

.iqra nav.iqra-nav .menu>li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: -95%;
    background-color: #3b98bd;
    transition-duration: .2s
}

.iqra nav.iqra-nav .menu>li.active a:after {
    width: 100%
}

@media (min-width:992px) {
    .iqra [data-menu-iqra] {
        min-width: 100px
    }
}

.iqra #main-column {
    position: relative;
    top: -100px
}

@media (max-width:992px) {
    .iqra #main-column {
        top: 0
    }

    .iqra [data-menu-iqra] {
        min-width: 50px
    }
}

.iqra .date-published {
    height: 100px;
    width: 100px;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    text-align: center;
    display: table-cell;
    vertical-align: middle
}

.iqra .date-published p {
    line-height: 1
}

.iqra .search-button {
    position: absolute;
    right: 2rem
}

@media (max-width:768px) {
    .iqra .search-button {
        position: relative;
        right: 0
    }
}

.gallery-categories {
    background-color: #0790c9
}

.gallery-categories>li {
    display: block
}

.gallery-categories>li>a {
    color: #fff
}

.gallery-categories li a em {
    vertical-align: text-top
}

.gallery-categories ul.menu li:hover {
    background-color: #f9f9f9
}

.gallery-categories ul.menu li a:focus,
.gallery-categories ul.menu li:hover a {
    color: #333
}

[greetings-container] .column-block a img {
    width: 100%
}

.img-gallary-pic-container {
    position: relative
}

.img-gallary-pic-container .img-gallary-pic {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    height: 0;
    position: relative;
    padding-bottom: 100%
}

@media (min-width:640px) {
    [greetings-container] .column-block:nth-child(odd) {
        padding-right: 10px
    }

    [greetings-container] .column-block:nth-child(even) {
        padding-left: 10px
    }
}

.subscription-box {
    background-color: #3597bf;
    padding: 20px 70px;
    font-size: 14px;
    font-style: inherit
}

.newsletter-submit {
    background-color: #f3c126;
    color: #fff;
    padding: 11px 0;
    border-style: none;
    font-weight: 700;
    border-style: none;
    font-size: 14px;
    width: 100%
}

.newsletter-input {
    border-style: none;
    font-size: 14px
}

.subscription-statement {
    padding: 5px 0;
    color: #fff;
    text-align: center
}

.subscription-heading {
    padding: 0 0;
    color: #fff;
    text-align: center
}

.no-padding {
    padding: 3px
}

.form-error {
    margin: 0
}

.subscribe-submit {
    background-color: #f3c126;
    color: #fff;
    padding: 11px 40px;
    font-weight: 700;
    border-style: none;
    font-size: 14px;
    width: 100%
}

.subscribe-input {
    font-size: 14px
}

#notification {
    padding: 1.25rem 0
}

#notification h1 {
    font-size: 1.4rem
}

.owl-carousel .owl-stage-outer {
    overflow: visible
}

.owl-carousel .owl-stage {
    display: -ms-flexbox;
    display: flex
}

.owl-carousel.owl-drag .owl-item {
    background-color: #fff;
        border: 1px solid rgb(212, 211, 211);
}

.owl-carousel.owl-drag .owl-item:hover {
    box-shadow: 0 3px 25px rgba(178, 178, 178, .6);
    transition: .1s ease-in
}

.carousel--slide--cover {
    min-height: 200px;
    background-size: cover
}

.carousel--slide--content::before {
      content: '';
    display: block;
    width: 25px;
    height: 2px;
    border-style: solid;
    border-radius: 4px;
    border-image-source: linear-gradient(92deg, #34b9ef, #008bc3);
    border-image-slice: 1;
    transition: all .5s
}

.carousel--slide--description {
    max-height: 4.3rem;
    overflow: hidden;
    text-overflow: ellipsis
}

.owl-carousel.owl-drag .owl-item:hover .carousel--slide--content::before {
    width: 50px
}

.owl-theme .owl-nav {
    position: absolute
}

.border-all-sides {
    border: 1px solid #eee
}

@media (max-width:768px) {
    .country-search {
        padding-top: 1.25rem
    }
}

.owl-carousel.owl-drag .owl-item {
    position: relative
}

.owl-carousel.owl-drag .owl-item:not(.active)::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
    z-index: 200
}

@media (max-width:768px) {
    .owl-carousel.owl-drag .owl-item.active {
        box-shadow: 0 3px 25px rgba(178, 178, 178, .6)
    }

    .owl-carousel.owl-drag .owl-item.active .carousel--slide--content::before {
        width: 50px
    }

    .carousel--slide--content::before {
        transition: .4s ease-in
    }
}

.owl.pager {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    background-color: #333;
    border: 0;
    border-radius: 100%;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .5);
    position: absolute;
    top: 50%;
    z-index: 400
}

.owl.pager.next {
    right: 20px
}

.owl.pager.prev {
    left: 20px
}

.owl.pager.next::after,
.owl.pager.prev::after {
    font-family: FontAwesome;
    color: #fff;
    font-size: 1.2rem
}

.owl.pager.next::after {
    content: "\f105"
}

.owl.pager.prev::after {
    content: "\f104"
}

#top-city-table .row-title td {
    height: 4.5em
}

#top-city-table tr td {
    padding: .625rem .3125rem
}

.hover-white:hover {
    color: #fff
}

.hover-color-blue:hover {
    color: #3b98bd
}

.hover-color-black:hover {
    color: #000
}

.text-flip {
    text-align: left
}

.m-ico {
    background-image: url(../../../../static/live162/images/sprite-menu-icons.png);
    background-repeat: no-repeat;
    display: inline-block;
    display: inline-block;
    vertical-align: text-top;
    margin-right: .625rem;
    display:none;
}

.sprite-1 {
    width: 17px;
    height: 16px;
    background-position: -5px -5px
}

.m-ico-places {
    width: 13px;
    height: 18px;
    background-position: -5px -31px
}

.m-ico-places-o {
    width: 13px;
    height: 18px;
    background-position: -5px -59px
}

.m-ico-prayerbook {
    width: 16px;
    height: 16px;
    background-position: -5px -87px
}

.m-ico-prayerbook-o {
    width: 16px;
    height: 16px;
    background-position: -5px -113px
}

.m-ico-prayers {
    width: 13px;
    height: 16px;
    background-position: -5px -139px
}

.m-ico-prayers-o {
    width: 13px;
    height: 16px;
    background-position: -5px -165px
}

.m-ico-qibladirection {
    width: 17px;
    height: 16px;
    background-position: -5px -191px
}

.m-ico-qibladirection-o {
    width: 17px;
    height: 16px;
    background-position: -5px -217px
}

.m-ico-quran {
    width: 17px;
    height: 16px;
    background-position: -5px -243px
}

.m-ico-quran-o {
    width: 17px;
    height: 16px;
    background-position: -5px -269px
}

.m-ico-knowledge {
    width: 16px;
    height: 14px;
    background-position: -5px -295px
}

.m-ico-knowledge-o {
    width: 16px;
    height: 14px;
    background-position: -5px -319px
}

.m-ico-zakatcalculator {
    width: 10px;
    height: 14px;
    background-position: -5px -343px
}

.m-ico-zakatcalculator-o {
    width: 10px;
    height: 14px;
    background-position: -5px -367px
}

.sprite-1a {
    width: 17px;
    height: 16px;
    background-position: -5px -391px
}

.m-ico-calendar {
    width: 16px;
    height: 16px;
    background-position: -5px -417px
}

.m-ico-calendar-o {
    width: 16px;
    height: 16px;
    background-position: -5px -443px
}

.m-ico-dateconverter {
    width: 17px;
    height: 16px;
    background-position: -5px -469px
}

.m-ico-dateconverter-o {
    width: 17px;
    height: 16px;
    background-position: -5px -495px
}

.m-ico-dua {
    width: 16px;
    height: 16px;
    background-position: -5px -521px
}

.m-ico-dua-o {
    width: 16px;
    height: 16px;
    background-position: -5px -547px
}

.m-ico-feedback {
    width: 17px;
    height: 16px;
    background-position: -5px -573px
}

.m-ico-feedback-o {
    width: 17px;
    height: 16px;
    background-position: -5px -599px
}

.m-ico-gallery {
    width: 15px;
    height: 12px;
    background-position: -5px -625px
}

.m-ico-gallery-o {
    width: 15px;
    height: 12px;
    background-position: -5px -647px
}

.m-ico-home {
    width: 13px;
    height: 16px;
    background-position: -5px -669px
}

.m-ico-home-0 {
    width: 13px;
    height: 16px;
    background-position: -5px -695px
}

.m-ico-iqra {
    width: 14px;
    height: 16px;
    background-position: -5px -721px
}

.m-ico-iqra-o {
    width: 13px;
    height: 16px;
    background-position: -5px -747px
}

.m-ico-islamicdays {
    width: 16px;
    height: 16px;
    background-position: -5px -773px
}

.m-ico-islamicdays-o {
    width: 16px;
    height: 16px;
    background-position: -5px -799px
}

.legend-text {
    margin-bottom: .5rem;
    max-width: 100%;
    margin: 0 auto
}

.fieldset-box {
    border: 1px solid #d7d7d7
}

.m-auto {
    margin: auto !important
}

.rectangle-button {
    padding: 12px 100px
}

.flex-justify {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.font-bold-heading {
    font-family: Roboto;
    font-size: 32px;
    font-weight: 700;
}
.pad-top{
	padding-top:20px;
}
.pad-bottom{
	padding-bottom:20px;
}
.pad-top-lg{
	padding-top:30px;
}
.pad-bottom-lg{
	padding-bottom:30px;
}
.pad-top-sm{
	padding-top:10px;
}
.pad-bottom-sm{
	padding-bottom:10px;
}
.pad-left{
	padding-left:20px;
}
.pad-right{
	padding-right:20px;
}
.pad-left-lg{
	padding-left:30px;
}
.pad-right-lg{
	padding-right:30px;
}
.pad-left-sm{
	padding-left:10px;
}
.pad-right-sm{
	padding-right:10px;
}
input#small-search:-ms-input-placeholder {
    color: #90949c !important;
    opacity: 1;
    font-weight: 400
}

input#small-search::placeholder {
    color: #90949c !important;
    opacity: 1;
    font-weight: 400
}
input#citysearch::placeholder {
    color: #0a0a0a !important;
    opacity: 1;
    font-weight: 400
}

.top-bar .dropdown.menu:not(.vertical) .is-dropdown-submenu.first-sub {
    box-shadow: none;
    background-color: #3b98bd !important;
    top: 46px;
    min-width: 142px
}

.top-bar .dropdown.menu:not(.vertical) .is-dropdown-submenu.first-sub li a {
    color: #fff;
    font-size: 14px
}

.top-bar .dropdown.menu:not(.vertical) .is-dropdown-submenu.first-sub li a:hover {
    color: #ded9d9
}

.duas .addthis_toolbox {
    margin-right: 12px
}

.fb-cta p strong {
    color: #3b98bd
}

.subscribe-submit {
    background-color: #3b98bd
}

.subscribe-submit:hover {
    background-color: #318eb4
}

.owl.pager:hover {
    box-shadow: none
}

.accordion li.is-active a em {
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.accordion li a:before {
    content: ''
}

.footer-social-section {
    margin-right: 20px
}

.footer-social-section .fa:hover {
    opacity: .8
}

.current-year .event-links {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize
}

.tar {
    text-align: right
}

.subscription-heading {
    text-transform: capitalize
}

@media (min-width:769px) {
    .monthly-prayerbook .end p.xl {
        font-size: 18px;
        margin-top: 10px
    }
    .monthly-prayerbook .end p.sm {
        font-size: 12px
    }

    #special-days-div .link-date {
        line-height: 21px
    }

    #special-days-div a.event-links {
        padding: 14px 8px
    }

    .verses-quotes .verse-label {
        padding-right: 0
    }
	
    .verses-quotes .verse-label+.columns {
        padding-left: 0
    }

    .verses-quotes a.surah-links {
        padding: 14px 8px
    }

    .verses-quotes {
        padding-bottom: 25px
    }

    .verses-quotes .card--header {
        padding-top: 23px;
        padding-bottom: 18px
    }

    .pad-md {
        padding-bottom: 25px
    }

    .quran-surahs {
        padding-bottom: 15px
    }

    .quran-surahs .card--header {
        padding-top: 23px
    }

    .verse-of-the-day .card--header {
        padding-bottom: 27px
    }

    .verse-of-the-day .card--footer {
        padding-top: 23px
    }

    .monthly-prayerbook {
        padding-bottom: 15px
    }
}
/* .box {
        padding-bottom: 20px;
        padding-top: 20px
    } */
@media (max-width:1199px) {
	
    .box-padded.place-prayer-times {
        text-align: center
    }
	.sharebtn{
		margin-top:unset !important;
	}
	.pad-top{
		padding-top:20px;
	}
	.pad-bottom{
		padding-bottom:20px;
	}
    .testscrollable {
        width: 100%;
        overflow: auto
    }

    .ad-leaderboard.dua-leaderboard {
        margin-top: 96px
    }

    #small-search+.trig-get-location {
        display: none
    }

    #notification h1 {
        font-size: 20px
    }

    .see-all-places,
    .tac {
        text-align: right
    }

    #sidebar .quran-settings .close-button {
        top: 19px !important
    }

    .prayer-times-links a {
        display: block
    }

    .see-all-countries {
        text-align: center
    }

    .dua .title div {
        float: none;
        text-align: center
    }

    .see-all-events {
        display: block
    }

    .upcoming-image.upcoming small,
    small.reviews {
        font-size: 12px !important
    }

    .see-all {
        display: block;
/*         text-align: center
 */    }

    .trig-get-location a {
        position: absolute;
        top: 0;
        left: auto;
        right: 0
    }

    .trig-get-location a img {
        float: right
    }

    .search-results>.empty {
        color: #3b98bd
    }

    .gallery-categories>li>a.text-inverted {
        padding: .7rem 10px
    }

    .ad-leaderboard div {
        width: 100% !important
    }

    iframe {
        width: 100% !important
    }

    .upcoming-event-box.box {
        padding-top: 0;
        padding-bottom: 0
    }

    .notification-header.box {
        padding-top: 0;
        padding-bottom: 0
    }

    .event-landing-page .upcoming {
        position: relative
    }

    .event-landing-page .upcoming .title {
        margin-top: 50px
    }

    .event-landing-page .upcoming .title h1 {
        font-weight: 700;
        text-transform: capitalize
    }

    .event-landing-page small {
        font-size: 12px
    }

    .event-landing-page .banner-footer {
        position: absolute;
        bottom: -22px
    }

    .events-list {
        margin-top: 15px
    }

    .events-list p {
        padding: 5px 10px
    }

    .quran-home .tabs {
        display: block;
        width: 100%;
        overflow-x: scroll;
        white-space: nowrap
    }

    .quran-home .tabs li {
        width: 108px;
        float: none;
        display: inline-block
    }

    #special-days .box .table-controller {
        padding-top: 0
    }

    #special-days #special-days-table {
        margin-bottom: 3px
    }

    #special-days #special-days-table .date-box {
        margin-right: 0
    }

    #special-days #special-days-table .day-details h2 {
        font-size: 14px;
        text-transform: capitalize;
        color: #000;
        font-weight: 700
    }

    #special-days #special-days-table .day-details h4 {
        font-size: 12px;
        font-weight: 400
    }

    #special-days #special-days-table .see-more {
        font-size: 14px
    }

    .special-days {
        padding: 0 !important
    }

    .special-days .row {
        text-align: center
    }

    .special-days .row .addthis_toolbox {
        text-align: center
    }

    .special-days .row h2 {
        margin-bottom: 10px
    }

    .special-days .box {
        padding-top: 0
    }

    .see-all-row .columns {
        padding-top: 0;
        padding-bottom: 0;
        text-align: center
    }

     {
/*         padding: 0;
 */        padding-bottom: 15px
    }

    .iqra-article-tile .row:last-child a {
        padding-bottom: 16px;
        display: block
    }

    .dua-of-the-day-tile .arabic {
        color: #000;
        font-size: 24px;
        padding: 20px 15px
    }

    h2,
    h3 {
        font-size: 20px !important;
    }

    h2 .xl,
    h2.xl,
    h3 .xl,
    h3.xl {
        font-size: 20px !important;
    }

    .all-cities-container {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 5px
    }

    .pagination li {
        margin-right: 0
    }

    .pagination li a {
        padding: .1875rem 8px
    }

    #special-days-div .event-links {
        font-size: 12px;
        text-transform: capitalize
    }

    .verses-quotes .verse-label+.columns {
        padding-left: 1.25rem;
        text-align: left
    }

    .verse-of-the-day .quranic-verse {
        color: #000;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
        padding-top: 10px;
        padding-bottom: 10px
    }

    .translation {
        color: #000;
        font-size: 15px !important
    }

    .subscription-box {
        padding-left: 36px;
        padding-right: 36px
    }

    .top-bar .top-bar-left {
        display: -ms-flexbox;
        display: flex
    }

    .dua-of-the-day-tile .translation {
        margin-bottom: -11px
    }

     .box {
        padding-bottom: 20px;
        padding-top: 20px
    } 

    .prayer-times-tile .prayer-times-header {
        padding-top: 0;
        padding-bottom: 15px
    }

    .prayer-times-tile .todayPrayerDetailContainer,
    .prayer-times-tile .todayPrayerNameContainer {
        padding: .625rem 20px
    }

    .prayer-times-tile h1 {
        margin-top: -8px
    }

    .prayer-times-tile .fieldset-box {
        padding-bottom: 0;
        padding-top: 0
    }

    .no-padding-top,
    .see-all {
        padding-top: 0 !important
    }

    .no-padding-bottom,
    .see-all {
        padding-bottom: 0 !important
    }

    .no-margin-top {
        margin-top: 0 !important
    }

    .no-bottom-margin {
        margin-bottom: 0 !important
    }

    .print-section .print-label {
        margin-top: -4px
    }

    .verse-of-the-day .card--header,
    .verses-quotes .card--header {
        padding-bottom: 0;
        padding-top: 0
    }

    .verses-quotes .card--header {
        padding-top: 0;
        padding-bottom: 9px
    }

    .latest-gallery-cards .card--header,
    .quran-surahs .card--header {
        padding-top: 0
    }

    .verse-of-the-day .card--header h3 {
        margin-top: -5px;
        line-height: normal
    }

    .verse-of-the-day .card--header h3 span {
        vertical-align: top
    }

    .verse-of-the-day .card--footer {
/*         padding-bottom: 0;
 */        line-height: normal
    }

    .quran-surahs,
    .verses-quotes {
        padding-bottom: 7px
    }

    .quran-surahs h2,
    .verses-quotes h2 {
        margin-top: -7px
    }

    #special-days .card--header {
        padding-top: 15px;
        padding-bottom: 8px
    }

    .box .specialdays-link-container {
        padding-bottom: 0;
        padding-top: 10px;
        line-height: normal;
    }

    .iqra-article-tile {
        padding-top: 0;
        padding-bottom: 0
    }

    .iqra-article-tile h3 {
        margin-top: -7px
    }

    .upcoming .addthis_toolbox {
        float: none;
        margin: 0 auto 0;
        display: block;
        text-align: center
    }

    .columns.links {
        padding-left: 10px;
        padding-right: 10px
    }

    .strip-left {
        padding: 0 5px
    }

    .strip-left p {
        font-size: 12px
    }

    .upcoming .text-inverted {
        margin-bottom: 0
    }

    .upcoming .title .text-inverted {
        font-size: 28px
    }

    .upcoming-event-row .bottom small {
        font-size: 14px
    }

    #top-places-card .card--header,
    .dua-of-the-day-tile .card--header {
        padding-bottom: 0;
        padding-top: 0;
        margin-top: -6px;
        margin-bottom: 10px
    }

    #top-places-card>.box {
        padding-bottom: 0;
        padding-top: 0
    }

    #top-places-card .box .reviews {
        font-size: 12px
    }

    #mosques-around+.row .columns {
        padding-bottom: 0;
        line-height: normal
    }

    .monthly-prayerbook .box-padded {
        padding: 0
    }

    .monthly-prayerbook .align-self-btm {
        padding-bottom: 0;
        margin-top: 5px
    }

    .banner {
        padding-bottom: 20px
    }

    .prayer-view-options .tabs-title span {
        padding: 1rem 6px
    }

    .prayer-in-current-city {
        padding-left: 13px;
        padding-right: 13px
    }

    .prayer-in-current-city h1 {
        font-size: 24px
    }

    #main-login .box-white {
        min-height: 460px !important;
        display: block;
        padding-bottom: 0
    }

    #welcome {
        width: auto !important;
        padding: 0 10px
    }

    #welcome #mobile {
        margin-top: -22px
    }

    #welcome #mobile ul {
        padding: 0;
        margin: 0 0 10px 10px
    }

    #welcome #mobile h1 {
        margin-left: -10px
    }

    .prayer-stats {
        display: block !important
    }

    .prayer-stats .button-cont {
        text-align: left;
        margin-top: 10px
    }

    .mobile-logo {
        height: 32px !important
    }

    nav.top-bar .am-logo {
        height: 36px
    }

    .top-bar .top-bar-left {
        position: relative
    }

    header .top-bar .top-bar-left span.item a {
        font-size: 21px;
        margin-top: 5px;
        display: inline-block
    }

    .prayer-times-tile h1 {
        font-size: 24px
    }

    .prayer-heading-section {
        padding-left: 8px;
        padding-right: 8px
    }

    .prayer-times-tile .xxl {
        margin: 0 0 0 -7px;
        font-size: 1.5rem;
        text-align: left
    }

    .prayer-times-tile #clockdiv {
        font-size: 1.5rem
    }

    .no-padding-left {
        padding-left: 0
    }

    .no-padding-right {
        padding-right: 0
    }

    .upcoming-prayer-container {
        padding: 11px 0 3px 0
    }

    .ad-leaderboard {
        max-height: 100px !important;
        margin-top: 0;
        width: 100%;
        overflow: hidden
    }

    .prayer-heading-section {
        margin-top: 9px
    }

    .prayer-heading-section a {
        line-height: normal;
        display: block
    }
}

.slider {
    background-color: transparent;
    height: 427px;
    position: relative;
    padding-left: 0
}

.slider ul {
    position: relative;
    margin: 0;
    padding: 0;
    height: 427px;
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: -96px;
    overflow: hidden
}

.slider ul li {
    background: #fff;
    position: relative;
    display: block;
    float: none;
    padding: 0;
    height: 427px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
    white-space: normal
}

.slider ul li .img-clik {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1
}

.slider ul li span {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 50px;
    background-color: #f4c227;
    margin-bottom: 1rem;
    transition: .1s ease-in
}

.slider ul li img {
    max-width: 100%;
    width: 100%
}

.slider ul li .slider-content {
    padding: 15px 10px
}

.slider ul li h3 {
    font-size: 1.2rem
}

.slider ul li p {
    font-size: .9rem
}

.slider ul li:hover {
    box-shadow: 0 3px 25px rgba(178, 178, 178, .6);
    cursor: pointer;
    transition: .1s ease-in
}

.slider ul li:hover span {
    width: 50px
}

a.control_next,
a.control_prev {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #333;
    border-radius: 100%;
    border: 0;
    color: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .5);
    display: -ms-flexbox;
    display: flex;
    height: 32px;
    justify-content: center;
    position: absolute;
    top: 50%;
    width: 32px;
    z-index: 400
}

a.control_next:hover,
a.control_prev:hover {
    opacity: 1;
    -webkit-transition: all .2s ease
}

a.control_prev {
    left: 20px
}

a.control_next {
    right: 20px
}

.slider_option {
    position: relative;
    margin: 10px auto;
    width: 160px;
    font-size: 18px
}

@media (max-width:768px) {
    #top-12-citites .row.pad-l-md {
        padding-left: 0
    }
 .sharebtn{
		margin-top:unset !important;
	}
    .g-item {
        padding-left: 0;
        padding-right: 0
    }

    .g-item+.g-item {
        display: none
    }

    .slider {
        height: 427px;
        position: relative;
        padding-left: 0
    }

    .slider ul {
        position: relative;
        margin: 0;
        padding: 0;
        height: 427px;
        list-style: none;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0
    }

    .quran-body .quran-header {
        display: block
    }

    .quran-body .quran-header #juz-dropdown,
    .quran-body .quran-header #sura-dropdown {
        float: left
    }

    .quran-body .quran-header .menu li {
        a-position: absolute;
        a-top: 8px;
        a-right: -5px
    }

    .quran-body .quran-header .menu li p {
        padding-left: 0
    }

    .quran-body .quran-header .menu li a {
        width: 115px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-right: 10px;
        position: relative
    }

    header .top-bar .top-bar-left {
        display: -ms-flexbox;
        display: flex
    }

    header .top-bar .item.brand {
        margin: 0 0 10px 0;
        -ms-flex: 0 0 62px;
        flex: 0 0 62px
    }

    header .top-bar .item.brand+.input-group {
        width: auto;
        margin: 0 auto 7px;
        display: block;
        margin-left: 0
    }

    header .top-bar .top-bar-search #small-search+.trig-get-location {
        display: none
    }
}

footer .subscription-fields input {
    box-shadow: none
}

@media (min-width:1056px) {
    .prayer-times-links a {
        display: block
    }

    .prayer-times-card .fieldset-box {
        
        margin-top: 10px
    }

    .prayer-times-card .seeMonthlyContainer {
        padding-bottom: 0
    }
}

@media (min-width:1200px) {
    .sticky-nav {
        overflow: auto;
        max-height: 99vh
    }

    .bottom-section {
        position: relative;
        z-index: 999
    }

    aside {
        background: #fff;
        position: relative
    }

    aside.compact-container {
        width: auto
    }

    aside.compact-container:before {
        right: 0
    }

    aside.compact-container+#main {
        margin-right: 0;
        width: 100% !important
    }

    aside.compact-container+#main>#container {
        max-width: 100%
    }

    aside.compact-container+#main>#container>.row#eq-row {
        max-width: 100%
    }

    aside ul.sidebar.compact {
        width: 53px
    }

    aside ul.sidebar.compact li.get-athan {
        position: relative
    }

    aside ul.sidebar.compact li.get-athan img {
        display: inline-block;
        position: absolute;
        left: 14px
    }

    aside ul.sidebar.compact:hover li.get-athan {
        position: relative
    }

    aside ul.sidebar.compact:hover li.get-athan img {
        position: static
    }

    aside:before {
        position: absolute;
        content: '';
        background: #e9e9e9;
        width: 20px;
        height: 100%;
        z-index: 999;
        right: -17px;
        bottom: 0
    }
}

.grey-bg {
    background-color: #ddd !important
}

#slider {
    -ms-touch-action: manipulation;
    touch-action: manipulation
}

.duas .sidebar {
    height: auto;
    overflow: visible
}

.duas .sidebar .vertical.menu {
    overflow: visible
}

.duas .sidebar .vertical.menu ul.dua-menu {
    height: calc(68vh - 52px);
    overflow: auto
}

.duas .sidebar .vertical.menu ul.dua-menu li a {
    line-height: normal
}

@media (min-width:769px) {
    .athan-logo-container img {
        max-width: 50%
    }
}

.audio-player {
    width: 275px;
    height: 272px;
    background-color: transparent;
    box-shadow: none;
    margin: 0 auto
}

.minimize-btn {
    display: none
}

.player-label {
    padding-top: 17px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .8px;
    text-align: center;
    color: #323637
}

.theme-dark .player-label {
    color: #fff
}

.player-controls {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 35px
}

.player-previous {
    float: left;
    margin-top: 8px;
    cursor: pointer
}

.player-play {
    float: left;
    cursor: pointer
}

.player-next {
    float: left;
    margin-top: 8px;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.player-seeker {
    margin-left: 30px;
    margin-right: 0;
    width: 200px;
    height: 3px;
    background-color: #d3d3d3;
    cursor: pointer
}

.player-seeked {
    float: left;
    width: 0;
    height: 3px;
    background-color: #000;
    cursor: pointer
}

.player-volume {
    position: relative;
    display: block;
    float: left;
    margin-left: 10px;
    cursor: pointer;
    background: 0 0
}

#player-repeat {
    position: relative;
    display: block;
    float: left;
    margin-left: 10px;
    cursor: pointer;
    background: 0 0
}

.player-volume:hover .volume-container {
    display: block
}

.volume-container {
    bottom: 14px;
    cursor: pointer;
    display: none;
    height: 109px;
    margin-left: 19px;
    margin-top: 0;
    position: absolute;
    width: auto;
    z-index: 1;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.volume-slider {
    width: 81px;
    height: 104px;
    display: block;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    overflow: visible;
    z-index: 1;
    bottom: 0
}

.volume-range {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-top: 41px;
    margin-left: -32px;
    cursor: pointer;
    width: 100px;
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: 0;
    opacity: .7;
    transition: opacity .2s
}

.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #323637;
    cursor: pointer
}

.volume-range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #323637;
    cursor: pointer
}

.player-timer {
    float: left;
    padding-left: 37%
}

.player-current-time {
    float: left;
    font-family: Roboto;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .7px;
    color: #7b8488
}

.player-total-time {
    float: left;
    font-family: Roboto;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .7px;
    color: #323637
}

.surah-mobile {
    display: none;
}

.surah-desktop {
    display: block
}

.player-surahs {
    margin-top: 20px;
    float: left;
    width: 275px;
    background-color: #f9f9f9;
    padding: 8px 16px 10px 16px;
}
.player-surahsBlack{
	 margin-top: 20px;
    float: left;
    width: 275px;
    background-color: #212121;
    padding: 8px 16px 10px 16px;
}
.surah-dropdown-btn-black{
	
	background-color: #f9f9f9;
}
.surah-label {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    color: #7b8488
}

.surah-dropdown {
    padding-top: 1px;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.surah-dropdown-btn {
    font: inherit;
    width: 100%;
    margin-top: 1px;
    border: 0;
    background-color: #f9f9f9;
    color: #515457;
    text-align: left;
    outline: 0
}
.dropdown-btn{
	 width: 100%;
	 text-align: left;
	  margin-top: 1px;
    border: 0;
}
.surah-dropdown-menu {
	height: auto;
    max-height: 200px;
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 275px;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    z-index: 1;
    left:-16px;
    bottom:0
}

.surah-dropdown-btn span {
    display: inline-block;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.surah-dropdown-menu div {
    letter-spacing: 3px;
    color: #323637;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px #dad1d1 solid;
    cursor: pointer
}

.surah-dropdown-menu a:hover {
    background-color: #dad1d1
}

.surah-option {
    color: #7b8488;
    text-transform: none;
    height: 40px;
    letter-spacing: 10pt
}

.player-qaari {
    margin-top: 6px;
    float: left;
    width: 275px;
    height: 34px;
    background-color: #f9f9f9;
    text-align: center;
    color: #7b8488;
    padding-top: 8.5px;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 15px
}

.repeat-icon-replay,
.theme-dark .repeat-icon-replay {
    color: #3b98bd
}
.activeAyat{
	background-color: #FFECAF;
}
@media screen and (min-width:768px) {
    .plyr-controls {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

@media screen and (max-width:700px) {
    .repeat-icon-replay {
        color: #3b98bd !important
    }

    #audio-mp3-player .audio-player {
        width: 100%;
        height: 101px;
        opacity: 1;
        background-color: #323637;
        position: fixed;
        z-index: 999999;
        width: 100%;
        left: 0;
        bottom: 0;
        border-radius:8px 8px 0px 0px;
    }

    .player-label {
        display: none
    }

    .player-controls {
        float: right;
        width: 45%;
        margin-right: 32px;
        padding: 10px 30px
    }

    .player-previous {
        margin-top: 0;
        cursor: pointer
    }

    .player-play {
        cursor: pointer;
        margin-top: 0
    }

    .player-next {
        margin-top: 0;
        cursor: pointer
    }

    .play-btn {
        min-width: 40px;
        min-height: 40px;
        object-fit: contain;
        outline: 0
    }

    .next-btn em,
    .pause-btn em,
    .play-btn em,
    .previous-btn em,
    .repeat-icon em {
        color: #fff
    }

    .pause-btn {
        min-width: 40px;
        min-height: 40px;
        object-fit: contain;
        outline: 0
    }

    .next-btn {
        min-width: 18px;
        min-height: 18px;
        object-fit: contain;
        outline: 0
    }

    .previous-btn {
        min-width: 18px;
        min-height: 18px;
        object-fit: contain;
        outline: 0
    }

    .player-seeker {
        margin-top: 78px;
        margin-left: 50px;
        width: 61%;
        height: 3px;
        background-color: #eee;
        position: absolute
    }

    #player-repeat {
        margin-top: 65px;
        padding-left: 5px;
        position: absolute
    }

    .player-seeked {
        float: left;
        width: 0;
        height: 3px;
        background-color: #000
    }

    .player-volume {
        display: none
    }

    .player-timer {
        float: right;
        padding-top: 13px;
        padding-right: 10px
    }

    .player-current-time {
        float: left;
        font-family: Roboto;
        font-size: 9px;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: .7px;
        color: #7b8488
    }

    .player-total-time {
        font-family: Roboto;
        font-size: 9px;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: .7px;
        color: #f9f9f9;
        text-align: right
    }

    .surah-mobile {
        display: block
    }

    .surah-desktop {
        display: none !important;
    }
	.setting-player-dd{
		background-color: #212121 !important;
		width:100% !important;
		height:auto !important;
	}
    .player-surahs {
        margin-top: 10px;
        margin-left: 0;
        float: left;
        width: 44%;
    display: flex;
    flex-direction: column;
        height: 30px;
        background-color: transparent;
    }

   /*  .surah-label {
        display: none
    } */

    .surah-dropdown {
        padding-left: 0;
        background-color: transparent;
        font-family: Roboto;
        font-size: 12px;
        font-weight: 700;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 1.2px;
        text-align: left;
        position: static
    }

    .surah-dropdown-btn {
       display:block;
       color:#fff;
       background-color:#212121;
        
    }

    .surah-dropdown-menu {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
        z-index: 1;
        top: unset;
        bottom: 39px;
    left: 20px;
    width: calc(100% - 49px);
        margin: 0
    }

    .surah-dropdown-btn span {
        display: inline-block;
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .surah-dropdown-menu div {
        letter-spacing: 3px;
        color: #323637;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-bottom: 1px #dad1d1 solid;
        cursor: pointer
    }

    .surah-dropdown-menu a:hover {
        background-color: #dad1d1
    }

    .player-qaari {
        margin-top: 0;
        margin-left: 0;
        float: left;
        height: auto;
        background-color: transparent;
        text-align: left;
        color: #b3babd;
        padding-top: 0;
        font-family: Roboto;
        font-size: 9px;
        font-weight: 700;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 1px;
        margin-bottom:4px;
    }

    .minimize-btn {
        display: block;
        float: left;
            width: 24px;
    height: 24px;
        line-height: 24px;
        text-align: center;
        font-size: 20px;
        font-family: Roboto;
        font-weight: 500;
        font-style: normal;
        font-stretch: normal;
        letter-spacing: 1.1px;
        text-align: center;
        padding-left: 3px;
        position: absolute;
            right: 16px;
    top: 17px;
    }

    .player-controls-minimize {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .player-controls-minimize .player-play {
        margin: 0 50px
    }
}

#at-expanded-menu-container .at-expanded-menu-round {
    left: 50% !important;
    padding-left: 0 !important
}

.stick-pos-surah-bar {
    position: fixed
}

.stick-pos-surah-bar {
    top: 55px
}

@media (min-width:640px) {

    .stick-pos,
    .stick-pos-quran,
    .stick-pos-surah-bar {
        position: fixed
    }

    .stick-pos {
        top: 60px
    }

    .stick-pos-quran {
        top: -230px
    }

    .sticky-from-bottom {
        bottom: 0;
        top: auto
    }

    .bottom-section {
        position: relative
    }

    .mobile-cards .box {
        min-height: 250px
    }
}

.datepicker.datepicker-dropdown.dropdown-menu {
    z-index: 666000 !important
}

#sura-dropdown+.text-right {
    float: right
}

#sura-dropdown+.text-right ul {
    float: right;
    padding: 0;
    padding-top: 30px;
    margin: 0 0 0 -7px
}

#sura-dropdown+.text-right ul li#quran-search+li {
    padding-right: 0
}

@media (max-width:350px) {

    .quran-body .quran-header .menu li a#current-juz,
    .quran-body .quran-header .menu li a#current-sura {
        max-width: 85%
    }
}

.theme-dark .player-seeked {
    background-color: #3b98bd
}

.theme-dark .player-current-time,
.theme-dark .player-total-time {
    color: #fff
}

.volume-container {
    margin-left: 0
}

.volume-slider {
    left: -14px;
    bottom: 7px
}

.volume-range {
    margin-left: -32px;
    margin-right: 0;
    margin-top: 48px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .browser_dependent_height {
        height: 412px
    }
}

@-moz-document url-prefix() {
    .browser_dependent_height {
        height: 431px
    }
}

@media (min-width:769px) {
    .athan-logo-container img {
        max-width: 50%
    }
}

/* #g2hFrame,
#h2gFrame {
    height: 242px !important
} */

@-moz-document url-prefix() {

    #g2hFrame,
    #h2gFrame {
        height: 253px !important
    }
}

.sticky-bottom {
    top: auto;
    bottom: 0
}

.ttc {
    text-transform: capitalize
}

.line {
    box-sizing: border-box;
    height: 84px;
    width: 4px;
    border-left: 4px solid #cecece
}

.rectangle {
    height: 41px;
    width: 240px;
    background-color: #3b99bd
}

.border-right {
    border-right: 2px solid #ddd
}

a.surah-links:hover {
    background-color: #3597bf;
    color: #fff;
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, .3)
}

.display-block {
    display: block
}

a.surah-links:hover .link-date {
    color: #fff
}

.accordian {
    display: none
}

[accordian-target] {
    color: #333;
    text-decoration: none;
    text-align: center;
    display: block
}

[accordian-target].active {
    transform: rotateX(180deg)
}

[accordian-target-1] {
    color: #333;
    text-decoration: none;
    text-align: center;
    display: block
}

[accordian-target-1].active {
    transform: rotateX(180deg)
}

@media (min-width:769px) {
    a.surah-links {
        display: block;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #000;
        padding: 14px 0px;
        font-size: 13px
    }

    [accordian-toggle] {
        display: block !important
    }

    [accordian-toggle-1] {
        display: block !important
    }
}

@media (max-width:768px) {
    a.surah-links {
        display: block;
        color: #000;
        padding: .5rem 1rem;
        font-size: 13px;
        text-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.link-date {
    color: #a7a7a7;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px
}

a.event-links:hover {
    background-color: #3597bf;
    color: #fff;
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, .3)
}

a.event-links:hover .link-date {
    color: #fff
}

@media (min-width:769px) {
    a.event-links {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #000;
        padding: 14px 40px;
        font-size: 12px
    }

    [accordian-toggle] {
        display: block !important
    }

    [accordian-toggle-1] {
        display: block !important
    }
}

@media (max-width:768px) {
    a.event-links {
        display: -ms-flexbox;
        display: flex;
        color: #000;
        padding: .5rem 1rem;
        font-size: 13px;
        text-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.upcoming .bottom>div {
    -ms-flex-pack: center !important;
    justify-content: center !important
}
.sharebtn {
		margin-top:-25px;
}
.font-16{
	font-size:16px
}
.event-label {
    display: inline-block;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
    white-space: nowrap
}

::-webkit-input-placeholder {
    color: #4d4d4d;
    font-weight: 700
}

::-moz-placeholder {
    color: #4d4d4d;
    font-weight: 700
}

:-ms-input-placeholder {
    color: #4d4d4d;
    font-weight: 700
}

:-moz-placeholder {
    color: #4d4d4d;
    font-weight: 700
}

.main-banner {
    -ms-flex-line-pack: left;
    align-content: left;
    margin: auto auto 10px auto;
    transition: .5s;
    background: url(../../../../media/view/ramadan-banner-if.jpg) no-repeat right top;
    background-size: cover;
    text-align: center;
    min-height: 164px;
    position: relative;
    padding-left: 15px;
    position: relative
}

.masjid-container {
    padding-top: 12px
}

.banner-item {
    padding-top: 19px;
    text-align: left;
    position: relative
}

.banner-item h2 {
    font-family: Lato;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    width: 100%;
    letter-spacing: 2.4px;
    margin-bottom: 18px;
    text-align: left;
    display: block;
    padding-top: 0;
    margin-top: 0;
    display: inline-block;
    color: #fff;
    text-shadow: 0 7px 20px rgba(0, 0, 0, .2)
}

.banner-item>a {
    background: #fff;
    display: inline-block;
    padding: 0 10px;
    height: 36px;
    line-height: 36px;
    text-transform: uppercase;
    color: #129cc3;
    font-weight: 700
}

.banner-item>a:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, .2);
    color: #0eadda
}

.poweredBy {
    display: none
}

.hadif-banner .poweredBy {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    margin-top: 19px;
    float: right;
    margin-right: 15px;
    font-weight: 700;
    direction: ltr
}

.hadif-banner .poweredBy a {
    background: 0 0;
    margin-top: -4px;
    display: inline-block;
    vertical-align: top
}

@media screen and (max-width:992px) {
    .hadif-banner .poweredBy {
        margin-right: 0;
        width: 100%
    }

    .hadif-banner.main-banner {
        height: 170px
    }

    .main-banner {
        background: url(../../../../media/view/ramadan-banner-mobile-if.jpg) no-repeat right top;
        height: 131px;
        min-height: 134px;
        background-size: cover
    }

    .banner-item h2 {
        margin-left: 0;
        text-align: center;
        font-size: 16px;
        margin-bottom: 5px;
        margin-top: 2px
    }

    .banner-item>a {
        margin-top: 13px;
        font-size: 14px;
        font-weight: 700
    }

    .banner-item {
        text-align: center
    }
}

#privacy-modal {
    overflow: hidden
}

#privacy-modal h2 {
    font-weight: 400
}

#privacy-modal .modal-footer {
    margin-top: 10px;
    border-top: #ccc 1px solid;
    padding-top: 15px;
    margin-left: -36px;
    margin-right: -36px;
    text-align: right;
    padding-right: 36px
}

#privacy-modal .modal-footer button {
    font-weight: 700
}

@media (max-width:639px) {
    .reveal#privacy-modal {
        width: 96% !important;
        right: 0 !important;
        left: 0 !important
    }

    .reveal#privacy-modal .modal-footer {
        text-align: center;
        padding-right: 0
    }

    #sidebar {
        overflow: hidden
    }
}

.show-ad-athan {
    display: block
}

.show-ad-athan-mobile {
    display: none
}

@media (max-width:768px) {
    .ramadan-title .powered-by a {
        margin-top: -4px
    }

    .show-ad-athan {
        display: none
    }

    .show-ad-athan-mobile {
        display: block;
        margin: 20px auto
    }
}

.agree-terms input {
    float: left;
    margin-top: 6px
}

@media (min-width:639px) {
    .fixed-nav-bar {
        position: fixed;
        max-width: 400px;
        top: 73px
    }
}

@media (min-width:1096px) {
    .navigation-bar-left {
        position: relative
    }

    .navigation-bar-left .navigation-bar-fixed {
        position: fixed;
        top: 73px;
        width: 350px
    }
}

@media (min-width:639px) {
    .fixed-nav-bar {
        position: fixed;
        max-width: 400px;
        top: 73px
    }
}

@media (min-width:1050px) and (max-width:1199px) {
    header .top-bar .top-bar-right .dropdown {
        display: none
    }
}



.new-athan-card {
   /*  background: url(../../../../static/live162/images/Leaderboard-desktop.jpg) no-repeat center top;
    background-size: 100% 100%;
    min-height: 125px;
    position: relative */
}

.new-athan-card:before {
  
 	background-size: cover;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 97px;
    width: 182px
}

.new-athan-card .athan-logo-icon {
    position: absolute;
    right: 44px;
    top: 29px;
    background-size: cover;
    max-width: 50px
}

.new-athan-card h3 {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .9px;
    color: #fff;
    max-width: 321px;
    margin: 30px auto 10px
}

.new-athan-card p a {
    margin-right: 10px
}

.new-athan-card img {
    max-width: 100px
}

@media (max-width:1024px) {
    
    .new-athan-card-container .new-athan-card h3 {
        font-weight: 700;
        line-height: 1.43;
        letter-spacing: .9px;
        margin: 25px auto 20px
    }

    .new-athan-card-container .new-athan-card:before {
        display: none
    }

    .new-athan-card-container .new-athan-card .athan-logo-icon {
        position: relative;
        margin: 0 auto;
        max-width: 10%;
        right: auto;
        top: auto
    }
}

.profile-header {
    height: 128px;
    background: url(../../../../static/live162/images/profile-header.png) no-repeat center top;
    position: relative;
    background-size: cover
}

#changePasswordModal .changePassword .button,
#changePasswordModal .changePassword label>input,
#changePasswordModal p,
.blue-underlined,
.dark-grey-medium,
.fs-textStyles,
.h3-bold,
.light-grey-small {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-stretch: normal;
    line-height: normal
}

.blue-underlined,
.h3-bold {
    font-weight: 700
}

.blue-underlined {
    letter-spacing: normal;
    text-align: right;
    color: #3597bf
}

.h3-bold {
    font-size: 28px;
    letter-spacing: 1px;
    color: #474747;
    margin-top: 46px;
    position: relative
}

.dark-grey-medium,
.dark-grey-small {
    font-weight: 500
}

.dark-grey-medium {
    letter-spacing: .9px;
    color: #6f7578
}

span.light-grey-small {
    letter-spacing: .9px;
    color: #b3babd
}

.profile-img {
    position: absolute;
    left: 50%;
    bottom: -53px;
    border-radius: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    width: 113px;
    height: 113px;
    background: red;
    display: block
}

.no-padding-top {
    padding-top: 0 !important
}

@media (max-width:767px) {
    .profile-section a {
        font-size: 12px;
        font-weight: 500
    }

    .profile-section .h3-bold {
        font-size: 24px
    }

    .profile-section .dark-grey-medium,
    .profile-section .light-grey-small {
        font-size: 14px
    }

    .profile-section .box {
        padding-bottom: 0
    }
}

#changePasswordModal {
    border-radius: 2px;
    width: 397px;
    top: 100px;
    padding: 30px 30px 40px
}

#changePasswordModal p {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.1px;
    color: #323637;
    max-width: 228px;
    margin: 20px auto 40px
}

#changePasswordModal .changePassword {
    width: 237px;
    margin: 0 auto
}

#changePasswordModal .changePassword .button {
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    margin-top: 25px;
    letter-spacing: .2px
}

#changePasswordModal .changePassword label {
    display: block;
    margin: 0
}

#changePasswordModal .changePassword label>input {
    background-color: #f9f9f9;
    border: 0;
    box-shadow: none;
    color: #6f7578;
    display: block;
    font-size: 12px;
    height: 46px;
    line-height: 46px;
    margin-bottom: 5px
}

#changePasswordModal input:-ms-input-placeholder {
    color: #6f7578 !important
}

#changePasswordModal input::placeholder {
    color: #6f7578 !important
}

#responsive-menu li a small {
    font-size: 16px
}

.articleBox {
    display: -ms-flexbox;
    display: flex
}

.articleContainer {
    width: 100%;
    border-radius: 2px;
    background-color: #fff;
}
#articleContainer{
	 box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1)    
	
}
#articleContainer:focus {
   box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.3);
}

#articleContainer:hover {
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.3);
}
.articleContainer:hover .articleLine {
    width: 52px;
    transition: all .5s
}

.Customtext {
    font-family: Roboto;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    min-height: 20px
}

.articleDescription {
    font-size: 14px;
    line-height: 1.25;
    color: #7b8488;
    padding-top: 5px;
/*     height: 180px;
 */    overflow:hidden;
}

.articleHeading {
    font-size: 18px;
    font-weight: 600;
    color: #323637;
    padding-top: 15px
}

.articleLine {
    width: 25px;
    height: 2px;
    border-style: solid;
    border-radius: 4px;
    border-image-source: linear-gradient(92deg, #34b9ef, #008bc3);
    border-image-slice: 1;
    transition: all .5s
}

.readMore {
    text-align: right;
    padding-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #3597bf !important;
    text-decoration: underline;
    text-transform: uppercase
}

.seeAllButton {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .2px;
    text-align: right;
    color: #3597bf;
    margin-right: 20px;
    text-decoration: underline;
    text-transform: uppercase
}

.artcleImg {
    background-repeat: no-repeat;
    background-size: contain;
    height: 220px;
    padding: 0;
    background-size: cover;
    background-position: center
}

.emptydiv {
    margin: 10px
}

.articleContent {
    margin: 20px 15px 20px 15px;
    position:relative;
    height:220px
}

@media (max-width:786px) {
    .articleBox {
        display: block
    }

    .readMore {
        display: none !important
    }

    .articleContent {
        margin: 0;
        padding: 10px;
        height:unset;
    }

    .seeAllButton {
        padding: 15px 20px;
        border-radius: 3px;
        background-image: linear-gradient(106deg, #34b9ef, #008bc3);
        font-family: Roboto;
        font-size: 14px;
        font-weight: 600;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #fff;
        float: right;
        text-decoration: none
    }

    .artcleImg {
        background-size: cover
    }
}

.rectangle-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
 }

.boxText {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .2px;
    text-align: left
}

.rectangle-box-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
/* padding-left:15px; */}

.rectangle-box-icon {
    width: 120px
}

.rectangle-box-icon img {
    width: 88px
}

.rectangle-box-title {
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    color: #3597bf
}

.rectangle-box-discription {
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    text-align: left;
    color: #595959
}

.rectangle-box-button {
    width: 255px;
    padding: 15px;
    border-radius: 4px;
    background-image: linear-gradient(270deg, #514EFF 22.88%, #332BCC 104.13%);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600
}

.rectangle-box-button:hover {
    color: #fff
}

@media (max-width:787px) {
  

    .RalignText {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    /* .rectangle-box-content {
    padding-left:unset;;
    } */
    .rectangle-box{
    padding:unset;
    }
    .rectangle-box-button{
    width:100%;}
}

.gdpr-Popup {
    max-width: 350px;
    padding: 20px !important;
    background-image: linear-gradient(125deg, #34b9ef, #008bc3);
    box-shadow: 12px 16px 20px 0 rgba(0, 0, 0, .3);
    top: 57px !important;
    right: 0 !important;
    position: fixed;
    z-index: 99999999
}
.gdprContainer{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}
.gdpr-btn-container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:baseline;align-items:baseline}
.gdpr-close-btn {
    padding: 10px 54px;
    background-color: #fff;
    color: #323637
}
.ta-right{text-align:right}
.close-button-gdpr {
    top: unset !important;
    font-size: unset !important;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    color: #fff;
    float:right;
}

.more-info-link {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 1.1px;
    text-align: center;
    color: #fff;
    text-decoration: underline
}

.more-info-link:hover {
    color: #fff !important
}

.more-info-link:click {
    color: #fff !important
}

.gdpr-heading-text,
.gdpr-heading-text p {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .5px;
    text-align: left;
    color: #fff
}

.gdpr-content-text {
    font-family: Roboto;
    font-size: 14px;
    padding-top: 20px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: .5px;
    text-align: left;
    color: #fff
}

.gdpr-cancel-button {
    border-radius: 4px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .8px;
    text-align: center;
    padding: 15px;
    background-color: #fff;
    color: #323637
}

.spanOr {
    font-family: Roboto;
    font-size: 11.4px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: .9px;
    text-align: center;
    color: #fff
}

@media (max-width:767px) {
    .gdpr-Popup {
        bottom: 0;
        top: unset !important;
        right: unset !important;
        margin: 10px;
        margin-bottom: 0;
        max-width: unset;
        z-index: 99999999
    }
}
.signup-form-group-label {
    background: 0 0;
    border-left: 0
}

.signup-form-group-field {
    border-right: 0;
    box-shadow: none
}

.fawe-icon-color {
    color: #cdcad3
}

.form-error-signup.is-visible {
    display: table-row !important
}

input.is-invalid-input+span.input-group-label {
    border-color: #ec5840;
    background-color: rgba(236, 88, 64, .1)
}

.search-retults-container {
    position: absolute;
    width: 100%;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    background-color: #fff;
    border-radius: 4px !important;
    border: 1px solid rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    overflow: hidden
}

.search-results {
    max-height: 200px;
    overflow-y: auto
}

.search-results a,
.search-results span {
    padding: .625rem
}

.search-retults-container .tt-footer {
    background-color: #fff;
    padding: .625rem
}

.datepicker.dropdown-menu {
    z-index: 6000 !important
}

.left {
    position: relative;
    overflow-x: hidden;
    z-index: 100
}

header {
    min-height: 35px
}

.header.places {
    background-color: #cacaca;
    border-left: 0;
    z-index: 400
}

.header.places.is_stuck {
    box-shadow: rgba(0, 0, 0, .2) 0 1px 3px
}

.tabular {
    display: table;
    border-collapse: collapse;
    width: 100%
}

.tabular .cell {
    display: table-cell;
    vertical-align: middle;
    border-collapse: collapse
}

.places .input-group,
.places select {
    margin: 0
}

.add-place {
    text-align: center;
    width: 2.5rem;
    font-weight: 700;
    color: #fff;
    background-color: #3597bf
}

.add-place:active,
.add-place:hover,
.add-place:visited {
    color: #fff
}

.places input[type=text],
.places input[type=text]:focus {
    border: 0;
    box-shadow: none
}

.places input[type=text]:focus~.input-group-button .button,
.places input[type=text]:focus~.input-group-button input[type=submit] {
    border-color: #8a8a8a
}

.search-places {
    border-left: 1px solid #cacaca
}

.search-places.input-group {
    position: relative
}

.search-places .button {
    font-family: FontAwesome;
    background-color: #fff;
    color: #5e5e5e;
    border: 0;
    height: 2.5rem;
    width: 2.5rem;
    padding: 0;
    transition: box-shadow .5s, border-color .25s ease-in-out
}

.search-places .button:active,
.search-places .button:focus,
.search-places .button:hover,
.search-places .button:visited {
    background-color: #fff;
    color: #7a7a7a
}

h2 {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative
}

h2,
p {
    overflow-wrap: break-word
}

.button,
p {
    margin: 0
}

@media (max-width:768px) {
    h2 {
        font-size: 1.1rem
    }

    .button,
    p {
        font-size: .8rem
    }
}

a.button {
    border-radius: 4px;
    font-weight: 700
}

.place {
    padding: 1.25rem 1.25rem 1.25rem 0;
    border: 1px solid #cacaca;
    border-top: 0;
    background-color: #fff
}

.place:hover {
    background-color: #f7f7f7
}

.reviews {
    margin-right: .3125rem
}

.rating {
    font-size: 1rem;
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.rating:after {
    content: '★★★★★';
    color: #333;
    z-index: 100;
    overflow: hidden
}

.rating:before {
    content: '★★★★★';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    z-index: 90;
    white-space: nowrap;
    color: #3597bf;
    overflow: hidden
}

.rating.s0:before {
    width: 0
}

.rating.s0-5:before {
    width: 10%
}

.rating.s1:before {
    width: 20%
}

.rating.s1-5:before {
    width: 30%
}

.rating.s2:before {
    width: 40%
}

.rating.s2-5:before {
    width: 50%
}

.rating.s3:before {
    width: 60%
}

.rating.s3-5:before {
    width: 70%
}

.rating.s4:before {
    width: 80%
}

.rating.s4-5:before {
    width: 90%
}

.rating.s5:before {
    width: 100%
}

footer {
    background-color: #3b98bd;
    color: #fff
}

.login .input-group,
.login .input-group-field {
    padding: 0;
    border: 0
}

.login .button {
    border: 0;
    border-radius: 0
}

.login .modal.login {
    max-width: 480px;
    border-radius: 4px
}

.login .form {
    margin-bottom: 1.25rem
}

.map-place-detail {
    padding: 1.25rem
}

.map-place-detail div {
    overflow-wrap: break-word;
    font-size: 14px;
    line-height: 24px;
    color: #5e5e5e
}

.smaller {
    font-size: 12px
}

.place-map-container {
    height: 300px;
    background: #cacaca url(../../../../dApg7.png) center/cover no-repeat
}

#see-map {
    position: fixed;
    z-index: 600;
    bottom: 20px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    display: none
}

@media (max-width:639px) {
    #see-map {
        display: initial
    }

    .place-map-container {
        height: 320px
    }

    #map-details {
        z-index: 1000000;
        max-height: 93.5vh;
        overflow-y: auto
    }

    .reveal {
        z-index: 1000000
    }

    .reveal-overlay {
        z-index: 999999
    }
}

.modal.jamat {
    width: 409px !important
}

.modal.jamat input[type=radio] {
    display: initial;
    margin-bottom: 0
}

.modal.jamat input[type=radio]+label {
    color: #5e5e5e
}

.jamaat-time {
    margin-bottom: .625rem
}

.button.big {
    height: 2.5rem
}

.place {
    border: 0 !important;
    border-bottom: 1px solid #cacaca !important
}

article.review {
    padding: 1rem 0
}

.reviews .horizontal-divider {
    padding: 0
}

.reviews .review p {
    color: #5e5e5e
}

.ratable {
    float: left
}

.ratable input[type=radio] {
    display: none
}

.ratable:not(:checked)>input {
    position: absolute;
    top: -9999px;
    clip: rect(0, 0, 0, 0)
}

.ratable:not(:checked)>label {
    float: right;
    width: 1em;
    padding: 0;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 100%;
    line-height: 1.45;
    color: #333
}

.ratable:not(:checked)>label:before {
    content: '★'
}

.ratable>input:checked~label {
    color: #f4c227
}

.ratable:not(:checked)>label:hover,
.ratable:not(:checked)>label:hover~label {
    color: #ffd63b
}

.ratable>input:checked+label:hover,
.ratable>input:checked+label:hover~label,
.ratable>input:checked~label:hover,
.ratable>input:checked~label:hover~label,
.ratable>label:hover~input:checked~label {
    color: #ffd63b
}

.place-type input[type=radio]:checked+label {
    background-color: #f0f0f0
}

#addplace input[type=checkbox] {
    display: none
}

#addplace input[type=checkbox]+label {
    margin: 0;
    color: #5e5e5e;
    cursor: pointer
}

#addplace input[type=checkbox]+label:before {
    content: '';
    display: inline-block;
    height: 16px;
    width: 16px;
    line-height: 1;
    vertical-align: text-bottom;
    border: 1px solid #ddd;
    margin-right: .625rem;
    text-align: center;
    cursor: pointer
}

#addplace input[type=checkbox]:checked+label:before {
    content: '\2713'
}

.header.places {
    border: 1px solid #cacaca
}

.search-retults-container {
    z-index: 100
}

#sp .search-retults-container {
    border-radius: 0 !important;
    left: -1px !important;
    top: 100%;
    -ms-transform: none;
    transform: none;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .2);
    overflow: visible
}

#sp .typeahead {
    width: 100%
}

#sc .tt-menu {
    margin: 0;
    width: calc(100% + 41px);
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .2)
}

.search-result-item {
    font-size: .8rem;
    padding: .5em .625rem
}

.search-result-item.category {
    color: #333;
    font-weight: 700;
    cursor: pointer
}

.search-result-item.category img {
    height: 18px;
    vertical-align: -1px;
    margin-right: 12px
}

.search-result-item.category:hover {
    color: #333;
    background-color: #f7f7f7
}

.hint--top:before {
    margin-bottom: -10px !important
}

.modal-sm {
    max-width: 480px !important
}

aside nav {
    z-index: 800 !important
}

aside.bg-lightgray {
    background-color: #e9e9e9
}

ul.sidebar.compact {
    width: 50px;
    padding-top: 55px;
    transition: all .4s ease-in-out;
    box-shadow: 4px 0 6px -6px rgba(0, 0, 0, .4)
}

ul.sidebar.compact {
    overflow-x: hidden
}

ul.sidebar.compact li a {
    white-space: nowrap
}

ul.sidebar.compact li a span {
    opacity: 0;
    visibility: hidden;
    transition-delay: .2s;
    transition-duration: .2s
}

ul.sidebar.compact:hover {
    width: 230px
}

ul.sidebar.compact:hover li a span {
    opacity: 1;
    visibility: visible
}

ul.sidebar.compact .m-ico-calendar,
ul.sidebar.compact .m-ico-dateconverter,
ul.sidebar.compact .m-ico-dua,
ul.sidebar.compact .m-ico-feedback,
ul.sidebar.compact .m-ico-gallery,
ul.sidebar.compact .m-ico-home,
ul.sidebar.compact .m-ico-iqra,
ul.sidebar.compact .m-ico-islamicdays,
ul.sidebar.compact .m-ico-knowledge,
ul.sidebar.compact .m-ico-places,
ul.sidebar.compact .m-ico-prayerbook,
ul.sidebar.compact .m-ico-prayers,
ul.sidebar.compact .m-ico-qibladirection,
ul.sidebar.compact .m-ico-quran,
ul.sidebar.compact .m-ico-zakatcalculator {
    margin-left: 2px;
    margin-right: calc(1.225rem - 2px)
}

.modal-lg {
    width: 850px !important
}

.vertical.divide {
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 10px 0;
    position: relative;
    background-color: #fff
}

.vertical.divide span {
    background-color: #fff;
    padding: 0 .4rem;
    position: relative;
    z-index: 200
}

.vertical.divide:after {
    content: "";
    display: block;
    height: 200%;
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 1px solid #ddd
}

.vertical.divide:before {
    content: "";
    display: block;
    height: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #ddd
}

@media (max-width:768px) {
    .modal-lg {
        width: auto !important
    }
}

.facilities img {
    height: 24px
}

.search-click {
    border-left: 1px solid #cacaca
}

#dropdown-report {
    min-width: 300px;
    padding: 1rem;
    top: 0
}

.report-form {
    top: 100%;
    left: 15px;
    z-index: 200
}

@media (min-width:993px) and (max-width:1199px) {
    .report-form {
        left: auto;
        right: 0;
        -ms-transform: none;
        transform: none
    }
}

@media (max-width:992px) {
    .report-form {
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

#place-list {
    max-height: 320px;
    overflow-y: auto
}

.pad-sm {
    padding: 1rem
}

.logo {
    display: inline-block;
    margin-left: 30px;
    cursor: pointer
}

.screen-login {
    background: #E5E5E5;
}

#main-login {
    min-height: 100%;
    width: 100%
}

.content {
    display: -ms-flexbox;
    display: flex
}

.box-black {
    color: #fff
}

.box-black li {
    text-decoration: none;
    list-style-type: none
}

.box-black li img {
    width: 15px;
    margin-right: 15px
}

.box-black li img.email-preference {
    width: 20px
}

img.athan {
    width: 80px
}

.box-black .justified {
    text-align: justify
}

.box-black .list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0
}

.box-black .list .list-item {
    text-align: center;
    min-width: 50px
}

.box-black .list .list-item img {
    display: block;
    height: 40px;
    width: auto;
    margin: .625rem auto
}

.box-white {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 550px
}

.checkbox-text {
    display: inline-block
}

.content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.card {
    min-height: 550px;
    max-width: 320px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .5)
}

#welcome , #password{
    background: white;
    padding: 32px 69px;
   border-radius: 8px;
   margin-top: 16px;
}
@media (max-width:786px){
	#password {
    	padding: unset;
	}
}


.signup img {
    width: 30%
}

ul.clear li {
    list-style-type: none
}

ul.clear li img {
    width: 15px
}

.app-icon,
.google-icon {
    height: 50px;
    width: auto
}

footer {
    background-color: #0b2033;
    width: 100%;
    color: #fff;
    padding-top: 120px
}

footer p {
    display: inline-block;
    margin-bottom: 0;
    font-size: .8rem
}

footer .expanded {
    margin: 0;
    width: 100%
}

footer h4 {
    font-size: 1rem;
    display: inline-block
}

footer .facebook {
    width: 30px
}

footer img {
    width: 40px
}

@media (max-width:768px) {
    footer p {
        font-size: .7rem
    }

    footer h4 {
        font-size: .8rem
    }
}

.fb-button {
    background-color: #4267b2;
    border-color: #4267b2
}

.fb-button:hover {
    background-color: #4267b9
}

.google-button {
    background-color: #dd4b39;
    border-color: #d3412f;
        background-image:unset;
    
}

.google-button:hover {
    background-color: #e75543
}

#main-login input[type=text] {
    font-size: .9rem;
    height: 2.3rem
}

@media (max-width:640px) {
    .text-xs-left {
        text-align: left
    }

    .text-xs-right {
        text-align: right
    }

    .text-xs-center {
        text-align: center
    }

    .text-xs-justify {
        text-align: justify
    }
}

@media (max-width:768px) {
    .text-sm-left {
        text-align: left
    }

    .text-sm-right {
        text-align: right
    }

    .text-sm-center {
        text-align: center
    }

    .text-sm-justify {
        text-align: justify
    }
}

@media (max-width:1199px) {
    .text-md-left {
        text-align: left
    }

    .text-md-right {
        text-align: right
    }

    .text-md-center {
        text-align: center
    }

    .text-md-justify {
        text-align: justify
    }
}

@media (min-width:1200px) {
    .text-lg-left {
        text-align: left
    }

    .text-lg-right {
        text-align: right
    }

    .text-lg-center {
        text-align: center
    }

    .text-lg-justify {
        text-align: justify
    }
}

.background-primary {
    background-color: #3597bf
}

.background-secondary {
    background-color: #3b98bd
}

.background-dark {
    background-color: rgba(0, 0, 0, .7)
}

.background-accent {
    background-color: #f4c227
}

.background-inverted {
    background-color: #fff;
}

.background-transparent {
    background-color: transparent
}

.background-gradient {
    background: linear-gradient(to right, #3b98bd, #3b98bd)
}

.background-deep {
    background-color: #3f4f6c
}

.background-light {
    background-color: #f3f3f3
}

.masjid {
    background-image: url(../../../../static/live162/images/masjid.png);
    background-position: right top;
    background-size: cover
}

.buildings {
    background-image: url(../../../../static/live162/images/buildings.png);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat
}

.buildings.smaller {
    background-size: 285px 112px
}

.ramadan {
    background: #3f4f6c url(../../../../static/live162/images/ramadan/lamps.png) center -10px no-repeat;
    padding: 40px 0;
    position: relative
}

.ramadan-card {
    background: #3f4f6c url(../../../../static/live162/images/ramadan/ramadan-card-bg.jpg) right bottom no-repeat;
    background-size: cover;
    position: relative
}

.hoverable.background-primary:active,
.hoverable.background-primary:focus,
.hoverable.background-primary:hover {
    background-color: #3597bf
}

.hoverable.background-secondary:active,
.hoverable.background-secondary:focus,
.hoverable.background-secondary:hover {
    background-color: #45a2c7
}

.hoverable.background-accent:active,
.hoverable.background-accent:focus,
.hoverable.background-accent:hover {
    background-color: #fecc31
}

.hoverable.background-inverted:hover {
    background-color: #f9f9f9
}

.hoverable.under:hover {
    text-decoration: underline
}

.text-primary {
    color: #3597bf
}

.text-secondary {
    color: #3b98bd
}

.text-accent {
    color: #f4c227
}

.text-inverted {
    color: #fff
}

.text-default {
    color: #333
}

.text-light {
    color: #474747
}

.text-lighter {
    color: #5b5b5b
}

.text-lightest {
    color: #6f6f6f
}

.text-aqua {
    color: #02c9c6
}

.text-deep {
    color: #3f4f6c
}

.hoverable.text-primary:active,
.hoverable.text-primary:focus,
.hoverable.text-primary:hover {
    color: #3597bf
}

.hoverable.text-secondary:active,
.hoverable.text-secondary:focus,
.hoverable.text-secondary:hover {
    color: #45a2c7
}

.hoverable.text-accent:active,
.hoverable.text-accent:focus,
.hoverable.text-accent:hover {
    color: #fecc31
}

.hoverable.text-inverted:active,
.hoverable.text-inverted:focus,
.hoverable.text-inverted:hover {
    color: #fdfdfd
}

.underlined {
    text-decoration: underline
}

.overlined {
    text-decoration: overline
}

.uppercase {
    text-transform: uppercase
}

.lowercase {
    text-transform: lowercase
}

.italic {
    font-style: italic
}

.lh-compact {
    line-height: 1.2
}

.lh-normal {
    line-height: 1.5
}

.lh-far {
    line-height: 1.6
}

.light {
    font-weight: lighter
}

.regular {
    font-weight: 400
}

.medium {
    font-weight: 500
}

.bold {
    font-weight: 700
}

.xs {
    font-size: .8rem
}

.sm {
    font-size: .9rem
}

.md {
    font-size: 1.2rem
}

.lg {
    font-size: 1.4rem
}

.xl {
    font-size: 1.6rem
}

.xxl {
    font-size: 1.8rem
}

.xxxl {
    font-size: 2rem
}

.pad-t-lg {
    padding-top: 30px;
}

.pad-b-lg {
    padding-bottom: 30px;
}

.pad-l-lg {
    padding-left: 30px;
}

.pad-r-lg {
    padding-right: 30px;
}

.pad-lg {
    padding: 30px;
}

.pad-t-md {
    padding-top: 1.25rem
}

.pad-b-md {
    padding-bottom: 1.25rem
}

.pad-l-md {
    padding-left: 1.25rem
}

.pad-r-md {
    padding-right: 1.25rem
}

.pad-md {
    padding: 1.25rem 1.25rem 30px
}

.pad-t-sm {
    padding-top: .625rem
}

.pad-b-sm {
    padding-bottom: .625rem
}

.pad-l-sm {
    padding-left: .625rem
}

.pad-r-sm {
    padding-right: .625rem
}

.pad-sm {
    padding: .625rem
}

.pad-t-xs {
    padding-top: .3125rem
}

.pad-b-xs {
    padding-bottom: .3125rem
}

.pad-l-xs {
    padding-left: .3125rem
}

.pad-r-xs {
    padding-right: .3125rem
}

.pad-xs {
    padding: .3125rem
}

.pad-t {
    padding-top: .9375rem
}

.pad-b {
    padding-bottom: .9375rem
}

.pad-tb {
    padding: 11px .625rem
}

.zero-padding {
    padding: 0 !important
}

.zero-padding div {
    padding: 0 !important
}

.m-t-lg {
    margin-top: 2.5rem
}

.m-b-lg {
    margin-bottom: 2.5rem
}

.m-l-lg {
    margin-left: 2.5rem
}

.m-r-lg {
    margin-right: 2.5rem
}

.m-lg {
    margin: 2.5rem
}

.m-t-md {
    margin-top: 1.25rem
}

.m-b-md {
    margin-bottom: 1.25rem
}

.m-l-md {
    margin-left: 1.25rem
}

.m-r-md {
    margin-right: 1.25rem
}

.m-md {
    margin: 1.25rem
}

.m-t-sm {
    margin-top: .625rem
}

.m-b-sm {
    margin-bottom: .625rem
}

.m-l-sm {
    margin-left: .625rem
}

.m-r-sm {
    margin-right: .625rem
}

.m-sm {
    margin: .625rem
}

.m-t-xs {
    margin-top: .3125rem
}

.m-b-xs {
    margin-bottom: .3125rem
}

.m-l-xs {
    margin-left: .3125rem
}

.m-r-xs {
    margin-right: .3125rem
}

.m-xs {
    margin: .3125rem
}

.zero-margin {
    margin: 0 !important
}

.circular {
    border-radius: 4px
}

.edged {
    border-radius: 0 !important
}

.round {
    border-radius: 100px
}

.button.min {
    min-width: 80px
}

.button.small {
    padding: 6px 12px
}

.button.blue {
    background-color: #3b98bd;
    color: #fff
}

.button.blue:hover {
    background: #4facd1;
    color: #fff
}

.button.blue:focus {
    background: #2784a9;
    color: #fff
}

.button.blue.hollow {
    background-color: transparent;
    color: #3b98bd;
    border-color: #3b98bd
}

.button.secondary {
    border-color: #666
}

.button.special {
    margin-top: .5rem;
    background-color: #f4c227;
    color: #333
}

.button.special:hover {
    background: #ffd63b
}

.button.special:focus {
    background: #e0ae13
}

.button.inverted {
    background-color: #fff;
    color: #3b98bd
}

.button.hollow:focus,
.button.hollow:hover {
    background-color: #fefefe
}

.button.inverted.hollow {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff
}

.button.inverted.hollow:focus,
.button.inverted.hollow:hover {
    background-color: #fff;
    color: #3b98bd
}

.button.aqua {
    background-color: #02c9c6;
    color: #fff;
    position: relative
}

.button.aqua:focus,
.button.aqua:hover {
    background-color: #0fd7d4
}

.cover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.border-left,
.border-right {
    border-left: 1px solid #ddd
}

@media (min-width:1200px) {
    .hide-for-xl {
        display: none !important
    }
}

.card--header {
    padding: 20px
}

.card--header h3 {
    font-weight: 500;
    font-size: 13px
}

.card--header--cta em {
    vertical-align: middle;
    font-size: 1.625em
}

.card--header__with-cta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.card--header__with-icon h3 {
    display: -ms-flexbox;
    display: flex
}

@media (max-width:768px) {
    .card--header__with-cta.is-mobile-block {
        display: block
    }
}

.is-block {
    display: block
}

.is-inline-block {
    display: inline-block
}

.align-self-top {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.align-self-btm {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.padding-sm {
    padding: 1.25rem
}

@media (max-width:768px) {
    .padding-sm {
        padding: .625rem
    }
}

.is-directed {
    direction: ltr
}

.d-flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex
}
.flex-direction-row{
flex-direction: row
}
.flex-direction-col{
flex-direction: column
}
.flex-justify-sb{
	justify-content:space-between;
}
.align-center{
		align-items: center;
}
.flex-justify-sa{
	justify-content:space-around
}
.bg-white{
	background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.margin-bottom{
	margin-bottom:20px;
}
.margin-top{
	margin-top:20px;
}

#upload_link {
  text-decoration: none;
}
 
#file-upload {
  opacity: 0;
      width: 0;
} 

#feedbackbtn{
  right: 10px;
  bottom: 10px;
  position: fixed;
      z-index: 9999;
}
.feedbackAttachment{
	
	display: flex;
    padding: 0 70px 15px 70px;
    padding-top: 0 ;
    flex-direction: row;
    align-items: baseline;
    margin-top: -20px;
}
#feedbackbtn button {
  padding: 15px 50px;
  border-radius: 26px;
  background-image: linear-gradient(106deg, #34b9ef, #008bc3);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  text-align: center;
  color: #ffffff;
  padding: 15px 50px;
      z-index: 99999;
}

#feedbackForm, #thankYouMessage {
  display: none;
  width: 362px;
  right: 10px;
  border-radius: 10px;
  border: solid 1px #7b8488;
  background-color: #ffffff;
  bottom: 10px;
  position: fixed;
      z-index: 999999;
}
.invalid-feedback p{
	color:#ff0000ba;
	font-weight:500;
}
.feedbackFormContainer{
	overflow-y:scroll;
	overflow-x:hidden;
	  border-radius: 7px;
	  height:100%;
	  padding: 0 20px 20px 20px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.2px;
  color: #323637;
	
}
#feedbackForm{
	height:500px;
	display:flex;
	flex-direction:column;
}
.feedbackHeader{
 align-items: center;
  background-color: #000;
  color: #fff;
  padding: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
    border-radius: 10px;
  
  height:10%;
  }
  
  .feedbackFooter{
	height:20%; 
	padding: 20px;
    justify-content:space-evenly;	 	
	 	
  }

.feedbackHeader p {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.feedbackFormContainer-div {
  padding-top: 20px;
}

.feedbackFormContainer div label {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.2px;
  color: #323637;
}

.feedbackFormContainer div input {
  border-radius: 4px;
  border: solid 1px #7b8488;
}

.feedbackFormContainer div textarea {
  height: 106px;
  border-radius: 4px;
  border: solid 1px #7b8488;
} 

#feedbackCancel {
  width: 100%;
  border-radius: 4px;
  border: solid 1px #7b8488;
  background-color: #ffffff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  text-align: center;
  color: #28320a;
  padding: 15px 50px;
}

.feedbackSend {
  width: 100%;
  margin-left: 10px;
  border-radius: 4px;
  background-image: linear-gradient(106deg, #34b9ef, #008bc3);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 480px) {
  #feedbackForm,#thankYouMessage {
    width: 95%;
  }
  #feedbackbtn{
  	display: none;
  }
 
}
.volunteerPageImpact div p{
  font-family: Roboto;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: 0.9px;
  text-align: center;
  color: #211f1f;
}
.volunteerPageImpact div img{
	
	width:80px; height:80px; align-self: center;
}
.float-right{
	float:right;
}
.float-left{
	float:left;
}
.blueGradient{
	background-image: linear-gradient(101deg, #34b9ef, #008bc3) !important;
}
.vpPositionsIcon{
    background: black;
    width: 100px;
    text-align: center;
    padding-top: 25px;
}
.vpPositionsContent{
	
	width:100%;margin-left:20px;
}
.volunteerCard{
	
	padding: 0;
}

@media (max-width: 786px) {
	.volunteerPageImpact{
	flex-direction:column !important;
	}
	.volunteerPageImpact div{
	flex-direction:row !important;
	align-items: center;
	    padding-bottom: 20px;
    border-bottom: 1px solid #6c6c6c26;
    margin: 0 -20px 20px -20px;
	}
	.button .blueGradient{
		width:100%;
	}
	 .button.blue{
    width:100%;
    }
    .vpPositionsIcon{
    background: unset; 
    width: 100px;
    text-align: left; 
    padding-top: unset;
    margin-bottom: unset;
	
    }
    .vpPositionsContent, .vpPositionsContent p{
    	    margin-top: 10px;
    	    margin-left:0;
    	    margin-bottom:10px;
    }
    
    .vpPosts div{
    	flex-direction:column;
    }
    .getRegisterbtn{
    	float:unset !important;
    }
    .volunteerPageImpact div img{
        margin-left: 20px;
    }
    .lastrow{
    	padding-bottom: unset !important; 
    border-bottom:unset !important; 
    margin-bottom: 0 !important;
    }
    .volunteerPageImpact div p{
    	text-align: left;
    	padding-left:20px;
    }
    .volunteerCard{
    	margin-top:unset;
    	padding: 0;

    }
    .volunteerCardContent{
    	flex-direction:column;
    }
    .volunteerCardContent .cardText{
    	padding-right: 20px;
    	padding-left: 10px !important;
    }
}
.partnerShowMoreLink{
	position: absolute;
   bottom: 15px;
    float: right;
    right: 30px;
}
#subscriptionForm input[type=email], #subscriptionForm input[type=text]{
	margin-right: 10px; 
	background-color: #f3f3f3;
}
#subscriptionForm input[type=submit]{
	background-image: linear-gradient(106deg, #34b9ef, #008bc3);height: fit-content;border-radius:4px;
}
#rectangleboximg{
	padding-right:20px;
}
.yearly-prayers-row {
    flex-direction: row;
}
@media(max-width:950px){
	.yearly-prayers-row {
    flex-direction: column;
}

	}
@media(max-width:780px){
	#notification{
	padding : 0;
	}
	.widget.small {
    width: 100%;
}
#prayerBox{
flex-direction:column;
}
#partnerText{
	margin-top:unset;
	margin-bottom: 10px;
}
#subscriptionForm{
	flex-direction:column;
}
.is-dropdown-submenu{
	min-width:unset;
}
#subscriptionForm input[type=email]{
	margin-top:15px;
}

.partnerShowMoreLink{
	position: absolute;
    float: right;
    right: 20px;
    bottom: -10px;
}
.prayeronPhoneBtn{
text-align:center;
margin-top:10px;}

}
.headerPos{
	position: absolute;top: 0px;height: auto;display:none;
}

#div-gpt-ad-1547551287195-0 iframe, #div-gpt-ad-1547551489227-0 iframe, #div-gpt-ad-1547551651149-0 iframe, #div-gpt-ad-1547551777421-0 iframe{
	    max-width: -webkit-fill-available;
	
}
.monthNameeng{
	text-align:left !important; padding: 10px !important;
} 
.monthNameIslamic{
	text-align:right !important; padding: 10px !important;max-width:unset !important;
} 
.prayer-margin-left{
	margin-left: .3125rem;
}
.prayer-margin-right{
	    margin-right: .3125rem;
	
}

.prayer-row-title td:nth-child(1), .prayer-row-title td:nth-child(3) {
    background: #6c6c6c;
}
.prayer-row-title td:nth-child(2) {
    background: #7d7d7d;
}
<!---latest news card--->

.articleContainer{
	width:90%;
}
#articleContainer .readmorebtn{
width: 180px;
  padding: 5px;
  border-radius: 3px;
  border: solid 1px #000000;
  background-color: #ffffff;
  text-align: center;
  margin: 20px auto;
/*   margin-top:25px;
 */  font-size:14px;
  }   
  #articleContainer .readmorebtn:hover,#articleContainer .readmorebtn:focus, #latestarticleContainer .readmorebtn:hover, #latestarticleContainer .readmorebtn:focus{ border: solid 1px #0f97cf;
    background-color: #3b98bd;color:#fff;}
  .trucate-article-title{
	max-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
 #latestarticleContainer .readmorebtn{
width: 180px;
  padding: 5px;
  border-radius: 3px;
  border: solid 1px #000000;
  background-color: #ffffff;
  text-align: center;
  margin:0 auto;
    margin-top:20px;
    font-size:14px;
  }
  .category-name-green-tag{
	position: absolute;
    padding: 10px 14px;
    list-style-type: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
    text-align: center;
    background-color: #5bbd83;
    text-transform: uppercase;
    text-shadow: none;
    color: white;
    top: -33px;
    left: 0px;
    min-width:124px;
    letter-spacing: 1px;
    
}
.artliclelist{
	width: 90%;float: right; padding: 20px 0;
}
.artliclelist p{
	padding-right:0;
}
#iqra-tile{
	direction:ltr;
}
.pad-top-article{
		padding-top:0 ;
	}
.artliclelist img{width:80px; height:80px;}
.hajj-banner
{
	background:url(../../../../static/live162/images/hajj-banner.png);
	background-position:right;
	background-size: cover;
	background-repeat: no-repeat;
}
.hajj-banner-heading{
	font-size: 28px;color: #fff;
}
.hajj-banner-link{
		font-size: 12px;    color: #000000;
    background-color: #DCBF04;
    padding: 3px 10px;
    width: fit-content;
    margin-top: 20px;
		
	}
.ramadan-banner
{
	background:url(../../../../static/live162/images/ramadan/ramadan-banner-desktop-2021.jpg);
	background-position:right;
	background-size: cover;
	background-repeat: no-repeat;
}
.home-athan-banner {
	background-position:right;
	background-size: cover;
	background-repeat: no-repeat;
}
.ramadan-banner-heading{
	font-size: 24px;color: #333
}
.ramadan-banner-link{
	font-size: 12pt;color: #333;text-decoration:underline;
}
@media(max-width:768px){
	.ramadan-banner
	{
		background:url(../../../../static/live162/images/ramadan/ramadan-banner-mob-2021.jpg);
		background-position:right;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.home-athan-banner {
	background-position:right;
	background-size: cover;
	background-repeat: no-repeat;
	}
	.hajj-banner{
		background-position:right;
		background-size: cover;
		background-repeat: no-repeat;
	
	}
	span.hajj-line {
  display: block;
}

	.hajj-banner-heading{
		font-size: 18px;color: #fff;
	}
	.hajj-banner-link{
		font-size: 10px;color: #000000; margin-top: 15px;
	}
	.ramadan-banner-heading{
	font-size: 22px;
	    line-height: 1.3;
    	margin-bottom: 5px;
	}
	.ramadan-div{
		padding-top:0;
		padding-bottom:0;
	}
}
@media(max-width:1049px){
	#articlebox{
	    flex-direction: column;
	    height:unset;}
#articleContainer{
	box-shadow:unset;
}
	.category-name-green-tag{
	    top: -15px;
    	left: 28%;
	}
	#articleContainer, .artliclelist,#latestarticleContainer .readmorebtn {
	width:100%;
	height:100%;
	}
	#articlebox{
	    flex-direction: column;
	    height:unset;}
	#articleContainer .readmorebtn, .articleContent .articleDescription  {
		display:none;
	}
	#articleContainer .articleHeading{
		text-align:center;
		padding-bottom: 30px;
		    padding-top: 30px;
	}
	.iqra-article-tile{
		padding-bottom:20px;
	}
	.artliclelist{
		border-top: 1px solid #e6e4e4;
		border-bottom:none;
	}
	.pad-top-article{
		padding-top:20px;
	}
	
}
.verse-overflow{
	overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
    white-space: nowrap;
}
.truncate-category-title{
	    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 110px !important;
}
.prayer-widget-padding{
	padding-right:30px;
}
.truncate-category-text{
	    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 61px !important;
}

.widget-m-top{
	margin-top:30px;
}
.widget-p-right{
	padding-right:0 !important;
}
.bnology{
 		background-image:url(../../../../static/live162/images/bnology-ad.jpg) !important ;
 		
 	}
 	
 	.hci-box{
 		padding-top:0;
 	}
 	.hci-cleanwater{
 	 		background-image:url(../../../../static/live162/images/hci_IslamicFinder.jpg) !important ;
 	
 	}
 	@media ( max-width:359px)
	{
		 .spnsr-img{
		  background-size : contain !important;
		background-position:center !important;
		background-repeat: no-repeat !important;
		}
     }
 	@media (max-width: 768px){
	 	.hci-cleanwater{
	 	 		background-image:url(../../../../static/live162/images/hci_IslamicFinder-mob.jpg) !important ;
	 			background-position:center !important;
	 	}
 	}
	.mihas{
		background-image:url(../../../../static/live162/images/mihas.png) !important ;
		background-size: cover !important;
    	background-repeat: no-repeat !important;
    	background-position: center !important;
	}
@media (max-width:768px){
	.truncate-category-text{
		max-height: 51px !important;
	}
	.mihas{
		background:#124680 !important;
		background-image:url(../../../../static/live162/images/mihas.png) !important ;
    	background-repeat: no-repeat !important;
    	background-position: center !important;
		background-size: contain !important;
	}
	.truncate-category-title{
		max-height: 100px !important;
	}
	.prayer-widget-padding{
	padding-right:0;
	}
	.widget-p-right{
		padding-right:1.25rem !important;
	}
	.widget-m-top{
		margin-top:unset;
	}
	.bnology{
 		background-image:url(../../../../static/live162/images/bnology-ad.jpg) !important;
 		min-height:280px;
 	}
}
@media (max-width:330px){
	.bnology{
 		background-size: contain !important;
    background-repeat: no-repeat !important;
    min-height:250px;
 	}
}


.cal-method-banner{
	background-image: url(../../../../static/live162/images/cal-method-banner.svg); 
	background-color:#ffffff;
	background-position:right;    
	background-repeat: no-repeat;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.bannertitle{
	padding-left:5px;
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 28px;
	color: #333 !important;
}
.athanbannertitle{
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 28px;
	color: #333 !important;
}
.bannerdescription{
	font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 15px;
}
.bannerinfo{
	padding-top:15px;
	padding-bottom:15px;
}
.title-alignment{
	align-items:baseline;
}
.calendar-athan-banner, .prayertime-athan-banner{
	background-image: url(../../../../static/live162/images/calendar-athan-banner.svg);
	background-color:white;
	background-repeat: no-repeat;
    background-position: bottom;
    align-items: center;
    display: flex;
}
.nyc-athan-banner{
	background-color: white;
    display: flex;
    justify-content: space-between;
}
.nyc-athan-banner .bannerinfo{
	width:70%;
}
.nyc-card-sharing-btn{
	    position: absolute;
    bottom: 20px;
}
.img-banner-nyc{
	max-height:260px;
}
.cal-athan-text{
	margin-bottom:20px;
}
.athanbannerbadge{
	margin-right:10px;
}
.cal-athan-logo-text{
		display:flex;
	}
	.calendar-athan-banner .bannerinfo, .prayertime-athan-banner .bannerinfo{
		width:70%;
		padding-right: 15px;
	}
	.cal-athanmobimg{
	padding-top:20px;
	align-self:flex-end;
	}
	
@media (max-width:768px){
	
	.bannertitle{
		font-size: 18px;
	}
	.bannerdescription{
		font-size: 12px;
	}
	.calendar-athan-banner,  .prayertime-athan-banner, .nyc-athan-banner{
		flex-direction:column;
		background-image:unset;
		align-items:unset;
	}
	.cal-athanmobimg{
	padding-top:0;
	align-self:center;
	}
	.athanbannertitle{
		font-size:20px;
	}
	.calendar-athan-banner .bannerdescription, .prayertime-athan-banner .bannerdescription{
		font-size:15px;
	}
	.calendar-athan-banner .bannerinfo, .prayertime-athan-banner .bannerinfo{
				width:100%;
				padding-bottom:0;
				padding-right: unset;
		
	}
	.title-alignment {
    align-items: end;}
    
	.cal-athan-logo-text{
		display:none;
	} 
	.nyc-athan-banner .bannerinfo{
		width:100%;
	}
	.nyc-card-sharing-btn{
		position:unset;
	}
	
}

 .app_store_logo{width:26px;height:26px;object-fit:contain;margin-right:15px;margin-bottom:-5px}
 .capitalize{
     text-transform: capitalize
 
 }
 .img-banner-calendar, .img-banner-prayertime{
	height:304px;
}

.ris-ad{
	content : url(../../../../static/live162/images/ris-ad-desktop.jpg);
	height: auto;
	width:100%;
	margin-bottom:20px;
}
.nowrap{
	white-space: nowrap;
}
@media(max-width:768px){

	.ris-ad
	{
		content : url(../../../../static/live162/images/ris-ad-mob.jpg);
	}
}
.athanCard{
display : flex;
background-color: white;
min-height:230px;
margin-bottom:20px;
padding:10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.card-text{
	Display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;	max-width:45%;
}
.card-text p{
	text-align:center;
	padding: 0 10px;
}
.text-green{
	color: #05A88B;
}
.card-img{
    align-self: flex-end;
    margin-bottom: -10px;
    overflow: hidden;
    display: flex;
	height:auto;
	width: auto;
}
.m-r-auto{
	margin-right:auto;
}
.m-t-auto{
	margin-top:auto;
}
.athanCardforQuran{
	display: flex;
    background-color: white;
    min-height: 200px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	
}
.font-sm{
	font-size:12px;
}
@media(max-width:768px){
	.athanCard{
		padding:10px 20px;
		margin-bottom: -10px;
		min-height:unset;
	}
	.athanCard,.athanCardforQuran,.card-img{
		max-height:260px;
	}
	.card-text{
		max-width:60%;
	}
	.font-sm{
		font-size:10px;
	}
}
.ramadan-athan-card{
	max-height: 300px;
}
.ramdan-athan-text{
	max-width:60%;
}
.ramdan-athan-ss{
	max-height:280px;
}
@media(max-width:768px){
	.ramadan-athan-card{
		margin-bottom:10px;
		max-height:unset;
	}
	.ramdan-athan-ss{
		max-height:unset;
	}
}
/*---athan card ---*/

.athan-card{
    display: flex;
    justify-content: space-between;
    min-height: 250px;
    padding: 0 20px;
        background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 150px;
    position:relative;
    
}
.athan-card-img{
	    width: 30%;
	    min-width:30%;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
.athan-text{
	margin-top:20px;
}
.starText{
	position:absolute;
	bottom:20px;
	font-size:8px;
}
@media(max-width:768px){
	.athan-card{
		display:block;
		text-align:center;
		background-position:bottom;
	}
	.starText{
	    margin-bottom: 16px;
    	margin-top: 16px;
    	position:unset;
    }
    .athan-card-img{
    	height:150px;
    	width:unset;
    }
}
@media(min-width:768px) and (max-width:999px){

    .nyc-athan-img{
        width: 25%;
        margin-bottom: 0;
    }
    
}

.loginBox2{
	 margin-left: 24px;
}
.loginBox1{
	display:none;
}

.loginHeading{
	font-weight: bold;
	font-size: 24px !important;
	line-height: 28px;
	color: #2A3338;
	margin-left:24px
}
.loginBtn{
	    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 24px;
    height: unset;
    margin-left: 16px;
}
.loginBtn a{
	padding: 0 !important;
}
.appbox{
	display: flex;
    padding: 24px;
    border-radius: 8px;
    background-color: white;
    margin:24px;
    align-items:center;
}
.appboxTitle{
	    font-weight: bold;
    font-size: 14px;
        color: #2A3338;

}
.appBoxContent{
    font-size: 12px;
    line-height: 14px;
    color: #2A3338;
    margin: 4px 0 12px 0;
}
.appboxBtn{
	    border: 1px solid #C0C9CE;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 16px;
    color: #00AD8E;
    padding: 4px 16px;
}
.appboxBtn:hover{
	background-color: #00AD8E;
	border: 1px solid #00AD8E;
	color: #ffffff !important;
}
.textBox{
	    max-width: 73%;
    padding: 0 20px;
}
.fullWidth{
	width:100%;
}
.loginTextbox{
	height:40px;
	border: 1px solid #E2E7E9 !important;
box-sizing: border-box;
border-radius: 4px !important;
box-shadow:none !important;
}
.loginPageBtn{
	height:40px !important;
border-radius: 4px !important;
display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.bg-green{
	background-color: #05A88B !important;
}
.lightgrey{
	color:#4C575D !important;
		font-size: 12px !important;
	
}
.lightgrey a{
	font-size: 12px !important;
}
@media(max-width:768px){
	.loginBox1{
		margin-left: 0 !important;
	    align-self: baseline;
	    display:unset;
	}
	.loginBox2{
		display:none;
	}
	.appbox{
	margin: 24px 0;
    padding: 16px;
    align-items: end;
    border: 1px solid #C0C9CE;
    }
    #main-login{
    background:white !important;
    padding-top:32px;
    }
    .loginHeading{
    margin-left:0;
    }
    
    #main-login .container{
    	flex-direction: column;
    padding: 0 16px;
    }
    #welcome{
     padding: 0;
    
    }
    .box1{
	order: 1;
   
}
.box2{
	order:2
}
.box3{
	order:3
}
}

.video-ad{
	align-items: center;
	justify-content: center;
	width:640px;
	height:360px
}

.video-ad-dua{
	align-items: center;
	justify-content: center;
	
}

.video-ad-mob{
	align-items: center;
	justify-content: center;
	max-height: 220px;
	
}
.footerBanner{
	width:100% !important;
}
@media(max-width:768px){
	.footerBanner{
		margin-top:-32px;
	}
}

.hide-angle-for-london {
	display: none;
}
.aya-text-img.fa-2x {
	color: gray;
	font-size: 1.5em;
	display: block
}
.disable-qari {
	pointer-events: none;
}
.center-image {
	margin-left: auto;
    margin-right: auto;
    display: block;
}
/* survey doc css
 */
 .surveyLink{
	 background: #4EA58C;
	border-radius: 3px;
	font-family: 'Roboto';
	padding: 12px 48px;
	width:fit-content;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #FFFFFF;
	text-align:center;
 }
 .surveyLink:hover{
 	color:#fff;
 }
 .surveyLink:focus{
 	color:#fff;
 }
 .surveybg{
 	background-image:url(../../../../static/live162/images/surveyBg.png);
 	background-position:bottom right;
 	background-repeat:no-repeat;
 }
 .aboutus-logo {
	width: 40%;
}
 @media(max-width:768px){
	.surveyLink{
		width:100%;
	}
	.surveybg{
		background-image:unset;
	}
	.aboutus-logo {
		width: 60%;
	}
}