@-webkit-keyframes rotation-clockwise {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1turn);
	}
}

@keyframes rotation-clockwise {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1turn);
	}
}

@-webkit-keyframes rotation-clockwise-reserve {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-1turn);
	}
}

@keyframes rotation-clockwise-reserve {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-1turn);
	}
}

@-webkit-keyframes move_left {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes move_left {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}
}

@-webkit-keyframes move_right {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes move_right {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(100%, 0, 0);
	}
}
	.M_mask {
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	}
.loader_M {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 20%;
   
    align-items: center;
    justify-content: center;
}
@-webkit-keyframes rotate_pacman_half_up {
        0% {
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
        }

        50% {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
        }

        100% {
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
        }
}

@keyframes rotate_pacman_half_up {
        0% {
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
        }

        50% {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
        }

        100% {
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
        }
}

@-webkit-keyframes rotate_pacman_half_down {
        0% {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        }

        50% {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        }

        100% {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        }
}

@keyframes rotate_pacman_half_down {
        0% {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        }

        50% {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        }

        100% {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        }
}

@-webkit-keyframes pacman-balls {
        75% {
                opacity: 0.7;
        }

        100% {
                -webkit-transform: translate(-100px, -6.25px);
                transform: translate(-100px, -6.25px);
        }
}

@keyframes pacman-balls {
        75% {
                opacity: 0.7;
        }

        100% {
                -webkit-transform: translate(-100px, -6.25px);
                transform: translate(-100px, -6.25px);
        }
}

.pacman {
        position: relative;
}

.pacman>div:nth-child(2) {
        -webkit-animation: pacman-balls 1s 0s infinite linear;
        animation: pacman-balls 1s 0s infinite linear;
}

.pacman>div:nth-child(3) {
        -webkit-animation: pacman-balls 1s 0.33s infinite linear;
        animation: pacman-balls 1s 0.33s infinite linear;
}

.pacman>div:nth-child(4) {
        -webkit-animation: pacman-balls 1s 0.66s infinite linear;
        animation: pacman-balls 1s 0.66s infinite linear;
}

.pacman>div:nth-child(5) {
        -webkit-animation: pacman-balls 1s 0.99s infinite linear;
        animation: pacman-balls 1s 0.99s infinite linear;
}

.pacman>div:first-of-type {
        width: 0px;
        height: 0px;
        border-right: 25px solid transparent;
        border-top: 25px solid #fff;
        border-left: 25px solid #fff;
        border-bottom: 25px solid #fff;
        border-radius: 25px;
        -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
        animation: rotate_pacman_half_up 0.5s 0s infinite;
}

.pacman>div:nth-child(2) {
        width: 0px;
        height: 0px;
        border-right: 25px solid transparent;
        border-top: 25px solid #fff;
        border-left: 25px solid #fff;
        border-bottom: 25px solid #fff;
        border-radius: 25px;
        -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
        animation: rotate_pacman_half_down 0.5s 0s infinite;
        margin-top: -50px;
}

.pacman>div:nth-child(3),
.pacman>div:nth-child(4),
.pacman>div:nth-child(5),
.pacman>div:nth-child(6) {
        background-color: #fff;
        width: 15px;
        height: 15px;
        border-radius: 100%;
        margin: 2px;
        width: 10px;
        height: 10px;
        position: absolute;
        -webkit-transform: translate(0, -6.25px);
        -ms-transform: translate(0, -6.25px);
        transform: translate(0, -6.25px);
        top: 25px;
        left: 100px;
}

.view-inline-block-960 {
	display: none;
}

.view-block-960 {
	display: none;
}

.view-inline-block-gt-960 {
	display: inline-block;
}

.view-block-gt-960 {
	display: block;
}

.logo-class {
	max-width: 363px;
	margin: 0;
	position: relative;
	z-index: 1;
	line-height: 0;
	outline: none;
}

.fixed-top-nav {
	position: fixed;
	top: 109px;
	right: 0;
	left: 0;
	z-index: 1030;
}

.content-video {}


.my-banner-video {}

.my-banner-tex {}



.m_b_1 {
	font-size: 0;
	width: 20px;
	height: 20px;
	background: url(../../assets/img/分类.png) no-repeat;

	background-size: 207px;
}

.nav-link {
	font-size: 17px;
	font-weight: 500;
}

.m_pic_nav {
	margin: 0 auto;
	text-align: center;
}




.my-banner-tex-but {
	top: 70%;
	/* left: 50%; */
	z-index: 1;

	text-align: center;
	color: #ffffff;
	width: 100%;
}

.flex-row-nowrap {
	display: flex;
	flex-flow: row nowrap
}

.flex-align-center {
	align-items: center;
}

.flex-justify-center {
	justify-content: center;
}

.my-banner-tex-but a {
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	margin: 1rem;
	padding: 1rem 4.2rem;
	border-radius: 3.3rem;
	border: #00000045 solid 1px;

}

.my-banner-tex-but div.yes {

	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;

}

.my-banner-tex-but div.no {
	margin-left: 1rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;

}

.my-banner-tex1 {
	top: 12%;
	left: 9%;
	font-size: 3.5rem;
	/* background: #7c767626; */
	border-radius: 0.22rem;
	color: #fff;
}

.my-banner-tex1 span.first_txt,
.my-banner-tex2 span.first_txt {
	font-size: 3rem;
	font-weight: 400;
}

.my-banner-tex1 strong.second_txt,
.my-banner-tex2 strong.second_txt {
	font-size: 3.5rem;

}

.text-muted-txt {
	color: #ffffff !important;


	margin-right: 0.625rem;
}

.swiper-pagination1,
.swiper-pagination2,
.swiper-pagination3,
.swiper-pagination4 {
	bottom: -8px !important;
	position: relative;
	margin: 0 auto;
	text-align: center;
}

.my-banner-tex2 {
	top: 31%;
	left: 9%;
	font-size: 3rem;
	/* background: #7c767626; */
	border-radius: 0.22rem;
	color: #fff;
	text-indent: 1em;
}

.card-item__more {
	margin-left: 2rem;
	vertical-align: middle;
	font-size: ;
}

@media (max-width:780px) {

	.logo-txt-txt {
		margin: 0 !important;
		padding: 0;
	}

	.top-log {

		width: 25%;
	}

	.navbar-brand-log {
		width: 100% !important;
		max-width: 100% !important;
		flex-wrap: nowrap !important;
	}

	.logo-p {
		margin-right: 1rem;
	}

	.top-log-text {
		font-size: 0.8rem;

	}
}

@media (min-width:1024px) {
	.mg-gutter-s {
		font-size: 2rem;
	}
}

@media (min-width:960px) and (max-width:1024px) {
	.mg-gutter-s {
		font-size: 2rem;
	}
}

@media (max-width:960px) {
	.mg-gutter-s {
		font-size: 1.5rem;
	}
}

@media (min-width:960px) and (max-width:1150px) {
	.my-banner-tex2 {
		top: 29%;

	}

	.my-banner-tex-but a {
		font-size: 1rem;
		font-weight: 500;

		margin: 0.8rem;
		padding: 0.8rem 3.2rem;
		border-radius: 3.3rem;
		border: #00000045 solid 1px;

	}

	.my-banner-tex-but div.no {
		margin-left: 1rem;

	}

	.my-banner-tex1 span.first_txt,
	.my-banner-tex2 span.first_txt {
		font-size: 2.5rem;
		font-weight: 400;
	}

	.my-banner-tex1 strong.second_txt,
	.my-banner-tex2 strong.second_txt {
		font-size: 3rem;

	}

	.my-banner-tex2 {
		border-radius: 0.22rem;

	}
}


