@charset "UTF-8";
.flag-icon,
.flag-icon-background {
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat
}

#featured,
ul.inline li {
	float: left
}


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

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

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

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

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

@keyframes bounce {
	0%,
	100%,
	20%,
	53%,
	80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translate3d(0, 0, 0)
	}
	40%,
	43% {
		transition-timing-function: cubic-bezier(.755, .050, .855, .060);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		transition-timing-function: cubic-bezier(.755, .050, .855, .060);
		transform: translate3d(0, -15px, 0)
	}
	90% {
		transform: translate3d(0, -4px, 0)
	}
}

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

@keyframes flash {
	0%,
	100%,
	50% {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

.flash {
	animation-name: flash
}

@keyframes pulse {
	0%,
	100% {
		transform: scale3d(1, 1, 1)
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05)
	}
}

.pulse {
	animation-name: pulse
}

@keyframes rubberBand {
	0%,
	100% {
		transform: scale3d(1, 1, 1)
	}
	30% {
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		transform: scale3d(.75, 1.25, 1)
	}
	50% {
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		transform: scale3d(1.05, .95, 1)
	}
}

.rubberBand {
	animation-name: rubberBand
}

@keyframes shake {
	0%,
	100% {
		transform: translate3d(0, 0, 0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0)
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0)
	}
}

.shake {
	animation-name: shake
}

@keyframes swing {
	20% {
		transform: rotate3d(0, 0, 1, 15deg)
	}
	40% {
		transform: rotate3d(0, 0, 1, -10deg)
	}
	60% {
		transform: rotate3d(0, 0, 1, 5deg)
	}
	80% {
		transform: rotate3d(0, 0, 1, -5deg)
	}
	100% {
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

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

@keyframes tada {
	0%,
	100% {
		transform: scale3d(1, 1, 1)
	}
	10%,
	20% {
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}
}

.tada {
	animation-name: tada
}

@keyframes wobble {
	0%,
	100% {
		transform: none
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
}

.wobble {
	animation-name: wobble
}

@keyframes bounceIn {
	0%,
	100%,
	20%,
	40%,
	60%,
	80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		transform: scale3d(.97, .97, .97)
	}
	100% {
		opacity: 1;
		transform: scale3d(1, 1, 1)
	}
}

.bounceIn {
	animation-name: bounceIn
}

@keyframes bounceInDown {
	0%,
	100%,
	60%,
	75%,
	90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0)
	}
	75% {
		transform: translate3d(0, -10px, 0)
	}
	90% {
		transform: translate3d(0, 5px, 0)
	}
	100% {
		transform: none
	}
}

.bounceInDown {
	animation-name: bounceInDown
}

@keyframes bounceInLeft {
	0%,
	100%,
	60%,
	75%,
	90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0)
	}
	75% {
		transform: translate3d(-10px, 0, 0)
	}
	90% {
		transform: translate3d(5px, 0, 0)
	}
	100% {
		transform: none
	}
}

.bounceInLeft {
	animation-name: bounceInLeft
}

@keyframes bounceInRight {
	0%,
	100%,
	60%,
	75%,
	90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0)
	}
	75% {
		transform: translate3d(10px, 0, 0)
	}
	90% {
		transform: translate3d(-5px, 0, 0)
	}
	100% {
		transform: none
	}
}

.bounceInRight {
	animation-name: bounceInRight
}

@keyframes bounceInUp {
	0%,
	100%,
	60%,
	75%,
	90% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	75% {
		transform: translate3d(0, 10px, 0)
	}
	90% {
		transform: translate3d(0, -5px, 0)
	}
	100% {
		transform: translate3d(0, 0, 0)
	}
}

.bounceInUp {
	animation-name: bounceInUp
}

@keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9)
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}
	100% {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	animation-name: bounceOut
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	100% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	animation-name: bounceOutDown
}

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

.bounceOutLeft {
	animation-name: bounceOutLeft
}

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

.bounceOutRight {
	animation-name: bounceOutRight
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0)
	}
	100% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	animation-name: bounceOutUp
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

.fadeIn {
	animation-name: fadeIn
}

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

.fadeInDown {
	animation-name: fadeInDown
}

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

.fadeInDownBig {
	animation-name: fadeInDownBig
}

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

.fadeInLeft {
	animation-name: fadeInLeft
}

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

.fadeInLeftBig {
	animation-name: fadeInLeftBig
}

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

.fadeInRight {
	animation-name: fadeInRight
}

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

.fadeInRightBig {
	animation-name: fadeInRightBig
}

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

.fadeInUp {
	animation-name: fadeInUp
}

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

.fadeInUpBig {
	animation-name: fadeInUpBig
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	animation-name: fadeOutDown
}

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

.fadeOutDownBig {
	animation-name: fadeOutDownBig
}

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

.fadeOutLeft {
	animation-name: fadeOutLeft
}

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

.fadeOutLeftBig {
	animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	animation-name: fadeOutRight
}

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

.fadeOutRightBig {
	animation-name: fadeOutRightBig
}

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

.fadeOutUp {
	animation-name: fadeOutUp
}

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

.fadeOutUpBig {
	animation-name: fadeOutUpBig
}

@keyframes flip {
	0% {
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out
	}
	40% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out
	}
	50% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in
	}
	80% {
		transform: perspective(400px) scale3d(.95, .95, .95);
		animation-timing-function: ease-in
	}
	100% {
		transform: perspective(400px);
		animation-timing-function: ease-in
	}
}

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

.flipInX,
.flipInY,
.flipOutX,
.flipOutY {
	backface-visibility: visible!important
}

