/*
*
* Default colors
*
*/
/*
*
* Default functionality
*
*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: 0px 1px 5px 0.2px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 1px 5px 0.2px rgba(0, 0, 0, 0.16);
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffc500;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffc500;
}

::-moz-selection {
  background-color: #ffc500;
  color: #fff;
}

::selection {
  background-color: #ffc500;
  color: #fff;
}

html, body {
  position: relative;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

body {
  padding-top: 56px;
  min-height: 1000px;
}

h1, .h1 {
  font-size: 36px;
  line-height: 46px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

h2, .h2 {
  font-size: 32px;
  line-height: 42px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

h3, .h3 {
  font-size: 28px;
  line-height: 38px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

h4, .h4 {
  font-size: 24px;
  line-height: 32px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

h5, .h5 {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

h6, .h6 {
  font-size: 18px;
  line-height: 28px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

p {
  font-size: 16px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  color: #212121;
  font-weight: 400;
}

a {
  text-decoration: none !important;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

a.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}

.list-inline, .list-unstyled, .list-default {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.no-boder-left {
  border-left: none !important;
}

.no-boder-right {
  border-right: none !important;
}

.bd-right {
  border-right: 2px solid #615b6e;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*
* General buttons
*/
.btn-yellow {
  border: 1px solid #ffc500;
  background: #ffc500;
  padding: 5px 15px;
  border-radius: 0px;
  color: #212121;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-yellow:hover, .btn-yellow:focus {
  border: 1px solid #212121;
  background: #212121;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-transparent-yellow {
  border: 1px solid #ffc500;
  background: transparent;
  padding: 5px 15px;
  border-radius: 0px;
  color: #ffc500;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-transparent-yellow:hover, .btn-transparent-yellow:focus {
  border: 1px solid #ffc500;
  background: #ffc500;
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-black {
  border: 1px solid #212121;
  background: #212121;
  padding: 5px 15px;
  border-radius: 0px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-black:hover, .btn-black:focus {
  border: 1px solid #ffc500;
  background: #ffc500;
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-transparent-black {
  border: 1px solid #212121;
  background: transparent;
  padding: 5px 15px;
  border-radius: 0px;
  color: #212121;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-transparent-black:hover, .btn-transparent-black:focus {
  border: 1px solid #212121;
  background: #212121;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
* General shadows 
*/
.shadow {
  width: 100px;
  margin: 0 auto;
  height: 100px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px;
}

.shadow.top {
  -webkit-box-shadow: 0px -15px 10px -15px #111;
          box-shadow: 0px -15px 10px -15px #111;
}

.shadow.bottom {
  -webkit-box-shadow: 0px 15px 10px -15px #111;
          box-shadow: 0px 15px 10px -15px #111;
}

.shadow.left {
  -webkit-box-shadow: -15px 0px 10px -15px #111;
          box-shadow: -15px 0px 10px -15px #111;
}

.shadow.right {
  -webkit-box-shadow: 15px 0px 10px -15px #111;
          box-shadow: 15px 0px 10px -15px #111;
}

/** 
push auto
**/
/** 
pseudo elements
**/
/** 
responsive ratio
**/
/** 
placeholder
**/
/** 
hardware
**/
/** 
truncate
**/
/** 
transition
**/
/* *** Spacing
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:
.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels
The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
*/
.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 56px;
    /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.navbar {
  background-color: #fff !important;
  color: #212121;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  -webkit-box-shadow: 0 3px 8px 2px rgba(33, 33, 33, 0.1);
          box-shadow: 0 3px 8px 2px rgba(33, 33, 33, 0.1);
}

.navbar .dropdown:hover > .dropdown-menu {
  display: block;
}

.navbar .dropdown-menu {
  margin: 0;
  background: #212121;
}

.navbar .dropdown-menu .dropdown-item {
  color: #ffffff;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
}

.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus {
  color: #ffffff;
  background: #ffc500;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
}

.navbar .number-ul li {
  font-family: 'Montserrat', sans-serif;
  color: #6633ff;
  font-weight: 400;
  list-style: none;
  /* padding: 0px 50px 0px 10px; */
  margin-top: 15px;
  line-height: 14px;
}

.navbar .number-ul li strong {
  display: block;
  font-size: 14px;
  color: #20365f;
}

.navbar .number-ul li a {
  font-size: 22px;
  line-height: 23px;
  color: #ffc500;
}

.navbar .number-ul li a:hover, .navbar .number-ul li a:focus {
  color: #20365f;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navbar .navbar-nav .nav-item {
  margin: 0px 5px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #212121;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link:focus, .navbar .navbar-nav .nav-item .nav-link.active {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
*
* Writers banner : home section
*
*/
.writers-banner {
  background: #f4f3f5 url("../images/bg/bg-cheap-essaywriter.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  padding: 100px 0 100px 0;
  position: relative;
  background-position: right;
}

.writers-banner .banner-content .h1 {
  color: #ffc500;
  font-weight: 900;
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
}

.writers-banner .banner-content .h2 {
  color: #212121;
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
}

.writers-banner .form-quote-banner .form-group {
  margin-bottom: 10px;
}

.writers-banner .form-quote-banner .form-group .form-control {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writers-banner .form-quote-banner .form-group .form-control.placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writers-banner .form-quote-banner .form-group .form-control:-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writers-banner .form-quote-banner .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writers-banner .form-quote-banner .form-group .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writers-banner .form-quote-banner .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writers-banner .form-quote-banner .form-group .label-price {
  font-size: 16px;
  margin-top: 5px;
}

.writers-banner .form-quote-banner .form-group .label-price .text-bold {
  font-size: 20px;
  font-weight: 700;
  color: #ffc500;
}

.writers-banner .form-control {
  -webkit-appearance: menulist-button;
  color: #4caf50;
}

/*
*
* Writers stats : home section
*
*/
.writer-stats {
  position: relative;
  margin-top: -30px;
}

.writer-stats .stats-box {
  border-radius: 5px;
  padding: 30px 10px 10px 10px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 10px 5px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 5px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writer-stats .stats-box .circle-container {
  position: absolute;
  bottom: -45px;
  left: -20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writer-stats .stats-box .circle-container .circle {
  position: relative;
  background: rgba(250, 207, 90, 0.3);
  border-radius: 50%;
  padding: 15px 6px 21px 17px;
  width: 115px;
  height: 115px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writer-stats .stats-box .circle-container .circle .icon-main {
  background-image: url(/assets/images/bg/icons-main.png);
  width: 64px;
  position: relative;
  min-height: 64px;
  display: inline-block;
}

.writer-stats .stats-box .circle-container .circle .icon-main.support {
  background-position: -233px -35px;
}

.writer-stats .stats-box .circle-container .circle .icon-main.writers {
  background-position: -567px -34px;
}

.writer-stats .stats-box .circle-container .circle .icon-main.beat {
  background-position: -1723px -35px;
}

.writer-stats .stats-box .h2 {
  font-weight: 600;
  color: #ffc500;
  letter-spacing: 0.5px;
  line-height: 36px;
  margin-bottom: 0;
}

.writer-stats .stats-box .h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.writer-stats .stats-box:hover, .writer-stats .stats-box:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ffc500;
  border: 1px solid #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writer-stats .stats-box:hover .h2, .writer-stats .stats-box:hover .h5, .writer-stats .stats-box:focus .h2, .writer-stats .stats-box:focus .h5 {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writer-stats .stats-box:hover .circle-container, .writer-stats .stats-box:focus .circle-container {
  bottom: -40px;
  left: -15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writer-stats .stats-box:hover .circle-container .circle, .writer-stats .stats-box:focus .circle-container .circle {
  background: rgba(250, 207, 90, 0.93);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
*
* About Writers : home section
*
*/
.about-writers {
  padding: 50px 0;
  position: relative;
  background: #ffffff url("../images/bg/a-grade-papers.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

.about-writers .h1 {
  color: #ffc500;
  font-weight: 700;
  line-height: 40px;
}

/*
*
* Free Features : home section
*
*/
.free-features {
  padding: 50px 0;
  position: relative;
  background: #ffffff;
}

.free-features .h1 {
  color: #ffc500;
  font-weight: 700;
}

.free-features .feature-box {
  margin-bottom: 20px;
}

.free-features .feature-box .feature-icon {
  margin-bottom: 15px;
}

.free-features .feature-box .feature-icon .circle-top {
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-box-shadow: 0 8px 5px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 5px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner {
  background: rgba(250, 207, 90, 0.3);
  padding: 20px 10px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner .icon-main {
  background-image: url(/assets/images/bg/icons-main.png);
  width: 63px;
  position: relative;
  min-height: 60px;
  display: inline-block;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner .icon-main.revision {
  background-position: -401px -35px;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner .icon-main.paper {
  background-position: -733px -35px;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner .icon-main.title {
  background-position: -1230px -35px;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner .icon-main.plagiarism {
  background-position: -895px -35px;
}

.free-features .feature-box .feature-icon .circle-top .circle-inner .icon-main.customer {
  background-position: -1895px -35px;
}


.free-features .feature-box .feature-description .h5 {
  font-size: 18px;
  line-height: 24px;
}

.free-features .feature-box:hover .feature-icon .circle-top, .free-features .feature-box:focus .feature-icon .circle-top {
  -webkit-box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
*
* cta lg : home section
*
*/
.cta-lg {
  background: #fdf1cd url("../images/bg/geek-for-essay.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
  font-family: 'Montserrat', sans-serif;
}

.cta-lg .text-sm {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: #212121;
  font-family: 'Montserrat', sans-serif;
}

.cta-lg .h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #212121;
}

.cta-lg p {
  font-size: 15px;
  line-height: 20px;
  color: #212121;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.cta-lg .list-contact {
  margin-bottom: 10px;
}

.cta-lg .list-contact li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.cta-lg .list-contact li a {
  color: #212121;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cta-lg .list-contact li a.custom-float {
  margin-top: -5px;
  margin-right: 5px;
}

.cta-lg .list-contact li a .custom-float .icon-main {
  background-image: url(/assets/images/bg/icons-main.png);
  width: 35px;
  position: relative;
  min-height: 36px;
  display: inline-block;
}

.cta-lg .list-contact li a .custom-float .icon-main.number {
  background-position: -2236px -49px;
}

.cta-lg .list-contact li a .custom-float .icon-main.whatsapp {
  background-position: -2573px -49px;
}

.cta-lg .list-contact li a .custom-float .icon-main.email {
  background-position: -2405px -49px;
}

.cta-lg .list-contact li a img {
  margin-right: 5px;
}

.cta-lg .list-contact li a:hover, .cta-lg .list-contact li a:focus {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
*
* cta text : home section
*
*/
.cta-text {
  background: #fdf1cd url("../images/bg/bg-cta1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
}

.cta-text .h1 {
  font-weight: 700;
  color: #212121;
}

/*
*
* cta footer : home section
*
*/
.cta-footer {
  background: #fdf1cd;
  padding: 40px 0;
}

.cta-footer .h3 {
  color: #212121;
  font-weight: 700;
}

.cta-footer p {
  color: #212121;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

/*
*
* Why choose us : home section
*
*/
.why-choose-us {
  padding: 60px 0;
  position: relative;
}

.why-choose-us .h1 {
  color: #ffc500;
  font-weight: 700;
}

.why-choose-us .why-box {
  border: 1px solid #efefef;
  border-top: 3px solid #212121;
  background: #ffffff;
  -webkit-box-shadow: 0px 15px 10px -7px rgba(109, 109, 109, 0.56);
          box-shadow: 0px 15px 10px -7px rgba(109, 109, 109, 0.56);
  padding: 25px 10px;
  margin-bottom: 20px;
  min-height: 333px;
  max-height: 333px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.why-choose-us .why-box .icon-main {
  background-image: url(/assets/images/bg/icons-main.png);
  width: 62px;
  position: relative;
  min-height: 62px;
  display: inline-block;
}

.why-choose-us .why-box .icon-main.less {
  background-position: -1061px -35px;
}

.why-choose-us .why-box .icon-main.round {
  background-position: -1397px -35px;
}

.why-choose-us .why-box .icon-main.quality {
  background-position: -1562px -35px;
}

.why-choose-us .why-box .icon-main.rates {
  background-position: -2064px -35px;
}

.why-choose-us .why-box img {
  margin-bottom: 20px;
}

.why-choose-us .why-box .h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #212121;
  font-size: 19px;
  line-height: 22px;
}

.why-choose-us .why-box p {
  font-size: 13px;
  line-height: 26px;
  font-weight: 500;
  color: #212121;
}

.why-choose-us .why-box:hover, .why-choose-us .why-box:focus {
  border-top: 3px solid #ffc500;
  background: #ffffff;
  -webkit-box-shadow: 15px 15px 10px -7px rgba(109, 109, 109, 0.56);
          box-shadow: 15px 15px 10px -7px rgba(109, 109, 109, 0.56);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.why-choose-us .why-box:hover .h4, .why-choose-us .why-box:focus .h4 {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
*
* writers and samples : home section
*
*/
.writers-and-samples {
  padding: 60px 0;
}

.writers-and-samples .our-writers .h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #ffc500;
  margin-bottom: 20px;
}

.writers-and-samples .our-writers .box-img {
  padding: 10px;
  border: 1px solid #eee;
}

.writers-and-samples .our-writers .box-img img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writers-and-samples .our-writers .box-img:hover img, .writers-and-samples .our-writers .box-img:focus img, .writers-and-samples .our-writers .box-img.active img {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.writers-and-samples .our-writers .box-img:first-child {
  border-left: 0;
  border-top: 0;
}

.writers-and-samples .our-writers .box-img:last-child {
  border-right: 0;
  border-bottom: 0;
}

.writers-and-samples .our-writers .box-img:nth-child(3) {
  border-top: 0;
  border-right: 0;
}

.writers-and-samples .our-writers .box-img:nth-child(7) {
  border-left: 0;
  border-bottom: 0;
}

.writers-and-samples .our-writers .box-img:nth-child(2) {
  border-top: 0;
}

.writers-and-samples .our-writers .box-img:nth-child(4) {
  border-left: 0;
}

.writers-and-samples .our-writers .box-img:nth-child(6) {
  border-right: 0;
}

.writers-and-samples .our-writers .box-img:nth-child(8) {
  border-bottom: 0;
}

.writers-and-samples .writers-intro .h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #212121;
}

.writers-and-samples .writers-intro p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #212121;
}

.writers-and-samples .writers-intro p .text-bold {
  font-weight: 700;
  color: #757575;
}

.writers-and-samples .writers-intro img {
  display: inline;
}

.writers-and-samples .samples-container .h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #212121;
}

.our-reviews {
  padding: 60px 0 0;
}

.our-reviews .h1 {
  font-weight: 700;
  color: #ffc500;
}

.our-reviews .reviews-slider .slick-navigation {
  width: 43px;
  height: 28px;
  margin-bottom: 10px;
  background: transparent url("../images/icons/nav-icons.png");
  background-repeat: no-repeat;
}

.our-reviews .reviews-slider .slick-navigation.slick-prev {
  background-position: 0% 100%;
  left: -40px;
}

.our-reviews .reviews-slider .slick-navigation.slick-next {
  background-position: 100% 100%;
  right: -40px;
}

.our-reviews .reviews-slider .slick-next:before,
.our-reviews .reviews-slider .slick-prev:before {
  opacity: 0;
}

.our-reviews .reviews-slider .slick-next:focus:before,
.our-reviews .reviews-slider .slick-next:hover:before,
.our-reviews .reviews-slider .slick-prev:focus:before,
.our-reviews .reviews-slider .slick-prev:hover:before {
  opacity: 0;
}

.our-reviews .customer-review {
  border: 1px solid #eee;
  padding: 20px 10px;
  -webkit-box-shadow: 0px 15px 10px -15px #111;
          box-shadow: 0px 15px 10px -15px #111;
  margin: 0 20px 20px 20px;
}

.our-reviews .customer-review .h5 {
  font-weight: 700;
  color: #212121;
}

.our-reviews .customer-review .name-reviewer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #212121;
  margin-bottom: 10px;
}

.our-reviews .customer-review .rating {
  width: 109px;
  height: 20px;
  margin-bottom: 10px;
  background: transparent url("../images/icons/rating-stars.png");
  background-repeat: no-repeat;
}

.our-reviews .customer-review .rating.five-star {
  background-position: 100% 0%;
}

.our-reviews .customer-review .rating.four-star {
  background-position: 100% 25%;
}

.our-reviews .customer-review .rating.three-star {
  background-position: 100% 50%;
}

.our-reviews .customer-review .rating.two-star {
  background-position: 100% 75%;
}

.our-reviews .customer-review .rating.one-star {
  background-position: 100% 100%;
}

/*
*
* Content area : home section
*
*/
.contentHome {
  padding: 20px 0 60px;
  /* background: #ffffff url("../images/bg/writing-service-content.jpg"); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

.contentHome .heading {
  color: #FFC500;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.contentHome .card {
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: .25rem;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0px 5px rgba(33, 33, 33, 0.1);
          box-shadow: 0 0px 5px rgba(33, 33, 33, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contentHome .card .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.contentHome .card .card-header .btn-link {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 10px 30px 10px 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contentHome .card .card-header .btn-link:after {
  content: '\02191';
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 30px;
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contentHome .card .card-header .btn-link.collapsed:after {
  content: '\02193';
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 30px;
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contentHome .card .card-header .btn-link .heading,
.contentHome .card .card-header .btn-link h1, .contentHome .card .card-header .btn-link h2, .contentHome .card .card-header .btn-link h3, .contentHome .card .card-header .btn-link h4, .contentHome .card .card-header .btn-link h5, .contentHome .card .card-header .btn-link h6,
.contentHome .card .card-header .btn-link .h1, .contentHome .card .card-header .btn-link .h2, .contentHome .card .card-header .btn-link .h3, .contentHome .card .card-header .btn-link .h4, .contentHome .card .card-header .btn-link .h5, .contentHome .card .card-header .btn-link .h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  display: block;
  color: #212121;
}

.contentHome .card .card-body h1, .contentHome .card .card-body h2, .contentHome .card .card-body h3, .contentHome .card .card-body h4, .contentHome .card .card-body h5, .contentHome .card .card-body h6,
.contentHome .card .card-body .h1, .contentHome .card .card-body .h2, .contentHome .card .card-body .h3, .contentHome .card .card-body .h4, .contentHome .card .card-body .h5, .contentHome .card .card-body .h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
  text-align: left;
  display: block;
  color: #212121;
}

/**
*
* innerpage banner : all pages except home
*
*/
.inner-banner {
  background: #fff url("../images/bg/bg-inner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.inner-banner .h2 {
  color: #ffc500;
  font-weight: 700;
}

.inner-content {
  padding: 60px 0;
}

.inner-content .h1, .inner-content .h2, .inner-content .h3, .inner-content .h4, .inner-content .h5, .inner-content .h6,
.inner-content h1, .inner-content h2, .inner-content h3, .inner-content h4, .inner-content h5, .inner-content h6 {
  color: #ffc500;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}

/**
*
* innerpage sidebars : all pages except home
*
*/
.sidebar-quote {
  padding: 20px 15px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
          box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
}

.sidebar-quote .heading .h3 {
  color: #ffc500;
}

.sidebar-quote .form-group {
  margin-bottom: 10px;
}

.sidebar-quote .form-group .form-control {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.sidebar-quote .form-group .form-control.placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.sidebar-quote .form-group .form-control:-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.sidebar-quote .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.sidebar-quote .form-group .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.sidebar-quote .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.sidebar-quote .form-group .label-price {
  font-size: 16px;
  margin-top: 5px;
}

.sidebar-quote .form-group .label-price .text-bold {
  font-size: 20px;
  font-weight: 700;
  color: #ffc500;
}

.sidebar-quote .form-group .btn-black {
  padding: 5px 10px;
}

.sidebar-features {
  padding: 20px 0px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
          box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
}

.sidebar-features .heading {
  padding: 0px 15px 10px 15px;
}

.sidebar-features .heading .h3 {
  color: #ffc500;
}

.sidebar-features .body-features .box-borders {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-left: 10px;
  padding-right: 10px;
}

.sidebar-features .body-features .box-borders:last-child {
  border: none;
}

.sidebar-features .body-features .icon {
  width: 45px;
  height: 40px;
  margin-bottom: 10px;
  background: transparent url("../images/icons/features-sprite.png");
  background-repeat: no-repeat;
}

.sidebar-features .body-features .icon.plagiarism-icon {
  background-position: 100% 0%;
}

.sidebar-features .body-features .icon.revisions-icon {
  background-position: 100% 23%;
}

.sidebar-features .body-features .icon.title-icon {
  background-position: 100% 48%;
}

.sidebar-features .body-features .icon.support-icon {
  background-position: 100% 76%;
}

.sidebar-features .body-features .icon.formatting-icon {
  background-position: 100% 101%;
}

.sidebar-features .body-features .h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 35px;
  color: #212121;
  padding-left: 5px;
}

.sidebar-contact {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
          box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
}

.sidebar-contact .h4 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 5px;
  color: #20365f;
}

.sidebar-contact a {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 23px;
  color: #ffc500;
}

.sidebar-contact a.email {
  font-size: 16px;
}

.sidebar-contact a:hover, .sidebar-contact a:focus {
  color: #20365f;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/**
*
* innerpage pricing section
*
*/
.pricing-page p.small {
  color: #757575;
  font-size: 14px;
  line-height: 18px;
}

.pricing-page .form-group {
  margin-bottom: 10px;
}

.pricing-page .form-group .form-control {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.pricing-page .form-group .form-control.placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.pricing-page .form-group .form-control:-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.pricing-page .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.pricing-page .form-group .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.pricing-page .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.pricing-page .form-group .label-price {
  font-size: 16px;
  margin-top: 5px;
}

.pricing-page .form-group .label-price .text-bold {
  font-size: 20px;
  font-weight: 700;
  color: #ffc500;
}

.pricing-page .form-group .btn-black {
  padding: 5px 10px;
}

.pricing-page .academic_level {
  width: 100%;
  display: block;
}

.pricing-page .academic_level ul li {
  margin-right: 0;
}

.pricing-page .academic_level ul li label {
  padding: 15px 30px;
  margin-top: 5px;
  font-size: 12px;
  border-radius: 0;
  color: #212121;
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pricing-page .academic_level ul li label.active, .pricing-page .academic_level ul li label:hover, .pricing-page .academic_level ul li label:focus {
  border: 1px solid #fdf1cd;
  background: #fdf1cd;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pricing-page .academic_level ul li label input[type="radio"] {
  display: none;
}

.pricing-page .academic_level ul li:nth-child(2) label, .pricing-page .academic_level ul li:nth-child(3) label {
  padding: 7px 30px;
}

.pricing-page .academic_level ul li:first-child label {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pricing-page .academic_level ul li:last-child label {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/**
*
* contact us page
*
*/
.get-in-touch .form-group {
  margin-bottom: 10px;
}

.get-in-touch .form-group .form-control {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.get-in-touch .form-group .form-control.placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.get-in-touch .form-group .form-control:-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.get-in-touch .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.get-in-touch .form-group .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.get-in-touch .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.get-in-touch .form-group .label-price {
  font-size: 16px;
  margin-top: 5px;
}

.get-in-touch .form-group .label-price .text-bold {
  font-size: 20px;
  font-weight: 700;
  color: #ffc500;
}

/**
*
* FAQ'S page
*
*/
.faqs-page {
  padding: 60px 0;
  background: #ffffff;
}

.faqs-page .card {
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: .25rem;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0px 5px rgba(33, 33, 33, 0.1);
          box-shadow: 0 0px 5px rgba(33, 33, 33, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faqs-page .card .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.faqs-page .card .card-header .btn-link {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 10px 30px 10px 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faqs-page .card .card-header .btn-link:after {
  content: '\02191';
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 30px;
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faqs-page .card .card-header .btn-link.collapsed:after {
  content: '\02193';
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 30px;
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faqs-page .card .card-header .btn-link .heading,
.faqs-page .card .card-header .btn-link h1, .faqs-page .card .card-header .btn-link h2, .faqs-page .card .card-header .btn-link h3, .faqs-page .card .card-header .btn-link h4, .faqs-page .card .card-header .btn-link h5, .faqs-page .card .card-header .btn-link h6,
.faqs-page .card .card-header .btn-link .h1, .faqs-page .card .card-header .btn-link .h2, .faqs-page .card .card-header .btn-link .h3, .faqs-page .card .card-header .btn-link .h4, .faqs-page .card .card-header .btn-link .h5, .faqs-page .card .card-header .btn-link .h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  display: block;
  color: #212121;
}

.faqs-page .card .card-body h1, .faqs-page .card .card-body h2, .faqs-page .card .card-body h3, .faqs-page .card .card-body h4, .faqs-page .card .card-body h5, .faqs-page .card .card-body h6,
.faqs-page .card .card-body .h1, .faqs-page .card .card-body .h2, .faqs-page .card .card-body .h3, .faqs-page .card .card-body .h4, .faqs-page .card .card-body .h5, .faqs-page .card .card-body .h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
  text-align: left;
  display: block;
  color: #212121;
}

/**
*
* Order now page
*
*/
.order-page label.label-order {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

.order-page label.label-order .text-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.order-page label.label-order .text-lg {
  font-size: 23px;
  line-height: 30px;
}

.order-page .text-sm {
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  color: #888;
}

.order-page .form-group {
  margin-bottom: 10px;
}

.order-page .form-group .form-control {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #222;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-top: 10px;
}

.order-page .form-group .form-control.placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.order-page .form-group .form-control:-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.order-page .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.order-page .form-group .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.order-page .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.order-page .form-group .label-price {
  font-size: 16px;
  margin-top: 5px;
}

.order-page .form-group .label-price .text-bold {
  font-size: 20px;
  font-weight: 700;
  color: #ffc500;
}

.order-page .form-group .btn-black {
  padding: 5px 10px;
}

.order-page .form-group .range {
  background: #fff;
  padding: 10px;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.order-page .form-group .range input[type="range"] {
  -webkit-appearance: none;
  height: 100%;
  background: transparent;
}

.order-page .form-group .range input[type="range"]:focus {
  outline: none;
}

.order-page .form-group .range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: -5px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.order-page .form-group .range input[type="range"]::-webkit-slider-runnable-track {
  width: 60%;
  height: 9px;
  background: #bdbdbd;
  border-radius: 3rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.order-page .form-group .range input[type="range"]:hover::-webkit-slider-runnable-track {
  background: #ff6e40;
}

.order-page .form-group .range input[type="range"]::-ms-track {
  width: 60%;
  cursor: pointer;
  height: 9px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.order-page .form-group .range input[type="range"]::-ms-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: -5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.order-page .form-group .range input[type="range"]::-ms-fill-lower {
  background: #bdbdbd;
  border-radius: 3rem;
}

.order-page .form-group .range input[type="range"]:focus::-ms-fill-lower {
  background: #ff6e40;
}

.order-page .form-group .range input[type="range"]::-ms-fill-upper {
  background: #bdbdbd;
  border-radius: 3rem;
}

.order-page .form-group .range input[type="range"]:focus::-ms-fill-upper {
  background: #ff6e40;
}

.order-page .form-group .range input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: -5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.order-page .form-group .range input[type="range"]::-moz-range-track {
  width: 60%;
  height: 9px;
  background: #bdbdbd;
  border-radius: 3rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.order-page .form-group .range input[type="range"]:hover::-moz-range-track {
  background: #ff6e40;
}

.order-page .form-group .switcher-bs4 .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #ffc500;
  background-color: #ffc500;
}

.order-page .form-group .switcher-bs4 .custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 2.75rem;
  height: 2rem;
  pointer-events: all;
  border-radius: .5rem;
}

.order-page .form-group .switcher-bs4 .custom-switch .custom-control-label::before {
  left: -3.25rem;
  width: 3.75rem;
  pointer-events: all;
  border-radius: 1.5rem;
}

.order-page .form-group .switcher-bs4 .custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-3.25rem + 2px);
  width: calc(2rem - 4px);
  height: calc(2rem - 4px);
  border-radius: 50%;
}

.order-page .form-group .switcher-bs4 .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(1.75rem);
}

.order-page .form-group .switcher-bs4 .custom-switch {
  padding-left: 3.25rem;
}

.order-page .form-group .switcher-bs4 .custom-control-label {
  font-size: 20px;
  padding-left: 20px;
  padding-top: 3px;
  cursor: pointer;
}

.order-page .type-service {
  width: 100%;
  display: block;
}

.order-page .type-service ul li {
  margin: 0 5px 0 5px;
}

.order-page .type-service ul li label {
  padding: 10px 20px;
  margin-top: 5px;
  font-size: 16px;
  color: #212121;
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.order-page .type-service ul li label.active, .order-page .type-service ul li label:hover, .order-page .type-service ul li label:focus {
  border: 1px solid #ffc500;
  background: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.order-page .type-service ul li label input[type="radio"] {
  display: none;
}

.order-page label.btn {
  cursor: pointer;
}

.order-page .custom-upload .form-file {
  display: none;
  opacity: 0;
}

.order-page .custom-upload .fileList {
  padding-left: 10px;
}

.order-page .custom-upload .fileList li {
  list-style: none;
  font-size: 16px;
}

.order-page .custom-upload .fileList li::before {
  content: '\f15b';
  font-family: FontAwesome;
  font-size: 16px;
  padding-right: 5px;
}

.order-page .price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  margin-top: 10px;
}

.order-page .price-label b {
  color: #ffc500;
}

.order-page .price-label .totalPriceL {
  color: #ffc500;
  font-weight: 700;
}

.order-page .customer-info {
  padding: 30px 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  -webkit-box-shadow: 0 0 10px 2px #d1d1d1;
          box-shadow: 0 0 10px 2px #d1d1d1;
}

.order-page .customer-info .nav-pills .nav-item .nav-link.active {
  background: transparent;
}

.order-page .customer-info .nav-pills .nav-item .nav-link.active p {
  color: #ffc500;
}

/**
*
* Sitemap page
*
*/
.sitemap {
  padding: 60px 0;
  background: #ffffff;
}

.sitemap .h2 {
  font-weight: 700;
  color: #ffc500;
}

.sitemap ul {
  padding-left: 10px;
}

.sitemap ul li {
  list-style: none;
  font-size: 16px;
  line-height: 36px;
}

.sitemap ul li::before {
  /* content: '\f054'; */
  color: #ffc500;
  font-family: FontAwesome;
  font-size: 14px;
  padding-right: 5px;
}

.sitemap ul li i {
  color: #ffc500;
}

.sitemap ul li a {
  color: #212121;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sitemap ul li a:hover, .sitemap ul li a:focus {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.samples {
  padding: 30px 0;
  background: #ffffff;
}

.samples .sample-box {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
          box-shadow: 0 0 10px 1px rgba(140, 140, 140, 0.5);
}

.samples .sample-box .h3 {
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.samples .sample-box .h6 {
  font-size: 10px;
  line-height: 12px;
}

.samples .sample-box ul li a {
  color: #212121;
  text-decoration: none;
  font-size: 14px;
}

.samples .sample-box ul li a:hover, .samples .sample-box ul li a:focus {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer {
  background: #1c232a;
  padding: 30px 0 10px 0;
}

.footer p {
  color: #ffffff;
  margin-top: 10px;
}

.footer .list-social {
  margin-bottom: 10px;
}

.footer .list-social li {
  margin-right: 10px;
}

.footer .list-social li a {
  color: #ffffff;
  font-size: 22px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-social li a:hover i.fa-facebook, .footer .list-social li a:focus i.fa-facebook {
  color: #3b5998;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-social li a:hover i.fa-twitter, .footer .list-social li a:focus i.fa-twitter {
  color: #26a7de;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .h5 {
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer .hr-yellow {
  border-top: 3px solid #ffc500;
  width: 20%;
  display: block;
  margin: 0 0 10px 0;
}

.footer p.copyrights {
  font-size: 14px;
}

.footer p.copyrights .yellow {
  color: #ffc500;
}

.footer .list-links {
  margin-bottom: 10px;
}

.footer .list-links li {
  font-size: 14px;
  line-height: 28px;
}

.footer .list-links li a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-links li a i {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-links li a:hover, .footer .list-links li a:focus {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-contact {
  margin-bottom: 10px;
}

.footer .list-contact li {
  font-size: 16px;
  line-height: 28px;
}

.footer .list-contact li a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-contact li a i {
  margin-right: 5px;
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer .list-contact li a:hover, .footer .list-contact li a:focus {
  color: #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
####################################################
M E D I A  Q U E R I E S
####################################################
*/
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Bootstrap 4 breakpoints
*/
/* 
Extra small devices (portrait phones, less than 576px) 
No media query since this is the default in Bootstrap because it is "mobile first"
*/
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .reviews-slider .slick-navigation {
    margin-top: 20px;
  }
  .reviews-slider .slick-navigation.slick-prev {
    position: absolute;
    bottom: 0;
    top: 105%;
    left: 30% !important;
  }
  .reviews-slider .slick-navigation.slick-next {
    position: absolute;
    bottom: 0;
    top: 105%;
    right: 30% !important;
  }
}

/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Custom media queries
*/
/* Set width to make card deck cards 100% width */
/*!
 * 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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.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;
  }
}
.input-number-decrement,
.input-number-increment {
    background: #ffc500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: -5px;
    margin-left: -5px!important;
    font-size: 15px;
    border: .5px solid #eaeaea;
}
.input-number-decrement,
.input-number-increment {
    display: inline-block;
    width: 30px;
    line-height: 40px;
    color: #20365f;
    text-align: center;
    cursor: pointer;
    border-radius: 25px 0 0 25px;
    margin-right: 0;
}
.input-number {
    width: 72px;
    padding: 9px 16px;
    vertical-align: top;
    text-align: center;
    outline: 0;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 300;
}
.input-number-increment {
    border-radius: 0 25px 25px 0;
    border: .5px solid #eaeaea;
}
.input-number,
.input-number-decrement,
.input-number-increment,
.mine-control {
    height: 40px;
    font-weight: 300;
    color: #20365f;
    font-weight: 300;
    font-size: 16px;
    margin: -4px;
}
/**
*
* payment review
*
*/
.payment-review {
	padding: 100px 0px;
}
.payment-review .order-review {
	padding: 30px 20px;
	background-color: #fefefe;
	border: 1px solid #eee;
	color: #3a435d;
	-webkit-box-shadow: 0 0 8px 2px rgba(2, 2, 2, 0.2);
	box-shadow: 0 0 8px 2px rgba(2, 2, 2, 0.2);
}
.payment-review .order-review .h3 {
	color: #ffc500;
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 10px;
}
.payment-review .order-review .label-att {
	font-weight: 700;
	font-size: 16px;
}
.payment-review .order-review .label-val {
	font-weight: 400;
	font-size: 14px;
}
.payment-review .price-calculation {
	background: #ffc500;
	border: 1px solid #ffc500;
	padding: 20px 10px;
	margin-top: 20px;
}
.payment-review .price-calculation .btn-yellow.active {
	background: #5433FF;
	border: 1px solid #5433FF;
	color: #fff;
}
.payment-review .price-calculation .btn-yellow.active:hover, .payment-review .price-calculation .btn-yellow.active:focus {
	background: #5433FF;
	border: 1px solid #5433FF;
	color: #fff;
	-webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
.payment-review .price-calculation .h2 {
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 10px;
	text-align: center;
}
.payment-review .price-calculation .h3 {
	color: #fff;
	font-weight: 700;
	font-size: 46px;
	line-height: 55px;
	margin-bottom: 10px;
	text-align: center;
}
.payment-review .price-calculation p {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
}
.payment-review .h4 {
	font-size: 40px;
	font-size: 16px;
	color: #3a435d;
	padding: 10px 0px;
	margin: 0px;
}

/**
* Errors Page CSS
*/

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 520px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}

.notfound .notfound-404 {
  position: relative;
  height: 200px;
  margin: 0px auto 20px;
  z-index: -1;
}

.notfound .notfound-404 h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 236px;
  font-weight: 200;
  margin: 0px;
  color: #000;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound .notfound-404 h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 10px 5px;
  margin: auto;
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}

.notfound a {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 23px;
  background: #ffc500;
  font-size: 18px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  color: #fff;
  background: #ffc500;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 h1 {
    font-size: 148px;
  }
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
    height: 148px;
    margin: 0px auto 10px;
  }
  .notfound .notfound-404 h1 {
    font-size: 86px;
  }
  .notfound .notfound-404 h2 {
    font-size: 16px;
  }
  .notfound a {
    padding: 7px 15px;
    font-size: 14px;
  }
}

/**
* Login CSS
*/

.login-am {
  background: #ffffff;
  padding: 0px;
}

.login-page {
  padding: 0% 0 0;
  margin: auto;
}

.form {
  position: relative;
  border: 1px solid #212121;
  z-index: 1;
  background: #ffc500;
  max-width: 460px;
  margin: 0 auto 100px;
  padding: 20px 45px 10px;
  text-align: center;
}

.form .h1 {
  font-family: "Playfair+Display";
  font-weight: 500;
  font-size: 34px;
  color: #212121;
}

.form .h2 {
  font-family: "Playfair+Display";
  font-weight: 500;
  font-size: 25px;
  color: #ffffff;
}

.form .h3 {
  font-family: 'Proxima Nova Regular';
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
}

.form .h5 {
  color: #ffffff;
  font-family: 'Proxima Nova Regular';
  font-weight: 400;
  font-size: 14px;
}

.form input {
  font-family: 'Proxima Nova Regular';
  outline: 0;
  background: #ffffff;
  border: 1px solid #ffc500;
  border-radius: 25px;
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 45px;
  font-size: 15px;
}

.form button {
  font-family: 'Proxima Nova Regular';
  text-transform: uppercase;
  outline: 0;
  background: #212121;
  width: 100%;
  border-radius: 25px;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border: 1px solid #ffc500;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: #212121;
  color: #ffffff;
  border: 1px solid #ffc500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form .message {
  margin: 15px 0 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.form .message a {
  color: #ffffff;
  text-decoration: none;
}

.form .register-form {
  display: none;
}

.link-review{
  vertical-align: middle;
  display: inline-block;
  position: relative;
  padding: 0;
  /*margin-right: 10px;*/
}

.link-review span {
  display: inline-block;
}

.link-review .review-rating {
  padding: 5px 5px;
  vertical-align: bottom;
  background: #ffc500;
  border-radius: 4px;
  margin-right: 4px;
  color: #fff;
}

.link-review .review-stars {
  line-height: normal;
  vertical-align: sub;
  font-size: 14px;
  color: #5d5d5d;
  text-align: center;
}

.link-review .review-stars span {
  display: block;
}

.link-review .review-stars span i {
  font-size: 9px;
  color: #ffc500;
}

.inner-content .services-portfolio li .action-btn {
  color: #FFD560;
  font-family: "Oswald", sans-serif;
  padding: 0px 0px;
  font-size: 18px;
  font-weight: 300;
  margin-right: 10px;
  border-bottom: 2px solid #FFD560;
  border-radius: 0px;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none;
}

.link-review .review-rating {
  padding: 8px 5px;
  background: #4CAF50;
}

.writers-banner span#totalPriceL {
  font-weight: 700;
  font-size: 22px;
  color: #1c232a;
  text-shadow: 1px 1px 1px #ffc500;
}

.writers-banner span#total-cost {
  font-size: 16px;
  margin-top: 3px;
  display: block;
}

.writers-banner .btn-black {
  background: #4caf50 !important;
}
/*# sourceMappingURL=styles.css.map */