@media (min-width:640px) and (max-width: 960px) {

	.my-banner-tex-but a {
		font-size: 1rem;
		font-weight: 500;

		margin: 0.8rem;
		padding: 0.6rem 2.2rem;
		border-radius: 3.3rem;
		border: #00000045 solid 1px;

	}

	.my-banner-tex-but div.no {
		margin-left: 1rem;

	}

	.my-banner-tex1 span.first_txt,
	.my-banner-tex2 span.first_txt {
		font-size: 2rem;
		font-weight: 400;
	}

	.my-banner-tex1 strong.second_txt,
	.my-banner-tex2 strong.second_txt {
		font-size: 2.3rem;

	}

	.my-banner-tex2 {
		border-radius: 0.22rem;

	}
}




@media (max-width: 640px) {
	.my-banner-tex2 {
		top: 20%;

	}

	.my-banner-tex1 {
		top: 0%;
	}

	.my-banner-tex-but a {
		font-size: 0.85rem;
		font-weight: 500;

		margin: 0.5rem;
		padding: 0.5rem 2rem;
		border-radius: 3.3rem;
		border: #00000045 solid 1px;

	}

	.my-banner-tex-but div.no {
		margin-left: 1rem;

	}

	.my-banner-tex1 span.first_txt,
	.my-banner-tex2 span.first_txt {
		font-size: 1.2rem;
		font-weight: 600;
	}

	.my-banner-tex1 strong.second_txt,
	.my-banner-tex2 strong.second_txt {
		font-size: 1.5rem;
		font-weight: 600;
	}

	.my-banner-tex2 {
		border-radius: 0.22rem;

	}
}

/* 首页分离线 */
.line-big {
	margin: 20px auto 26px;
	border-width: 2px;
	width: 80px;
}

.line {
	border-top: 4px solid #0ba1e4;
	width: 30px;
}

/* 首页分离线 */

/* 食创新生 */
.intro p {

	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
	color: #5C6776;

}

.section--description {
	font-size: 1rem;
}

.btn-arrow {

	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 3.6rem;
	height: 3.6rem;
	color: white;
	text-align: center;

	background: #A9D18E;
	border: none;
	padding: 0 2.4rem;
	-webkit-border-radius: 0.8rem;
	border-radius: 0.8rem;
	text-decoration: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-transform: uppercase;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

a:hover {

	color: white;
}


.btn-arrow-1 {


	text-decoration: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-transform: uppercase;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.btn-arrow-1::after {
	content: '';
	background-image: url(../../assets/img/arrow-right.png);
	width: 1rem;
	height: 1rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-left: 0.1rem;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	background-position: center center;
	-webkit-transition: all 0.15s ease 0s ease 0s;
	-o-transition: all 0.15s ease 0s ease 0s;
	transition: all 0.15s ease 0s ease 0s;
}

.btn-arrow::after {
	content: '';
	background-image: url(../../assets/img/arrow-right.png);
	width: 2rem;
	height: 2rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-left: 1.2rem;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	background-position: center center;
	-webkit-transition: all 0.15s ease 0s ease 0s;
	-o-transition: all 0.15s ease 0s ease 0s;
	transition: all 0.15s ease 0s ease 0s;
}

/* 食创新生 */

/* 商品 */
.card-body,
.card-text,
.card-body a {
	color: white !important;

}

.flex-space-between>a:hover {
	padding: 0.5rem !important;
}

.p0-m0 {
	padding: 0 !important;
	margin: 0 !important;
}

.text-muted {
	font-size: 1rem;
}

.flex-space-between {
	display: flex;
	justify-content: space-between;
	border-top: 1px dashed#ffffff;
	padding-top: 10px;
}

/* 商品 */

/* 服务 */
[class*="am-u-"] {
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
	float: left;
	position: relative;
}

.index-container .service_item .service_item--title {

	text-align: center;
	color: #262626;
	margin-top: 25px;
}

.pd-gutter-s {
	font-size: 1rem;
}

.index-container .service_item .service_item--text {
	font-size: 1rem;
	text-align: center;
	color: #333;
	line-height: 30px;
}

.index-container .service_item {
	margin-top: 20px;
	/* border: 1px solid #e9e9e9;
    border-radius: 3px; */
	padding: 30px 15px 10px;
	position: relative;
	min-height: 280px;
}

.service_item {
	min-height: 280px;
	/* box-shadow: #ddd 0 4px 16px -4px; */
}

.service_item--text strong {
	font-weight: 600;
}

.more_button {
	background: none;
	border: 1px solid #34d4d9;
	border-radius: 48px;
	box-sizing: border-box;
	color: #34d4d9;
	display: inline-block;
	font-weight: 500;
	outline: none;
	overflow: hidden;
	padding: 5px 18px;
	position: relative;
	transition-duration: 0.1s;
	transition-property: background, border-color, color;
	margin: 5px 0px 30px 0px;
}

.more_button-vadio {
	background: none;
	border: 1px solid #03a9f4;
	border-radius: 48px;
	box-sizing: border-box;
	color: #03a9f4;
	display: inline-block;
	font-weight: 500;
	outline: none;
	overflow: hidden;
	padding: 1px 20px;
	position: relative;
	transition-duration: 0.1s;
	transition-property: background, border-color, color;
	margin: 5px 0px 5px 0px;
	font-size: 1rem;
}

.more_button-vadio:hover,
.more_button:hover {
	color: #A9D18E;

}

.am-u-md-5 {
	border: 1px solid #e9e9e9;
	text-align: center;
	box-shadow: #ddd 0 4px 16px -4px;
	margin-top: 30px;
}

@media (min-width: 1200px) {
	.am-u-md-5 {
		width: 19%;
	}
}

@media (min-width: 640px) and (max-width: 1200px) {
	.am-u-md-5 {
		width: 49%;

	}

	.service_item {
		min-height: 250px !important;
	}
}

@media (max-width: 640px) {
	.am-u-md-5 {
		width: 95%;
		margin: 20px auto;
	}

	.service_item {
		min-height: 220px !important;
	}
}

/* 服务 */

/* 视频 */
/* .swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 0px !important;
}

.swiper-button-prev1,
.swiper-button-prev2,
.swiper-button-prev3,
.swiper-button-prev4 {
	width: 48px !important;
	height: 48px !important;
	top: 90% !important;
	margin-top: -48px;
	background: url("../../assets/images/左边.png") no-repeat center center;
	left: 60px;
	background-size: 42px 42px;

}

.swiper-button-next4,
.swiper-button-next3,
.swiper-button-next2,
.swiper-button-next1 {
	width: 48px !important;
	height: 48px !important;
	top: 90% !important;
	margin-top: -48px;
	background: url("../../assets/images/右边.png") no-repeat center center;
	right: 50px;
	background-size: 42px 42px;
}
 */
.vadio-title {
	border-left: 4px solid #03a9f4;

	text-indent: 10px;
}

/* 视频 */

/* 页底 */
.mg-gutter-xxs-pic {
	width: 18px;
	margin-right: 3px;

}

.mg-gutter-s-title {

	display: block !important;
	font-size: 1rem;
	margin: 10px 3px;

}

.text-muted-txt-a {

	font-size: 1rem;
	margin: 10px 3px;
	color: rgba(255, 255, 255, .57) !important;
}

.tx-xs-pic {

	font-size: 1rem;
	margin: 10px 3px;
	color: rgba(255, 255, 255, .57) !important;


}

.mg-gutter-s-title {
	color: rgba(255, 255, 255, .57) !important;
}

.f-f-f {
	color: rgba(255, 255, 255, .57) !important;
}

.flex-row-nowrap-a {
	margin: 8px;
}

.tx-xs-pic-footer {

	font-size: 0.9rem;
	margin: 5px 3px;
	color: rgba(255, 255, 255, .57) !important;
}

.f-f-f {
	font-size: 0.9rem;
	margin-bottom: 0px;
}

.qr-pic-footer {
	border-radius: 4px;
	height: 65px;
	padding: 4px;
	background: #8d8d8d;
}

.bord-bottom>p {
	font-size: 1rem;
}

@media (max-width:960px) {


	.margin-top-x {
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.col-pic {
		text-align: center !important;
		padding: 20px;
	}

	.col-pic-title {
		text-align: center !important;

	}
}

#bmibox .nav-item a:hover,
#bz_BMi .nav-item a:hover {
	color: wheat;
}

#bmibox .nav-link,
#bz_BMi .nav-link {
	padding: 0.5rem;
	color: #3c3c3c;
}

#bz_BMi table {
	width: 100%;
}