@keyframes flipInX {
	0% {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transition-timing-function: ease-in
	}
	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	100% {
		transform: perspective(400px)
	}
}

.flipInX {
	animation-name: flipInX
}

@keyframes flipInY {
	0% {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transition-timing-function: ease-in
	}
	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}
	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}
	100% {
		transform: perspective(400px)
	}
}

.flipInY {
	animation-name: flipInY
}

@keyframes flipOutX {
	0% {
		transform: perspective(400px)
	}
	30% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}
	100% {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}

.flipOutX {
	animation-name: flipOutX
}

@keyframes flipOutY {
	0% {
		transform: perspective(400px)
	}
	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}
	100% {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}

.flipOutY {
	animation-name: flipOutY
}

@keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
	60% {
		transform: skewX(20deg);
		opacity: 1
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1
	}
	100% {
		transform: none;
		opacity: 1
	}
}

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

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

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

@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}
	100% {
		transform-origin: center;
		transform: none;
		opacity: 1
	}
}

.rotateIn {
	animation-name: rotateIn
}

@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
	100% {
		transform-origin: left bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInDownLeft {
	animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	100% {
		transform-origin: right bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInDownRight {
	animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	100% {
		transform-origin: left bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInUpLeft {
	animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}
	100% {
		transform-origin: right bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInUpRight {
	animation-name: rotateInUpRight
}

@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1
	}
	100% {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

.rotateOut {
	animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}
	100% {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}
	100% {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}
	100% {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}
	100% {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	animation-name: rotateOutUpRight
}

@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		transform: rotate3d(0, 0, 1, 80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out
	}
	40%,
	80% {
		transform: rotate3d(0, 0, 1, 60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1
	}
	100% {
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	animation-name: hinge
}

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

.rollIn {
	animation-name: rollIn
}

@keyframes rollOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}

.rollOut {
	animation-name: rollOut
}

.zoomIn {
	animation-name: zoomIn
}

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

.zoomInDown {
	animation-name: zoomInDown
}

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

.zoomInLeft {
	animation-name: zoomInLeft
}

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

.zoomInRight {
	animation-name: zoomInRight
}

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

.zoomInUp {
	animation-name: zoomInUp
}

.zoomOut {
	animation-name: zoomOut
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutDown {
	animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}
	100% {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0);
		transform-origin: left center
	}
}

.zoomOutLeft {
	animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}
	100% {
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0);
		transform-origin: right center
	}
}

.zoomOutRight {
	animation-name: zoomOutRight
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutUp {
	animation-name: zoomOutUp
}

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

.slideInDown {
	animation-name: slideInDown
}

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

.slideInLeft {
	animation-name: slideInLeft
}

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

.slideInRight {
	animation-name: slideInRight
}

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

.slideInUp {
	animation-name: slideInUp
}

@keyframes slideOutDown {
	0% {
		transform: translateY(0)
	}
	100% {
		visibility: hidden;
		transform: translateY(100%)
	}
}

.slideOutDown {
	animation-name: slideOutDown
}

@keyframes slideOutLeft {
	0% {
		transform: translateX(0)
	}
	100% {
		visibility: hidden;
		transform: translateX(-100%)
	}
}

.slideOutLeft {
	animation-name: slideOutLeft
}

@keyframes slideOutRight {
	0% {
		transform: translateX(0)
	}
	100% {
		visibility: hidden;
		transform: translateX(100%)
	}
}

.slideOutRight {
	animation-name: slideOutRight
}

@keyframes slideOutUp {
	0% {
		transform: translateY(0)
	}
	100% {
		visibility: hidden;
		transform: translateY(-100%)
	}
}

.slideOutUp {
	animation-name: slideOutUp
}

@font-face {
	font-family: ss;
	src: url(fonts/ss.19a95458.eot?pg463j);
	src: url(fonts/ss.19a95458.eot?#iefixpg463j) format('embedded-opentype'), url(fonts/ss.3b03fd5f.ttf?pg463j) format('truetype'), url(fonts/ss.069214a0.woff?pg463j) format('woff'), url(fonts/ss.c3432df7.svg?pg463j#ss) format('svg');
	font-weight: 400;
	font-style: normal
}

[class*=" ss-contact-"],
[class^=ss-contact-] {
	font-family: ss;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.ss-contact-rocket:before {
	content: "\e609"
}

.ss-contact-arrow-right:before {
	content: "\e607"
}

.ss-contact-arrow-left:before {
	content: "\e608"
}

.ss-contact-reddit:before {
	content: "\e600"
}

.ss-contact-rocket2:before {
	content: "\e60a"
}

.ss-contact-chat:before {
	content: "\e601"
}

.ss-contact-vimeo:before {
	content: "\e602"
}

.ss-contact-youtube:before {
	content: "\e603"
}

.ss-contact-google:before {
	content: "\e604"
}

.ss-contact-twitter:before {
	content: "\e605"
}

.ss-contact-facebook:before {
	content: "\e606"
}

@font-face {
	font-family: ssSocial;
	src: url(fonts/ssSocial.627d2343.eot?t26cr3);
	src: url(fonts/ssSocial.627d2343.eot?t26cr3#iefix) format('embedded-opentype'), url(fonts/ssSocial.1f903576.ttf?t26cr3) format('truetype'), url(fonts/ssSocial.d7ac3d68.woff?t26cr3) format('woff'), url(fonts/ssSocial.57972825.svg?t26cr3#ssSocial) format('svg');
	font-weight: 400;
	font-style: normal
}

[class*=" social-"],
[class^=social-] {
	font-family: ssSocial!important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#top .hero h1,
span.rate {
	text-transform: uppercase
}

.social-slack:before {
	content: "\e900"
}

body,
html {
	height: 100%
}

@font-face {
	font-family: iransans;
	src: url('../fonts/iransans_ultralight.woff') format('truetype');
}

body {
	color: #999;
	background: #fff;
	background-size: cover;
	font-family: iransans;
	-webkit-font-smoothing: antialiased
}

.tx-row.new {
	-webkit-animation-name: blink;
	-webkit-animation-duration: .9s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-in-out
}

.animate {
	position: relative;
	z-index: 3;
	background: #fff
}

.animate.ng-enter,
.animate.ng-leave {
	transition: .5s cubic-bezier(.25, .25, .75, .75) all;
	position: relative;
	display: block;
	overflow: hidden;
	text-overflow: clip;
	white-space: nowrap
}

.signup-form,
.animation,
.status-container {
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out
}

.animate.ng-leave.animate.ng-leave-active {
	position: absolute;
	z-index: 1;
	display: none
}

.animate.ng-enter,
.animate.ng-leave.animate.ng-leave-active {
	opacity: 0
}

.animate.ng-enter.ng-enter-active {
	background: #e3ede5
}

.animate.ng-enter.ng-enter-active,
.animate.ng-leave {
	opacity: 1
}

.navbar-toggle .icon-bar {
	background-color: #fff
}

.navbar .container {
	position: relative
}

.social-icons a {
	color: #fff;
	font-size: 18px;
	margin-right: 10px
}

.social-icons a:hover {
	color: #6397d1;
	text-decoration: none
}

.navbar-toggle {
	margin-top: 22px
}

.beta-alert {
	margin-bottom: 0;
	border-radius: 0;
	background: 0 0;
	border: 0;
	color: rgba(255, 255, 255, .5);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1041
}

.btn-lg,
div.coins label {
	border-radius: 4px
}

.beta-alert a {
	color: #fff;
	text-decoration: underline
}

#top {
	background: url(../images/bg.d089306b.jpg) center center no-repeat #28394d;
	background-size: cover;
	position: relative
}

.navbar-brand {
	height: 78px;
	padding: 0 15px
}

ul.notranslate li a {
	font-family: sans-serif
}

.navbar {
	padding-top: 10px;
	min-height: 75px
}

.navbar.translate-done {
	opacity: 1
}

.navbar-nav a {
	font-size: 18px
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover,
.navbar-nav li a:active,
.navbar-nav li a:focus,
.navbar-nav li a:hover {
	background: 0 0;
	color: #6397d1
}

.btn-ss {
	background: #55779f;
	border-color: #55779f;
	color: #fff
}

.btn-ss:hover {
	background: #344d6a;
	border-color: #344d6a;
	color: #fff
}

.hero {
	color: #fff;
	margin-bottom: 0
}

.hero .highlight {
	color: #fa9400;
	font-weight: 300
}

#top .hero h1 {
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 20px;
	padding-top: 0
}

.hero p.large {
	font-size: 20px;
	text-align: center
}

.tooltip,
p.small {
	font-size: 14px
}

.no-btn {
	background: 0 0;
	border: 0;
	padding: 0
}

#exchange {
	padding: 20px 0 50px;
	height: calc(100vh - 165px)
}

p.amount-details {
	border-top: 1px solid #ddd;
	margin-top: 30px;
	padding-top: 10px
}

#exchange .container {
	position: relative;
	top: 50%;
	transform: translateY(-52%);
	text-align: center
}

body.status #exchange .container {
	position: static;
	transform: inherit
}

.container-fluid,
div.coins label {
	position: relative
}

body.status #exchange {
	height: auto
}

#featured {
	text-align: right;
	color: #fff;
	width: 50%
}

footer {
	background: #28394d;
	padding: 30px 0;
	margin: 0;
	color: #fff
}

footer h4 {
	margin-top: 15px;
	color: #fff
}

a {
	color: #657380
}

#recentTX table,
#recent_tx th {
	border-top: 0
}

#recent_tx img {
	width: 25px;
	height: auto
}

