@import url('https://fonts.googleapis.com/css?family=Pacifico&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap&subset=latin-ext');
:root {
  --primary: #35d074;
  --secondary: #f2f2f2;
  --black: #17181b;
  --text-title: #383838;
}

html {
  scroll-behavior: smooth;
}

body{
  font-family: "Roboto", Sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
}

/*Sing Up-Login*/

.modal-body {
  margin-bottom: 30px;
}

.btn-secondary {
  background-color: #1CB94E;
  border-color: #1CB94E;
}

.btn-secondary:hover {
  background-color: #f04a4a;
  border-color: #f04a4a;
}

.modal-header {
  justify-content: flex-end!important;
  border: none;
}

.modal-footer {
  border: none;
}

.login-box {
  position: relative;
  margin: 10px auto;
  background-color: #fff;
  padding: 10px;
  border-radius: 3px;
}

.lb-header {
  position: relative;
  color: #00415d;
  margin: 5px 5px 10px 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
  height: 28px;
}

.lb-header a {
  margin: 0 25px;

  text-decoration: none;
  color: #666;
  font-weight: bold;
  font-size: 12px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.lb-header .active {
  color: #029f5b;
  font-size: 18px;
}

.email-login, .email-signup {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  margin-top: 20px;
  text-align: center;
}

.u-form-group {
  width: 100%;
  margin-bottom: 10px;
}

.u-form-group input[type="name"], .u-form-group input[type="email"], .u-form-group input[type="password"] {
  width: calc(50% - 22px);
  height: 45px;
  outline: none;
  border: 1px solid #ddd;
  padding: 0 10px;
  border-radius: 2px;
  color: #333;
  font-size: 0.8rem;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.u-form-group input:focus {
  border-color: var(--primary);
}

.u-form-group button {
  width: 47%;
  background-color: #1CB94E;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  padding: 14px 0;
  border-radius: 12px;
  text-transform: uppercase;
}

.forgot-password {
  width: 50%;
  text-align: left;
  text-decoration: underline;
  color: #888;
  font-size: 0.75rem;
}

/* Header */

.top-menu ul {
  list-style-type: none;
  margin-bottom: 0px;
}

.top-menu ul li a {
  color: var(--text-title);
}

.h50 {
  height: 45px;
}

.header-link {
  float: right;
}

.header-login {
  justify-content: flex-end;
}

.header-login ul {
  cursor: pointer;
  list-style-type: none;
  margin-bottom: 0px;
}

.header-login ul li {
  float: left;
  margin-right: 6px;
}

.header-login ul li i:hover {
  color: var(--primary);
}

.h39 {
  height: 39px;
}

.text-bagis a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.text-bagis a h6 {
  color: var(--text-title);
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 0px;
  margin-right: 5px;
}

.text-bagis a span {
  color: var(--text-title);
  font-weight: 400;
  font-size: 12px;
  font-weight: bold;
}

.fixed-top-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1040;
  background-color: white;
}

/* menu */

.primaryBg {
  background: linear-gradient(to right, var(--primary), #0ed81f);
}

.h80 {
  height: 80px;
}

.menu {
  opacity: 0.9;
  margin-top: 30px;
  background-color: var(--primary);
}

.logo h1 {
  margin-bottom: 0px;
}

.logo img {
  height: 55px;
}

.menu-bar {
  justify-content: flex-end;
}

.wrapper {
  position: relative;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-bar ul {
  list-style-type: none;
  margin-bottom: 0px;
}

.menu-bar ul li {
  float: left;
  padding-right: 30px;
}

.menu-bar ul li a {
  color: #ffff;
  font-family: "Roboto", Sans-serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.4px;
  transition: all 0.5s linear 0s;
}

.menu-bar ul li a:hover {
  color: var(--text-title);
  text-decoration: none;
}

/* mobil menu */

.m-menu {
  margin-top: 30px;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1035;
  top: 0;
  right: 0;
  background-color: var(--primary);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.m-menu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--white);
  display: block;
  transition: 0.3s;
}

.m-menu a:hover {
  color: var(--white);
}

.m-menu .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.open-menu {
  color: #ffff;
  display: none;
}

.wrapper-m {
  position: relative;
  top: 30px;
  left: 30%;
  transform: translate(-50%, -50%);
}

.m-menu .talep{
  margin-top: 14px;
  font-size: 20px;
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
/* talep */
.talep-img{
display: flex;
justify-content: center;
justify-items: center;
}
/* header */


.headerImage{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: url(../img/header.jpg) no-repeat;
  background-size: cover;
  align-items: center;
  background-position: center center;
}

.header-text {
  min-height: 89.9vh;
  justify-content: center;
  width: 100%;
  margin-top: 100px;
  position: relative;
  bottom: 200px;
}

.far {
  color: white;
  font-size: 350px;
  opacity: 0.2;
  height: auto;
  max-width: 100%;
  box-shadow: none;
  position: relative;
  top: 250px
}

.top-text {
  cursor: context-menu;
  font-size: 80px;
  font-weight: 300;
  line-height: 1em;
  letter-spacing: 5px;
  color: #FFFFFF;
  float: none;
}

.bottom-text {
  cursor: context-menu;
  font-size: 120px;
  font-weight: 400;
  line-height: 110px;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 0px 0px;
}

.small-images {
  width: 100%;
  position: absolute;
  left: 0px;
  top: -110px;
  z-index: 0;
  opacity: 1;
  text-align: center;
  animation: none;
}

.elementor-heart {
  position: relative;
}

.heart-text {
  position: relative;
}

.header-image {
  height: auto;
  max-width: 100%;
  border: none;
  box-shadow: none;
  opacity: 0.7;
  animation: sm-xy-move 5s alternate infinite linear;
}

.elemantor-widget-wrap4 {
  position: absolute;
  left: 258px;
  top: 408px;
}

.elemantor-widget-wrap3 {
  position: absolute;
  left: 270px;
  top: 752px;
}

.elemantor-widget-wrap2 {
  position: absolute;
  right: 258px;
  top: 398px;
}

.elemantor-widget-wrap {
  position: absolute;
  right: 228px;
  top: 758px;
}

/* services */

.services {
  margin-top: 30px;
  text-align: center;
}

.services-card {
  border: none;
}

.services-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-bar ul{
  margin-top: 15px;
}

.talep{
  margin-top: -5px;
}

/* notification */

.notification {
  margin-top: 100px;
  position: relative;
  padding: 50px 0px;
  background: url(../img/bagisback.png) repeat;
}

.notification h2 {
  cursor: context-menu;
  color: var(--black);
  color: var(--text-title);
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

.notification h2 span {
  color: var(--black);
  color: var(--primary);
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

.events_item {
  border: none;
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #f7f7f7;
  height: 6.4286em;
  margin-bottom: 1.2em;
  border-radius: 5px;
  padding-left: 102px;
  min-height: 105px;
}

.events_item_day {
  font-family: "Roboto", Sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2em;
  margin: 11px 0 0;
  display: block;
  color: white;
}

.events_item_month {
  font-family: "Roboto", Sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.2em;
  color: white;
  text-transform: uppercase;
  display: block;
}

.events_item_date_box {
  margin-top: 2px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--primary);
  top: 0;
  left: 0;
  width: 6.4286em;
  height: 6.4286em;
  color: #292929;
  text-align: center;
}

.events_item_title_area {
  display: block;
  overflow: hidden;
  height: auto;
  width: auto;
}

.events_item_title {
  color: var(--text-title);
  max-height: 48px;
  line-height: 21px;
  overflow: hidden;
  margin-top: 9px;
  border-bottom: 1px solid #d9d9d9;
  display: block;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2em;
  margin: 0.9em 25px 0.7em;
  padding: 0 0 15px;
  width: auto;
}
.events_flw{
  float: right;
  font-weight: 400;
  color: var(--primary);
}
.flw_btn{
  border: none;
  font-size: 14px;
  color: var(--primary);
  background: none;
}
.flw_btn::before{
  font-family: "Font Awesome 5 Free";
    content: '\f0f3';
    font-weight: 400;
    margin-right: 5px;
    color: var(--primary)
}

.flw_btn:focus{
  outline: none;
}

.events_item_time {
  color: #a7a7a7;
  padding-left: 25px;
  display: block;
  white-space: normal;
  left: 0;
  width: 100%;
  height: auto;
  min-width: 0;
  max-height: none;
  max-width: none;
  text-align: left;
  box-sizing: border-box;
}

.events_item_time_day {
  width: auto;
  height: auto;
  position: relative;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}

.events_item_time_day::before {
  font-family: "Font Awesome 5 Free";
  content: '\f017';
  font-weight: 400;
  margin-right: 5px;
  color: var(--primary);
}

.events_item_time_area {
  width: auto;
  height: auto;
  color: var(--text-title);
  padding-left: 25px;
  position: relative;
  top: 0;
}

.events_item_time::before {
  font-family: "fontello";
  content: '|';
  font-weight: 400;
  margin-right: 5px;
}

.events_item_button_area {
  width: auto;
  height: auto;
  position: relative;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}

.events_item_button_area::before {
  color: var(--text-title);
  content: '|';
  display: block;
  position: absolute;
  width: 0;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.events_item_button {
  position: relative;
  top: 0;
  color: var(--text-title);
  font-weight: 400;
  font-size: 15px;
  margin-left: 10px;
}

.events_item_button::before {
  font-family: "Font Awesome 5 Free";
  content: '\f14e';
  font-weight: 400;
  margin-right: 5px;
  color: var(--primary);
}

.first-event a {
  text-decoration: none;
}


/* blog */
.delButon{
border:none;
background-color: none;
background: none;
float: right;
}

.delButon:focus{
  outline: none;
}

.likeBtn{
  border:none;
  background-color: none;
  background: none;
  float: right;
  }
  
.likeBtn:focus{
    outline: none;
  }

.btnDonate:focus{
 outline:none;
}  

.btnDonate .like i.active{
  color: var(--primary);
}

.sek{
  margin-left: -33px!important;
}

.blog {
  margin-top: 100px;
  text-align: center;
}

.blog h2 {
  cursor: context-menu;
  font-weight: bold;
  color: var(--text-title);
  font-size: 30px;
}

.blog h2 span {
  color: var(--primary);
  font-size: 30px;
}

.blog_area {
  background-color: #0e0d12;
  margin-top: 30px;
  display: inline-block;
  padding-left: 0;
  position: relative;
}

.blog_item {
overflow: hidden;
}

.btn-blog-next{
  margin-top: 50px;
  background-color: #0e0d12;
  border-color: #0e0d12;
  color: white;
  border-radius: 5px 5px 5px 5px;
  width: 200px;
}
.btn-blog-next a{
 text-decoration: none;
 color:white;
}

.btn-blog-next:hover{
  margin-top: 50px;
  background-color: none;
  border-color: none;
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.blog_item_image {
  margin-bottom: 0;
  z-index: 120;
  left: 0;
  top: 0;
  height: 230px;
  width: 350px;
  min-width: 350px;
  max-width: 350px;
}



.blog_item_content {
  padding: 1em 1.55em 1.1em;
  text-align: left;
}

.blog_item_content_title {
  font-size: 1em;
  font-weight: 700;
  text-transform: none;
  line-height: 1.4em;
  margin: 0;
  color: white;
}

.blog_item_content_title a {
  text-decoration: none;
  color: white;
}

.blog_item_content_date_area {
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  margin-top: 0.8em;
}

.blog_item_content_date a {
  text-decoration: none;
  color: var(--primary);
}

/* reference */

.reference {
  padding: 50px 0px;
  margin-top: 100px;
}

.reference h2 {
  cursor: context-menu;
  text-align: center;
  margin-bottom: 100px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
  color: var(--text-title);
}

.partner-item {
  background: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item a {
  display: block;
  padding: 25px 15px;
}

.partner-item:hover a img, .partner-item:focus a img {
  opacity: .66;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.partner-item a img {
  display: inline-block !important;
  width: auto !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 150px;
}

.partner-item::before, .partner-item::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-item::before {
  border-left: 3px solid var(--primary);
  border-top: 3px solid var(--primary);
  left: 0;
  top: 0;
}

.partner-item::after {
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  right: 0;
  bottom: 0;
}

.partner-item:hover::after, .partner-item:hover::before, .partner-item:focus::after, .partner-item:focus::before {
  width: 40px;
  height: 40px;
  opacity: 1;
  visibility: visible;
}

/* message */

.message {
  margin-bottom: auto;
  position: relative;
  padding: 50px 0px;
  background: url(../img/message.jpg) repeat;
  box-sizing: border-box;
  height: 600px;
  margin-top: 100px;
}

.message h2 {
  cursor: context-menu;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

.message h2 span {
  color: var(--primary);
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

.message p {
  cursor: context-menu;
  text-align: center;
  color: white;
  margin-top: 20px;
  letter-spacing: -0.4px;
  line-height: 1.68em;
  opacity: 0.7;
}

.messagerow .input, .msg .area {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 25px;
  border: 2px solid #e9eaea;
  font-size: 14px;
  border-radius: 5px;
  outline: none;
  transition: all 0.5;
}

.msg-login .input {
  width: 48%;
  float: left;
  margin-right: 4%;
}

.msg-login .input:last-child {
  margin-right: 0;
}

.msg-login, .msg {
  width: 100%;
}

.msg .area {
  height: 100px;
}

.input:focus, .msg .area:focus {
  border: 2px solid var(--primary);
}

.submit {
  width: 100%;
  text-align: center;
}

.submit .btn {
  background: linear-gradient(to right, var(--primary), #0ed81f);
  padding: 12px 85px;
  font-size: 21px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
}

::-webkit-input-placeholder {
  font-size: 13px;
}

/* footer*/

.footer-top {
  background: #17181b;
  padding: 80px 0;
}

.footer-top h2, h3 {
  color: #ffff;
}

.footer-top p {
  cursor: context-menu;
  color: #ffff;
}

.footer-top h2, h3 {
  font-size: 18px;
}

.footer-top p {
  font-size: 14px;
}

.segment-one h3 {
  cursor: context-menu;
  letter-spacing: 3px;
  margin: 10px 0;
}

.segment-two h3 {
  cursor: context-menu;
  letter-spacing: 3px;
  margin: 10px 0;
}

.segment-two ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 40px;
}

.segment-two ul a {
  color: #FFFFFF;
  text-decoration: none;
}

.segment-two ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffff;
}

.segment-three h2 {
  cursor: context-menu;
  letter-spacing: 3px;
  margin: 10px 0;
}

.segment-three a {
  background: var(--primary);
  width: 32px;
  height: 32px;
  display: inline-block;
  border-radius: 10%;
}

.segment-three a:hover{
background-color: #00cc00;
-webkit-transition: all .2s linear;
transition: color .2s linear;
}

.segment-three a i {
  font-size: 13px;
  color: #ffff;
  padding: 9px 10px;
}

.segment-four h2 {
  cursor: context-menu;
  letter-spacing: 3px;
  margin: 10px 0;
}

.segment-four form input[type=email] {
  border: none;
  padding: 3px;
  margin-left: -5px;
  color: #FFF;
}

.segment-four form input[type=submit] {
  background: var(--primary);
  border: none;
  padding: 3px 5px;
  margin-left: -5px;
  color: #FFF;
}

.footer-bottom-text {
  cursor: context-menu;
  text-align: center;
  background: #1c1d21;
  line-height: 75px;
  color: #ffff;
  margin-bottom: 0;
}

.tags ul {
  list-style: none;
}

.tags li {
  cursor: context-menu;
  float: left;
  margin: 3px 6px 3px 0;
}

.tags a {
  background-color: var(--primary);
  color: white;
  border-radius: 2px;
  display: block;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding: 0 5px;
  text-decoration: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  cursor: context-menu;
}
.tags a:hover{
  color: white;
}
/* Lists Page Header*/

.lists-back {
  background: url(../img/lists.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}

.lists-text {
  cursor: context-menu;
  display: block;
  width: 100%;
  padding: 90px 0;
  text-align: center;
  background: rgb(36, 40, 47, 0.75);
}

.list-txt {
  color: white;
  margin-top: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.lists-text h2 {
  font-size: 36px;
  line-height: 30px;
  font-weight: bold;
}

.list-img i {
  font-size: 18px;
  color: white;
}

/*Lists */

.lists {
  padding-top: 100px;
  margin-bottom: 100px;
}

.lists-column-container {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.lists_header {
  padding: 0 15px;
  text-align: center;
}

.section-title {
  cursor: context-menu;
  text-transform: uppercase;
  font-weight: 400;
  font-weight: bold;
  color: var(--text-title);
}

.section-subtitle {
  cursor: context-menu;
  padding: 0 37px;
  display: inline-block;
  position: relative;
  margin-top: 15px;
  font-weight: 300;
  color: var(--primary);
}

.section-subtitle::before {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  content: '';
  width: 22px;
  height: 1px;
  background: var(--primary);
}

.section-subtitle::after {
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  content: '';
  width: 22px;
  height: 1px;
  background: var(--primary);
}

/*ListsFilter-Start */

#lists-filter {
  display: block;
  padding: 40px 15px 10px;
  text-align: center;
}

#lists-filter li {
  display: inline-block;
  padding: 5px 10px;
}

#lists-filter li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  height: 25px;
  line-height: 25px;
  padding: 0 15px;
  background: #e6e6e6;
  color: #383838;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  transition: all 0.2s linear;
}

#lists-filter li a.selected {
  background: var(--primary);
  color: white;
}

#lists-filter li a.selected::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary);
}

#lists-filter li a.selected:hover {
  color: white;
}

.list-item {
  padding-top: 30px;
  padding-bottom: 20px;
}

.list {
  display: block;
  position: relative;
  box-shadow: 0px 0px 5px 0px rgb(0, 0, 0, 0.8);
  transition: all 0.2 linear;
  min-height: 540px;
}

.list .img-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1e2024;
}

.list .img-wrapper .img {
  transition: all .2s linear;
}

.list .list-content {
  display: block;
  background: white;
  padding: 20px 20px 30px;
}

.list .img-wrapper .list-btn-wrapper {
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -20px;
  left: 0;
  text-align: center;
}

.list .list-content p {
  margin-top: 15px;
}

.list:hover .img-wrapper img {
  opacity: .3;
  -webkit-transform: scale(1.2);
}

.img-wrapper:hover .list-btn-wrapper a {
  -webkit-transform: scale(10);
  transform: scale(1.5);
}

.list-content h4 {
  cursor: context-menu;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  color: var(--primary);
}

.list-content p {
  cursor: context-menu;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #4d4d4d;
  margin: 0;
  padding: 0;
  text-align: left;
}

.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.base-btn-icon {
  color: white;
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  border-radius: 3px;
  font-weight: 400;
  background: var(--primary);
  transition: all 0.2s linear;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
}

.base-btn-icon i {
  color: inherit;
  padding-right: 5px;
  position: relative;
  z-index: 5;
}

.base-btn-icon:hover {
  color: var(--text-title);
}

.base-btn-icon.btn_colored::before {
  bottom: 150%;
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: rgb(0, 0, 0, 0.1);
  transition: all 0.4s linear;
  left: 0;
  z-index: 2;
  transform: rotate(10deg);
}

.base-btn-icon.btn_colored::after {
  top: 150%;
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.4s linear;
  left: 0;
  z-index: 2;
  transform: rotate(10deg);
}

.base-btn-icon span {
  display: inline-block;
  position: relative;
  z-index: 5;
}

.raised-text h6 {
  cursor: context-menu;
  margin-top: 15px;
  text-align: left;
  font-weight: bold;
  color: var(--text-title);
  position: relative;
}

.raised-text span {
  cursor: context-menu;
  float: right;
  text-align: right;
  font-weight: bold;
  color: var(--text-title);
}

.like {
  position: absolute;
  z-index: 5;
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  bottom: 230px;
}

.like i {
  font-size: 20px;
  color: #383838;
}


.like:hover i {
  color: var(--primary);
}

.like i:focus {
  color: var(--primary);
}

.like i:focus-within {
  color: var(--primary);
}

.card-meta {
  margin-top: 30px;
}

.card-meta-left {
  display: flex;
}

.card-meta-left img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -5px;
}

.card-meta-left ul {
  cursor: context-menu;
  list-style-type: none;
  margin-left: 10px;
  font-size: 12px;
}

.card-meta-left ul li:nth-child(1) {
  font-weight: bold;
}

.card-meta-right {
  text-align: right;
}

.card-meta-right ul {
  cursor: context-menu;
  list-style-type: none;
  margin-left: 10px;
  font-size: 12px;
}

.card-meta-right ul li:nth-child(1) {
  font-weight: bold;
}

/* ListFilter-End*/

/*ListForm-Start*/
.number-input{
  width: 50px;
}

.custom-checkbox{
  margin-top: 18px;
  font-size:14px;
}

.custom-control-input:checked~.custom-control-label::before{
  border-color: var(--primary);
  background-color: var(--primary);
}


.lists-form-back {
  background: url(../img/lists.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}

.lists-form-text {
  display: block;
  width: 100%;
  padding: 90px 0;
  text-align: center;
  background: rgba(141, 167, 144, 0.75);
}

.list-form-txt {
  color: white;
  margin-top: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.lists-form-text h2 {
  font-size: 36px;
  line-height: 30px;
  font-weight: bold;
}

.list-form-img i {
  font-size: 18px;
  color: white;
}

.donater {
  margin-top: 70px;
  display: inline-block;
  clear: both;
  width: 100%;
}

.left-list-form {
  margin-top: 75px;
  margin-bottom: 75px;
}

.left-list-form h3 {
  font-weight: bold;
  font-size: 25px;
  color: var(--text-title);
}

.left-list-form p {
  font-weight: 300;
  margin: 0 0 40px;
  margin-top: 20px;
}

.society img {
  margin-top: 18px;
}

.society-links .fas {
  color: var(--primary);
  font-size: 20px;
}

.society-links a:hover {
  color: var(--primary);
}

.society-links a {
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-title);
  padding: 10px;
}

.society-links-phone {
  margin-top: 20px;
}

.society-links-phone .fas {
  color: var(--primary);
  font-size: 20px;
}

.society-links-phone a:hover {
  color: var(--primary);
}

.society-links-phone a {
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-title);
  padding: 10px;
}

.card-text h6 {
  cursor: context-menu;
  margin-top: 15px;
  text-align: left;
  font-weight: 300;
  color: var(--text-title);
  position: relative;
  font-size: 12px;
}

.card-text span {
  float: right;
  text-align: right;
  font-weight: 300;
  color: var(--text-title);
  position: relative;
  font-size: 12px;
}

.donation-amount {
  cursor: context-menu;
  margin-top: 24px;
  color: var(--text-title);
  margin-bottom: 24px;
}

.input-group {
  margin-top: 5px;
}

.donation-amount-level {
  margin-bottom: -13px;
}

.donation-amount-level ul {
  list-style: none;
  padding: 0 0 12px;
  margin-bottom: 10px;
}

.donation-amount-level ul li {
  margin: 3px 2px 12px 0;
  float: left;
}

.donat-level-btn {
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border: none;
  color: #383838;
  background: #ececec;
  padding: 9px 14px;
  margin-bottom: 12px;
  -moz-border-radius: 75px;
  border-radius: 75px;
  cursor: pointer;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  font-family: montserrat;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 21px;
}
.odemeDetay{text-align: center; font-size: 30px; color: var(--text-title); font-weight: 300;}
.Effect-div{display: flex; align-items: center; justify-content: center;}
.Effect {
    border-top: 2px solid var(--primary);
    animation-name: effect;
    transition: all ease-in .4s;
    animation-duration: 4s;
    -webkit-animation-name: effect;
    -webkit-animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes effect {
  0% {
      width: 75px;
  }
  50% {
      width: 200px;
  }
  100% {
      width: 75px;
  }
}
.donat-level-btn:hover {
  box-shadow: inset 0 0 100px 100px rgba(89, 243, 0, 0.383)!important;
  transition: color .15s ease-out;
}

.donat-level-btn:focus {
  box-shadow: inset 0 0 100px 100px rgba(89, 243, 0, 0.383)!important;
  transition: color .15s ease-out;
}

.purchase-form h5 {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: -8px;
  display: inline-flex;
  margin-top: 10px;
}

.final-amount {
  cursor: context-menu;
  font-size: 13px;
  color: var(--text-title);
}

.right-list-form {
  padding: 24px 24px 24px 24px;
}

.right-list-form .card {
  margin-top: 125px;
  margin-bottom: 75px;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.08);
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  float: right;
}

.card-img-top {
  padding: 20px 2px 20px 5px;
}

.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 64, 0.25);
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 64, 0.25);
}

.lb-form {
  position: relative;
  color: #00415d;
  margin: 5px 5px 10px 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
  height: 28px;
}

.lb-form a {
  margin: 0 25px;
  padding: 0 20px;
  text-decoration: none;
  color: #666;
  font-weight: bold;
  font-size: 15px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
}

.lb-form .active {
  color: #029f5b;
  font-size: 15px;
}



/* animate */

@keyframes progress {
  0% {
    transform: translateX(-235px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes loading {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 100%;
  }
}

.loading-bar {
  margin: 0 auto;
  width: 100%;
  height: 12px;
  background: transparent;
  box-shadow: 0 1px 5px -1px #b3b3b2;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.loading-bar_progress {
  border-radius: 10px;
  position: absolute;
  animation: progress 2.5s;
  height: 15px;
}

.loading-bar--html {
  background: var(--primary);
}

.load:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 33.33%, transparent 33.33%, transparent 66.66%, rgba(255, 255, 255, 0.4) 66.66%);
  background-size: 30px 15px;
  animation: loading 3s infinite linear;
}

/* Society Page */
.society-back {
  background: url(../img/gücsüzler-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}
.society-text {
  display: block;
  width: 100%;
  padding: 90px 0;
  text-align: center;
  background: rgba(93, 93, 92, 0.75);
}

.society-txt {
  color: white;
  margin-top: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.society-text h2 {
  cursor: context-menu;
  font-size: 36px;
  line-height: 30px;
  font-weight: bold;
}

.society-img i {
  font-size: 18px;
  color: white;
}

.right-society h3 {
  cursor: context-menu;
  font-weight: bold;
  font-size: 25px;
  color: var(--text-title);
}

.right-society p {
  cursor: context-menu;
  font-weight: 300;
  margin: 0 0 40px;
  margin-top: 20px;
}

.statistic{
  background: #eaf6f7;
  margin-top: 100px;
  position: relative;
  box-sizing: border-box;
  padding: 50px 0px;
  margin-bottom: 100px;
}

.statistic-card{
  display: flex;
  justify-content: center;
  justify-items: center;
}

.statistic-title{
  text-transform: uppercase;
  font-weight: 400;
  font-weight: bold;
  color: var(--text-title);
  text-align: center;

}
.statistic-subtitle{
  cursor: context-menu;
  margin-top: 15px;
  font-weight: 300;
  color: #a1ccf5;
  text-align: center;
}
.statistic-subtitle::before{
 margin-right: 10px;
  top: 14px;
  left: 0;
  content: '.';
  width: 22px;
  height: 1px;
  background: #a1ccf5;
}

.statistic-like{
  background-color:#eaf6f7;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-left:93px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.statistic-like i{
  color:#a1ccf5;
  font-size: 22px;
}
.card-body h5{
  cursor: context-menu;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.card-body h2{
  cursor: context-menu;
  color:#a1ccf5;
  text-align: center;
  font-weight: bold;
  font-size: 100px;
}

/* Society Contact */


.contact-title{
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
  font-weight: bold;
  color: var(--text-title);
  text-align: center;

}
.contact-subtitle{
  cursor: context-menu;
  font-size: 20px;
  margin-top: 15px;
  font-weight: 300;
  color: #a1ccf5;
  text-align: center;
}
.contact-subtitle::before{
 margin-right: 10px;
  top: 14px;
  left: 0;
  content: '.';
  width: 22px;
  height: 1px;
  background: #a1ccf5;
}
.contact-map{
  display: flex;
  justify-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 50px;
  margin-top: 50px;
  border-radius: 100%;
}
.contact-cart{
  display: flex;
  text-align: center;
  justify-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.card-ctact{
  background: var(--primary);
  width: 350px;
  height: 130px;
  border-radius: 12px;
  transition: all 0.5s linear 0s;
}
.card-ctact:hover{
  transition: all 0.5s linear 0s;
  background: #383838;
  width: 350px;
  height: 130px;
  border-radius: 12px;
}
.card-ctact i{
  margin-top: 20px;
  font-size: 30px;
  color: white;
}
.card-ctact span{
  font-size: 25px;
  color: white;
  text-decoration: none;
}

/*About Us */
.about-back {
  background: url(../img/about.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}
.about-text {
  display: block;
  width: 100%;
  padding: 90px 0;
  text-align: center;
  background: rgba(93, 93, 92, 0.75);
}

.about-txt {
  color: white;
  margin-top: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-text h2 {
  cursor: context-menu;
  font-size: 36px;
  line-height: 30px;
  font-weight: bold;
}

.about-img i {
  font-size: 18px;
  color: white;
}

.right-about h3 {
  cursor: context-menu;
  font-weight: bold;
  font-size: 25px;
  color: var(--text-title);
}

.right-about p {
  cursor: context-menu;
  font-weight: 300;
  margin: 0 0 40px;
  margin-top: 20px;
}

.statistic{
  background: #eaf6f7;
  margin-top: 100px;
  position: relative;
  box-sizing: border-box;
  padding: 50px 0px;
  margin-bottom: 100px;
}

.statistic-card{
  display: flex;
  justify-content: center;
  justify-items: center;
}

.statistic-title{
  cursor: context-menu;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
  font-weight: bold;
  color: var(--text-title);
  text-align: center;

}
.statistic-subtitle{
  cursor: context-menu;
  font-size: 20px;
  margin-top: 15px;
  font-weight: 300;
  color: #a1ccf5;
  text-align: center;
}
.statistic-subtitle::before{
 margin-right: 10px;
  top: 14px;
  left: 0;
  content: '.';
  width: 22px;
  height: 1px;
  background: #a1ccf5;
}

.statistic-donate{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-left:93px;
  margin-top: 21px;
  margin-bottom: 45px;
}

.card-body h5{
  cursor: context-menu;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.card-body p{
  cursor: context-menu;
  color:#383838;
  text-align: center;
  font-weight: 300;
  font-size: 15px;
}
/* Team */
.btn-outline-contact{
  float: right;
  margin-right: 80px;
  margin-top: -88px;
  color: #a1ccf5;
  border-color: #a1ccf5 ;
}

.btn-outline-secondary{border-color: #ced4da;}

.btn-outline-contact:hover{
  color: #84bef5;
}

.btn-outline-contact i{
 color: #84bef5;
}

.voluenteer-cart{
display: flex;
justify-content: center;
justify-items: center;
}

.card-team-name{
  cursor: context-menu;
  margin-top: 40px;
  font-weight: bold;
  color: #383838;
  font-size: 20px;
}

/* User Profile*/
.profile-back {
  background: url(../img/profile.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}
.profile-text {
  display: block;
  width: 100%;
  padding: 90px 0;
  text-align: center;
  background: rgba(93, 93, 92, 0.75);
}

.profile-txt {
  font-size: 36px;
  color: white;
  font-weight: bold;
}
.profile-tabs{
  display: flex;
  justify-content: center;
  justify-items: center;
  line-height: 30px;
}

.btn-profile{
  height: 60px;
  color: #414141;
  background-color: #ececec;
}
.btn-profile:hover{
  color: white;
  height: 60px;
  background-color:var(--primary);
}
.btn-profile:focus{
  color: white;
  height: 60px;
  background-color:var(--primary);
}
.btn-profile:focus-within{
  color: white;
  height: 60px;
  background-color:var(--primary);
}
.btn-profile:active{
  color: white;
  height: 60px;
  background-color:var(--primary);
}
.profile-subtitle{
  font-size: 20px;
  margin-top: 95px;
  font-weight: 300;
  color: var(--primary);
  text-align: center;
}
.profile-subtitle::before{
  display: inline-block;
  top: 14px;
  left: 0;
  content: '';
  width: 50px;
  height: 1px;
  background: var(--primary);
}
.profile-subtitle::after{
  display: inline-block;
  top: 14px;
  right: 0;
  content: '';
  width: 50px;
  height: 1px;
  background: var(--primary);
}
.profile-buttons{
  display: flex;
  justify-content: center;
  justify-items: center;
}
.btn-name-sname{
  font-size: 18px;
  width: 100%;
  background-color: #ececec;
  color: #383838;
  margin-top: 30px;
}
.btn-gift{
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  background-color: var(--primary);
  color: white;
  margin-top: 30px;
}
.btn-gift i{
  color: white;
  size: 20px;
  float: left;
  margin-top: 6px;
}
.btn-gift:hover{
 color: white;
 text-decoration: none;
}
.btn-name-sname i{
  color: #383838;
  size: 20px;
  float: left;
  margin-top: 6px;
}
.btn-name-sname:hover i{
  color:white;
}
.btn-name-sname .next{
  color: #383838;
  float: right;
  margin-top: 3px;
}
.btn-name-sname .change{
  color: #383838;
  size: 20px;
  float: right;
  margin-top: 6px;
}
.btn-name-sname:hover .change{
  color:white;
}

.btn-name-sname:hover{
  background-color: var(--primary);
  color: white;
}
.btn-name-sname:focus{
  background-color: var(--primary);
  color: white;
}
.btn-secure{
  background-color: #ececec;
  color: #383838;
  font-size: 18px;
  width: 100%;
  margin-top: 30px;
}
.btn-secure i{
  color: #383838;
  float: left;
  margin-top: 6px;
}
.btn-secure .next{
  color: #383838;
  float: right;
  margin-top: -22px;
}
.btn-secure:hover{
  background-color: var(--primary);
  color: white;
}
.btn-secure:focus{
  background-color: var(--primary);
  color: white;
}
.btn-secure:active{
  background-color: var(--primary);
  color: white;
}
.btn-secure:hover i{
  color:white;
}
.card-img-top-foll{
  padding:0px;
  width: 100%;
}
.card-body-foll{
  margin: 20px;
}
.card-body p{
  text-align: left;
}
.card-body-foll a{
  padding: 2px 5px 3px 8px;
  border-radius: 2px;
  font-size: 17px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  cursor: context-menu;
}
.card-body-foll a:Hover{
  color: white;
  cursor: context-menu;
}
.profile-folows-bar{
  display: flex;
  justify-content: center;
  justify-items: center;
}
.like-follow{
  position: absolute;
   z-index: 5;
  background-color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.like-follow i{
  color: var(--primary);
}
a:hover{
  text-decoration: none;
}
.passInput{
  border-radius: 5px;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 55px;}

  
  ection {
    width: 100%;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    align-items: center;
    font-family: 'Lemonada', cursive;
  }
  section.default-section {
    background-color: #e5e5e5;
  }
  section > .btn {
    border-radius: 2px;
    margin: auto;
  }
  .massageBox .modal-dialog {
    width: 400px;
    margin: 0 auto;
    margin-top: -200px;
    top: 50%;
  }
  .massageBox .modal-content {
    margin-top: -300px;
    border: none;
    border-radius: 2px;
    box-shadow: 0 0px 5px rgba(0,0,0,0.5);
  }
  .massageBox .modal-header {
    padding: 15px;
    border-bottom: 0px solid #e5e5e5;
    background-color: #ddd;
  }
   @keyframes IconBorderFadeIn {
   from {
  border-color: rgba(255,255,255,0.3);
  }
  }
  .massageBox .massageIcon {
    width: 90px;
    height: 90px;
    font-size: 40px;
    display: block;
    background-color: #cdcdcd;
    margin: 30px auto 20px auto;
    position: relative;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    border-width: 8px;
    border-style: solid;
    border-color: #efefef;
    color: #ffffff;
    animation: IconBorderFadeIn 1s infinite alternate;
  }
   @keyframes IconFadeIn {
   from {
  opacity: 0;
  }
  }
  .massageBox .massageIcon i {
    animation: IconFadeIn 1s infinite alternate;
  }
  .massageBox .modal-body {
    padding-top: 30px;

    font-size: 24px;
  }
  .massageBox .modal-body p {
    font-size: 20px;
  }
  .massageBox .modal-footer {
    padding: 0px;
  }
  .massageBox .modal-footer .btn {
    margin-bottom: 42px;
    border: none;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0;
    box-shadow: none;
  }
  .massageBox .modal-footer .btn-default {
    background-color: #bbb;
    color: #fff;
  }
/*Blog*/
.blog-back {
  background: url(../img/blog-list.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}

  .blog-page-back {
    background: url(../img/blog.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 110px;
  }
  
  .blog-page-text {
    display: block;
    width: 100%;
    padding: 90px 0;
    text-align: center;
    background: rgb(36, 40, 47, 0.75);
  }
  
  .blog-page-txt {
    color: white;
    margin-top: 20px;
    font-weight: 400;
    text-transform: uppercase;
  }
  .blog-page-text h2 {
    cursor: context-menu;
    font-size: 36px;
    line-height: 30px;
    font-weight: bold;
  }
.blog-page{
  display: flex;
  justify-content: center;
  justify-items: center;
}
.blog-page img{
  margin-top: 50px;
  width: 45%;
  margin-bottom: 50px;
}
.blog-page-content h3{
  cursor: context-menu;
  color: #383838;
  text-align: center;
  font-weight: bold;
}
.blog-page-content p{
  cursor: context-menu;
  color: #383838;
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
  line-height: 32px;
}
.etichet-blog h4{
  cursor: context-menu;
  margin-top: 50px;
  color: #383838;
  font-weight: bold;
  font-size: 19px;
  float: left;
}
.etichet-blog-left{
  display: inline-grid;
}
.etichet-blog-left h4{
  cursor: context-menu;
  margin-top: 50px;
  color: #383838;
  font-weight: bold;
  font-size: 19px;
  float: right;
}
.blog-share{
  display: flex;
}
.blog-share .fb{
  margin-right: 10px;
}
.blog-share .tw{
  margin-right: 10px;
}
.blog-share a{
  text-decoration: none;
  color: #cfcfcf;
}
.blog-share a:hover{
  color: var(--primary);
}
/* ToUp Button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 23px;
  border: none;
  outline: none;
  background-color: unset;
  color: var(--primary);
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

.blog-border{
  margin-top: 50px;
  width: 100%; 
  border: 0.5px solid #cfcfcf;;
  margin-bottom: 50px;
}

/*Blog Comment*/
.comments-container {
	margin: 60px auto 15px;
	width: 768px;
}

.comments-container h1 {
  cursor: context-menu;
	font-size: 36px;
	color: #383838;
	font-weight: 400;
}

.comments-container h1 a {
	font-size: 18px;
	font-weight: 700;
}

.comments-list {
	margin-top: 30px;
  position: relative;
}

/**
 * Lineas / Detalles
 -----------------------*/




.reply-list:before, .reply-list:after {display: none;}
.reply-list li:before {
	content: '';
	width: 60px;
	height: 2px;
	background: #c7cacb;
	position: absolute;
	top: 25px;
	left: -55px;
}


.comments-list li {
	margin-bottom: 15px;
	display: block;
	position: relative;
}

.comments-list li:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	width: 0;
}

.reply-list {
	padding-left: 88px;
	clear: both;
	margin-top: 15px;
}
/**
 * Avatar
 ---------------------------*/
.comments-list .comment-avatar {
	width: 58px;
	height: 63px;
	position: relative;
	z-index: 99;
	float: left;
	border: 3px solid #FFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	overflow: hidden;
}


.comments-list .comment-avatar img {
	width: 100%;
	height: 100%;
}

.reply-list .comment-avatar {
	width: 50px;
	height: 50px;
}

.comment-main-level{
  margin-bottom: 50px;
}

.comment-main-level:after {
	content: '';
	width: 0;
	height: 0;
	display: block;
	clear: both;
}

.refImage {height: 250px;}
.refLink:hover .overlay {opacity:  0.7;}
.refLink {color: #252425; }
.refLink:hover {color: #252425;text-decoration: none}
.card-service {min-height: 322px; min-width:350px; border-radius: 15px; padding-top: 30px; margin-bottom: 30px;border: none; box-shadow: 0px 8px 14.72px 1.28px rgba(199, 199, 199, 0.2)}

/**
 * Caja del Comentario
 ---------------------------*/
.comments-list .comment-box {
	width: 680px;
	float: right;
	position: relative;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.comments-list .comment-box:before, .comments-list .comment-box:after {
	content: '';
	height: 0;
	width: 0;
	position: absolute;
	display: block;
	border-width: 10px 12px 10px 0;
	border-style: solid;
	border-color: transparent #FCFCFC;
	top: 8px;
	left: -11px;
}

.comments-list .comment-box:before {
	border-width: 11px 13px 11px 0;
	border-color: transparent rgba(0,0,0,0.05);
	left: -12px;
}

.reply-list .comment-box {
	width: 610px;
}
.comment-box .comment-head {
	background: #FCFCFC;
	padding: 10px 12px;
	border-bottom: 1px solid #E5E5E5;
	overflow: hidden;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

.comment-box .comment-head i {
	float: right;
	margin-left: 14px;
	position: relative;
	top: 2px;
	color: #A6A6A6;
	cursor: pointer;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.comment-box .comment-head i:hover {
	color: var(--primary);
}

.comment-box .comment-head i.active {
	color: var(--primary);
}
.comment-box .comment-name {
	color: #283035;
	font-size: 14px;
	font-weight: 700;
	float: left;
	margin-right: 10px;
}

.comment-box .comment-name a {
	color: #283035;
}

.comment-box .comment-head span {
	float: left;
	color: #999;
	font-size: 13px;
	position: relative;
	top: 1px;
}

.comment-box .comment-content {
	background: #FFF;
	padding: 12px;
	font-size: 15px;
	color: #595959;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.comment-box .comment-name.by-author, .comment-box .comment-name.by-author a {color: #383838;}
.comment-box .comment-name.by-author:after {
	content: 'yazar';
	background: var(--primary);
	color: #FFF;
	font-size: 12px;
	padding: 3px 5px;
	font-weight: 700;
	margin-left: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/*Add Comment */
.blog-add-msg{
  display: flex;
  justify-content: center;
  justify-items: center;
}
#form-main{
  margin-bottom: 80px;
  width: 85%;
}
#form-div {
  border-radius: 17px;
	background-color:#383838;
	padding-left:35px;
	padding-right:35px;
	padding-top:35px;
	padding-bottom:50px;


}
.feedback-input {
	color: #383838;
  font-weight:400;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
  border: 3px solid #fbfbfb;
	padding: 13px 13px 13px 54px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 3px solid var(--primary);
	color: #383838;
	outline: none;
  padding: 13px 13px 13px 54px;
}

#comment{
  border-radius: 17px;
	background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

textarea {
	width: 100%;
	height: 150px;
	line-height: 150%;
}
#button-blue{
  border-radius: 17px;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: var(--primary);
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

#button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: var(--primary);
}
	
.submit:hover {
	color: var(--primary);
}

.ease {
  border-radius: 17px;
  border-top:3px #3c3c3c solid;
	width: 0px;
	height: 84px;
	background-color: #fbfbfb;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	-ms-transition: .3s ease;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}



/* scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: #31e479a2;
}

/* selection */

::-moz-selection {
  background: var(--primary);
  color: #FFFFFF;
}

::selection {
  background: var(--primary);
  color: #FFF;
}

a::-moz-selection {
  background: var(--primary);
  color: #FFFFFF;
}

a::selection {
  background: var(--primary);
  color: #FFFFFF;
}

/* responsive */

@media(min-width:1200px) {
.card-service{margin-right: 215px;}
.profile-subtitle{
  max-width: 100%;
}
}

@media(max-width:1200px)and (min-width:992px) {
  .talepUst{
    padding: 5px;
  }
  .services-img{
    padding:10px;
  }

}

@media (max-width: 992px) and (min-width:769px) {
  ._blog{display: flex; justify-content: center;}
  .text-bagis h6{display: none;}
  .talepUst{
    padding: 5px;
  }
  .services-img{
    padding:10px;
  }
  .text-bagis a {
    font-size: 10px;
  }
  .text-bagis a span {
    font-size: 10px;
  }
  .wrapper {
    width: 100%;
  }
  .list-item {
    flex: 0 0 50.33%;
    max-width: 50.33%;
  }
  .profile-tabs{
    padding:10px;
  }
  .comments-container {
		width: 380px;
	}
  .comments-list .comment-box {
		width: 290px;
	}

	.reply-list .comment-box {
		width: 220px;
	}
}

@media (max-width: 769px) and (min-width: 576px) {

  .lb-header a {   font-size: 10px;}
  
  .lb-header .active {  font-size:12px;}

  .text-bagis h6{display: none;}
  .talepUst{
    padding: 5px;
  }

  .services-img{
    padding:10px;
  }

  .text-bagis a {
    font-size: 10px;
  }
  .text-bagis a span {
    font-size: 10px;
  }
  .wrapper {
    width: 100%;
  }
  .menu-bar ul {
    display: none;
  }
  .open-menu {
    display: block;
  }
  .text-bagis a h6 {
    display: none;
  }
  .right-list-form {
    padding: 27px 11px 24px 24px;
  }
  .btn-outline-contact{
    display: none;
  }
  .profile-tabs{
    padding:10px;
  }
  .blog-page img{
    width: 75%;
    margin-bottom: 50px;
  }  
  .comments-container {
		width: 380px;
	}
  .comments-list .comment-box {
		width: 290px;
	}

	.reply-list .comment-box {
		width: 220px;
	}
}

@media (min-width:286px) and (max-width:576px) {
  .lb-header a {   font-size: 10px;}
  
  .lb-header .active {  font-size: 12px;}

  .text-bagis h6{display: none;}
  .delButon{
    margin:1px;
  }
  .services-img{
    padding:10px;
  }
  .text-bagis a {
    font-size: 10px;
  }
  .text-bagis a span {
    font-size: 10px;
  }
  .header-login ul{
    font-size:10px
  }
  .header-login ul li i {
    font-size: 13px;
  }
  .wrapper {
    width: 100%;
  }
  .menu-bar ul {
    display: none;
  }
  .open-menu {
    display: block;
  }
  .header-text {
    justify-content: center;
  }
  .header-link .user {
    position: relative;
    left: 75px;
    bottom: 30px;
  }
  .text-bagis a h6 {
    display: none;
  }
  .text-bagis a span {
    font-size: 12px;
  }
  .active img {
    width: 50%;
  }
  .msg-area {
    width: 85%;
  }
  .top-text {
    font-size: 50px;
  }
  .bottom-text {
    font-size: 70px;
  }
  .heart-img i {
    font-size: 310px;
  }
  .segment-three {
    margin-top: 15px;
  }
  .segment-four {
    margin-top: 15px;
  }
  .notification h2 {
    font-size: 18px;
  }
  .notification h2 span {
    font-size: 18px;
  }
  .blog h2 {
    font-size: 18px;
  }
  .blog h2 span {
    font-size: 18px;
  }
  .partner h3 {
    font-size: 18px;
  }
  .message h2 {
    font-size: 18px;
  }
  .message h2 span {
    font-size: 18px;
  }
  .message p {
    font-size: 13px;
  }
  .raised-text h6 {
    font-size: 13px;
  }
  .raised-text span {
    font-size: 13px;
  }
  .reference h2 {
    font-size: 18px;
  }
  .events_item_button {
    font-size: 11px;
  }
  .events_item_time_day {
    font-size: 11px;
    margin-top: 6px;
  }
  .events_item_button_area::before {
    font-size: 11px;
  }
  .right-list-form {
    padding: 0px 52px 24px 24px;
  }
  .login-box {
    padding: 1px;
  }
 
  .lb-header a {
    font-size: 12px;
  }
  .card-wrapper{
    width:70%;
  }
  .l-society{
    margin-bottom: 50px;
    margin-left: 20px;
  }
  .btn-outline-contact{
    display: none;
  }
  .left-about{
    display: flex;
    justify-items:center;
    justify-content: center;
  }
  .right-about{
   text-align: center;
  }
  .left-society{
    display: flex;
    justify-items:center;
    justify-content: center;
  }
  .right-society{
   text-align: center;
  }
  .statistic-title, h4{
    font-size: 18px;
  }
  .contact-title, .contact-subtitle{
    font-size: 18px;
  }
  .profile-tabs{
    padding:20px;
  }
  .btn-name-sname, .btn-gift {
    font-size: 16px;
  }
  .card-body-foll a{
    font-size: 6px;
  }
  .blog-page img{
    width: 100%;
    margin-bottom: 50px;
  }  
  .comments-container {
		width: 280px;
	}
  .comments-list .comment-box {
		width: 190px;
	}

	.reply-list .comment-box {
		width: 120px;
  }
  #form-main{
    width: 100%;
  }

}

#button-addon2:focus{
  background-color: var(--primary);
  color:white;
}

/* Paymnet */

.cardInput{
  border-radius: 5px;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 55px;
}




/* Iphone5s */

@media(max-width:341px) {
  .lb-header a {   font-size: 8px;}
  
  .lb-header .active {  font-size:10px;}
  
  .text-bagis a span {
    font-size: 12px;
  }
  .header-text p {
    font-size: 75px
  }
  .raised-text h6 {
    font-size: 10px;
  }
  .raised-text span {
    font-size: 10px;
  }
  .events_item_button {
    font-size: 9px;
  }
  .events_item_time_day {
    font-size: 9px;
    margin-top: 8px;
  }
  .events_item_button_area::before {
    font-size: 9px;
    margin-top: 1px
  }
  .login-box {
    padding: 1px;
  }
  .lb-header a {
    font-size: 9px;
  }
  .lb-header .active {
    font-size: 11px
  }
  .right-list-form {
    padding: 0px 15px 24px 24px;
  }
  .btn-name-sname, .btn-gift {
    font-size: 12px;
  }
  .card-body-foll a{
    font-size: 4px;
  }
  #form-main{
    width: 100%;
  }
}

/* animation */

@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 {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

.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: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.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 {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

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

@keyframes fadeOutDown {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    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 {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  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 {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

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

@-webkit-keyframes lightSpeedIn {
  from {
    -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

@keyframes lightSpeedOut {
  from {
    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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  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 {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.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 {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .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;
  }
}


@keyframes sm-xy-move {
  0% {
      -webkit-transform: translate(-10%, -10%);
      transform: translate(-10%, -10%);
  }

  100% {
      -webkit-transform: translate(10%, 10%);
      transform: translate(10%, 10%);
  }
}