#bz_BMi table th,
#bz_BMi table tr {
	height: 43px;
	text-align: center;
}

#BMI_sc,
#BMI_zg,
#BMI_gj {
	margin-top: 15px;
}

.bmileft,
.bmiright {
	border: 1px solid #dee2e6;
	padding: 10px;
	border-radius: 10px;
	box-shadow: #ddd 0 4px 16px -4px;
}

.bmileft,
,
.bmiright {
	border: 1px solid #dee2e6;
	padding: 10px;
	border-radius: 10px;
	box-shadow: #ddd 0 4px 16px -4px;
}

.mg-clear-tbl-pic {}

.pic-abs {
	position: absolute;
	top: 2px;
	background: #8d8d8d;
	padding: 5px;
	border-radius: 5px;
	color: white;
	font-size: 15px;
	font-weight: 600;
}

.hn_pic {
	width: 80px;
}

.col-pic {
	align-self: center;
	text-align: right;
}

/* 页底 */

.pp-cp {
	width: 72px;
}

.pp-cp-cp {
	width: 80px;
}

@media (max-width:640px) {
	.pp-cp {
		width: 40px;
	}

	.w-50 {
		width: 50%;
	}
}

.hand,
a {
	cursor: pointer;
}

.pt-relative {
	position: relative
}

.pt-absolute {
	position: absolute
}

.bg-blue {
	background: #ff0000 !important;
}

.bg-red {
	background: green !important;
}

nav:after {
	clear: both;

}

.region-header .logo img {
	-ms-interpolation-mode: bicubic;
}




@media (min-width:1150px) {

	.content-video {
		height: 600px;
		width: auto;
	}
}

@media (min-width:960px) and (max-width:1100px) {

	/* .content-video {
	    height: 719px;
	    width: auto;
	} */
}

@media (min-width: 1024px) {
	.region-header .logo img {
		max-width: 363px;
	}
}

@media (max-width: 767px) {
	.region-header .logo img {
		height: auto;
	}
}

@media (max-width: 767px) {
	.region-header .logo {
		max-width: 200px;
	}
}

@media screen and (max-width: 575px) {
	.region-header .logo {
		max-width: 60%;
	}
}

@media (min-width: 768px) and (max-width:1023px) {
	.region-header .logo {
		margin-bottom: 29px;
	}
}

@media (max-width: 767px) {
	.region-header .logo {
		margin-bottom: 22px;
	}
}


/* yes */

.tst-page-bg {
	padding-bottom: 6.5rem;
	box-shadow: #ddd 0 4px 16px -4px;
	border-radius: 10px;
	background: linear-gradient(180deg, #FFBD92 -66.7%, rgba(255, 255, 255, 0) 42.62%)
}

.tst-page-bg-infor {
	padding-bottom: 6.5rem;

	background: linear-gradient(180deg, #FFBD92 -66.7%, rgba(255, 255, 255, 0) 42.62%)
}

.card {
	position: relative;
	margin-bottom: 30px;
	box-shadow: #ddd 0 4px 16px -4px;
}

.tst-page-bg .tst-tabs-title {
	padding: 2em 2em 1em
}

#baseinfor .text-primary {
	color: black !important;
}

@media (min-width:992px) {
	#baseinfor .text-primary {
		color: black !important;
		text-align: right;
	}
}

.tst-page-bg .tst-tabs-title div {
	font-size: 1.1rem;
	color: rgba(0, 0, 0, .57)
}

.tst-page-bg .tst-tabs-title .current {
	font-weight: 700;
	color: #ec6409
}

.tst-page-bg .tst-process {
	margin: 1em 2em 2em;
	border-radius: 5em
}

.tst-page-bg .tst-process div {
	height: .6em;
	width: 35%;
	background: #f4f4f4
}

.tst-page-bg .tst-process div:nth-of-type(1) {
	border-radius: 2em 0 0 2em
}

.tst-page-bg .tst-process div:nth-of-type(3) {
	border-radius: 0 2em 2em 0
}

.tst-page-bg .tst-process .current {
	position: relative;
	z-index: 9;
	background: #ec6409
}

.tst-page-bg .tst-process .current:after {
	content: "";
	position: absolute;
	z-index: 99;
	top: 50%;
	right: -1em;
	width: 1em;
	height: 1em;
	transform: translateY(-50%);
	background: #ec6409;
	border: .5em solid #ffdec9;
	border-radius: 100%
}

.tst-page-bg .tst-title {
	font-size: 1rem;
}

.tst-page-bg .tst-card {
	position: relative;
	height: 105px;
	border-radius: 1vw;
	margin-top: 1em;
	margin-bottom: 0em
}

.tst-page-bg .tst-card .card-title {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 8vw
}

.pages-content-index2-case {
	/* text-indent: 2em; */
}

.tst-page-bg .tst-card .card-title h1 {
	font-size: 1rem;
	font-weight: 700
}

.tst-page-bg .tst-card .card-title p {
	font-size: 0.85rem
}

.tst-page-bg .tst-card img {
	position: absolute;
	height: 60%;
	top: 50%;
	transform: translateY(-50%);
	right: 8vw
}

.tst-page-bg .card-blue {
	background: #F7F7FF;
	box-shadow: 0 4px 4px rgba(47, 84, 235, .2)
}

.tst-page-bg .card-blue h1,
.tst-page-bg .card-blue p {
	color: #2f54eb
}

.tst-page-bg .card-orange {
	background: #FFF1E6;
	box-shadow: 0 4px 4px rgba(249, 130, 36, .2)
}

.tst-page-bg .card-orange h1,
.tst-page-bg .card-orange p {
	color: #f98224
}

.tst-page-bg .card-dark-green {
	background: #C8F8EF;
	box-shadow: 0 4px 4px rgba(47, 190, 235, .2)
}

.tst-page-bg .card-dark-green h1,
.tst-page-bg .card-dark-green p {
	color: #14a5d3
}

.tst-page-bg .card-darken-blue {
	background: #F7F7FF;
	box-shadow: 0 4px 4px rgba(47, 84, 235, .2)
}

.tst-page-bg .card-darken-blue h1,
.tst-page-bg .card-darken-blue p {
	color: #2f54eb
}

.tst-page-bg .card-green {
	background: #F0FFF2;
	box-shadow: 0 4px 4px rgba(29, 181, 90, .2)
}

.tst-page-bg .card-green h1,
.tst-page-bg .card-green p {
	color: #1db55a
}

.tst-page-bg .card-purple {
	background: #FCF7FF;
	box-shadow: 0 4px 4px rgba(96, 29, 181, .2)
}

.tst-page-bg .card-purple h1,
.tst-page-bg .card-purple p {
	color: #601db5
}

.tst-page-bg .card-light-blue {
	background: #F8FCFF;
	box-shadow: 0 4px 4px rgba(0, 163, 255, .2)
}