#recentTX th,
#recent_tx td {
	padding: 15px
}

.coins .row,
div.coins .col-md-12,
div.coins .col-md-4 {
	padding-left: 5px;
	padding-right: 5px
}

#recentTX {
	padding-top: 50px;
	padding-bottom: 50px
}

#recentTX h3 {
	text-align: center;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 0
}

.navbar-default {
	background: 0 0;
	margin-bottom: 0;
	border: 0
}

.navbar-nav>li>a {
	padding: 10px 20px;
	color: #fff
}

.navbar-default .navbar-nav>li>a {
	color: #fff
}

ul.coins {
	margin-bottom: 0;
	margin-top: 15px
}

div.coins label,
ul.coins li {
	margin-bottom: 30px;
	cursor: pointer;
	text-align: center
}

ul.coins li {
	display: inline-block
}

div.coins label {
	border: 2px solid #d4d9dd;
	padding-top: 15px;
	padding-bottom: 15px;
	display: block
}

.coin-outer.disabled,
div.coins label.disabled {
	cursor: not-allowed;
	opacity: 1
}

div.coins label.disabled {
	pointer-events: none
}

.switch-trig,
.tgl+.tgl-btn {
	cursor: pointer
}

div.coins label.disabled:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0
}

div.coins .active label {
	border-color: red
}

div.coins .form-radio:checked~label,
div.coins label:hover,
ul.coins li.active .coin-block {
	border-color: #5cb860
}

div.coins label img {
	width: 50%;
	height: auto;
	max-width: 100px
}

div.coins label:active {
	background: #f4f4f4
}

div.coins label strong {
	display: block;
	margin-top: 5px
}

div.coins .form-radio {
	display: none
}

