@charset "UTF-8";
/*------------------------------------*\
		# primary Sass file

		## doc scss
		http://github.com/paranoida/sass-mediaqueries
		http://bourbon.io/docs/
\*------------------------------------*/
/*------------------------------------*\
		All helpers
		|– helpers/ 
		|   |– _variables.scss   # Sass Variables 
		|   |– _functions.scss   # Sass Functions 
		|   |– _mixins.scss      # Sass Mixins 
		|   |– _helpers.scss     # Class & placeholders helpers 
		|   ...                  # Etc… 
		Helpers
		
		The helpers/ folder (sometimes called utils/) gathers all Sass tools and helpers we’ll use across the project. Got a function? A mixin? Put it in there. This folder also contains a _variables.scss file (sometimes _config.scss) which holds all global variables for the project (for typography, color schemes, and so on).

\*------------------------------------*/
/*------------------------------------*\
		# Scss Mixins
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;700&display=swap");
.no-gutter {
  margin-left: 0;
  margin-right: 0; }

.no-gutter > * {
  padding-left: 0;
  padding-right: 0; }

.show {
  display: block !important; }

.hidden {
  display: none !important;
  visibility: hidden !important; }

.invisible {
  visibility: hidden; }

.non-bg {
  background: none !important;
  background-color: transparent !important;
  border: none !important; }

.non-padding {
  padding: 0 !important; }

.non-margin {
  margin: 0 !important; }

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

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

.text-nowrap {
  white-space: nowrap; }

.text-uppercase {
  text-transform: uppercase; }

.display--table {
  display: table;
  width: 100%; }

.display--table-cell {
  display: table-cell; }

.verticel--middle {
  vertical-align: middle; }

.insert-dotdotdot {
  display: block;
  overflow: visible;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

html.touch .no-scroll {
  position: fixed; }

@media only screen and (max-width: 575px) {
  .col-ss-12 {
    width: 100%; } }

.text-right.-md {
  text-align: left; }
  @media only screen and (min-width: 992px) {
    .text-right.-md {
      text-align: right; } }

.text-right.-lg {
  text-align: left; }
  @media only screen and (min-width: 1200px) {
    .text-right.-lg {
      text-align: right; } }

.view.thumb {
  position: relative; }
  .view.thumb .img-photo {
    max-width: 100%;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .view.thumb:hover .img-photo {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06); }

.view .mask {
  opacity: 0;
  overflow: visible;
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  display: none; }
  .view .mask.non-bg {
    background-color: transparent; }

.view:hover .mask, .view:focus .mask, .view:active .mask {
  opacity: 1; }

.parent {
  position: absolute;
  height: 100%;
  width: 100%; }
  .parent span.img-photo {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: block;
    border-radius: 18px 18px; }
  .parent:hover span.img-photo, .parent:focus span.img-photo {
    -ms-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06); }

.visible-touch {
  display: none; }
  html.touch .visible-touch {
    display: block; }
  @media only screen and (max-width: 767px) {
    .visible-touch {
      display: block; } }

.hidden-touch {
  display: block; }
  html.touch .hidden-touch {
    display: none; }
  @media only screen and (max-width: 767px) {
    .hidden-touch {
      display: none; } }

a.no-hand {
  pointer-events: none; }

.fb-page,
.fb-page span,
.fb-page span iframe[style] {
  width: 100% !important; }
  .fb-page body.plugin,
  .fb-page span body.plugin,
  .fb-page span iframe[style] body.plugin {
    width: 100% !important; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  font-family: "Kanit";
  text-rendering: optimizelegibility;
  line-height: 1.1;
  font-weight: 400; }

h1 small,
h2 small {
  font-weight: normal;
  color: #bfbfbf; }

h1,
.h1 {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 0.71429; }
  @media only screen and (min-width: 768px) {
    h1,
    .h1 {
      font-size: 24px;
      font-size: 2.4rem; } }

h2,
.h2 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0.71429; }
  @media only screen and (min-width: 768px) {
    h2,
    .h2 {
      font-size: 20px;
      font-size: 2rem; } }

h3,
.h3 {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 0.95238; }
  @media only screen and (min-width: 768px) {
    h3,
    .h3 {
      font-size: 16px;
      font-size: 1.6rem; } }

h4,
.h4 {
  margin-bottom: 1.42857; }

h5,
.h5 {
  margin-bottom: 1.42857; }

h6,
.h6 {
  margin-bottom: 1.42857; }

p,
ol,
ul,
dl,
address {
  margin-bottom: 1.42857; }

small {
  font-weight: lighter; }

ul,
ol {
  margin: 0;
  padding: 0 0 0 30px; }

li ul,
li ol {
  margin: 0; }

blockquote {
  margin: 0;
  padding-left: 30px; }

q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

cite {
  font-style: normal; }

dl,
dd {
  margin-bottom: 1.42857; }

dt {
  font-weight: bold; }

.dl-horizontal dt {
  float: left;
  clear: left;
  width: 20.25%;
  text-align: right; }

.dl-horizontal dd {
  margin-left: 22.78%; }

abbr[title] {
  border-bottom: 1px dotted #cccccc;
  cursor: help; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

ins {
  background-color: #bfbfbf;
  color: #000000;
  text-decoration: none; }

mark {
  background-color: #bfbfbf;
  color: #000000;
  font-style: italic;
  font-weight: bold; }

pre,
code,
kbd,
samp {
  font-family: Monaco, Courier New, monospace;
  line-height: 1.42857; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

sub,
sup {
  position: relative;
  line-height: 0;
  vertical-align: 1.42857; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

p {
  margin-bottom: 0;
  line-height: 24px;
  line-height: 2.4rem;
  font-size: 14px;
  font-size: 1.4rem; }
  @media only screen and (min-width: 768px) {
    p {
      font-size: 16px;
      font-size: 1.6rem; } }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a:active, a:selected, a:visited {
  outline: none; }

a:hover {
  text-decoration: none; }

a:focus,
.btn:focus,
.bootstrap-select .btn:focus {
  outline: none !important; }

*:focus,
:root input:focus {
  /*remove dot for ie8-9*/
  outline: none;
  border: none; }

textarea {
  resize: none; }

blockquote {
  border: none; }

blockquote small:before {
  content: none; }

label, input, select, textarea, input {
  font-family: "Kanit";
  font-weight: 100; }

input[type="date"]::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; }

/*Hide Spinner in Input Number*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

address {
  margin-bottom: 10px; }

body:before,
body:after {
  display: table;
  content: ""; }

body:after {
  clear: both; }

ul {
  margin-bottom: 0; }

li.clearfix:after {
  display: inline; }

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  /* mobile firefox too! */ }

input::-ms-clear {
  width: 0;
  height: 0; }

html {
  min-width: 320px;
  font-size: 62.5%;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden !important; }