.tst-page-bg .card-light-blue h1,
.tst-page-bg .card-light-blue p {
	color: #0497ea
}

.tst-page-bg .card-pink {
	background: #FFF6FA;
	box-shadow: 0 4px 4px rgba(255, 1, 108, .2)
}

.tst-page-bg .card-pink h1,
.tst-page-bg .card-pink p {
	color: #ff016c
}

.tst-page-bg .card-light-purple {
	background: #FDF8FF;
	box-shadow: 0 4px 4px rgba(173, 0, 255, .1)
}

.tst-page-bg .card-light-purple h1,
.tst-page-bg .card-light-purple p {
	color: #ad00ff
}

.tst-page-bg .card-red {
	background: #FFF8F7;
	box-shadow: 0 4px 4px rgba(255, 46, 0, .1)
}

.tst-page-bg .card-red h1,
.tst-page-bg .card-red p {
	color: #ff2e00
}

.tst-page-bg .tst-next-button {
	padding: 12px;
	width: 150px;
	font-size: 1.1rem;
	margin: 1em 1em;
	background: #FFF6F0;
	text-align: center;
	border-radius: 5em;
	color: #EC6409;
	background: rgb(0 199 166);
	color: #fff;
	border: none;
	box-shadow: rgb(0 198 87 / 30%) 0 4px 16px -4px;
}

.select-datas {
	border: 2px solid #1db55a;
	position: relative;
	background-color: #FFF4D5;
}

.ss-mt {
	border: 1px solid rgb(242, 242, 242);
	background: #d9d9d9;
	margin: 0;
	padding: 20px 0;
	margin: 0px !important;
}

.input-group-addon {
	background: #FF6600;
	border-color: #FF6600;
}

@media (min-width:640px) {
	.s_input-s {
		width: 50%;
		margin: 0 auto;
	}
}

@media (max-width:640px) {
	.s_input-s {
		width: 90%;
		margin: 0 auto;
	}
}


/* 三角形 */
.select-datas::after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: 0px;
	border-bottom: 30px solid #1db55a;
	border-left: 30px solid transparent;
}

.flex-justify-sb {
	justify-content: space-between
}

.flex-justify-sa {
	justify-content: space-around
}

/* 三角形勾 */
.select-datas::before {
	content: '';
	position: absolute;
	width: 14px;
	height: 8px;
	background: transparent;
	bottom: 6px;
	right: 2px;
	border: 4px solid white;
	border-top: none;
	border-right: none;
	transform: rotate(-55deg);
	z-index: 9;
}

@media (min-width:640px)
{.th-title-pc{
	    
	    	border-left: 5px solid #FF6600;
	    	text-align: left!important;
	    	margin: 15px 0px 15px 15px;
	    text-indent: 10px;
    font-size: 1.2rem;
	}
    .swtf-seach {
		display: flex;
		margin-bottom: 5px;
		justify-content: center;
		justify-content: left;
    flex-wrap: wrap;
	}
	.swtf-seach-pc {
		display: flex;
		margin-bottom: 5px;
		 
		justify-content: left;
    flex-wrap: wrap;
	}
    
}

@media (min-width:960px) {
	.tst-card {
		width: 49%;

	}

	.tst-page-bg .tst-card .card-title {

		left: 4vw;
	}

	.tst-page-bg .tst-card img {

		right: 4vw
	}
	

}

@media (max-width:960px) {
	.tst-card {
		width: 99%;

	}
}

.c-b-87 {
	color: rgba(0, 0, 0, .87);
}

.pages-content-index2-case {
	font-size: 15px;
	line-height: 25px;
	margin: 20px;
}

.pages-content-index2-product {
	position: relative;
	margin: 0;
	padding: 0;
}

.pages-content-index2-product ul li {
	background: #Fff;
	padding-bottom: 19px;
	border-radius: 20px;
	margin: 10px 10px;
}

.pages-content-index2-product ul li:first-child>a {
	border-top: none;
}

.pages-content-index2-product ul li>a {
	display: block;
	position: relative;
	margin-left: 15px;
	padding: 15px 15px 0px 0;
	font-size: 13px;
	color: #333;



}

a:hover,
a:link,
a:visited {
	text-decoration: none;
}

.pages-content-index2-product ul li>a>img {

	margin-right: 15px;
	width: 100%;

	border-radius: 20px;
}

.pages-content-index2-product ul li>a>h2 {
	display: block;
	margin: 10px;
	padding: 0;
	color: #333;
	font-size: 1.2rem;


	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

.pages-content-index2-product ul li>a .intro {
	padding-top: 6px;
	color: #999;
	font-size: 14px;
	line-height: 1.8em;
	height: 5.6em;
	text-overflow: ellipsis;
	overflow: hidden;
}

.pages-content-index2-product ul li>a .note {}

.pages-content-index2-product ul li>a .note p {
	margin: 10px;
	color: #999;
	font-size: 1rem;

	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.pages-content-index2-product ul li>a .note p .price {
	display: inline-block;
	margin-right: 2px;
	color: #f00;
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
}

.price_line_re {
	color: #d4d4d4;
	font-size: 1rem;
	text-decoration: line-through;
	font-weight: 600;
}

.tst-page-bg .tst-next-button-wx {
	padding: 12px;
	width: 50vw;
	font-size: 1.1rem;
	margin: 15px auto;
	background: #ED7D31;

	text-align: center;
	border-radius: 20em;
	color: #ffffff;
}

ul {
	list-style: none;
}

.flex-row-nowrap {
	display: flex;
	flex-flow: row nowrap
}

.goods>a {

	width: 50%;
	margin: 1rem auto 0;
	padding: 15px 0;
	text-align: center;
	font-size: 1rem;
	color: #fff;
	background: green;
	border-radius: 10rem;

	display: block;
}

.flex-row-wrap {
	display: flex;
	flex-flow: row wrap
}

@media (min-width:1200px) {
	.goodsitem {

		width: 20%;

	}

	.tst-page-bg .tst-next-button-wx {
		width: 30%;

	}
}

@media (max-width:640px) {


	.tst-page-bg .tst-next-button-wx {
		width: 100%;

	}
}

.goods-border-radius-20 {
	padding: 20px;
	background: #fff;
	border-radius: 20px;
	/* margin: 10px; */
}

.tst-page-bg-eee {
	padding-bottom: 6.5rem;
	box-shadow: #ddd 0 4px 16px -4px;
	background: none;
	border-radius: 10px;
	;
}

.table .thead-dark th {
	color: #fff;
	background-color: #FF9800;
	border-color: #FF9800;
}

.form-control:focus {
	border: 0 !important;
	outline: none !important;
}

.progress-tooltip {
	display: inline-block;
	background: #288cff;
	color: #fff;
	padding: 0.25rem 0.375rem;
	line-height: 1;
	font-size: 0.7rem;
	position: relative;
	bottom: 8px;
	border-radius: 3px;
	margin-left: -15px;
}

.font-size-1rem {
	font-size: 1rem;
}

.progress-tooltip:after {
	top: 100%;
	left: 10px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(51, 51, 51, 0);
	border-top-color: #288cff;
	border-width: 5px;
}

.col-form-label-font {
	font-size: 1rem;
}

.custom-control-m {
	margin: 15px;
	width: 33%;
}

.custom-control-label-check {
	font-size: 1rem;
}

.custom-control-input-check {
	font-size: 1.1rem;

}

#wj .row {
	justify-content: flex-start;
	margin-left: 10px;

}

.custom-control-label::before {
	position: absolute;
	top: 0rem;
	left: -2.5rem;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	pointer-events: none;
	content: "";
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #dee2e6;
}

.custom-control-label::after {
	position: absolute;
	top: 0rem;
	left: -2.5rem;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
}

/* yes */

/* bmi */

.input_bim_input {
	width: 30%;
}

@media (max-width:640px) {

	#bmibox .nav-link,
	#bz_BMi .nav-link {
		font-size: 12px;
	}

}