.coin-selection label {
	font-size: 18px;
	color: #999;
	font-weight: 400
}

.panel-default.output>.panel-heading {
	background: #7d669e
}

.input-coin img,
.output-coin img {
	width: 100%;
	height: auto;
	max-width: 100px
}

.animation.ng-enter {
	opacity: 0
}

.animation.ng-enter.ng-enter-active,
.animation.ng-leave {
	opacity: 1
}

.animation.ng-leave.ng-leave-active {
	opacity: 0
}

#nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 80px;
	height: 100%;
	background: #28394d
}

.signup-form .form-heading,
.coin-body,
.coin-data,
.inline-loading {
	position: relative
}

.coins .row {
	height: 200px;
	overflow-y: auto;
	padding-top: 15px
}

.input-coin button,
.output-coin button {
	display: inline-block;
	padding: 10px 40px;
	border-radius: 4px;
	border: 0 solid #d4d9dd;
	width: 100%;
	background: #fff
}

.coin-selection button:hover {
	border-color: #55779f;
	opacity: .5
}

.col-md-6 {
	text-align: center
}

.coin-data {
	font-size: 14px;
	color: #fff;
	background: #55779f;
	border-radius: 4px 4px 0 0
}

.coin-data .rate,
.coin-data div {
	margin-bottom: 3px;
	text-align: center
}

.coin-data .rate {
	padding: 10px 0;
	background: rgba(0, 0, 0, .1);
	border-right: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .09)
}

.coin-data label {
	display: block;
	color: rgba(255, 255, 255, .5)
}

.coin-data div.last {
	border-right: 0
}

.signup-form,
.status-container {
	position: relative;
	max-width: 650px;
	background: #fff;
	border-radius: 6px 6px 4px 4px;
	padding: 0 40px 40px;
	display: inline-block;
	box-shadow: 0 0 30px 2px rgba(0, 0, 0, .2);
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

.status-container {
	max-width: 680px;
	border-radius: 6px 6px 4px 4px
}

.signup-form.form.coins {
	padding: 30px
}

.inline-loading {
	top: -2px
}

label.inline {
	display: inline-block;
	margin: 0
}

.form-container {
	padding-top: 30px
}

.signup-form .btn-default.submit {
	font-size: 18px;
	padding: 15px 0;
	background: #55779f;
	border-color: #55779f;
	color: #fff
}

.signup-form .btn-default.submit:hover {
	background: #344d6a;
	border-color: #344d6a;
	color: #fff
}

.signup-form .form-heading {
	background: #55779f;
	border-radius: 6px 6px 0 0;
	padding: 0;
	margin-left: -40px;
	margin-right: -40px;
	font-size: 18px;
	color: #384047;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	color: #fff;
}

.signup-form .form-heading .loader {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%
}

.signup-form .form-heading ul {
	position: relative;
	margin-bottom: 0;
	top: 2px
}

.signup-form .form-heading ul li {
	font-size: 14px;
	padding: 0 5px;
	border-right: 1px solid #e8ebed
}

.signup-form .form-heading ul li:last-child {
	border-right: 0
}

#transactions {
	position: fixed;
	right: 0;
	top: 0;
	width: 350px;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	padding-left: 15px
}

.col-md-5 {
	text-align: center
}

.coin-selection {
	position: relative
}

.coin-selection .col-md-2 {
	height: 100%;
	top: 80px;
	position: relative;
	text-align: center
}

.coin-selection .switch-button {
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 25px;
	color: #ddd;
	width: 100px;
	left: 50%;
	z-index: 9
}

.coin-selection h4 {
	font-weight: 400;
	margin-bottom: 0;
	font-size: 18px;
	color: #999
}

.coin-selection .col-md-2 span {
	vertical-align: middle;
	font-size: 30px;
	color: #d4d9dd
}

#top {
	z-index: 1040
}

.btn-default {
	transition: all .2s ease-in-out;
	background: 0 0;
	color: #70808e;
	border: 2px solid #d4d9dd;
	display: block;
	font-size: 25px
}

.btn-default:hover {
	background: 0 0;
	border-color: #70808e
}

.btn-default.btn-success {
	background: #4cae4c;
	border-color: #4cae4c
}

.btn-default.btn-success:hover {
	background: #4cae4c!important
}

.fields .form-item {
	margin-bottom: 30px;
	position: relative
}

.fields .form-item .inline-loading {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.form-control {
	height: 45px;
	border-color: #ddd;
	box-shadow: 0 0 0 transparent;
	-webkit-appearance: none
}

.form-control:focus {
	border-color: #55779f;
	box-shadow: none
}

.input-lg.form-control {
	height: 46px
}

.form-control.input-box {
	border-left-width: 1px;
	border-right-width: 1px;
	border-top-width: 1px;
	height: 46px
}

.input-group-btn .btn {
	background: #fff;
	color: #888;
	border-color: #ccc
}

.input-group-btn .btn.btn-success {
	background: #5cb85c;
	color: #fff;
	border-width: 1px;
	border-color: #5cb85c
}

.btn-full {
	width: 100%
}

.status-area {
	background: url(../images/steps_bg.5765a187.png) center center no-repeat #3e5877;
	background-size: cover;
	padding: 30px 40px;
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, .3);
	margin: 15px -40px
}

.qr-code img {
	width: 100%;
	height: auto
}

.status-block {
	padding: 15px;
	color: rgba(255, 255, 255, .4);
	position: relative;
	text-align: center;
	opacity: .5
}

.status-block label {
	display: block
}

.status-block .status {
	position: absolute;
	right: 8px;
	top: 8px;
	font-size: 12px;
	background: 0 0;
	border-radius: 300px;
	width: 25px;
	height: 25px;
	line-height: 31px
}