body {
  margin: 0;
  padding: 0;
  width: 100%;
  color: #000000;
  font-family: "Kanit";
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

html {
  position: relative;
  min-height: 100%; }

html.chrome.ios.mobile,
html.chrome.ios.mobile body {
  height: 100%; }

.disable-hover,
.disable-hover * {
  pointer-events: none !important; }

html.touch .disable-focus:hover {
  pointer-events: none !important; }

a {
  cursor: pointer; }

.bg-gray {
  background: #F4F4F4 !important; }

.bg-gray2 {
  background: #EDECEC !important; }

.c-blue {
  color: #1A3CEC !important; }

.c-gray {
  color: #878484 !important; }

.c-green {
  color: #12850F !important; }

.c-red {
  color: #FF0303 !important; }

.c-white {
  color: #ffffff !important; }

.c-brown {
  color: #945103 !important; }

.c-orange {
  color: #FFAF3E !important; }

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

.font-medium {
  font-weight: 500 !important; }

.font-semibold {
  font-weight: 600 !important; }

.font-italic {
  font-style: italic !important; }

.text-underline {
  text-decoration: underline !important;
  font-weight: 400 !important;
  margin-bottom: 0; }

.text-yaer-lg {
  padding-top: 5px; }
  @media only screen and (min-width: 768px) {
    .text-yaer-lg {
      padding-top: 15px; } }

@media only screen and (min-width: 768px) {
  .text-md-right {
    text-align: right; } }

.border-bottom {
  border-bottom: 1px solid #000000 !important; }

.border-none {
  border: none !important; }

.col-auto {
  width: auto;
  float: left; }

.col-form-label {
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 24px;
  line-height: 2.4rem; }
  @media only screen and (min-width: 768px) {
    .col-form-label {
      font-size: 16px;
      font-size: 1.6rem; } }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

@media only screen and (min-width: 992px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

.d-block {
  display: block !important; }

.d-inline-block {
  display: inline-block !important; }

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

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

@media only screen and (min-width: 992px) {
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; } }

.p-0 {
  padding: 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pt-5 {
  padding-top: 5px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-25 {
  padding-top: 25px !important; }

.pt-30 {
  padding-top: 30px !important; }

.pt-35 {
  padding-top: 35px !important; }

.pt-50 {
  padding-top: 50px !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-5 {
  padding-bottom: 5px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-25 {
  padding-bottom: 25px !important; }

.pb-30 {
  padding-bottom: 30px !important; }

.pl-5 {
  padding-left: 5px !important; }

.pl-15 {
  padding-left: 15px !important; }

.pl-25 {
  padding-left: 25px !important; }

.pl-28 {
  padding-left: 28px !important; }

.pl-30 {
  padding-left: 30px !important; }

.pl-60 {
  padding-left: 60px !important; }

.pl-80 {
  padding-left: 80px !important; }

.pl-100 {
  padding-left: 100px !important; }

.pr-20 {
  padding-right: 20px !important; }

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

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

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important; }

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important; }

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-5 {
  margin-top: 5px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-25 {
  margin-top: 25px !important; }

.mt-27 {
  margin-top: 27px !important; }

.mt-50 {
  margin-top: 50px !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-25 {
  margin-bottom: 25px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-30 {
  margin-left: 30px !important; }

.mr-8 {
  margin-right: 8px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important; }

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important; }

@media only screen and (min-width: 768px) {
  .text-sm-right {
    text-align: right; } }

@media only screen and (min-width: 992px) {
  .text-md-right {
    text-align: right; } }

@media only screen and (min-width: 992px) {
  .pull-md-right {
    float: right; } }

.font-14 {
  font-size: 14px;
  font-size: 1.4rem; }

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

.w-60 {
  width: 60% !important; }

.w-100 {
  width: 100% !important; }

.w-50-min {
  min-width: 50px !important; }

.form-control {
  border: 1px solid #5E5E5E !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  height: 40px;
  color: #000000;
  font-weight: 400; }
  .form-control.gray {
    background: #DAD6D6;
    border: 1px solid #5E5E5E; }

.textarea-custom {
  border: 1px solid #0088FF !important;
  border-radius: 0; }

.btn-link {
  color: #1A3CEC !important;
  -webkit-text-decoration-line: underline !important;
  text-decoration-line: underline !important;
  font-size: 14px;
  font-size: 1.4rem; }
  @media only screen and (min-width: 768px) {
    .btn-link {
      font-size: 18px;
      font-size: 1.8rem; } }
  .btn-link:hover {
    -webkit-text-decoration-line: none !important;
    text-decoration-line: none !important; }

.btn-download {
  display: block;
  text-decoration: underline;
  color: #945103 !important; }
  .btn-download:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/download.png");
    background-repeat: no-repeat;
    background-size: 25px;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    margin-bottom: 3px; }

.btn-back {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: underline;
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .btn-back {
      margin-bottom: 40px; } }

.btn-green {
  background: #30C061;
  border-radius: 20px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff !important;
  padding: 5px 45px !important;
  min-width: 200px; }
  .btn-green:hover {
    opacity: 0.6; }

.btn-red {
  background: #FF0101;
  border-radius: 20px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff !important;
  padding: 5px 45px !important;
  min-width: 200px; }
  .btn-red:hover {
    opacity: 0.6; }

.btn-prev {
  background: #EDEDED;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px !important;
  padding: 5px;
  min-width: 200px;
  height: 54px;
  font-weight: 700 !important; }
  .btn-prev:hover {
    opacity: 0.7; }

.wrapper {
  position: relative; }

.navbar {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#EBEBEB));
  background: -webkit-linear-gradient(top, #FFFFFF 0%, #EBEBEB 100%);
  background: -o-linear-gradient(top, #FFFFFF 0%, #EBEBEB 100%);
  background: linear-gradient(180deg, #FFFFFF 0%, #EBEBEB 100%);
  border-top: 5px solid #DC4877; }
  .navbar .navbar-brand {
    display: block;
    background-image: url("../images/logo-dcy-cac.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 345px;
    max-width: 100%;
    height: 60px;
    margin-top: 15px;
    margin-bottom: 10px; }
    @media only screen and (max-width: 1199px) {
      .navbar .navbar-brand {
        width: 260px;
        height: 65px; } }
    @media only screen and (max-width: 1024px) {
      .navbar .navbar-brand {
        width: 250px;
        height: 55px; } }
    @media only screen and (max-width: 991px) {
      .navbar .navbar-brand {
        width: 210px;
        height: 25px; } }
    @media only screen and (max-width: 767px) {
      .navbar .navbar-brand {
        width: 250px;
        height: 55px;
        margin-left: 15px; } }
    @media only screen and (max-width: 374px) {
      .navbar .navbar-brand {
        width: 230px;
        height: 48px; } }
  .navbar .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px; }
    @media only screen and (max-width: 1199px) {
      .navbar .navbar-nav {
        padding-top: 30px;
        padding-bottom: 30px; } }
    @media only screen and (max-width: 991px) {
      .navbar .navbar-nav {
        padding-top: 15px;
        padding-bottom: 10px; } }
    @media only screen and (max-width: 767px) {
      .navbar .navbar-nav {
        padding-top: 10px;
        padding-bottom: 10px; } }
    .navbar .navbar-nav li {
      padding-left: 10px;
      padding-right: 10px; }
      @media only screen and (min-width: 991px) {
        .navbar .navbar-nav li {
          border-left: 1px solid rgba(192, 192, 192, 0.7); } }
      @media only screen and (max-width: 1199px) {
        .navbar .navbar-nav li {
          padding-left: 5px;
          padding-right: 5px; } }
      @media only screen and (max-width: 991px) {
        .navbar .navbar-nav li {
          padding-left: 5px;
          padding-right: 5px; } }
      @media only screen and (max-width: 767px) {
        .navbar .navbar-nav li {
          padding-top: 10px;
          padding-bottom: 10px; } }
    .navbar .navbar-nav a {
      font-size: 14px;
      font-size: 1.4rem;
      text-align: center;
      background-image: none;
      padding: 0 0 2px; }
      @media only screen and (max-width: 1199px) {
        .navbar .navbar-nav a {
          font-size: 12px;
          font-size: 1.2rem; } }
      @media only screen and (max-width: 991px) {
        .navbar .navbar-nav a {
          font-size: 10px;
          font-size: 1rem; } }
      @media only screen and (max-width: 767px) {
        .navbar .navbar-nav a {
          font-size: 14px;
          font-size: 1.4rem; } }
      .navbar .navbar-nav a:hover {
        color: #347AB6 !important; }
    .navbar .navbar-nav .active a {
      background: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      border-bottom: 2px solid #347AB6;
      font-weight: 700;
      color: #347AB6 !important; }
      @media only screen and (max-width: 767px) {
        .navbar .navbar-nav .active a {
          border-bottom: none; }
          .navbar .navbar-nav .active a:after {
            content: "";
            display: block;
            background: #347AB6;
            width: 60px;
            height: 2px;
            margin-left: auto;
            margin-right: auto; } }
    .navbar .navbar-nav .nav-icon {
      display: block;
      background-repeat: no-repeat;
      background-size: 40px;
      width: 40px;
      height: 40px;
      margin: 0 auto 5px;
      -webkit-transition: -webkit-transform .2s;
      transition: -webkit-transform .2s;
      -o-transition: transform .2s;
      transition: transform .2s;
      transition: transform .2s, -webkit-transform .2s; }
      @media only screen and (max-width: 1024px) {
        .navbar .navbar-nav .nav-icon {
          background-size: 25px;
          width: 25px;
          height: 25px; } }
      @media only screen and (max-width: 1199px) {
        .navbar .navbar-nav .nav-icon {
          display: none; } }
      @media only screen and (max-width: 767px) {
        .navbar .navbar-nav .nav-icon {
          display: block; } }
      .navbar .navbar-nav .nav-icon.home {
        background-image: url("../images/menu-home.png"); }
      .navbar .navbar-nav .nav-icon.organization {
        background-image: url("../images/menu-organization.png"); }
      .navbar .navbar-nav .nav-icon.personnel {
        background-image: url("../images/menu-personnel.png"); }
      .navbar .navbar-nav .nav-icon.child {
        background-image: url("../images/menu-child.png"); }
      .navbar .navbar-nav .nav-icon.indicators {
        background-image: url("../images/menu-indicators.png"); }
      .navbar .navbar-nav .nav-icon.search {
        background-image: url("../images/menu-search.png"); }
      .navbar .navbar-nav .nav-icon.administrator {
        background-image: url("../images/menu-administrator.png"); }
      .navbar .navbar-nav .nav-icon.dossier {
        background-image: url("../images/dossier.png"); }
      .navbar .navbar-nav .nav-icon.booking {
        background-image: url("../images/calendar3.png"); }
      .navbar .navbar-nav .nav-icon.booking-postpone {
        background-image: url("../images/calendar4.png"); }
      .navbar .navbar-nav .nav-icon.booking-check {
        background-image: url("../images/search2.png"); }
      .navbar .navbar-nav .nav-icon.booking-condition {
        background-image: url("../images/paper.png"); }
      .navbar .navbar-nav .nav-icon.download {
        background-image: url("../images/download2.png"); }
      .navbar .navbar-nav .nav-icon.manage {
        background-image: url("../images/user2.png"); }
      .navbar .navbar-nav .nav-icon.protege {
        background-image: url("../images/protege_thai.png"); }
      .navbar .navbar-nav .nav-icon.trace {
        background-image: url("../images/search2.png"); }
      .navbar .navbar-nav .nav-icon.foster {
        background-image: url("../images/family2.png"); }
      .navbar .navbar-nav .nav-icon.setting {
        background-image: url("../images/menu-setting.png"); }
      .navbar .navbar-nav .nav-icon.admin {
        background-image: url("../images/menu-admin.png"); }
    .navbar .navbar-nav a:hover .nav-icon, .navbar .navbar-nav a:focus .nav-icon {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
    .navbar .navbar-nav .dropdown-menu {
      min-width: -webkit-fit-content;
      min-width: -moz-fit-content;
      min-width: fit-content;
      margin-top: 15px;
      padding-top: 0;
      padding-bottom: 0;
      border-bottom: 3px solid #DC4877;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0))), url(.png), #F8F8F8;
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url(.png), #F8F8F8;
      background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url(.png), #F8F8F8;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url(.png), #F8F8F8;
      opacity: 0.93;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px); }
      @media only screen and (max-width: 767px) {
        .navbar .navbar-nav .dropdown-menu {
          background: none !important;
          border: none;
          margin-top: 5px; } }
      .navbar .navbar-nav .dropdown-menu li {
        padding-left: 0;
        padding-right: 0; }
        @media only screen and (max-width: 767px) {
          .navbar .navbar-nav .dropdown-menu li {
            padding-top: 5px;
            padding-bottom: 5px; } }
        .navbar .navbar-nav .dropdown-menu li a {
          font-weight: 400 !important;
          text-align: left;
          padding: 10px 20px;
          border-bottom: 1px dashed rgba(0, 0, 0, 0.1); }
          @media only screen and (max-width: 767px) {
            .navbar .navbar-nav .dropdown-menu li a {
              text-align: center;
              padding: 5px;
              border: none; } }

.navbar-nav > .open > a {
  background-color: transparent !important;
  background-image: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #48453F !important; }

.navbar-toggle {
  margin-top: 23px;
  border: none; }
  .navbar-toggle .icon-bar {
    width: 30px;
    height: 4px;
    background-color: #DC4877 !important; }

/* NEW 2nd-Level Dropdown CSS START */
.dropdown-submenu {
  position: relative; }

.dropdown-submenu .caret {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  float: right;
  margin-top: 8px; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px; }

.dropdown-submenu.open > a:after {
  border-left-color: #fff; }

.dropdown-submenu.open > .dropdown-menu, .dropdown-submenu.open > .dropdown-menu {
  display: block; }

.dropdown-submenu .dropdown-menu {
  margin-bottom: 8px; }

.navbar-default .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
  background-color: #f6f6f6; }

.navbar-inverse .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
  background-color: #333; }

.navbar .navbar-nav .open .dropdown-submenu .dropdown-menu > li > a {
  padding-left: 30px; }

@media screen and (min-width: 992px) {
  .dropdown-submenu .dropdown-menu {
    margin-bottom: 2px; }
  .navbar .navbar-nav .open .dropdown-submenu .dropdown-menu > li > a {
    padding-left: 25px; }
  .navbar-default .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
    background-color: #fff; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
    background-color: #fff; } }

/* NEW 2nd-Level Dropdown CSS END */
.menu-user {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
  margin-right: 3%;
  margin-bottom: 2%; }
  @media only screen and (min-width: 768px) {
    .menu-user {
      font-size: 16px;
      font-size: 1.6rem; } }
  .menu-user img {
    width: 25px;
    height: 25px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: 10px; }
    @media only screen and (min-width: 768px) {
      .menu-user img {
        width: 40px;
        height: 40px; } }

.table-responsive {
  overflow-x: auto;
  border: none; }

.table thead > tr > th {
  vertical-align: middle; }

.table tr.gray {
  background: #F0ECEC; }

.table a {
  color: #000000; }
  .table a:hover {
    color: #DC4877; }

.table-primary {
  border: 1px solid #B8B8B8;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 1.4rem; }
  @media only screen and (min-width: 768px) {
    .table-primary {
      font-size: 16px;
      font-size: 1.6rem; } }
  .table-primary thead > tr > th {
    background-color: #8B8B8B;
    color: #ffffff;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    vertical-align: middle; }
  .table-primary tbody > tr > td {
    border-right: 1px solid #B8B8B8;
    border-bottom: 1px solid #B8B8B8; }
    .table-primary tbody > tr > td:last-child {
      border-right: none; }

.table-extra {
  border-radius: 20px;
  padding: 2px; }
  .table-extra .table {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0; }
    .table-extra .table thead > tr > th {
      vertical-align: middle;
      color: #878484;
      font-size: 16px;
      font-size: 1.6rem;
      border-right: 1px solid #ffffff; }
      .table-extra .table thead > tr > th:last-child {
        border-right: none; }
    .table-extra .table tbody > tr > td {
      vertical-align: middle;
      font-size: 16px;
      font-size: 1.6rem;
      border-top: none; }
  .table-extra.orange {
    border: 1px solid #FB9170; }
    .table-extra.orange thead > tr > th {
      background: #FB9170;
      color: #ffffff; }
  .table-extra.pink {
    border: 1px solid #FF4286; }
    .table-extra.pink thead > tr > th {
      background: #FF4286;
      color: #ffffff; }

.table-list {
  border: 1px solid #0088FF; }
  .table-list thead > tr > th {
    background: #007AC9;
    color: #ffffff;
    border-right: 1px solid #ffffff;
    border-bottom: none; }
    .table-list thead > tr > th:last-child {
      border-right: none; }
  .table-list tbody > tr td {
    padding-top: 10px;
    padding-bottom: 10px; }
  .table-list tbody > tr.blue {
    background: #BCE0FF; }
    .table-list tbody > tr.blue td {
      padding: 8px 8px 8px 5px; }
      @media only screen and (min-width: 768px) {
        .table-list tbody > tr.blue td {
          padding: 8px 8px 8px 10px; } }
  .table-list tbody > tr.blue-light {
    background: #E8F4FF; }
    .table-list tbody > tr.blue-light td {
      padding: 8px 8px 8px 25px; }
      @media only screen and (min-width: 768px) {
        .table-list tbody > tr.blue-light td {
          padding: 8px 8px 8px 50px; } }
  .table-list tbody > tr > td {
    border-right: 1px solid #007AC9;
    border-bottom: 1px solid #007AC9;
    font-size: 14px;
    font-size: 1.4rem; }
    @media only screen and (min-width: 768px) {
      .table-list tbody > tr > td {
        font-size: 16px;
        font-size: 1.6rem; } }
    @media only screen and (min-width: 768px) {
      .table-list tbody > tr > td .form-group.row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
  .table-list .ic-add {
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/add02.png");
    background-repeat: no-repeat;
    background-size: 31px;
    width: 31px;
    height: 31px;
    margin-right: 5px;
    margin-top: -5px; }
  .table-list .caledar {
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/calendar-blue.png");
    background-repeat: no-repeat;
    background-size: 28px;
    width: 28px;
    height: 28px; }
  .table-list .checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    margin-bottom: 0; }
  .table-list .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .table-list .checkbox-container .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #C4C4C4; }
  .table-list .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc; }
  .table-list .checkbox-container input:checked ~ .checkmark {
    background-color: #0F4C81; }
  .table-list .checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .table-list .checkbox-container input:checked ~ .checkmark:after {
    display: block; }
  .table-list .checkbox-container .checkmark:after {
    left: 6px;
    top: 0px;
    width: 8px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .table-list [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px; }

.table-grade {
  margin-top: 15px; }
  @media only screen and (min-width: 1200px) {
    .table-grade {
      margin-top: 55px;
      margin-bottom: 65px; } }

.table-noborder thead > tr > th, .table-noborder tbody > tr > td {
  border-right: none !important; }

.table-upload tbody > tr > td {
  vertical-align: middle; }

.photo-thumb {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 70%;
  background: #C4C4C4; }
  .photo-thumb .photo-parent {
    position: absolute;
    height: 100%;
    width: 100%; }
  .photo-thumb .photo {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }

.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.checkbox-inline {
  margin-left: 0 !important; }

.checkbox label, .radio label, .checkbox-inline, .radio-inline {
  font-size: 14px;
  font-size: 1.4rem; }
  @media only screen and (min-width: 768px) {
    .checkbox label, .radio label, .checkbox-inline, .radio-inline {
      font-size: 16px;
      font-size: 1.6rem; } }

.checkbox label {
  padding-right: 5px; }

.radio input[type=radio], .checkbox input[type=checkbox] {
  background: #C4C4C4;
  border: 2px solid #B8B8B8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.radio-group {
  padding-left: 15%; }

.btn {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  color: #000000;
  padding: 0.5% 2.5%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .btn.btn-submit {
    background: #FFB4DC; }
    .btn.btn-submit.green {
      background: #14AE3F;
      color: #ffffff;
      font-size: 18px;
      font-size: 1.8rem;
      border-radius: 10px; }
    .btn.btn-submit.blue {
      background: #83CCFB;
      -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
      box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 5px;
      padding: 5px;
      min-width: 200px;
      font-weight: 700; }
      .btn.btn-submit.blue .border {
        display: block;
        border: 2px solid #ffffff;
        border-radius: 5px;
        width: 100%;
        height: 100%;
        padding: 5px;
        margin-top: 0;
        margin-bottom: 0; }
      .btn.btn-submit.blue:hover {
        color: #0F4C81; }
    .btn.btn-submit.orange {
      background: #FDDCB6;
      -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
      box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 5px;
      padding: 5px;
      min-width: 200px;
      font-weight: 700;
      color: #302F2F !important; }
      .btn.btn-submit.orange .border {
        display: block;
        border: 2px solid #ffffff;
        border-radius: 5px;
        width: 100%;
        height: 100%;
        padding: 5px;
        margin-top: 0;
        margin-bottom: 0; }
      .btn.btn-submit.orange:hover {
        color: #FF8C00 !important; }
  .btn.btn-print {
    background: #83CCFB;
    border-radius: 10px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    padding: 5px;
    width: 194px;
    height: 46px;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .btn.btn-print .border {
      display: block;
      border: 2px solid #4E4D4D;
      border-radius: 10px;
      width: 100%;
      height: 100%;
      padding: 5px;
      position: absolute;
      top: 5px;
      left: -5px;
      margin-top: 0;
      margin-bottom: 0; }
      .btn.btn-print .border:before {
        content: "";
        background-image: url("../images/icon/print.png");
        background-repeat: no-repeat;
        background-size: 30px;
        width: 30px;
        height: 30px;
        position: absolute;
        top: -18px;
        left: 0;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear; }
      .btn.btn-print .border:after {
        content: "";
        background-image: url("../images/icon/print.png");
        background-repeat: no-repeat;
        background-size: 30px;
        width: 30px;
        height: 30px;
        position: absolute;
        bottom: -10px;
        right: 2px;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear; }
    .btn.btn-print:hover {
      color: #0F4C81; }
      .btn.btn-print:hover .border:before {
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg); }
      .btn.btn-print:hover .border:after {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg); }
  .btn.btn-search {
    background: #ffffff;
    border-radius: 10px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #6C6C6C;
    padding: 5px;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }
    .btn.btn-search:before {
      content: "";
      background-image: url("../images/icon/pin.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 50px;
      height: 38px;
      position: absolute;
      top: -15px;
      left: 5px;
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .btn.btn-search .btn-search-inner {
      background: #FFCCCC;
      -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 10px;
      display: block;
      padding: 10px 40px; }
    .btn.btn-search:hover:before {
      -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
      transform: rotate(-20deg); }

.btn-add {
  display: block;
  background-image: url("../images/icon/add03.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 40px; }

.check-info {
  text-decoration: underline;
  margin-top: 25px;
  font-size: 14px;
  font-size: 1.4rem; }
  @media only screen and (min-width: 768px) {
    .check-info {
      margin-top: 50px;
      font-size: 20px;
      font-size: 2rem; } }
  .check-info:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/check.png");
    background-repeat: no-repeat;
    background-size: 18px 20px;
    width: 18px;
    height: 20px;
    margin-right: 5px;
    margin-top: -5px; }
    @media only screen and (min-width: 768px) {
      .check-info:before {
        background-size: 35px 40px;
        width: 35px;
        height: 40px;
        margin-right: 10px; } }

.progress-custom {
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .progress-custom {
      margin-bottom: 20px; } }
  .progress-custom .progress {
    border-radius: 0 30px 30px 0;
    margin-top: 0;
    margin-bottom: 0; }
  .progress-custom .progress-bar.green {
    background: #14AE3F; }
  .progress-custom .progress-num {
    color: #12850F;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: right;
    display: block; }
  .progress-custom .progress-txt {
    font-size: 14px;
    font-size: 1.4rem; }
  .progress-custom .progress-ic {
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/computer.png");
    background-repeat: no-repeat;
    background-size: 50px 37px;
    width: 50px;
    height: 37px;
    margin-right: 2px; }

.custom-datepicker {
  position: relative;
  width: 100%; }
  .custom-datepicker .custom-datepicker-ic {
    display: block;
    background-image: url("../images/icon/calendar.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none; }
    @media only screen and (min-width: 768px) {
      .custom-datepicker .custom-datepicker-ic {
        background-size: 29px 31px;
        width: 29px;
        height: 31px; } }
  .custom-datepicker .form-control {
    position: initial;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 30px;
    border-radius: 5px !important;
    cursor: pointer; }
    @media only screen and (min-width: 768px) {
      .custom-datepicker .form-control {
        padding-left: 40px; } }
  .custom-datepicker.hide-form .custom-datepicker-ic {
    background-image: url("../images/icon/calendar-blue.png");
    background-size: 20px;
    width: 20px;
    height: 20px; }
    @media only screen and (min-width: 768px) {
      .custom-datepicker.hide-form .custom-datepicker-ic {
        background-size: 28px;
        width: 28px;
        height: 28px; } }
    @media only screen and (max-width: 767px) {
      .custom-datepicker.hide-form .custom-datepicker-ic {
        margin-top: -15%; } }
  .custom-datepicker.hide-form .form-control {
    padding-left: 40px !important;
    padding-right: 0 !important;
    color: #0F4C81;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
    @media only screen and (max-width: 767px) {
      .custom-datepicker.hide-form .form-control {
        font-size: 10px;
        font-size: 1rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 35px !important; } }
  .custom-datepicker .input-group-addon {
    background: transparent;
    border-left: 1px solid #5E5E5E !important;
    border-top: 1px solid #5E5E5E !important;
    border-bottom: 1px solid #5E5E5E !important;
    height: 40px;
    padding: 2px 5px; }
    .custom-datepicker .input-group-addon .custom-datepicker-ic {
      display: block;
      background-image: url("../images/icon/calendar.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 20px;
      height: 20px; }
      @media only screen and (min-width: 768px) {
        .custom-datepicker .input-group-addon .custom-datepicker-ic {
          background-size: 29px 31px;
          width: 29px;
          height: 31px; } }

.input-file-container {
  position: relative;
  margin-top: 10px;
  border-radius: 5px; }

.input-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  opacity: 0;
  padding: 14px 0;
  cursor: pointer; }

/* The checkbox-container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .checkbox-container {
      font-size: 16px;
      font-size: 1.6rem; } }

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkbox-container .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #C4C4C4; }

.checkbox-container.circle .checkmark {
  border-radius: 50%;
  background: #C4C4C4;
  border: 2px solid #B8B8B8;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc; }

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #0F4C81; }

.checkbox-container.circle input:checked ~ .checkmark {
  border: 1px solid #0F4C81; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 6px;
  top: 0px;
  width: 8px;
  height: 16px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.checkbox-container.circle .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px; }

/* The radio container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  @media only screen and (min-width: 768px) {
    .radio-container {
      font-size: 16px;
      font-size: 1.6rem; } }

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

/* Create a custom radio button */
.radio-container .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #C4C4C4;
  border: 2px solid #B8B8B8;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%; }

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc; }

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #0F4C81;
  border: 1px solid #0F4C81; }

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block; }

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.list-style {
  list-style-type: '-';
  padding-left: 20px; }
  .list-style li {
    padding-left: 5px; }

.list-style-none {
  list-style: none;
  color: #777; }
  .list-style-none li {
    line-height: 1.4;
    margin-bottom: 5px; }

.list-num {
  color: #777; }
  .list-num li {
    line-height: 1.4;
    margin-bottom: 5px; }

.list-select {
  color: #777; }
  .list-select li {
    line-height: 1.4;
    margin-bottom: 5px; }
    .list-select li ul {
      list-style: disc;
      padding-top: 10px;
      padding-bottom: 10px; }
      .list-select li ul li {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 5px; }

.text-indent {
  text-indent: 50px; }

.ic-download {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/download.png");
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px; }
  @media only screen and (min-width: 768px) {
    .ic-download {
      background-size: 60px;
      width: 60px;
      height: 60px; } }

.ic-office {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/office.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-pinmap {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/pin-map.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-leader {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/leader.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-gear {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/gear.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-money {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/money.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-graduate {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/graduate.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-boy {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/boy.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-mom {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/mom.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-dad {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/dad.png");
  background-repeat: no-repeat;
  background-size: contain; }

.ic-folder {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/folder.png");
  background-repeat: no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px; }

.ic-filedrop {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/filedrop.png");
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px; }
  @media only screen and (min-width: 768px) {
    .ic-filedrop {
      background-size: 40px;
      width: 40px;
      height: 40px; } }

.ic-applicant {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/applicant.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px; }
  @media only screen and (min-width: 768px) {
    .ic-applicant {
      background-size: 40px;
      width: 40px;
      height: 40px; } }

.ic-marriage-ring {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/marriage-ring.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px; }
  @media only screen and (min-width: 768px) {
    .ic-marriage-ring {
      background-size: 40px;
      width: 40px;
      height: 40px; } }

.ic-child {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/child.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px; }
  @media only screen and (min-width: 768px) {
    .ic-child {
      background-size: 40px;
      width: 40px;
      height: 40px; } }

.modal {
  text-align: center;
  padding: 0 !important; }
  .modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px; }
  .modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle; }

.modal-style .modal-title {
  font-size: 18px;
  font-size: 1.8rem; }
  @media only screen and (min-width: 768px) {
    .modal-style .modal-title {
      font-size: 24px;
      font-size: 2.4rem; } }

.modal-style .border-blue {
  border: 2px solid #83CCFB;
  padding: 5%; }

.modal-style .form-control.border-orange {
  border: 2px solid #F2A346 !important;
  border-radius: 20px !important; }

@media only screen and (max-width: 445px) {
  .modal-style.modal-type {
    top: auto; } }

.book-label {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #12883A;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #12883A;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px; }
  @media only screen and (min-width: 576px) {
    .book-label {
      font-size: 20px;
      font-size: 2rem;
      padding: 10px 20px 10px 10px; } }
  .book-label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/book.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    float: left; }
    @media only screen and (min-width: 576px) {
      .book-label:before {
        width: 28px; } }
  .book-label.orange {
    border: 1px solid #B86605;
    color: #FF8A00; }
    .book-label.orange:before {
      background-image: url("../images/icon/arrow.png"); }
  .book-label.blue {
    border: 1px solid #007AC9;
    color: #007AC9; }
    .book-label.blue:before {
      background-image: url("../images/icon/check.png");
      width: 25px;
      height: 25px; }

.calendar-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 15px;
  background: #65B3FB;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #12883A;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  height: 43px; }
  @media only screen and (min-width: 576px) {
    .calendar-label {
      font-size: 20px;
      font-size: 2rem; } }
  .calendar-label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/calendar02.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 43px;
    height: 43px;
    margin-right: 12px;
    float: left; }

.clock-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 15px;
  background: #65B3FB;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #12883A;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  height: 43px; }
  @media only screen and (min-width: 576px) {
    .clock-label {
      font-size: 20px;
      font-size: 2rem; } }
  .clock-label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/clock02.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 43px;
    height: 43px;
    margin-right: 12px;
    float: left; }

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #DCDCDC; }

.calendar-custom .fc-col-header-cell-cushion,
.calendar-custom .fc-timegrid-slot-label-cushion.fc-scrollgrid-shrink-cushion {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: black; }
  @media only screen and (max-width: 374px) {
    .calendar-custom .fc-col-header-cell-cushion,
    .calendar-custom .fc-timegrid-slot-label-cushion.fc-scrollgrid-shrink-cushion {
      font-size: 12px;
      font-size: 1.2rem; } }

.calendar-custom .fc-toolbar-title {
  font-size: 18px;
  font-size: 1.8rem;
  color: black; }
  @media only screen and (max-width: 374px) {
    .calendar-custom .fc-toolbar-title {
      font-size: 12px;
      font-size: 1.2rem; } }

.calendar-custom .fc-button-primary {
  font-size: 14px;
  font-size: 1.4rem; }
  @media only screen and (max-width: 374px) {
    .calendar-custom .fc-button-primary {
      font-size: 10px;
      font-size: 1rem; } }

.calendar-custom .fc-v-event .fc-event-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-toolbar.fc-header-toolbar, .calendar-custom .fc-toolbar-chunk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .calendar-custom .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk, .calendar-custom .fc-toolbar-chunk .fc-toolbar-chunk {
      padding-top: 5px;
      padding-bottom: 5px; } }

.calendar-custom.booking .fc-v-event {
  border: 1px solid #6C6C6C;
  background-color: #FF0101;
  text-align: center; }
  .calendar-custom.booking .fc-v-event .fc-event-title {
    font-size: 16px;
    font-size: 1.6rem; }
    @media only screen and (max-width: 374px) {
      .calendar-custom.booking .fc-v-event .fc-event-title {
        font-size: 12px;
        font-size: 1.2rem; } }

.table-responsive {
  overflow-x: auto !important; }

.panel-custom {
  border-radius: 10px;
  color: black;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
  position: relative; }
  .panel-custom .panel-heading {
    background-image: none;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
  .panel-custom .panel-title {
    font-size: 18px;
    font-size: 1.8rem; }
  .panel-custom .panel-body {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 20px; }
    .panel-custom .panel-body ul {
      list-style: none;
      padding-left: 0; }
      .panel-custom .panel-body ul li {
        padding-top: 10px;
        padding-bottom: 10px; }
  .panel-custom.red {
    border-color: #F85454; }
    .panel-custom.red .panel-heading {
      background: #FFCCCC;
      border-bottom: 1px solid #F85454; }
    .panel-custom.red .panel-row {
      position: relative; }
      @media only screen and (min-width: 992px) {
        .panel-custom.red .panel-row:before {
          content: "";
          background: #F85454;
          width: 0.5px;
          height: 100%;
          position: absolute;
          top: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%); } }
      .panel-custom.red .panel-row .panel-body-inner {
        padding: 0 20px; }
        @media only screen and (min-width: 992px) {
          .panel-custom.red .panel-row .panel-body-inner {
            padding: 15px 20px; } }
        @media only screen and (max-width: 991px) {
          .panel-custom.red .panel-row .panel-body-inner:first-child {
            padding-top: 15px; } }
        @media only screen and (max-width: 991px) {
          .panel-custom.red .panel-row .panel-body-inner:last-child {
            padding-bottom: 15px; } }
        .panel-custom.red .panel-row .panel-body-inner ul.first {
          padding-left: 15px; }
        .panel-custom.red .panel-row .panel-body-inner ul.last {
          padding-left: 15px; }
          @media only screen and (min-width: 992px) {
            .panel-custom.red .panel-row .panel-body-inner ul.last {
              padding-left: 0; } }
  .panel-custom.green {
    border-color: #066025; }
    .panel-custom.green .panel-heading {
      background: #C9EFD6;
      border-bottom: 1px solid #066025; }
  .panel-custom.yellow {
    border-color: #B86605; }
    .panel-custom.yellow .panel-heading {
      background: #FFEECC;
      border-bottom: 1px solid #B86605; }
    .panel-custom.yellow .c-yellow {
      color: #FF8A00; }
  .panel-custom.blue {
    border-color: #31A7F3; }
    .panel-custom.blue .panel-heading {
      background: #C6E9FF;
      border-bottom: 1px solid #31A7F3; }
  .panel-custom.gray {
    border-color: #6C6C6C; }
    .panel-custom.gray .panel-heading {
      background: #E3E5E7;
      border-bottom: 1px solid #6C6C6C; }

.table-custom {
  font-size: 16px;
  font-size: 1.6rem; }
  .table-custom thead > tr > th {
    font-weight: 400;
    border-bottom: 1px solid black;
    border-right: 1px solid black; }
    .table-custom thead > tr > th:last-child {
      border-right: 0; }
  .table-custom tbody > tr > td {
    border-top: 0;
    border-right: 1px solid black;
    padding: 20px 10px 0;
    word-break: break-word; }
    .table-custom tbody > tr > td:last-child {
      border-right: 0; }
  .table-custom .form-control {
    height: 28px;
    border: 1px solid #BEBEBE !important;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 16px;
    font-size: 1.6rem; }
  .table-custom .btn-edit {
    display: block;
    background-image: url("../images/icon/edit.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    margin-left: 5px;
    margin-right: 5px; }
  .table-custom .btn-save {
    display: block;
    background-image: url("../images/icon/save.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    margin-left: 5px;
    margin-right: 5px; }
  .table-custom .btn-remove {
    display: block;
    background-image: url("../images/icon/close.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    margin-left: 5px;
    margin-right: 5px; }
  .table-custom .ic-clock {
    display: block;
    background-image: url("../images/icon/clock.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    margin-right: 15%; }
  .table-custom.table-q-dt thead > tr > th {
    padding-left: 20px;
    padding-right: 20px; }
    .table-custom.table-q-dt thead > tr > th:not(:first-child) {
      border-right: none; }
  .table-custom.table-q-dt tbody > tr > td {
    padding-left: 20px;
    padding-right: 20px; }
    .table-custom.table-q-dt tbody > tr > td:first-child {
      padding-left: 5px;
      padding-right: 5px; }
    .table-custom.table-q-dt tbody > tr > td:not(:first-child) {
      border-right: none; }

.box-queue-status {
  border: 1px solid #65B3FB;
  border-radius: 10px;
  padding: 5% 5% 2%;
  position: relative; }
  .box-queue-status .label-text {
    background: #65B3FB;
    border-radius: 5px;
    color: #ffffff;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 12px 8px;
    position: absolute;
    top: -8%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media only screen and (min-width: 768px) {
      .box-queue-status .label-text {
        font-size: 24px;
        font-size: 2.4rem; } }
    .box-queue-status .label-text:before {
      content: "";
      display: block;
      background-image: url("../images/icon/search.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 30px;
      height: 23px;
      position: absolute;
      right: -10px;
      bottom: -10px; }
  .box-queue-status .table-custom {
    margin-top: 20px; }
    .box-queue-status .table-custom thead > tr > th {
      padding-top: 20px; }

.nav-tabs-custom li a {
  font-size: 16px;
  font-size: 1.6rem;
  color: black !important; }

.tab-content-custom {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .tab-content-custom {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .tab-content-custom a:not(.btn-download) {
    font-size: 14px;
    font-size: 1.4rem;
    color: black; }
    .tab-content-custom a:not(.btn-download):hover {
      text-decoration: none !important; }
    @media only screen and (min-width: 768px) {
      .tab-content-custom a:not(.btn-download) {
        font-size: 16px;
        font-size: 1.6rem; } }

.ic-download {
  display: block;
  background-image: url("../images/icon/search.png");
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px; }

.btn-approved {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #4DB63C;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  color: #4DB63C !important;
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 5px;
  padding-right: 10px;
  min-width: 225px;
  margin-left: 3%;
  margin-right: 3%; }
  @media only screen and (max-width: 767px) {
    .btn-approved {
      min-width: auto;
      width: 50%;
      padding-top: 10px;
      padding-bottom: 10px; } }
  .btn-approved:before {
    content: "";
    display: block;
    background-image: url("../images/icon/approved.png");
    background-repeat: no-repeat;
    background-size: 50px;
    width: 50px;
    height: 50px;
    margin-right: 5px; }
    @media only screen and (max-width: 767px) {
      .btn-approved:before {
        background-size: 20px;
        width: 20px;
        height: 20px; } }
  .btn-approved:hover {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn-rejected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #FF0101;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  color: #FF0101 !important;
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 5px;
  padding-right: 10px;
  min-width: 225px;
  margin-left: 3%;
  margin-right: 3%; }
  @media only screen and (max-width: 767px) {
    .btn-rejected {
      min-width: auto;
      width: 50%;
      padding-top: 10px;
      padding-bottom: 10px; } }
  .btn-rejected:before {
    content: "";
    display: block;
    background-image: url("../images/icon/rejected.png");
    background-repeat: no-repeat;
    background-size: 50px;
    width: 50px;
    height: 50px;
    margin-right: 5px; }
    @media only screen and (max-width: 767px) {
      .btn-rejected:before {
        background-size: 20px;
        width: 20px;
        height: 20px; } }
  .btn-rejected:hover {
    -webkit-box-shadow: none;
    box-shadow: none; }

.ic-book-list {
  display: block;
  background-image: url("../images/icon/book-list.png");
  background-repeat: no-repeat;
  background-size: 12px 14px;
  width: 12px;
  height: 14px; }
  @media only screen and (min-width: 768px) {
    .ic-book-list {
      background-size: 25px 29px;
      width: 25px;
      height: 29px; } }

.ic-couple {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/couple.png");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px; }
  @media only screen and (min-width: 768px) {
    .ic-couple {
      background-size: 30px;
      width: 30px;
      height: 30px; } }

.ic-adopted {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/adopted.png");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px; }
  @media only screen and (min-width: 768px) {
    .ic-adopted {
      background-size: 30px;
      width: 30px;
      height: 30px; } }

.ic-parent {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/parent.png");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px; }
  @media only screen and (min-width: 768px) {
    .ic-parent {
      background-size: 30px;
      width: 30px;
      height: 30px; } }

.ic-person-blue {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/person-blue.png");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px; }
  @media only screen and (min-width: 768px) {
    .ic-person-blue {
      background-size: 30px;
      width: 30px;
      height: 30px; } }

.ic-print {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/print02.png");
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px; }
  .ic-print.right {
    margin-left: auto;
    margin-right: 0; }

.wizard {
  margin: 20px auto;
  background: #fff; }

.wizard .nav-tabs {
  position: relative;
  margin: 40px auto;
  margin-bottom: 0;
  border-bottom: none; }

.wizard > div.wizard-inner {
  position: relative; }

.connecting-line {
  height: 1px;
  background: #C4C4C4;
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1; }

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent; }

span.round-tab {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #C4C4C4;
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  color: #C4C4C4; }

.wizard li.active span.round-tab {
  background: #56a3f2;
  border: 1px solid #56a3f2;
  color: #ffffff; }

span.round-tab:hover {
  color: #333;
  border: 1px solid #56a3f2; }

.wizard .nav-tabs > li {
  width: 20%; }

.wizard .nav-tabs > li a {
  width: 50px;
  height: 50px;
  margin: 20px auto;
  border-radius: 50%;
  padding: 0; }

.wizard .nav-tabs > li a:hover {
  background: transparent; }

.wizard .tab-pane {
  position: relative; }

.wizard h3 {
  margin-top: 0; }

@media only screen and (max-width: 585px) {
  .wizard {
    width: 90%;
    height: auto !important; }
  span.round-tab {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px; }
  .wizard .nav-tabs > li a {
    width: 50px;
    height: 50px;
    line-height: 50px; }
  .wizard li.active:after {
    content: " ";
    position: absolute;
    left: 35%; } }

.form-check-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .form-check-custom .form-check-label {
    margin-left: 5px;
    color: #777;
    font-weight: normal;
    line-height: 1.4; }

.tooltip {
  font-family: "Kanit"; }

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block; }
  .upload-btn-wrapper .btn-upload {
    background: #83CCFB;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #000000;
    padding: 5px 10px; }
  .upload-btn-wrapper input[type=file] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0; }

.upload-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  word-break: break-word; }
  .upload-detail p {
    padding-bottom: 2px; }

.btn-del-file {
  display: block;
  background-image: url("../images/icon/trash.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  margin-top: 4px; }

.text-note {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #ed7d31; }

.table.fixed {
  table-layout: fixed;
  width: 100%; }
  .table.fixed tbody > tr > td {
    word-break: break-word;
    white-space: normal;
    padding: 15px 5px; }
  .table.fixed thead > tr > th {
    word-break: break-word;
    white-space: normal;
    padding: 15px 5px; }

.table-upload tbody > tr > td {
  word-break: break-word;
  white-space: normal;
  padding: 15px 5px; }

.table-upload thead > tr > th {
  word-break: break-word;
  white-space: normal;
  padding: 15px 5px; }

select.bs-select-hidden,
select.selectpicker {
  display: none !important; }

.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/ }
  .bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1; }
    .bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
      color: #999; }
  .bootstrap-select > select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: 0.5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none; }
    .bootstrap-select > select.mobile-device {
      top: 0;
      left: 0;
      display: block !important;
      width: 100% !important;
      z-index: 2; }
  .has-error .bootstrap-select .dropdown-toggle,
  .error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48; }
  .bootstrap-select.fit-width {
    width: auto !important; }
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 220px; }
  .bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px; }

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none; }
  .bootstrap-select.form-control:not([class*="col-"]) {
    width: 100%; }
  .bootstrap-select.form-control.input-group-btn {
    z-index: auto; }
    .bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
      border-radius: 0; }

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0; }

.bootstrap-select.btn-group.dropdown-menu-right, .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right; }

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0; }

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0; }
  .form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
  .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit; }

.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%; }

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed; }
  .bootstrap-select.btn-group.disabled:focus,
  .bootstrap-select.btn-group > .disabled:focus {
    outline: none !important; }

.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important; }
  .bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060; }

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left; }

.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle; }

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%; }

.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .bootstrap-select.btn-group .dropdown-menu li {
    position: relative; }
    .bootstrap-select.btn-group .dropdown-menu li.active small {
      color: #fff; }
    .bootstrap-select.btn-group .dropdown-menu li.disabled a {
      cursor: not-allowed; }
    .bootstrap-select.btn-group .dropdown-menu li a {
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .bootstrap-select.btn-group .dropdown-menu li a.opt {
        position: relative;
        padding-left: 2.25em; }
      .bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
        display: none; }
      .bootstrap-select.btn-group .dropdown-menu li a span.text {
        display: inline-block; }
    .bootstrap-select.btn-group .dropdown-menu li small {
      padding-left: 0.5em; }
  .bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: whitesmoke;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0.9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap; }

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static; }

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px; }

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px; }

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px; }

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061; }

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none; }

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none; }

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0; }

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0; }

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto; }

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto; }

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block; }

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px; }

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .bs-actionsbox .btn-group button {
    width: 50%; }

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .bs-donebutton .btn-group button {
    width: 100%; }

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px; }

.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

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

@-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;
  -ms-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;
  -ms-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: none;
    transform: none; }
  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: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; }
  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;
  -ms-transform-origin: center;
  transform-origin: center; }

@-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-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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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-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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

.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: none;
    transform: none; } }

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

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

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

@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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge; }

/* 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: none;
    transform: none; } }

@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: none;
    transform: none; } }

.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; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive-16by9 {
    padding-bottom: 56.25%; }
  .embed-responsive-4by3 {
    padding-bottom: 75%; }
  .embed-responsive-1by1 {
    padding-bottom: 100%; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.video-wrapper {
  max-width: 100%;
  height: 100%;
  position: relative;
  z-index: 9; }

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 100%;
  background-color: black; }
  .video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute; }

/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   @include retina(/images/mypic.jpg, 2);
 *   @include retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
.icon {
  display: inline-block;
  background-repeat: no-repeat; }

.home {
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover; }
  .home .home-menu {
    padding-bottom: 4%; }
    @media only screen and (min-width: 768px) {
      .home .home-menu {
        padding-top: 2%; } }
    @media only screen and (min-width: 1025px) {
      .home .home-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 90vh; } }
    .home .home-menu .row {
      margin-left: -5px;
      margin-right: -5px; }
    .home .home-menu [class*="col-"] {
      padding: 5px; }
    .home .home-menu .menu-box {
      background: #2D89EF;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 30%;
      position: relative;
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
      @media only screen and (max-width: 767px) {
        .home .home-menu .menu-box {
          padding: 20% 10%; } }
      .home .home-menu .menu-box:hover {
        -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5); }
      .home .home-menu .menu-box.child {
        padding: 14.7%;
        margin-top: 0px;
        background-image: url("../images/box01.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          .home .home-menu .menu-box.child {
            padding: 20% 10%; } }
        .home .home-menu .menu-box.child.extra {
          background-image: url("../images/box02.jpg"); }
          @media only screen and (min-width: 768px) {
            .home .home-menu .menu-box.child.extra {
              padding: 97.1% 2%; } }
          @media only screen and (min-width: 992px) {
            .home .home-menu .menu-box.child.extra {
              padding: 93.4% 2%; } }
          @media only screen and (min-width: 1200px) {
            .home .home-menu .menu-box.child.extra {
              padding: 83.8% 2%; } }
          @media only screen and (max-width: 767px) {
            .home .home-menu .menu-box.child.extra {
              padding: 20% 2%; } }
      .home .home-menu .menu-box.big {
        padding: 14.7%;
        margin-top: 0px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          .home .home-menu .menu-box.big {
            padding: 20% 10%; } }
      .home .home-menu .menu-box.big-officer {
        padding: 15%;
        margin-top: 0px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          .home .home-menu .menu-box.big-officer {
            padding: 20% 10%; } }
      .home .home-menu .menu-box.family {
        padding: 14.7%;
        margin-top: 0px;
        background-image: url("../images/box-family.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          .home .home-menu .menu-box.family {
            padding: 20% 10%; } }
        .home .home-menu .menu-box.family.extra {
          background-image: url("../images/box03.jpg"); }
          @media only screen and (min-width: 768px) {
            .home .home-menu .menu-box.family.extra {
              padding: 30%; } }
      .home .home-menu .menu-box h1 {
        color: #ffffff;
        font-size: 22px;
        font-size: 2.2rem;
        position: absolute;
        bottom: 20px; }
        @media only screen and (max-width: 767px) {
          .home .home-menu .menu-box h1 {
            font-size: 18px;
            font-size: 1.8rem; } }
      .home .home-menu .menu-box img {
        max-width: 120px;
        max-height: 120px;
        -o-object-fit: contain;
        object-fit: contain; }
        @media only screen and (max-width: 1199px) {
          .home .home-menu .menu-box img {
            margin-bottom: 20px; } }
        @media only screen and (max-width: 991px) {
          .home .home-menu .menu-box img {
            max-width: 80px;
            max-height: 80px;
            margin-bottom: 35px; } }
        .home .home-menu .menu-box img.img-first {
          max-width: 350px;
          max-height: 350px; }
          @media only screen and (max-width: 991px) {
            .home .home-menu .menu-box img.img-first {
              max-width: 265px;
              max-height: 265px; } }
          @media only screen and (max-width: 767px) {
            .home .home-menu .menu-box img.img-first {
              max-width: 120px;
              max-height: 120px; } }
      .home .home-menu .menu-box .title-group {
        position: absolute;
        bottom: 20px;
        text-align: center; }
        .home .home-menu .menu-box .title-group a {
          display: block;
          color: #ffffff;
          font-size: 22px;
          font-size: 2.2rem;
          padding-top: 10px;
          padding-bottom: 10px; }
          @media only screen and (max-width: 767px) {
            .home .home-menu .menu-box .title-group a {
              font-size: 18px;
              font-size: 1.8rem; } }
          .home .home-menu .menu-box .title-group a:hover {
            text-decoration: underline; }
      .home .home-menu .menu-box:hover h1 {
        text-decoration: underline; }
      .home .home-menu .menu-box .menu-box-group .menu-sub {
        padding: 0 20px;
        position: relative;
        text-decoration: none !important; }
        @media only screen and (max-width: 767px) {
          .home .home-menu .menu-box .menu-box-group .menu-sub {
            padding-left: 10px;
            padding-right: 10px; } }
        .home .home-menu .menu-box .menu-box-group .menu-sub:before {
          content: "";
          display: inline-block;
          background: #ffffff;
          width: 1px;
          height: 100%;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
        .home .home-menu .menu-box .menu-box-group .menu-sub:first-child:before {
          display: none; }
        .home .home-menu .menu-box .menu-box-group .menu-sub h1 {
          position: initial;
          text-decoration: none;
          line-height: 1.2; }
        .home .home-menu .menu-box .menu-box-group .menu-sub img {
          margin-left: auto !important;
          margin-right: auto !important;
          margin-bottom: 20px !important; }
        .home .home-menu .menu-box .menu-box-group .menu-sub:hover h1 {
          text-decoration: underline; }
  @media only screen and (max-width: 767px) {
    .home .container {
      width: 100%; } }

.title-left {
  left: 30px; }

.content {
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto; }
  .content .content-head h1 {
    line-height: 1.4; }
  .content .content-head h2 {
    font-size: 20px;
    font-size: 2rem; }
    @media only screen and (min-width: 768px) {
      .content .content-head h2 {
        font-size: 36px;
        font-size: 3.6rem; } }
  .content .content-body {
    padding-left: 15px;
    padding-right: 15px; }
    .content .content-body [class*="col-"] {
      word-break: break-word;
      line-height: 24px;
      line-height: 2.4rem; }
    .content .content-body .content-group {
      padding-top: 5px;
      padding-bottom: 5px; }
      @media only screen and (min-width: 768px) {
        .content .content-body .content-group {
          padding-top: 15px;
          padding-bottom: 15px; } }
  .content .topic-group {
    border-bottom: 1px solid #000000;
    margin-top: 10px;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .content .topic-group {
        margin-top: 20px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      .content .topic-group {
        padding-bottom: 5px; } }
    .content .topic-group .topic-icon {
      font-size: 16px;
      font-size: 1.6rem; }
      @media only screen and (min-width: 768px) {
        .content .topic-group .topic-icon {
          font-size: 18px;
          font-size: 1.8rem; } }
      .content .topic-group .topic-icon .icon {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: 20px;
        margin-right: 5px;
        margin-top: -5px;
        margin-bottom: 5px; }
        @media only screen and (min-width: 768px) {
          .content .topic-group .topic-icon .icon {
            width: 40px;
            height: 40px; } }
    .content .topic-group .tool-group {
      margin-top: 10px; }
      @media only screen and (min-width: 768px) {
        .content .topic-group .tool-group {
          margin-top: -1.5%; } }
      .content .topic-group .tool-group a {
        display: inline-block;
        vertical-align: middle;
        background-repeat: no-repeat;
        background-size: 30px;
        width: 30px;
        height: 30px;
        margin-left: 5px;
        margin-right: 5px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        @media only screen and (min-width: 768px) {
          .content .topic-group .tool-group a {
            background-size: 40px;
            width: 40px;
            height: 40px; } }
        .content .topic-group .tool-group a.print {
          background-image: url("../images/icon/print.png"); }
        .content .topic-group .tool-group a.edit {
          background-image: url("../images/icon/edit.png"); }
        .content .topic-group .tool-group a.refresh {
          background-image: url("../images/icon/refresh.png"); }
        .content .topic-group .tool-group a.excel {
          background-image: url("../images/icon/excel.png"); }
        .content .topic-group .tool-group a.add {
          background-image: url("../images/icon/add.png"); }
        .content .topic-group .tool-group a.prev {
          background-image: url("../images/icon/prev.png"); }
        .content .topic-group .tool-group a.stop {
          background-image: url("../images/icon/stop.png"); }
        .content .topic-group .tool-group a.clear {
          background-image: url("../images/icon/clear.png"); }
        .content .topic-group .tool-group a.share {
          background-image: url("../images/icon/share02.png"); }
        .content .topic-group .tool-group a.filedrop {
          background-image: url("../images/icon/filedrop.png"); }
        .content .topic-group .tool-group a:hover {
          -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
          transform: scale(1.2); }
  .content .form-group {
    margin-top: 5px;
    margin-bottom: 5px; }
    @media only screen and (min-width: 992px) {
      .content .form-group {
        margin-top: 10px;
        margin-bottom: 10px; } }
  .content h3.text-underline {
    font-size: 14px;
    font-size: 1.4rem; }
    @media only screen and (min-width: 768px) {
      .content h3.text-underline {
        font-size: 16px;
        font-size: 1.6rem; } }
  .content .photo-thumb.profile {
    width: 35%;
    padding-bottom: 35%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #B8B8B8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    margin-bottom: 40px; }
    @media only screen and (min-width: 992px) {
      .content .photo-thumb.profile {
        width: 75%;
        padding-bottom: 75%;
        margin-left: auto;
        margin-right: 0; } }
    @media only screen and (max-width: 767px) {
      .content .photo-thumb.profile {
        margin-bottom: 20px; } }
    .content .photo-thumb.profile.upload {
      width: 50%;
      padding-bottom: 50%;
      margin-top: 10px; }
  .content .photo-thumb.address {
    width: 75%;
    padding-bottom: 32%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #B8B8B8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px; }
    @media only screen and (min-width: 992px) {
      .content .photo-thumb.address {
        margin-left: auto;
        margin-right: 0; } }
  .content .input-file-container {
    width: 145px;
    min-width: auto;
    margin-left: auto;
    margin-right: auto; }
    .content .input-file-container.with-icon {
      width: 60px;
      height: 50px;
      margin-top: -5px;
      margin-left: 10px;
      margin-right: initial; }
      .content .input-file-container.with-icon .input-file {
        display: block;
        width: 50px;
        height: 50px;
        padding: 0; }
      .content .input-file-container.with-icon .input-file-trigger.ic-folder {
        border: none !important;
        background-color: none !important; }
  .content .upload-location {
    margin-top: 10px; }
    @media only screen and (min-width: 992px) {
      .content .upload-location {
        margin-top: 50px; } }

.form-panel div {
  overflow: hidden; }

.form-panel .row {
  margin-left: -5px;
  margin-right: -5px; }

.form-panel [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px; }

.form-panel .border {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 10px 15px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .form-panel .border.orange {
    border: 1px solid #B86605; }
  .form-panel .border.green {
    border: 1px solid #066025; }

.form-panel [class*="bg-"] {
  padding: 15px; }

.form-panel .bg-gray {
  border-top: 1px solid black; }

@media only screen and (min-width: 992px) {
  .form-panel .form-group.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }

@media only screen and (min-width: 768px) {
  .detail-service .form-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }

@media only screen and (min-width: 768px) {
  .detail-service .form-panel .form-group {
    margin-top: 25px !important;
    margin-bottom: 25px !important; } }

.detail-budget .budget-topic {
  padding-left: 5%; }

.detail-budget .radio-group {
  padding-left: 15%; }
  @media only screen and (min-width: 768px) {
    .detail-budget .radio-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .detail-budget .radio-group .radio {
    margin-top: 5px;
    margin-bottom: 5px; }

.box-choose {
  border: 2px solid #0088FF;
  border-radius: 20px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (min-width: 768px) {
    .box-choose {
      margin-bottom: 60px; } }

.radio-group {
  padding-left: 5%;
  padding-top: 25px;
  padding-bottom: 25px; }
  .radio-group .radio-inline {
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-right: 10%;
    display: inline-block; }

.topic-txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2; }
  @media only screen and (min-width: 768px) {
    .topic-txt {
      font-size: 24px;
      font-size: 2.4rem; } }
  .topic-txt.c-gray {
    color: #8B8B8B; }

.box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px; }
  .box.box-gray {
    border: 1px solid #5E5E5E; }
  .box.box-pink {
    border: 2px solid #FB70BB; }

.box-results {
  padding: 20px;
  margin-top: 25px;
  margin-bottom: 25px; }
  @media only screen and (min-width: 768px) {
    .box-results {
      margin-top: 50px;
      margin-bottom: 50px; } }
  @media only screen and (min-width: 992px) {
    .box-results .row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  @media only screen and (max-width: 992px) {
    .box-results .col-result {
      margin-top: 15px;
      margin-bottom: 15px; } }
  .box-results .info {
    padding: 15px; }
    .box-results .info h1 {
      font-size: 30px;
      font-size: 3rem;
      line-height: 45px;
      line-height: 4.5rem; }
    .box-results .info .info-sub {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 30px 15px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.25);
      position: relative; }
      .box-results .info .info-sub:last-child {
        border-bottom: none; }
      .box-results .info .info-sub.extra {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
      .box-results .info .info-sub h1 {
        font-size: 30px;
        font-size: 3rem; }
      .box-results .info .info-sub .txt-num {
        font-size: 60px;
        font-size: 6rem; }
      .box-results .info .info-sub .txt-unit {
        font-size: 20px;
        font-size: 2rem;
        position: absolute;
        right: 0; }

.check-service {
  padding-left: 8%;
  padding-top: 15px; }
  @media only screen and (min-width: 768px) {
    .check-service {
      padding-top: 30px; } }
  .check-service .checkbox-container {
    margin-left: 10%;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .check-service .checkbox-container {
        margin-bottom: 20px; } }
    .check-service .checkbox-container:last-child {
      margin-bottom: 0; }
  .check-service .budget-topic {
    padding-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .check-service .budget-topic {
        padding-bottom: 20px; } }

.topic-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #6C6C6C;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 2px 5px;
  font-size: 16px;
  font-size: 1.6rem;
  width: 560px;
  max-width: 100%; }
  @media only screen and (min-width: 768px) {
    .topic-label {
      font-size: 18px;
      font-size: 1.8rem;
      margin-left: 10px; } }
  .topic-label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 8px; }
    @media only screen and (min-width: 768px) {
      .topic-label:before {
        width: 50px;
        height: 50px; } }
  .topic-label.pink:before {
    background: #FFCCCC; }
  .topic-label.yellow:before {
    background: #FFDFA1; }

.child-label {
  display: inline-block;
  border: 1px solid #31A7F3;
  color: #007AC9;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  height: 44px;
  padding-left: 50px; }
  @media only screen and (min-width: 768px) {
    .child-label {
      font-size: 20px;
      font-size: 2rem;
      margin-top: 30px;
      margin-bottom: 10px; } }
  @media only screen and (max-width: 374px) {
    .child-label {
      font-size: 14px;
      font-size: 1.4rem;
      padding-top: 15px;
      padding-bottom: 15px; } }
  .child-label .child-ic {
    display: block;
    background-image: url("../images/icon/child.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 42px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 1px solid #31A7F3;
    border-bottom: 1px solid #31A7F3;
    border-right: 1px solid #31A7F3; }

.topic-file {
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .topic-file {
      font-size: 18px;
      font-size: 1.8rem;
      padding-top: 40px;
      padding-bottom: 40px; } }
  .topic-file:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/icon/paper.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 40px;
    margin-right: 10px; }
    @media only screen and (min-width: 768px) {
      .topic-file:before {
        width: 50px;
        height: 60px; } }

.detail-booking {
  padding-top: 15px; }
  @media only screen and (min-width: 768px) {
    .detail-booking {
      padding-top: 30px; } }
  .detail-booking .form-group {
    margin-top: 15px !important;
    margin-bottom: 15px !important; }

.note-txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic; }
  @media only screen and (min-width: 768px) {
    .note-txt {
      font-size: 16px;
      font-size: 1.6rem;
      padding-top: 40px; } }

.note-list {
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic; }
  @media only screen and (min-width: 768px) {
    .note-list {
      font-size: 16px;
      font-size: 1.6rem; } }
  .note-list li {
    padding-top: 3px;
    padding-bottom: 3px; }

.search-result {
  padding-top: 10px; }
  @media only screen and (min-width: 768px) {
    .search-result {
      padding-top: 50px; } }
  .search-result h2 {
    font-size: 16px;
    font-size: 1.6rem; }
    @media only screen and (min-width: 768px) {
      .search-result h2 {
        font-size: 24px;
        font-size: 2.4rem; } }

.content-queue {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media only screen and (min-width: 768px) {
    .content-queue {
      margin-top: 70px;
      margin-bottom: 70px; } }

.border-queue {
  border-top: 3px solid #E5E5E5;
  position: relative;
  top: 10px;
  margin-top: 20px; }
  .border-queue .clock-label {
    position: absolute;
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.gueue-detail {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .gueue-detail {
      padding-bottom: 40px; } }

.border-left {
  border-left: 1px solid #ffff; }

/*# sourceMappingURL=main.css.map */