@media (max-width:776px) {
	.bmicenter .col-md-4 {
		width: 30%;

	}

	.bmicenter .col-md-8 {
		width: 68%;

	}
}

@media (max-width:1200px) {

	.bmicenter {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100%;
		position: relative;
		padding: 0px;
	}

	.bmileft {
		width: 100% !important;
		flex: 0 0 100%;
		max-width: 100% !important;
		position: relative;
	}

	.bmiright {
		width: 100% !important;
		flex: 0 0 100%;
		max-width: 100% !important;
		position: relative;
	}
}

.bmicenter input[type="text"] {
	border: 1px solid #DADADA;
	color: # 888;
	height: 30px;
	margin-bottom: 12px;
	margin-right: 6px;
	margin-top: 3px;
	outline: 0 none;
	padding: 3px 3px 3px 5px;

	font-size: 12px;
	line-height: 15px;
	box-shadow: inset 0px 1px 4px #ececec;
	-moz-box-shadow: inset 0px 1px 4px #ECECEC;
	-webkit-box-shadow: inset 0px 1px 4px #ececec;
}

.bim_input .btn {
	display: inline-block;
	background: #fff no-repeat center;
	border: 1px solid #d0d0d0;
	width: 24px;
	height: 24px;
	border-radius: 2px;
	box-shadow: 0 1px rgba(100, 100, 100, .1);
	color: #666;
	transition: color .2s, background-color .2s;
	margin-bottom: 12px;
	margin-right: 6px;
	margin-top: 8px;

}

.bim_input .btn:active {}

.bim_input .btn:hover {}

.bim_input .btn-plus {
	background-image: linear-gradient(to top, currentColor, currentColor), linear-gradient(to top, currentColor, currentColor);
	background-size: 10px 2px, 2px 10px;
}

.bim_input .btn-minus {
	background-image: linear-gradient(to top, currentColor, currentColor);
	background-size: 10px 2px;
}

.bim_input .disablecss {

	background-color: #e9e9e9;
}

#lhtips {
	display: none;
	border-radius: 3px;
	clear: both;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px 20px;
	background: #fff;
	margin-bottom: 15px;
	margin-top: 15px;
	box-shadow: #ff9415 0px 0px 9px;
}

.post p {

	font-size: 16px;
	text-indent: 2em;
}

.post img {
	max-width: 100%;
	height: auto !important;
}

.lh_title {
	font-size: 20px;
	font-weight: 600;
	line-height: 35px;
}

.lh_tips_1,
.lh_tips_2,
.lh_tips_3 {
	font-size: 16px;
	line-height: 28px;

}

.index_radio {
	margin: 0.5rem;
	margin-left: 0;
}

.index_radio input[type=radio] {
	position: absolute;
	opacity: 0;
}

.index_radio input[type=radio]+.radio-label:before {
	content: "";
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	display: inline-block;
	width: 1.4em;
	height: 1.4em;
	position: relative;
	top: -0.2em;
	margin-right: 1em;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}

.index_radio input[type=radio]:checked+.radio-label:before {
	background-color: #3197EE;
	box-shadow: inset 0 0 0 4px #f4f4f4;
}

.index_radio input[type=radio]:focus+.radio-label:before {
	outline: none;
	border-color: #3197EE;
}

.index_radio input[type=radio]:disabled+.radio-label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}

.index_radio input[type=radio]+.radio-label:empty:before {
	margin-right: 0;
}

/*search*/
#header-search {
	margin-right: 20px;
	text-align: left;
}

#header-search .search-box {
	width: 100%;
	margin: 0 auto;
	padding-top: 25px;
	font-size: 0
}

#header-search .search-box-group {
	margin: 0 auto;
	position: relative;
	width: 100%;
	height: 48px;
	border-radius: 24px;
	border: 1px solid rgb(242, 242, 242);
	background: white;
	box-shadow: #ddd 0 4px 16px -4px;
}

#header-search .search-box-icon {
	display: inline-block;
	width: 54px;
	height: 100%;
	vertical-align: top;
	text-align: center
}

#header-search .search-box-icon span.icon {
	width: 16px;
	height: 16px;
	margin-top: 16px
}

#header-search .search-box-icon span.icon-search {
	background-position: 0 -48px
}

#header-search .search-box-input {
	width: 90%;
	line-height: 40px;
	font-size: 14px;
	border: none;
	background-color: inherit;
	height: 43px;
	margin-left: 10px;
}

#header-search .search-box-input::-webkit-input-placeholder {
	color: #B4BABF
}

#header-search .search-box-input::-moz-placeholder {
	color: #B4BABF
}

#header-search .search-box-input:-ms-input-placeholder {
	color: #B4BABF
}

#header-search .search-box-input::-ms-input-placeholder {
	color: #B4BABF
}

#header-search .search-box-input::placeholder {
	color: #B4BABF
}

#header-search .search-box-btn {
	position: absolute;
	top: -2px;
	right: -7px;
	width: 118px;
	height: 48px
}

#header-search .search-box-btn button {
	width: 100%;
	height: 100%;
	border-radius: 24px;
	outline: none;
	font-size: 18px;
	font-weight: bold;
	background: #FF6600;
	color: white;
	border: 2px solid #dfe1e5;
}

#header-search .search-box-hotwords {
	margin-top: 8px;
	margin-left: 44px;
	font-size: 12px;
	line-height: 16px;
	color: #FF6600
}

#header-search .search-box-hotwords a {
	margin: 0 12px
}

#search-box {
	width: 300px;
	float: right;
	margin: 5px 10px 0 0;
	position: relative;
}

#search form {
	margin: 0px auto;
	padding: 0px;
	width: 100%;
}

.skw {
	display: inline;
	width: 100%;
	text-indent: 30px;
	float: left;
	background: #fff;
	line-height: 26px;
	height: 26px;
	border: 1px solid #dedede;
	color: #666;
	border-radius: 23px;
}

.sub {
	width: 26px;
	height: 26px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	background: url(../images/search.jpg) no-repeat left center;
	border: 0;
}

.search-input {
	width: 80%;
	float: left;
}

.input-group-addon {
	padding: 0.35rem 1.2rem;
	font-size: 1.23rem;
	line-height: 2.6rem;
	border-radius: 0.25rem;
	position: relative;
	border-bottom-right-radius: 30px;
	border-top-right-radius: 30px;
}

/* 遮罩层*/

.mask1 {
	background-color: rgba(0, 0, 0, 0.7);
	/* 使用固定定位让元素撑满全屏 */
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
}

#searchitem {
	z-index: 9999;
	position: relative;
}

.search-input input {
	display: inline;
	width: 100%;
	text-indent: 30px;
	float: left;
	background: #fff;
	line-height: 26px;
	height: 28.5px;
	border: 1px solid #dedede;
	color: #666;
	border-top-left-radius: 23px;

	border-bottom-left-radius: 23px;
}

.link-button {
	border: none;
	background: none;
}

.nav-link:focus {
	border: ;
	: none;
}

.search-button {

	width: 20%;
	float: right;
}

button:focus {
	outline: none;
}

.search-button input#search_an {
	color: #fff;
	display: block;
	width: 100%;
	font-size: 14px;
	text-align: center;
	border: 0;
	height: 28px;
	line-height: 14px;
	cursor: pointer;
	-webkit-appearance: listitem;
	background: url(../images/search.png) no-repeat left center #FF6600;
	-ms-background-position-x: 15%;
	background-position-x: 7%;
	padding-left: 41%;
	margin: 0;
	border-top-right-radius: 23px;

	border-bottom-right-radius: 23px;
}