.bad .status-block .status {
	background: #d9534f;
	color: #fff
}

.good .status-block .status {
	background: #78ab41;
	color: #fff
}

.status-block .status img {
	width: 100%;
	height: auto
}

.pending .status-block .status {
	color: #888
}

.status-block .status span.glyphicon {
	font-size: 14px
}

.status-block .glyphicon-remove {
	top: 0
}

.active .status-block {
	color: #fff;
	opacity: 1
}

.status-block span.glyphicon {
	font-size: 25px
}

.active.pending .status-block {
	-moz-animation-name: flash;
	-moz-animation-iteration-count: infinite;
	-moz-animation-delay: 2.5s;
	-webkit-animation-name: flash;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 2.5s;
	animation-name: flash;
	animation-iteration-count: infinite;
	animation-duration: 2.5s
}

#status-buttons .active {
	color: #fff
}

.instructions h4 span {
	font-size: 14px;
	color: #ccc;
	margin-top: 3px
}

.instructions h2 {
	margin-top: 20px;
	text-align: left
}

.info {
	text-align: left
}

.icon-md {
	font-size: 30px
}

.inst-text {
	padding-bottom: 15px;
	border-bottom: 1px dashed #ddd;
	margin-bottom: 15px
}

.inst-text p:last-child {
	margin-bottom: 0
}

.good .status-block {
	color: #78ab41
}

.bad .status-block,
.splitterText {
	color: #d9534f
}

.failed .status-block {
	color: #e73a3a
}

.failed .status-block span.status {
	background: #e73a3a
}

.pending .status-block span.status span:before {
	opacity: 1;
	left: 1px;
	top: 2px;
	animation: spin 4s linear infinite
}

@keyframes spin {
	100% {
		transform: rotate(360deg)
	}
}

.recent-tx {
	padding-top: 50px;
	padding-bottom: 50px
}

.recent-tx h3 {
	margin-bottom: 20px
}

.coin-modal .modal-body {
	height: calc(100vh - 76px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}

.coin-modal .modal-dialog {
	width: 100%;
	border-radius: 0;
	margin: 0;
	border: 0
}

.coin-modal .modal-content {
	border: 0;
	border-radius: 0
}

.recent-tx .tx-block {
	display: block;
	overflow: hidden;
	text-align: center;
	border-top: 1px solid #ddd;
	margin-bottom: 15px
}

.recent-tx .tx-info {
	text-align: left;
	display: block
}

.align-center,
.coin-pair,
.raw-data,
.stats strong,
input.align-center {
	text-align: center
}

.recent-tx .tx-block span {
	color: #999;
	padding: 12px 0
}

.recent-tx .tx-block p {
	color: #999;
	background: #f4f4f4;
	padding: 15px;
	margin-bottom: 0
}

.recent-tx .tx-block img {
	width: 25px;
	height: auto
}

.input-coin.sm img,
.output-coin.sm img {
	width: 25px
}

.inline {
	display: inline-block
}

.coin-selection.secondary .input-coin {
	margin-right: 15px
}

.coin-selection.secondary .output-coin {
	margin-left: 15px
}

.coin-selection.secondary .input-coin a,
.coin-selection.secondary .output-coin a {
	padding: 0;
	border: 0
}

.coin-selection.secondary {
	background: #eee;
	margin-left: -30px;
	margin-right: -30px;
	margin-top: -20px;
	padding: 30px;
	position: relative
}

.coin-selection.secondary h4 {
	margin-top: 0;
	margin-bottom: 0
}

.coin-pair,
.form-actions {
	margin-bottom: 15px
}

.coin-pair label {
	margin-right: 15px
}

.coin-pair label.liquid {
	margin-left: 15px;
	display: inline-block;
	border-left: 1px solid #ddd;
	padding-left: 15px
}

.instructions strong,
.stats strong {
	display: block
}

.coin-pair span {
	color: #ddd;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 30px;
	position: relative;
	top: 0
}

.coin-pair img {
	width: 50px;
	position: relative;
	top: -5px
}

.back-btn,
.marquee {
	position: absolute;
	left: 0
}

h4 span.label {
	color: #fff;
	font-weight: inherit;
	font-size: 14px
}

.email-info {
	margin-top: 15px
}

.order-type .col-md-6 {
	padding-right: 0;
	padding-left: 0
}

.order-type .col-md-6:first-child .btn {
	border-radius: 4px 0 0 4px
}

.order-type .col-md-6:last-child .btn {
	border-radius: 0 4px 4px 0
}

.order-type .label-sm {
	font-size: 12px;
	margin-top: 10px;
	display: block
}

.order-type {
	width: 100%;
	margin-bottom: 0
}

.social strong,
.sub-order-details {
	margin-bottom: 15px
}

.order-type .btn {
	color: rgba(0, 0, 0, .4);
	border: 0;
	font-size: 18px;
	background: rgba(0, 0, 0, .05)
}

.order-type .btn:last-child {
	border-left: 0
}

.order-type .btn:first-child {
	border-right: 0
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
	margin-left: 0
}

.order-type .btn.active,
.order-type .btn.active:hover {
	background: rgba(0, 0, 0, .2);
	color: #fff;
	border-color: #d9d9d9;
	box-shadow: 0 0 0 transparent
}

.order-type .btn:hover {
	border-color: #d4d9dd;
	background: #f4f4f4
}

.sub-order-details {
	font-size: 16px;
	margin-top: 5px
}

.sub-order-details .label {
	font-size: 14px;
	font-weight: 400
}

.label.label-default.no-fill {
	background: #fff;
	color: #888;
	border: 2px solid #ddd
}

.social {
	margin-top: 10px
}

.social span {
	font-size: 30px;
	margin-right: 15px;
	color: #3e5877
}

.miner-fee {
	color: #888;
	margin-top: -7px
}

.instructions h4.first,
.margin-top-0,
.progress {
	margin-top: 0
}

.text-or {
	line-height: 50px;
	color: #888;
	font-weight: 700
}

#signal {
	height: 10px
}

