@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);@font-face {
  font-family: "Swis721 Cn BT";
  src: url("/fonts/swissc.ttf");
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.align-middle {
  vertical-align: middle !important;
}

/* Absolute Center Spinner */

.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */

.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background: -webkit-radial-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

/* :not(:required) hides these rules from IE9 and below */

.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

[v-cloak] {
  display: none;
}

.superhr {
  border-top: 2px solid #b7b5b5 !important;
}

.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-input,
.floating-select {
  font-size: 14px;
  padding: 4px 4px;
  display: block;
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #757575;
  font-weight: bold;
  color: black !important;
}

.floating-input:focus,
.floating-select:focus {
  outline: none;
  border-bottom: 2px solid #5264AE;
}

.float-label {
  color: #999;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.floating-input:focus ~ label,
.floating-input:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 14px;
  color: #5264AE;
}

.floating-select:disabled ~ label {
  top: -18px;
  font-size: 14px;
  color: #5264AE;
}

.floating-select:focus ~ label,
.floating-select:not([value=""]):valid ~ label {
  top: -18px;
  font-size: 14px;
  color: #5264AE;
}

/* active state */

.floating-input:focus ~ .bar:before,
.floating-input:focus ~ .bar:after,
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after {
  width: 50%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.floating-textarea {
  min-height: 228px;
  max-height: 500px;
  overflow: hidden;
  overflow-x: hidden;
}

/* highlighter */

.highlight {
  position: absolute;
  height: 50%;
  width: 100%;
  top: 15%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */

.floating-input:focus ~ .highlight,
.floating-select:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* animation */

@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

.main_container .site_title i {
  border: 0;
}

body {
  background: #f7f7f7;
  color: #292929;
}

.isDisabled {
  cursor: not-allowed;
  opacity: 0.5;
  display: none !important;
}

.isDisabled > a {
  color: currentColor;
  display: inline-block;
  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}

.left_col {
  -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  /* easeOutQuart */
}

.right_col {
  -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  /* easeOutQuart */
}

.navbar-nav a.user-profile,
.profile .profile_info h2 {
  text-transform: capitalize;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.file-attachment-container {
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* easeOutQuart */
  opacity: 1;
  height: 127px;
  margin-top: 15px;
  width: 100%;
  max-width: 570px;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}

.file-attachment-container.deleted {
  height: 0;
  opacity: 0;
  margin-top: 0;
}

.file-attachment-container .img-container {
  width: 100%;
  height: 125px;
  max-width: 98px;
  background-color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.file-attachment-container .details-container {
  overflow: hidden;
  max-width: calc(100% - 218px);
  width: 100%;
  padding: 10px 15px;
}

.file-attachment-container .details-container .name {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-attachment-container .details-container .uploader {
  margin: 0;
}

.file-attachment-container .details-container .sep {
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin-bottom: 10px;
}

.file-attachment-container .details-container p {
  font-size: 12px;
}

.file-attachment-container .function-container {
  width: 120px;
  padding: 10px 15px;
}

.file-attachment-container .function-container .btn {
  width: 100%;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.faas-view {
  font-family: "Times New Roman";
  margin: auto;
}

.faas-view header {
  text-align: center;
  position: relative;
}

.faas-view header h1 {
  font-weight: bold;
  font-size: 20px;
}

.faas-view header div {
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: left;
  font-weight: bold;
  font-size: 10px;
}

.faas-view header div p {
  margin: 0;
}

.faas-view section {
  margin: auto;
}

.faas-view .owner-info .update-code {
  text-align: right;
}

.faas-view .owner-info .update-code span {
  width: 120px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
}

.faas-view .memoranda {
  margin-top: 24px;
}

.faas-view .faas-table thead tr,
.faas-view .faas-table thead th {
  border: none !important;
  padding-left: 0;
}

.faas-view .faas-table tbody td,
.faas-view .faas-table tbody th {
  border: 1px solid #ccc;
}

.faas-view .x_panel {
  border: 0;
}

.faas-view .center {
  text-align: center;
}

.faas-view .table2 {
  width: 80%;
  margin: 0px auto;
  float: none;
}

.faas-view .space {
  white-space: pre;
}

.faas-view .real {
  font-size: 10px;
}

.faas-view .value {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #73879c;
  text-align: center;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.faas-view .value.date {
  font-size: 14px;
}

.faas-view .field {
  text-align: center;
}

.bold {
  font-weight: bold !important;
}

.reassessment-menu .reassessment-container {
  max-width: 600px;
  margin-top: 10px;
  border-left: solid;
  padding-left: 10px;
}

.reassessment-menu .reassessment-container .btn {
  float: right;
}

.reassessment-menu .reassessment-separator {
  width: 100%;
  max-width: 650px;
  height: 1px;
  background-color: black;
  opacity: 0.2;
  margin: 60px 0 40px 0;
}

.login-form {
  margin-top: 150px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.login-form div,
.login-form input {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.login-form .login-div {
  margin-top: 10%;
  padding: 20px;
}

.login-form .panel-default {
  max-width: 590px;
  margin: 0 auto;
}

.login-form .img-container {
  margin: 0 auto 7px auto;
  max-width: 200px;
}

.login-form .img-container img {
  width: 100%;
}

.login-form .title {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #472020;
  font-size: 33px;
  letter-spacing: 6px;
}

.login-form .input-container {
  margin: -6px auto 0 auto;
  width: 100%;
  max-width: 255px;
}

.login-form .input-container .input-box {
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
}

.login-form .input-container .input-box input {
  height: 40px;
  text-align: center;
  border-radius: 50px;
  border: solid 1px #a4a4a4;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  color: #a4a4a4;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.login-form .input-container .has-error input {
  border-color: #b30000 !important;
}

.login-form .input-container .input-box.txt:hover input,
.login-form .input-container .input-box.txt:active input {
  border-color: #585757;
}

.login-form .input-container .input-box.login input {
  color: white;
  background-color: #712b23;
}

.login-form .input-container .input-box.login:hover input {
  background-color: #90372d;
}

.login-form .input-container .option-box .remember {
  margin-top: 23px;
  color: #72716f;
  text-align: center;
  font-size: 13px;
  font-weight: bolder;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1.5px;
}

.login-form .input-container .option-box .remember label {
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}

.login-form .input-container .option-box .line {
  width: 100%;
  height: 1px;
  background-color: #b4b0ad;
  margin: 15px 0 15px 0;
}

.login-form .input-container .option-box .forgot {
  color: #646363;
  text-align: center;
  font-size: 13px;
  font-weight: bolder;
  font-family: "Open Sans", sans-serif;
}

.login-form .input-container .option-box .styled-checkbox {
  position: absolute;
  opacity: 0;
}

.login-form .input-container .option-box .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.login-form .input-container .option-box .styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
}

.login-form .input-container .option-box .styled-checkbox:hover + label:before {
  background: #bcd12f;
}

.login-form .input-container .option-box .styled-checkbox:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.login-form .input-container .option-box .styled-checkbox:checked + label:before {
  background: #bcd12f;
}

.login-form .input-container .option-box .styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.login-form .input-container .option-box .styled-checkbox:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.login-form .input-container .option-box .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
          box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media only screen and (max-width: 1366px) {
  .login-form {
    margin-top: 25px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media only screen and (max-width: 320px) {
  .login-form {
    margin-top: 0px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.owner-table td {
  padding-left: 10px;
  padding-right: 10px;
}

.owner-table .owner-table-title td {
  padding-left: 5px;
  padding-right: 5px;
}

.camsur-header {
  -webkit-transition: all 600ms;
  transition: all 600ms;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: white;
}

.camsur-header .logo-container {
  padding: 20px;
}

.camsur-header .logo-container .image-container {
  max-width: 100px;
}

.camsur-header .logo-container .image-container img {
  width: 100%;
}

.camsur-header .text-container {
  -webkit-transition: all 600ms;
  transition: all 600ms;
  padding-top: 26px;
}

.camsur-header .line-separator {
  width: 100%;
  max-width: 300px;
  height: 1px;
  background-color: #aeb1a9;
}

.camsur-header .province_font {
  font-family: "Swis721 Cn BT";
  font-size: 2.25em;
  color: #383838;
}

.camsur-header .government_font {
  font-family: "Swis721 Cn BT";
  font-size: 1.25em;
  /* letter-spacing: -1px; */
  color: #5c5c5c;
}

@media only screen and (max-width: 575px) {
  .camsur-header .text-container {
    padding-top: 15px;
    max-width: 305px;
  }
}

@media only screen and (max-width: 465px) {
  .camsur-header .text-container {
    padding-top: 0px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }

  .camsur-header .image-container {
    margin: 0 auto;
  }

  .camsur-header .logo-container {
    width: 100%;
    padding: 20px 0 5px 0;
  }
}

.bookshelf_container {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

.bookshelf_wrapper {
  z-index: 10;
  position: fixed;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.books_list {
  margin: 0 auto;
  width: 300px;
  padding: 0;
}

.book_item {
  position: absolute;
  top: -120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  width: 40px;
  height: 120px;
  opacity: 0;
  background-color: #1e6cc7;
  border: 5px solid white;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
  -webkit-animation: travel 2500ms linear infinite;
          animation: travel 2500ms linear infinite;
}

.book_item.first {
  top: -140px;
  height: 140px;
}

.book_item.first:before,
.book_item.first:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: white;
}

.book_item.first:after {
  top: initial;
  bottom: 10px;
}

.book_item.second:before,
.book_item.second:after,
.book_item.fifth:before,
.book_item.fifth:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 17.5px;
  border-top: 5px solid white;
  border-bottom: 5px solid white;
}

.book_item.second:after,
.book_item.fifth:after {
  top: initial;
  bottom: 10px;
}

.book_item.third:before,
.book_item.third:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 5px solid white;
}

.book_item.third:after {
  top: initial;
  bottom: 10px;
}

.book_item.fourth {
  top: -130px;
  height: 130px;
}

.book_item.fourth:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 17.5px;
  border-top: 5px solid white;
  border-bottom: 5px solid white;
}

.book_item.fifth {
  top: -100px;
  height: 100px;
}

.book_item.sixth {
  top: -140px;
  height: 140px;
}

.book_item.sixth:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  position: absolute;
  bottom: 31px;
  left: 0px;
  width: 100%;
  height: 5px;
  background-color: white;
}

.book_item.sixth:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  position: absolute;
  bottom: 10px;
  left: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 5px solid white;
}

.book_item:nth-child(2) {
  -webkit-animation-delay: 416.66666667ms;
          animation-delay: 416.66666667ms;
}

.book_item:nth-child(3) {
  -webkit-animation-delay: 833.33333333ms;
          animation-delay: 833.33333333ms;
}

.book_item:nth-child(4) {
  -webkit-animation-delay: 1250ms;
          animation-delay: 1250ms;
}

.book_item:nth-child(5) {
  -webkit-animation-delay: 1666.66666667ms;
          animation-delay: 1666.66666667ms;
}

.book_item:nth-child(6) {
  -webkit-animation-delay: 2083.33333333ms;
          animation-delay: 2083.33333333ms;
}

.shelf {
  width: 300px;
  height: 5px;
  margin: 0 auto;
  background-color: white;
  position: relative;
}

.shelf:before,
.shelf:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e6cc7;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 30%, transparent 0);
  background-size: 10px 10px;
  background-position: 0 -2.5px;
  top: 200%;
  left: 5%;
  -webkit-animation: move 250ms linear infinite;
          animation: move 250ms linear infinite;
}

.shelf:after {
  top: 400%;
  left: 7.5%;
}

@-webkit-keyframes move {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 10px;
  }
}

@keyframes move {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 10px;
  }
}

@-webkit-keyframes travel {
  0% {
    opacity: 0;
    -webkit-transform: translateX(300px) rotateZ(0deg) scaleY(1);
            transform: translateX(300px) rotateZ(0deg) scaleY(1);
  }

  6.5% {
    -webkit-transform: translateX(279.5px) rotateZ(0deg) scaleY(1.1);
            transform: translateX(279.5px) rotateZ(0deg) scaleY(1.1);
  }

  8.8% {
    -webkit-transform: translateX(273.6px) rotateZ(0deg) scaleY(1);
            transform: translateX(273.6px) rotateZ(0deg) scaleY(1);
  }

  10% {
    opacity: 1;
    -webkit-transform: translateX(270px) rotateZ(0deg);
            transform: translateX(270px) rotateZ(0deg);
  }

  17.6% {
    -webkit-transform: translateX(247.2px) rotateZ(-30deg);
            transform: translateX(247.2px) rotateZ(-30deg);
  }

  45% {
    -webkit-transform: translateX(165px) rotateZ(-30deg);
            transform: translateX(165px) rotateZ(-30deg);
  }

  49.5% {
    -webkit-transform: translateX(151.5px) rotateZ(-45deg);
            transform: translateX(151.5px) rotateZ(-45deg);
  }

  61.5% {
    -webkit-transform: translateX(115.5px) rotateZ(-45deg);
            transform: translateX(115.5px) rotateZ(-45deg);
  }

  67% {
    -webkit-transform: translateX(99px) rotateZ(-60deg);
            transform: translateX(99px) rotateZ(-60deg);
  }

  76% {
    -webkit-transform: translateX(72px) rotateZ(-60deg);
            transform: translateX(72px) rotateZ(-60deg);
  }

  83.5% {
    opacity: 1;
    -webkit-transform: translateX(49.5px) rotateZ(-90deg);
            transform: translateX(49.5px) rotateZ(-90deg);
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(0px) rotateZ(-90deg);
            transform: translateX(0px) rotateZ(-90deg);
  }
}

@keyframes travel {
  0% {
    opacity: 0;
    -webkit-transform: translateX(300px) rotateZ(0deg) scaleY(1);
            transform: translateX(300px) rotateZ(0deg) scaleY(1);
  }

  6.5% {
    -webkit-transform: translateX(279.5px) rotateZ(0deg) scaleY(1.1);
            transform: translateX(279.5px) rotateZ(0deg) scaleY(1.1);
  }

  8.8% {
    -webkit-transform: translateX(273.6px) rotateZ(0deg) scaleY(1);
            transform: translateX(273.6px) rotateZ(0deg) scaleY(1);
  }

  10% {
    opacity: 1;
    -webkit-transform: translateX(270px) rotateZ(0deg);
            transform: translateX(270px) rotateZ(0deg);
  }

  17.6% {
    -webkit-transform: translateX(247.2px) rotateZ(-30deg);
            transform: translateX(247.2px) rotateZ(-30deg);
  }

  45% {
    -webkit-transform: translateX(165px) rotateZ(-30deg);
            transform: translateX(165px) rotateZ(-30deg);
  }

  49.5% {
    -webkit-transform: translateX(151.5px) rotateZ(-45deg);
            transform: translateX(151.5px) rotateZ(-45deg);
  }

  61.5% {
    -webkit-transform: translateX(115.5px) rotateZ(-45deg);
            transform: translateX(115.5px) rotateZ(-45deg);
  }

  67% {
    -webkit-transform: translateX(99px) rotateZ(-60deg);
            transform: translateX(99px) rotateZ(-60deg);
  }

  76% {
    -webkit-transform: translateX(72px) rotateZ(-60deg);
            transform: translateX(72px) rotateZ(-60deg);
  }

  83.5% {
    opacity: 1;
    -webkit-transform: translateX(49.5px) rotateZ(-90deg);
            transform: translateX(49.5px) rotateZ(-90deg);
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(0px) rotateZ(-90deg);
            transform: translateX(0px) rotateZ(-90deg);
  }
}