@media (min-width:960px) {
	#header-search {
		width: 80%;
	}
}

.search-box-group input:focus-visible {
	outline: none;
}

input:focus-visible {
	outline: none;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border: none;
	outline: 0;
	box-shadow: 0 0 0 0.1rem rgba(187 185 189 / 25%);
}

.mb-0-tag {
	margin: 8px;
}

.collapse-item-1 {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .15);
	-moz-box-shadow: 0 0 30px rgba(0, 0, 0, .15);
	-ms-box-shadow: 0 0 30px rgba(0, 0, 0, .15);
	box-shadow: 0 0 30px rgba(0, 0, 0, .15);
	position: relative;
	background: #fff;
	width: 100%;
	margin: 1.5rem 0;
	padding: 2rem;
	cursor: pointer;
	overflow: hidden;
}

.collapse-item-1 .content p {
	margin-top: 1rem;
	padding: 1rem 0 0;
	border-top: 1px solid #dcddde;
	font-size: 1rem;
}

.collapse-item-1 .title p {
	font-size: 1.1rem;
	font-weight: 500;
}

.ss-input {
	border: 1px solid rgba(255, 255, 255, 0.1);
margin: 0px!important;
	color: #454545;
	border-radius: 10px;
	border-color: #c7c7c7;
	transition: all .3s;
	margin-bottom: 36px;
	height: 50px;
}

.ss-mt {
	margin: 20px;
	;
}

.hy-pic {
	width: 105px !important;

}

.c-b-87-f {
	font-size: 1rem;
}

.blockquote {
	font-size: 1rem;
}

.h5 {
	font-size: 1.1rem !important;
}

h5,
.h5 {
	font-size: 1.1rem !important;
}

#bmijs {
	color: red;
	text-align: center;
}

@media (max-width:680px) {
	.hbcl-rr {
		order: 2;

	}
}

@media (max-width:640px) {
	.col-md-12 {
		padding: 0;
	}
}

.top-log {
	/*max-height: 120px;*/
	width: 290px;
} 


.top-log-text {
	color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff !important;
}

.Language {
	color: #fff !important;
}

.Language-a:hover {
	background: black;
	color: #fff !important;
}

.input-group-addon-seach {
	background: #242424;
	border-color: #242424;
}

.my-banner-tex-but a {
	border-radius: 8px;

	color: white !important;
	background: none !important;
	font-size: 1.1rem;
	font-weight: 600;
}

.my-banner-tex-but .yes {
	border: #e4aa81 solid 2px;
}

.my-banner-tex-but .no {
	border: #b79f97 solid 2px;
}

.vadio-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .41);
}

#nav2,

#nav1,
#nav_0 {
	background: #242424 !important;
}

.index-logo-pc {
	width: 12rem;
}

.sc-des {
	position: relative;
}

.vadion-pc {
	height: 720px;
}

.pc-pb-des {
	height: 100%;
}

.groupOmtrpdictionpic:after {
	content: '';
	position: absolute;
	border: 3px solid #e2b260;
	width: 80%;
	height: 100%;
	right: 0%;
	top: 8%;
}

.groupOmtrpdictionpic img {
	position: relative;
	z-index: 5;
	max-width: 80%;
}

@media (min-width:960px) {

	.type-boder {
		border-radius: 8px;
		border: #b79f97 solid 2px;
		color: #e4aa81 !important;
		background: none !important;
		font-size: 1rem;
		font-weight: 600;
		width: 158px;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 20px;
		padding: 10px;
	}

	.goods-div {
		justify-content: space-between;
		margin: 0rem 10px;
	}

	.flex-row-nowrap {
		display: flex;
		flex-flow: row nowrap;
	}

	.goods-div .item {
		width: 32%;
	}

	#good-type {
		padding-top: 5rem !important;
	}

	.googs-pic {
		/* height: 162px; */
		text-align: center;
		margin-bottom: 15px;
		position: relative;
	}

	.item-a {
		margin: 0 auto;
		text-align: center;
		font-size: 1rem;

	}

	.item-a a {

		color: #3e3e3e !important;
	}

	.tudou .typemask {
		/* 隐藏遮罩层 */
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .42);
	}

	.tudou .titlt-img {
		position: absolute;
		top: 25%;
		/* left: 30%; */

		color: white;
		/* background: #9e9e9e6b; */
		padding: 20px;
		font-size: 1rem;
		transition: ease 1.5s;
		    transition-delay: .4s;
			
			font-size: 1.1rem;
			 
			font-weight: 500;
			
	}

	.tudou:hover .typemask {
		/* 显示元素的意思 */
		display: block;
	}
	.vip-pic-logo {
	    text-align: center;
	    margin: 0 auto;
	}
	.vip-logo {
	    width: 5rem;
	}
	.vip-title {
	    color: #3e3e3e;
	    font-size: 1.1rem;
	    font-weight: 600;
	    text-align: center;
	}
	.vip-div {
	    justify-content: space-between;
	    margin: 0rem 10px;
	    margin-top: 20px;
	}
	.vip-item {
	    width: 32%;
	    margin: 0 auto;
	}
	.vip-pic {
	    position: relative;
	}
	.vip-typemask {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    /* background: rgba(0, 0, 0, .41); */
	}
	.vip-typemask-title {
	    position: absolute;
	    color: white;
	    font-size: 1.1rem;
	    text-align: center;
	    vertical-align: middle;
	    top: calc(50% - 26px);
	    width: 100%;
	    font-weight: 500;
	    /* margin: 0 5px; */
	    padding: 0 3px;
	}
	.vip-item:hover .more_button-x{
		display: inline-block;
	}
	.more_button-x{ 
		display: none;
		    background: none;
		    border: 1px solid #fff;
		    border-radius: 48px;
		    box-sizing: border-box;
		    color: #fff;
		   /* display: inline-block; */
		    font-weight: 500;
		    outline: none;
		    overflow: hidden;
		    padding: 5px 18px;
		    position: relative;
		    transition-duration: 0.1s;
		    transition-property: background, border-color, color;
		    margin: 5px 0px 30px 0px;
		 
	}
	.more_button-vadio-white {
	    background: none;
	    /* border: 1px solid rgba(0, 0, 0, .87); */
	    border-radius: 48px;
	    box-sizing: border-box;
	    color: rgba(0, 0, 0, .87);
	    display: inline-block;
	    font-weight: 500;
	    outline: none;
	    overflow: hidden;
	    padding: 1px 20px;
	    position: relative;
	    transition-duration: 0.1s;
	    transition-property: background, border-color, color;
	    margin: 5px 0px 5px 0px;
	    font-size: 1rem;
	}
	.swiper-button-next, .swiper-rtl .swiper-button-prev {
	    right: 0px !important;
	    left: auto;
	    top: 50% !important;
	}
	.swiper-button-next, .swiper-button-prev {
	    color: white !important;
	}
	.groupOmtrpdiction .content {
	    display: flex;
	    justify-content: space-between;
	    align-content: space-between;
	}
	.groupOmtrpdiction .left {
	    padding-left: 3%;
	    width: 58%;
	}
	.groupOmtrpdiction .left {
	    width: 52%;
	    display: flex;
	    flex-wrap: wrap;
	}
	._titlePage {
	    position: relative;
	    z-index: 5;
	}
	._titlePage p {
	    color: rgba(0,0,0,.4);
	    font-size: 20px;
	    text-transform: capitalize;
	    font-family: DINCondensedBold;
	}
	._titlePage h3 {
	    font-size: 26px;
	}
	.groupOmtrpdiction .left h2 {
	    font-size: 22px;
	    margin-bottom: 10px;
	}
	.groupOmtrpdiction .left .summary {
	    font-size: 14px;
	    margin-bottom: 15px;
	}
	.groupOmtrpdiction .right {
	    width: 37%;
	}
	.groupOmtrpdiction .right {
	    position: relative;
	    padding: 0 130px 0 0;
		align-self: center;
	}
	.groupOmtrpdiction .right .pic {
	    position: relative;
	}
	.groupOmtrpdiction .right .pic:after {
	    content: '';
	    position: absolute;
	    border: 3px solid #e2b260;
	    width: 100%;
	    height: 100%;
	    right: -16%;
	    top: 8%;
	}
	.groupOmtrpdiction .right .pic:before {
	    content: '';
	}
	.groupOmtrpdiction-b{
		
	}
	.groupOmtrpdiction .right .pic img {
	    position: relative;
	    z-index: 5;
	}
	.groupOmtrpdiction {
	    background: url(../img/bg_city.jpg) bottom/cover;
	    /* display: flex; */
	}
	._h100vh {
	    /*height: 90vh;*/
	}
	.data-num {
	    display: flex;
	    justify-content: space-between;
	    text-align: center;
	    /* margin: 0px 20px; */
	    background: white;
	    padding: 10px 3px;
	}
	.aboutus-title {
	    color: #212529;
	    font-size: 1.1rem;
	    font-weight: 600;
	    text-align: center;
	}
	.tx-xxxl {
	    font-size: 1.3rem;
	    color: black;
	}
	.about-title {
	    font-size: 1.1rem;
	    color: #aa6400;
	    font-weight: 500;
	}
	.about-des {
	    font-size: 0.85rem;
	    color: black;
	   margin: 10px 15px;
	}
	.socail {
	    width: 100%;
	    display: flex;
	    justify-content: center;
	    position: relative;
	    z-index: 10;
	}
	.socail a {
	    display: block;
	    width: 40px;
	    height: 40px;
	    border-radius: 50%;
	    background: #9e9e9e8c;
	    text-align: center;
	    line-height: 40px;
	    position: relative;
	    margin: 0px 5px;
	    cursor: pointer;
	}
	.socail a .icon {
	    color: #fff;
	    font-size: 20px;
	    position: relative;
	}
	
	.socail a .icon.red::after {
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    left: 10px;
	    top: 10px;
	    background: url(../img/tm1.png?v=1) no-repeat;
	    background-size: cover;
	    content: '';
	}
	.socail a.wb .icon::after {
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    left: 10px;
	    top: 10px;
	  background: url(../img/dy1.png?v=1) no-repeat;
	    background-size: cover;
	    content: '';
	}
	.socail a.wx .icon::after {
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    left: 10px;
	    top: 10px;
	    background: url(../img/wxIcon.png?v=1) no-repeat;
	    background-size: cover;
	    content: '';
	}
	.socail a:hover .img {
		display: block;
	}