.fill {
	fill: transparent
}

#signal.liquid-1 g:nth-child(1) .fill,
#signal.liquid-2 g:nth-child(1) .fill,
#signal.liquid-2 g:nth-child(2) .fill,
#signal.liquid-3 g:nth-child(1) .fill,
#signal.liquid-3 g:nth-child(2) .fill,
#signal.liquid-3 g:nth-child(3) .fill,
#signal.liquid-4 g:nth-child(1) .fill,
#signal.liquid-4 g:nth-child(2) .fill,
#signal.liquid-4 g:nth-child(3) .fill,
#signal.liquid-4 g:nth-child(4) .fill,
#signal.liquid-5 g:nth-child(1) .fill,
#signal.liquid-5 g:nth-child(2) .fill,
#signal.liquid-5 g:nth-child(3) .fill,
#signal.liquid-5 g:nth-child(4) .fill,
#signal.liquid-5 g:nth-child(5) .fill {
	fill: #fff
}

.instructions #signal.liquid-1 g:nth-child(1) .fill,
.instructions #signal.liquid-2 g:nth-child(1) .fill,
.instructions #signal.liquid-2 g:nth-child(2) .fill,
.instructions #signal.liquid-3 g:nth-child(1) .fill,
.instructions #signal.liquid-3 g:nth-child(2) .fill,
.instructions #signal.liquid-3 g:nth-child(3) .fill,
.instructions #signal.liquid-4 g:nth-child(1) .fill,
.instructions #signal.liquid-4 g:nth-child(2) .fill,
.instructions #signal.liquid-4 g:nth-child(3) .fill,
.instructions #signal.liquid-4 g:nth-child(4) .fill,
.instructions #signal.liquid-5 g:nth-child(1) .fill,
.instructions #signal.liquid-5 g:nth-child(2) .fill,
.instructions #signal.liquid-5 g:nth-child(3) .fill,
.instructions #signal.liquid-5 g:nth-child(4) .fill,
.instructions #signal.liquid-5 g:nth-child(5) .fill {
	fill: #222
}

.back-btn {
	color: #fff;
	top: 50%;
	transform: translateY(-50%)
}

.back-btn span {
	top: 2px
}

.marquee {
	background: 0 0;
	color: #fff;
	bottom: 0;
	width: 100%;
	padding: 5px 0;
	line-height: 24px
}

.raw-data {
	width: 50%
}

.raw-data p.large {
	font-size: 18px;
	font-weight: 700;
	margin: 0
}

.raw-data .smallicon {
	width: 25px;
	position: relative;
	margin-right: 5px
}

.raw-data .ss-contact-arrow-right {
	font-size: 14px;
	font-weight: 400;
	position: relative;
	top: 2px
}

.chart {
	width: 25%
}

.progress {
	margin-bottom: 0;
	border-radius: 2em;
	background: rgba(0, 0, 0, .2);
	height: 15px
}

.progress-bar-success {
	background-color: #55779f
}

.stats {
	background: #f4f4f4;
	padding: 30px 0;
	border-top: 1px solid #ddd
}

.stats h3 {
	margin-bottom: 30px
}

.no-padding {
	padding-left: 0;
	padding-right: 0
}

.instructions .col-md-6 {
	text-align: left
}

#top h1.page-header {
	border-radius: 4px 4px 0 0;
	font-size: 20px;
	text-align: left;
	margin: 0 -40px 15px;
	background: #55779f;
	padding: 30px 40px;
	color: #fff
}

#top h1.page-header .btn {
	position: relative;
	top: -6px
}

span.order-id {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
	position: relative;
	top: -2px;
	margin-left: 5px
}

.coin-image {
	position: relative;
	height: 140px;
	width: 100%;
	overflow: hidden
}

.coin-image img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.modal-header {
	position: relative
}

.modal-header input {
	border: 0;
	font-size: 30px;
	font-weight: 600
}

.modal-header button.close {
	position: absolute;
	left: 30px;
	top: 50%;
	font-size: 40px;
	transform: translateY(-50%)
}

.break-word {
	word-wrap: break-word
}

qrcode canvas {
	width: 100%;
	height: auto
}

.disabled {
	opacity: .3
}

.progress-bar.half {
	width: 50%
}

.progress-bar.full {
	width: 100%
}

.loading.big {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	background: rgba(255, 255, 255, .95);
	border-radius: 6px
}

.loading .alert,
.loading.big img {
	top: 50%;
	transform: translate(-50%, -50%)
}

.TickerNews,
.loading .alert,
.loading.big img {
	position: absolute;
	left: 50%
}

.loading.big img {
	width: 50px
}

.email-form {
	margin-bottom: 30px
}

.loading .alert {
	font-size: 18px
}

#exchange .container.coin-select {
	text-align: right
}

#exchange .container.coin-select .signup-form {
	max-width: 550px;
	min-width: 500px
}

.form-footer {
	margin-left: -30px;
	margin-right: -30px;
	padding-left: 30px;
	padding-right: 30px
}

.inputs-header {
	text-align: center;
	color: #888;
	padding-bottom: 20px;
	font-weight: 700;
	margin-top: -30px;
	padding-top: 50px;
	font-size: 20px
}

.tx-block {
	opacity: 1
}