.socail a .img {
    width: 100px;
    height: auto;
    background: #fff;
    position: absolute;
    left: -30px;
    top: -110px;
    display: none;
	border-radius: 4px;
	    /* height: 65px; */
	    padding: 4px;
	    background: #8d8d8d;
}
._more a{
	color: #A9D18E;
	 
}
._more {
	 
	margin-top: 20px;
}

}
.groupOmtrpdiction .left .summary {
	    color: #828282;
	    font-size: 16px;
	    line-height: 1.7;
	    margin-bottom: 35px;
	}
	
	
	/* 食物糖分手机端 */
	.swtf_list {
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;


	}

	.swtf_item {
		background: white;
		width: 31.5%;
		text-align: center;
		margin: 4px;
		border-radius: 5px;
		background: #F3F3F3;padding: 28px;
	}

	.swtf_item img {
		width: 80%;
		padding: 20px;

	}

	.sw-name {
		font-size: 1rem;
		font-weight: bold;
		color: black;

margin-top: 1rem;

	}

	.sw-button {
		border-radius: 8px;
		border: #b79f97 solid 2px;
		color: #9E9E9E !important;
		background: none !important;
		font-size: 0.9rem;
		width: 80px;
		text-align: center;
		margin: 20px auto;



	}

	.sw-badge-success {
		color: #fff;
		background-color: #44c553;
		    border-radius: 10px;
	}

	.sw-mb-0-tag {padding: 12px 10px;
		border: 1px solid rgb(242, 242, 242);
		font-size: 0.9rem;}
		
		
	.sw-mb-0-tag-pc {padding: 12px 1px;
	 text-align: center;
    
    width: 103px;
 
		font-size: 1rem;}
		

	.sw-badge {}
.sw-tf-pic-item{
	width:30%;
	box-shadow: #ddd 0 4px 16px -4px;
	padding: 5px;
}
.sw-tf-pic-list{
	display: flex;
	margin: 2rem 0.85rem;
	flex-wrap: wrap;
	justify-content:space-between;
	
}
	.sw-badge-pill {
		
	}

	
	.tf-btn-primary{
		border-right-radius: ;
	}
.no-data{
    text-align: center;
    padding: 10px 1px;
}
	/* 食物糖分手机端 end*/
	