.tx-block.ng-enter {
	transition: 1s;
	opacity: 0
}

.tx-block.ng-enter-active {
	opacity: 1
}

p.label {
	font-size: 14px
}

.bookmark-modal p {
	font-size: 16px
}

p.xl {
	font-size: 25px
}

footer a {
	color: rgba(255, 255, 255, .5)
}

.grey-band {
	background: #f4f4f4;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	margin-top: 0;
	color: #888
}

.recent-tx h4 .ss-contact-arrow-right {
	font-size: 14px
}

.details-rate {
	text-align: left
}

#mc-embedded-subscribe {
	margin: 0!important
}

#mc_embed_signup {
	background: 0 0!important
}

#mc_embed_signup input.form-control {
	border-color: #ddd
}

#mc_embed_signup input.btn {
	border-color: #4cae4c;
	height: 45px
}

#mc_embed_signup form {
	padding: 0!important
}

.newsletter {
	background: #3a526d;
	padding: 30px 0
}

.featured-block {
	background: url(../images/bg.d089306b.jpg) center top no-repeat #28394d;
	color: #fff;
	padding: 80px 0;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .1) inset
}

.featured-block h4 {
	font-weight: 700;
	color: #7191b7
}

.featured-block p {
	font-size: 16px;
	text-align: justify;
}

.featured-block img {
	width: 90px
}

#stockTicker {
	display: none;
	text-align: center
}

.TickerNews {
	line-height: 50px;
	transform: translateX(-50%);
	bottom: 0
}

.ti_content,
.ti_news a,
.ti_slide,
.ti_wrapper {
	position: relative
}

.ti_wrapper {
	width: 100%;
	overflow: hidden;
	height: 70px;
	margin-bottom: 10px
}

.ti_slide {
	width: 30000px;
	left: 0;
	top: 0
}

.ti_content {
	width: 8000px;
	float: left
}

.ti_news {
	display: inline-block;
	float: none;
	width: 10%
}

.ti_news a {
	display: block;
	padding: 15px 5px 5px;
	text-decoration: none;
	color: #fff;
	line-height: 18px;
	text-align: left
}

.ticker__item .status {
	transition: all .5s ease-in-out;
	width: 10px;
	height: 10px;
	border-radius: 300px;
	background: 0 0;
	position: absolute;
	top: 0;
	-webkit-transform: scale(0)
}

.ticker__item.up .status {
	background: #00cd22;
	display: block;
	-webkit-transform: scale(1)
}

.ticker__item.down .status {
	background: red;
	display: block;
	-webkit-transform: scale(1)
}

.ticker__item.updated {
	background: rgba(0, 0, 0, .3)
}

.ticker__item .perc.percUp {
	color: #00cd22
}

.ticker__item .perc.percDown {
	color: red
}

body.status #stockTicker {
	display: none
}

.ng-cloak,
.translate-cloak {
	display: none!important
}

.btn-toggle {
	background: #eee
}

.tgl {
	display: none
}

.tgl,
.tgl *,
.tgl:after,
.tgl:before,
.tgl+.tgl-btn,
.tgl:after,
.tgl:before {
	box-sizing: border-box
}

.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection,
.tgl+.tgl-btn::-moz-selection,
.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection {
	background: 0 0
}

.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl+.tgl-btn::selection,
.tgl::selection,
.tgl:after::selection,
.tgl:before::selection {
	background: 0 0
}

.tgl+.tgl-btn {
	outline: 0;
	display: inline-block;
	width: 4em;
	height: 30px;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.tgl+.tgl-btn:after,
.tgl+.tgl-btn:before {
	position: relative;
	display: block;
	content: "";
	width: 50%;
	height: 100%
}

.tgl+.tgl-btn:after {
	left: 0
}

.tgl+.tgl-btn:before {
	display: none
}

.tgl:checked+.tgl-btn:after {
	left: 50%
}

.tgl-light+.tgl-btn {
	background: #ddd;
	border-radius: 2em;
	padding: 2px;
	transition: all .4s ease
}

.tgl-light+.tgl-btn:after {
	border-radius: 50%;
	background: #fff;
	transition: all .2s ease
}

.tgl-light:checked+.tgl-btn {
	background: #55779f
}

.tgl-label {
	display: inline-block;
	position: relative;
	top: -10px
}

.btc-stat {
	margin: 0 auto;
	width: 710px;
	background: rgba(0, 0, 0, .5)
}

.btc-stat-content {
	color: #fff
}

.btc-stat-container {
	padding: 10px 25px
}

.rec-btc-miner-fee-title {
	padding-top: 42px;
	font-size: 2em
}

.rec-btc-miner-fee {
	color: #5bc0de
}

.feePerTx {
	margin: 20px 0 0;
	font-size: 2em
}

.rec-btc-description {
	text-align: left;
	padding: 0 115px
}

.padding-bot-30 {
	padding-bottom: 30px
}

.miner-fee .popover {
	color: #888
}

.contact-support {
	height: 160px;
	padding-top: 55px
}

.contact-support a {
	color: #00b3ee;
	font-size: 36px
}

.opacityClass div::after {
	content: "TEMPORARILY \A UNAVAILABLE";
	top: 1.5em;
	font-size: 25px;
	color: #555;
	position: relative;
	white-space: pre-wrap
}

.opacityClass .coin-name,
.opacityClass img {
	opacity: .3
}

@keyframes slideOutLeft {
	to {
		transform: translateX(-200%)
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(200%)
	}
	to {
		transform: translateX(0)
	}
}

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

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

@keyframes zoomOut {
	0% {
		opacity: 1
	}
	50% {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
	100% {
		opacity: 0
	}
}

@media (min-width:1500px) {
	.container {
		width: 1400px
	}
	#stockTicker {
		display: block
	}
}

@media (max-width:991px) {
	#exchange .container.coin-select,
	#featured {
		text-align: center
	}
	#featured {
		display: block;
		float: none;
		width: 100%;
		margin-bottom: 30px
	}
}

@media (min-width:992px) {
	#featured {
		width: 45%
	}
	#featured h1 {
		font-size: 35px
	}
	#featured p {
		font-size: 20px;
		line-height: 25px
	}
	#featured p.small {
		font-size: 16px;
		line-height: 18px
	}
	#stockTicker {
		display: block
	}
}

@media (max-width:700px) {
	.phone-number {
		margin: 5px 0 0 0;
		display: inline-block;
	}
	#exchange,
	footer {
		height: auto
	}
	#exchange .container.coin-select .signup-form,
	.status-container {
		min-width: 100%;
		top: auto;
		transform: none
	}
	.signup-form,
	.status-container {
		display: block
	}
	#featured {
		width: 100%;
		text-align: center;
		padding-top: 0;
		margin-bottom: 15px;
		float: none
	}
	#featured h1 {
		font-size: 25px;
		margin-top: 0
	}
	#featured p {
		font-size: 18px;
		line-height: 24px;
		text-align: justify;
	}
	#featured p.small {
		font-size: 16px;
		line-height: 18px
	}
	#exchange .container {
		top: auto;
		transform: none
	}
	.coin-selection .switch-button {
		position: static;
		width: 100%;
		left: auto;
		top: auto;
		transform: none
	}
	.modal-header input {
		font-size: 18px
	}
	.dropdown-menu>li>a {
		color: #fff
	}
	.coin-data div {
		border-right: 0
	}
}

@media (max-width:767px) {
	.chart,
	.featured-block .content-block,
	.raw-data {
		margin-bottom: 30px
	}
	#exchange .container .signup-form,
	.status-container {
		display: block;
		max-width: 100%
	}
	.coin-data div {
		border-right: 0
	}
	.featured-block .icon-block {
		text-align: center
	}
	.chart,
	.raw-data {
		width: 100%
	}
}

@media (min-width:1450px) {
	.container {
		width: 1170px
	}
	#featured {
		width: 50%
	}
	#featured h1 {
		font-size: 35px;
		margin-top: 85px
	}
	#featured p {
		font-size: 20px;
		line-height: 30px;
		margin: 30px 0;
	}
	footer {
		height: 280px
	}
}

@media (max-height:950px) {
	#exchange .container {
		top: auto;
		transform: none
	}
	#exchange {
		height: auto
	}
}


/*added*/

.app-icon {
	display: inline-block;
	overflow: hidden;
	width: 135px;
	height: 42px;
	background-size: contain;
}

.apple-icon {
	background: url(../images/appstore-lrg.png) no-repeat;
}

.android-icon {
	background: url(../images/android_badge.png) no-repeat;
}

.iconwr {
	display: inline-block;
	border: 3px solid #D4D9DD;
	border-radius: 2px;
	padding: 20px;
	margin: 15px;
}

.iconwr strong {
	display: block;
	margin: 10px 0 0 0;
	text-align: center;
}

.receive-icons,
.pay-icons {
	text-align: center
}

.active-coin {
	border-color: #5cb860
}

.top-bar {
	padding: 10px 0;
	background: #192a407d;
}

.top-bar .btn {
	float: left;
	padding: 2px 10px;
	margin: 0 5px 0 0;
}

.social-icons {
	text-align: right;
}

.phone-number {
	color: #fff;
	font-family: iransans;
	border: 2px solid #26425f;
	border-radius: 5px;
	padding: 4px 10px 0 10px;
}

.bye {
	display: none;
}

#step-two {
	display: none;
}

.backicon {
	color: #fff;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

#step-two {
	padding-bottom: 30px;
	text-align: center;
}

.step-two-bottom {
	padding: 20px 0 0 0;
}

.step-two-bottom a {
	display: block;
	text-align: right;
}

.bg-primary {
	background-color: #5d9cec;
	color: #fff!important;
}

.row-table {
	display: table;
	table-layout: fixed;
	height: 100%;
	width: 100%;
	margin: 0;
}

.bg-primary-dark {
	background-color: #2f80e7;
	color: #fff!important;
}

.bg-purple-dark {
	background-color: #564aa3;
	color: #fff!important;
}

.bg-green-dark {
	background-color: #2b957a;
	color: #fff!important;
}

.pv-lg {
	padding-top: 15px!important;
	padding-bottom: 15px!important;
}

.row-table>[class*=col-] {
	display: table-cell;
	float: none;
	table-layout: fixed;
	vertical-align: middle;
}

.bg-purple {
	background-color: #7266ba;
	color: #fff!important;
}

.bg-green {
	background-color: #37bc9b;
	color: #fff!important;
}

.bg-red {
	background-color: #F56854;
	color: #fff!important;
}

.bg-red-dark {
	background-color: #DD5D50;
}

.user-tabs {
	background: #fff;
	padding: 20px 0;
}

.pv-lg .fa {
	font-size: 30px;
}

.user-tabs .nav-tabs li.active a {
	border: 0;
	border-bottom: 3px solid #55779F;
	color: #55779F;
}

.user-tabs .tab-pane {
	padding: 20px 0
}

#chartContainer {
	position: relative;
}

.coin-selection input.form-control {
	margin: 10px 0 0 0;
}

.alert  {
	direction:rtl !important;
	text-align:right !important;
	margin:10px auto !important;
}
.alert-danger{
	background-color:#CC0033 !important;
}