@media (max-width:960px) {


.no-data{
    text-align: center;
    padding: 10px 1px;
}

	/* 食物糖分手机端 */
	.swtf_list {
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;


	}

	.swtf_item {
		background: white;
		width: 31.5%;
		text-align: center;
		margin: 4px;
		border-radius: 5px;padding: 1px;
	}

	.swtf_item img {
		width: 80%;
		padding: 5px;

	}

	.sw-name {
		font-size: 1rem;
		font-weight: bold;
		color: black;



	}

	.sw-button {
		border-radius: 8px;
		border: #b79f97 solid 2px;
		color: #9E9E9E !important;
		background: none !important;
		font-size: 0.9rem;
		width: 80px;
		text-align: center;
		margin: 20px auto;



	}

	.sw-badge-success {
		color: #fff;
		background-color: #44c553;
		    border-radius: 10px;
	}

	.sw-mb-0-tag {padding: 12px 10px;
		border: 1px solid rgb(242, 242, 242);
		font-size: 0.9rem;}
		
			.sw-mb-0-tag-pc {padding: 12px 1px;
	  text-align: center;
    
    width: 103px;
		font-size: 1rem;}
		

	.sw-badge {}
.sw-tf-pic-item{
	width: 98%;
	box-shadow: #ddd 0 4px 16px -4px;
	padding: 5px;
}
.sw-tf-pic-list{
	display: flex;
	margin: 2rem 0.85rem;
	flex-wrap: wrap;
	justify-content:space-between;
	
}
	.sw-badge-pill {
		
	}

	.swtf-seach {
		display: flex;
		margin-bottom: 5px;
		justify-content: left;
	}
	.swtf-seach-pc {
	    	display: flex;
		margin-bottom: 5px;
		justify-content: left;
	    flex-wrap: wrap;
	}
	.tf-btn-primary{
		border-right-radius: ;
	}

	/* 食物糖分手机端 end*/



	#nav2,
	.ba-black-self,
	#nav1,
	#nav_0 {
		background: #242424 !important;
	}

	.top-log {
		/*border-right: solid 2px white;*/
		width: 150px;
		padding-right: 5px;

	}

	.top-log-text {
		color: #fff !important;
		display: block;
		text-align: center;
	}

	.btn-outline-light {
		border: none;
	}

	a.btn-outline-light strong {
		color: #fff !important;
	}

	.my-banner-tex2 {
		top: 25%;
		left: 9%;
		font-size: 3rem;
		/* background: #7c767626; */
		border-radius: 0.22rem;
		color: #fff;
		text-indent: 0em;
	}

	.my-banner-tex-but a {
		border-radius: 8px;

		color: white !important;
		background: none !important;
		font-size: 1.1rem;
		font-weight: 600;
	}

	.my-banner-tex-but .yes {
		border: #e4aa81 solid 2px;
	}

	.my-banner-tex-but .no {
		border: #b79f97 solid 2px;
	}

	e3a980 .input-group-addon {
		background: #242424;
		border-color: #242424;
	}

	.index-logo {
		width: 8rem;

	}

	.index-title {
		color: #fff !important;
		font-size: 1.2rem;
		line-height: 2.4rem;
		padding: 1rem 1rem 0rem 1rem;
		margin: 0;
	}

	.pb-section {
		/* padding-bottom: 2rem; */
	}

	.type-boder {
		border-radius: 8px;
		border: #b79f97 solid 2px;
		color: white !important;
		background: none !important;
		font-size: 0.85rem;

		width: 80px;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 20px;

	}

	.typemask {

		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .2);
	}

	.goods-div {
		justify-content: space-between;
		margin: 0rem 10px;
	}

	.goods-div .item {
		width: 32%;

	}

	.goods-div .item img {
		/*height: 100%;*/
		border-radius: 15px;
		/* -webkit-filter: grayscale(100%);
		  -moz-filter: grayscale(100%);
		  -ms-filter: grayscale(100%);
		  -o-filter: grayscale(100%);
		  filter: grayscale(100%);
		  filter: gray; */
	}

	.googs-pic {
		/* height: 162px; */
		text-align: center;
		margin-bottom: 15px;
		position: relative;
	}

	.goods-div a {
		color: white;
	}

	.item-a {
		margin: 0 auto;
		text-align: center;
		font-size: 0.9rem;
	}

	.vip-logo {
		width: 4rem;

	}

	.vip-pic-logo {
		text-align: center;
		margin: 0 auto;
	}

	.vip-title {
		color: white;
		font-size: 1.1rem;
		font-weight: 600;
		text-align: center;

	}

	.vip-div {
		justify-content: space-between;
		margin: 0rem 10px;
		margin-top: 20px;
	}

	.vip-item {
		width: 32%;
		margin: 0 auto;
	}

	.vip-pic {

		position: relative;
	}

	.vip-pic img {}

	.vip-typemask {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/* background: rgba(0, 0, 0, .41); */

	}

	.vip-typemask-title {

		position: absolute;
		color: white;
		font-size: 0.85rem;
		text-align: center;
		vertical-align: middle;
		top: calc(50% - 26px);
		width: 100%;
		font-weight: 500;
		/* margin: 0 5px; */
		padding: 0 3px;
	}

	.Language {
		font-size: 0.85rem;
	}

	.vadio-mask {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .41);
	}

	.pd-gutter-s {
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		display: -moz-box;
		-moz-line-clamp: 2;
		-moz-box-orient: vertical;
		overflow-wrap: break-word;
		word-break: break-all;
		white-space: normal;
		overflow: hidden;
		color: white;
	}

	.shadow-bottom {
		box-shadow: 0px 10px 5px 0px #ddd;
	}

	.shadow-top {

		box-shadow: 0px -2px 5px 0px #ddd;
	}

	.fg-line {
		height: 5px;


	}

	.vadio-title-white {
		color: white;
	}

	.more_button-vadio-white {
		color: white;
		border: 1px solid white;
		background: none;

		border-radius: 48px;
		box-sizing: border-box;

		display: inline-block;
		font-weight: 500;
		outline: none;
		overflow: hidden;
		padding: 1px 10px;
		position: relative;
		transition-duration: 0.1s;
		transition-property: background, border-color, color;
		margin: 5px 0px 5px 0px;
		font-size: 0.85rem;
	}

	.swiper-pagination-bullet-active {
		background-color: white !important;
	}

	.swiper-button-next,
	.swiper-rtl .swiper-button-prev {
		right: 0px !important;
		left: auto;
		top: 22% !important;
	}

	.swiper-button-prev,
	.swiper-rtl .swiper-button-next {
		left: 0px !important;
		right: auto;
		top: 22% !important;
	}

	.swiper-button-next,
	.swiper-button-prev {
		color: white !important;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 15px !important;

	}

	.aboutus-title {
		color: white;
		font-size: 1.1rem;
		font-weight: 600;
		text-align: center;

	}

	.data-num {
		display: flex;
		justify-content: space-between;
		text-align: center;
		margin: 0px 20px;
		background: white;
		padding: 10px 3px;
	}

	.tx-xxxl {
		font-size: 1.3rem;
		color: black;
	}

	.data-num-item {
		color: black;
		width: 30%;


	}

	.about-title {
		font-size: 1.1rem;
		color: #aa6400;
		font-weight: 500;

	}

	.about-des {
		font-size: 0.85rem;
		color: black;
		margin-top: 10px;
	}

	.about-description {
		color: white;
		padding: 20px 15px;
		text-align: center;
		font-size: 1rem;
		line-height: 1.9rem;
		text-indent: 2em;
	}

	.second-des {
		margin-top: 20px;
	}

	#good-type {
		padding-bottom: 2rem;
	}

	.item-b {
		margin-top: 10px;
	}

	.navbar-collapse ul li a {
		color: #fff !important;
	}

	.flex-row-nowrap-a {
		width: 26%;
	}

	.bord-bottom {
		/* border-bottom: 1px solid rgba(255, 255, 255, .57); */
	}

	.list-unstyled {

		width: 30% !important;
	}

	.foot-row {
		display: flex;
	}

	.vertical-rl {
		writing-mode: vertical-rl;
		padding: 10px;
	}

	.pd0 {
		padding: 0px !important;
	}

	.mar-top20 {
		margin-top: 20px;
	}

	.bgc1 {
		/* background: #b79f97 ; */
	}

	.bgc2 {
		/* background: #b79f97 ; */
	}

	.mr0 {
		margin: 0px !important;
	}

	.view-inline-block-960 {
		display: inline-block;
	}

	.view-block-960 {
		display: block;
	}

	.view-inline-block-gt-960 {
		display: none;
	}

	.view-block-gt-960 {
		display: none;
	}


	/* body{    background: #242424 !important;} */
}

@media (max-width:768px) {
	.bord-bottom {
		border-bottom: 1px solid rgba(255, 255, 255, .57);
	}
}

@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -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-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -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(0deg);
    transform: rotate(0deg);
  }
}
@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(0deg);
    transform: rotate(0deg);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }

  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  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: translateZ(0);
    transform: translateZ(0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  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: translateZ(0);
    transform: translateZ(0);
  }

  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 heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -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-duration: .75s;
  animation-duration: .75s;
  -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -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) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  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);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  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);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  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);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  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-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
}
@-webkit-keyframes flipOutY {
  0% {
    -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-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
    transform: translate3d(100%,0,0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
    transform: translate3d(100%,0,0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    -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% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    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% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    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% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    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% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    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% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  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% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  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-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
@-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: translateZ(0);
    transform: translateZ(0);
  }
}
@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: translateZ(0);
    transform: translateZ(0);
  }
}

.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(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  100% {
    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% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  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;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (prefers-reduced-motion:reduce),(print) {
  .animated {
    -webkit-animation-duration: 1ms!important;
    animation-duration: 1ms!important;
    -webkit-transition-duration: 1ms!important;
    transition-duration: 1ms!important;
    -webkit-animation-iteration-count: 1!important;
    animation-iteration-count: 1!important;
  }
}