@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=Prompt:wght@300;400;500;600;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);
  -webkit-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: Prompt;
  text-rendering: optimizelegibility;
  line-height: 1.1;
  font-weight: 400;
}

h1 small,
h2 small {
  font-weight: normal;
  color: #bfbfbf;
}

h1,
.h1 {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 0.7142857145;
}
@media only screen and (min-width: 576px) {
  h1,
.h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

h2,
.h2 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0.7142857145;
}
@media only screen and (min-width: 768px) {
  h2,
.h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  h2.md,
.h2.md {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  h2.extra,
.h2.extra {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

h3,
.h3 {
  margin-bottom: 0.9523809527;
}

h4,
.h4 {
  margin-bottom: 1.428571429;
}

h5,
.h5 {
  margin-bottom: 1.428571429;
}

h6,
.h6 {
  margin-bottom: 1.428571429;
}

p,
ol,
ul,
dl,
address {
  margin-bottom: 1.428571429;
}

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.428571429;
}

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: white;
  color: #444444;
  text-decoration: none;
}

mark {
  background-color: white;
  color: #444444;
  font-style: italic;
  font-weight: bold;
}

pre,
code,
kbd,
samp {
  font-family: Monaco, Courier New, monospace;
  line-height: 1.428571429;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

sub,
sup {
  position: relative;
  line-height: 0;
  vertical-align: 1.428571429;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

p {
  margin-bottom: 0;
  line-height: 1.35;
  font-weight: 400;
}

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: sans-serif;
  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: #444444;
  font-family: Prompt;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

html {
  position: relative;
  min-height: 100%;
}

label {
  font-family: Prompt;
  font-weight: 400;
}

select {
  background: url("../images/icon/arrow-down-gray.png") no-repeat right #ddd;
  background-size: 15px 10px;
  -webkit-appearance: none;
  background-position-x: 95%;
}

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 {
  color: initial;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -ms-flex: 0 0 16.6666%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666%;
    max-width: 16.6666%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

.c-black {
  color: rgb(0, 0, 0) !important;
}

.c-blue {
  color: #88C543 !important;
}

.c-gray {
  color: #444444 !important;
}

.c-graydark {
  color: #333333 !important;
}

.c-graylight {
  color: #B9B9B9 !important;
}

.c-green {
  color: #88C543 !important;
}

.c-greenlight {
  color: #87C543 !important;
}

.c-pink {
  color: #88C543 !important;
}

.c-white {
  color: rgb(255, 255, 255) !important;
}

.c-yellow {
  color: #F9DA02 !important;
}

.c-red {
  color: #FF0000 !important;
}

.bg-pink {
  background: #88C543 !important;
}

.bg-gray {
  background: #F2F2F2 !important;
}

.bg-gray2 {
  background: #F3F3F3 !important;
}

.bg-green {
  background: #88C543 !important;
}

.bg-greenlight {
  background: #87C543 !important;
}

.bg-bluelight {
  background: #5CC0DE !important;
}

.bg-yellow {
  background: #F0AD4E !important;
}

.bg-red {
  background: #D9534F !important;
}

.bg-white {
  background: rgb(255, 255, 255) !important;
}

.bg-transparent {
  background: transparent !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.font-14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.font-16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.bg-blue {
  background: #88C543 !important;
}

.border-5 {
  border-radius: 5px !important;
}

.border-10 {
  border-radius: 10px !important;
}

.border-greenlight {
  border: 1px solid #87C543;
}

.border-left.darkgray {
  border-left: 1px solid #BDBDBD !important;
}

.border-top-dash {
  border-top: 1px dashed rgba(0, 0, 0, 0.22) !important;
}

.border-tl-radius-0 {
  border-top-left-radius: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #DADADA !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.title-line-group {
  text-align: center;
}
.title-line-group .title-line {
  position: relative;
  display: inline-block;
}
.title-line-group .title-line .title {
  font-size: 24px;
  font-size: 2.4rem;
  color: rgba(68, 68, 68, 0.28);
  text-align: center;
  padding-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line .title {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.title-line-group .title-line:before {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  background: #444444;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line:before {
    width: 220px;
  }
}
.title-line-group .title-line:after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #88C543;
  position: absolute;
  bottom: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 5px solid rgb(255, 255, 255);
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line:after {
    bottom: -18%;
  }
}
.title-line-group .title-line.sm .title {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line.sm .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.title-line-group .title-line.sm:before {
  width: 100px;
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line.sm:before {
    width: 140px;
  }
}
.title-line-group .title-line.white:before {
  background: rgb(255, 255, 255);
}
.title-line-group .title-line.white:after {
  background: rgb(255, 255, 255);
  border-color: #88C543;
}

.title-group {
  position: relative;
}
.title-group:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #88C543;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
}
.title-group.gray:after {
  background: #E0E0E0;
}
.title-group h1 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 576px) {
  .title-group h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mt-25 {
  margin-top: 25px !important;
}

.btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-primary {
  background: #88C543;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
  border-radius: 28px;
  border: 1px solid #88C543 !important;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgb(255, 255, 255) !important;
  padding: 5px 40px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #71AC2E;
}
.btn-primary.download:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-download.png");
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.btn-secondary {
  background: transparent;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
  border: 1px solid #88C543 !important;
  border-radius: 28px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #88C543 !important;
  padding: 5px 40px;
}
.btn-secondary:hover {
  background: #88C543;
  color: rgb(255, 255, 255) !important;
}

.btn-style {
  border-radius: 30px;
  color: rgb(255, 255, 255) !important;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px;
}

.btn-view {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #88C543 !important;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.btn-view:hover {
  -webkit-text-decoration-line: none !important;
          text-decoration-line: none !important;
}

.btn-more {
  min-width: 95px;
  height: 28px;
  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;
  border: 1px solid #3074DB;
  -webkit-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #88C543 !important;
  padding-top: 5px;
}
.btn-more:hover {
  background: #88C543;
  color: rgb(255, 255, 255) !important;
}

.btn-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#88C543), color-stop(287.18%, #5A9B48)), #88C543;
  background: -o-linear-gradient(top, #88C543 0%, #5A9B48 287.18%), #88C543;
  background: linear-gradient(180deg, #88C543 0%, #5A9B48 287.18%), #88C543;
}
.btn-green:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#5fa60f), color-stop(287.18%, #5A9B48)), #88C543;
  background: -o-linear-gradient(top, #5fa60f 0%, #5A9B48 287.18%), #88C543;
  background: linear-gradient(180deg, #5fa60f 0%, #5A9B48 287.18%), #88C543;
}

.btn-yellow {
  background: #FFD900 !important;
}
.btn-yellow:hover {
  background: #EDA100 !important;
}

.btn-confirm.with-icon {
  color: #88C543 !important;
  text-decoration: underline;
}
.btn-confirm.with-icon:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-check-mark02.png");
  background-size: 13px 10px;
  width: 13px;
  height: 10px;
  margin-right: 5px;
}
.btn-confirm:hover.with-icon {
  text-decoration: none;
}

.btn-change.with-icon {
  color: #E01500 !important;
  text-decoration: underline;
}
.btn-change.with-icon:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-wrong-mark.png");
  background-size: 11px 10px;
  width: 11px;
  height: 10px;
  margin-right: 5px;
}
.btn-change:hover.with-icon {
  text-decoration: none;
}

.btn-add.light {
  background: transparent;
  color: #88C543;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
}

.btn-search {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  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;
  border: 1px solid #87C543;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: rgb(255, 255, 255);
}
.btn-search:before {
  content: "";
  display: block;
  vertical-align: middle;
  background-image: url(../images/icon/ic-search-green.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
}
.btn-search:not(.collapsed) {
  background-color: #87C543;
}
.btn-search:not(.collapsed):before {
  background-image: url(../images/icon/ic-search04.png);
}

.btn-search-light {
  display: block;
  background-image: url(../images/icon/ic-search-green.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
}

.btn-light {
  background-color: rgb(255, 255, 255);
  border: 0.75px solid #E0E0E0 !important;
  color: #4F4F4F;
}
.btn-light:hover {
  background-color: #E0E0E0;
}
.btn-light.green {
  border: 0.75px solid #87C543 !important;
  color: #87C543 !important;
  background-color: rgb(255, 255, 255);
}
.btn-light.green:hover {
  background-color: #87C543 !important;
  color: rgb(255, 255, 255) !important;
}
.btn-light.bg-green {
  background-color: rgba(136, 197, 67, 0.15) !important;
  border: 0.75px solid #87C543 !important;
  color: #87C543 !important;
}
.btn-light.bg-green:hover, .btn-light.bg-green[aria-expanded=true] {
  background-color: #87C543 !important;
  color: rgb(255, 255, 255) !important;
}

.btn-green {
  background: #87C543;
  border: 0.75px solid #E0E0E0;
  color: rgb(255, 255, 255) !important;
}
.btn-green:hover {
  background: #72b12c;
}

.btn-link {
  color: #87C543 !important;
  text-decoration: underline !important;
}
.btn-link:hover {
  text-decoration: none !important;
}
.btn-link.c-gray {
  color: #444444 !important;
}

.btn-link-extra:hover {
  color: #87C543 !important;
}

.btn-radius {
  border-radius: 20px;
  min-width: 145px;
  height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.btn-upload:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/icon/ic-upload.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
  margin-right: 6px;
}
.btn-upload:hover:before {
  content: "";
  background-image: url(../images/icon/ic-upload-white.svg);
}

.button-group .btn {
  margin-left: 2px;
  margin-right: 2px;
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  min-width: 110px;
  height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
.button-group.extra .btn {
  min-width: 175px;
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .button-group.extra .btn {
    width: 45%;
    min-width: auto;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 374px) {
  .button-group.extra .btn {
    width: 40%;
    height: 45px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.form-control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.5px solid #BEBEBE;
  border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Prompt;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.form-control:hover, .form-control:focus {
  border: 0.5px solid #87C543 !important;
}
.form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #D2D2D2;
}
.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #D2D2D2;
}

.form-check-input {
  margin-top: 0.8rem;
}

.form-group label {
  color: #333333;
  font-size: 14px;
  font-size: 1.4rem;
}

.wrapper {
  position: relative;
  min-height: 100vh;
}

.wrapper-content {
  padding-top: 100px;
  padding-bottom: 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 992px) {
  .wrapper-content {
    padding-top: 160px;
    padding-bottom: 50px;
    min-height: 85vh;
  }
  .wrapper-content.bg-main3 {
    padding-top: 120px;
  }
}
.wrapper-content.extra {
  min-height: 85vh;
}
.wrapper-content.bg {
  background-image: url(../images/bg/bg-vector-green.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.logo {
  display: block;
  background-image: url("../images/logo-dss.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 246px;
  max-width: 100%;
  height: 66px;
}
@media only screen and (max-width: 1199px) {
  .logo {
    background-image: url("../images/logo-dss02.png");
    background-size: 60px;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -14px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.logo.circle {
  background-image: url("../images/logo-dss02.png");
  position: initial;
  top: initial;
  left: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}
.logo.text {
  background-image: url("../images/logo-dss-text.png");
  background-size: 284px 69px;
  width: 284px;
  height: 69px;
  position: initial;
  top: initial;
  left: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}
.logo.extra {
  background-image: url("../images/logo-dss.png");
  background-size: contain;
  width: 390px;
  height: 92px;
  position: initial;
  top: initial;
  left: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}
@media only screen and (max-width: 575px) {
  .logo.extra {
    background-image: url("../images/logo-dss02.png");
    background-size: 80px;
    width: 80px;
    height: 80px;
  }
}

.header-admin {
  position: absolute !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: -webkit-gradient(linear, left top, left bottom, from(#88C543), color-stop(287.18%, #5A9B48)), #88C543;
  background: -o-linear-gradient(top, #88C543 0%, #5A9B48 287.18%), #88C543;
  background: linear-gradient(180deg, #88C543 0%, #5A9B48 287.18%), #88C543;
  -webkit-box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.07);
          box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.07);
}
@media only screen and (max-width: 1199px) {
  .header {
    border-top: 5px solid #88C543;
  }
}
.header .header-menu {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .header .header-menu.active .logo {
    height: 62px;
    margin-top: 10px;
  }
}
.header .header-menu .hamburger {
  display: block;
  background: url("../images/icon/hamburger-white.png");
  background-size: 27px 20px;
  width: 27px;
  height: 20px;
  position: absolute;
  top: 25px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .hamburger {
    display: none;
  }
}
.header .header-menu .hamburger.active {
  background: url("../images/icon/ic-close-white.png");
  background-size: 20px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header .header-menu .header-row {
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .header-row {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-row {
    height: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .header-row .header-menu-col.left {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-row .header-menu-col.left {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .header-row .header-menu-col.right {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-row .header-menu-col.right {
    width: 100%;
  }
}
.header .header-menu .header-menu-list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header .header-menu .header-menu-list li {
  color: #444444;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  padding-left: 0;
  padding-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li {
    padding-left: 0;
    padding-right: 0;
  }
}
.header .header-menu .header-menu-list li a {
  color: #444444;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
}
.header .header-menu .header-menu-list li.active a, .header .header-menu .header-menu-list li:hover a {
  color: #BF1666;
}
.header .header-menu .header-menu-list li .dropdown-menu {
  top: 100%;
  left: 0;
  border-left: none !important;
  border-right: none !important;
  border-radius: none !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#88C543), color-stop(287.18%, #5A9B48)), #88C543;
  background: -o-linear-gradient(top, #88C543 0%, #5A9B48 287.18%), #88C543;
  background: linear-gradient(180deg, #88C543 0%, #5A9B48 287.18%), #88C543;
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list li .dropdown-menu {
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li .dropdown-menu {
    border-bottom: none;
    padding-left: 15px;
    width: 100%;
  }
}
.header .header-menu .header-menu-list li .dropdown-menu li {
  border-bottom: 1px solid #dee2e6;
}
.header .header-menu .header-menu-list li .dropdown-menu li:last-child {
  border-bottom: none;
}
.header .header-menu .header-menu-list li .dropdown-menu a {
  display: block;
  width: 100%;
  clear: both;
  white-space: normal;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #444444;
  background: transparent !important;
  padding: 10px 0;
}
.header .header-menu .header-menu-list li .dropdown-menu a:last-child {
  border-bottom: none;
}
.header .header-menu .header-menu-list li .dropdown-menu a:hover {
  color: #88C543;
}
.header .header-menu .header-menu-list li .dropdown-menu a.dropdown-toggle {
  display: block !important;
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li .dropdown-menu a.dropdown-toggle {
    border-bottom: 1px solid #dee2e6;
  }
}
.header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
  left: 100%;
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
    left: 0;
  }
}
.header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu .dropdown-toggle::after {
  float: right;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
    width: 50%;
  }
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu .dropdown-submenu {
    width: auto;
  }
}
.header .header-menu .header-menu-list.extra {
  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: 0;
}
.header .header-menu .header-menu-list.extra li {
  padding-left: 10px;
  padding-right: 10px;
}
.header .header-menu .header-menu-list .dropdown-menu.user {
  background: rgb(255, 255, 255) !important;
  -webkit-box-shadow: 0px 5px 12px rgba(81, 139, 242, 0.2);
          box-shadow: 0px 5px 12px rgba(81, 139, 242, 0.2);
  border-radius: 5px;
  padding: 5px;
  min-width: 160px;
  right: 0;
  left: auto;
}
.header .header-menu .header-menu-list .dropdown-menu.user a {
  color: #333333 !important;
  padding: 10px 15px;
}
.header .header-menu .header-menu-list .dropdown-menu.user a:hover {
  background-color: #D7EFBD !important;
  border-radius: 5px;
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .search-mb {
    display: block;
    background-image: url("../images/icon/ic-search03.png");
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .user-mb {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .user-mb {
    position: absolute;
    right: 0;
  }
}
.header .header-menu .nav-link-quest {
  padding-left: 15px;
  padding-right: 15px;
  color: #88C543 !important;
}
.header .menu-mb {
  padding: 10px 0;
}
@media only screen and (min-width: 1200px) {
  .header .menu-mb {
    display: none;
  }
}
.header .menu-mb a {
  background-color: transparent !important;
}
@media only screen and (max-width: 1199px) {
  .header .menu-mb.border-top {
    margin-top: 15px !important;
    padding-bottom: 0 !important;
  }
}
.header .noti-ic {
  display: block;
  background-image: url("../images/icon/ic-bell.png");
  background-repeat: no-repeat;
  background-size: 20px 23px;
  width: 20px;
  height: 23px;
  position: relative;
}
.header .noti-ic .noti-bullet {
  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: #F9DA02;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -7px;
  color: rgb(255, 255, 255);
  font-size: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding-top: 2px;
}
.header .user-img {
  display: block;
  background-color: #E0E0E0;
  border: 1px solid #87C543;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: 25px !important;
  background-repeat: no-repeat !important;
}
.header .signout {
  display: block;
  background-image: url("../images/icon/ic-signout.png");
  background-repeat: no-repeat;
  background-size: 23px 17px;
  width: 23px;
  height: 17px;
}
@media only screen and (max-width: 1199px) {
  .header.active {
    height: 100%;
  }
  .header.active .header-menu-list {
    display: block !important;
    position: absolute;
    left: 0;
    top: 20px;
    overflow-y: auto;
    width: 100%;
    height: calc(100vh - 140px);
  }
  .header.active .header-menu-list li {
    border-bottom: solid 1px #eee !important;
  }
  .header.active .header-menu-list li:last-child {
    border-bottom: none !important;
  }
  .header.active .header-menu-list li a {
    padding: 15px;
  }
  .header.active .header-top {
    display: block !important;
    height: 0;
    -webkit-box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.04);
            box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.04);
  }
  .header.active .header-top .disabled {
    position: absolute;
    bottom: 0;
    z-index: 100;
    background: rgb(255, 255, 255);
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header.active .header-top .disabled .topic-text {
    display: none;
  }
  .header.active .header-top .link {
    display: none !important;
  }
  .header.active .dividing-line {
    border-top: 1px solid #D8D8D8;
    padding-bottom: 0 !important;
    margin-top: 15px !important;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.header .search {
  width: 190px;
  float: right;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header .search {
    display: none;
  }
}
.header .search .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: 0.5px solid #333333 !important;
  border-radius: 15px !important;
  height: initial !important;
  color: rgb(0, 0, 0);
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: normal !important;
  padding-left: 30px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.header .search .form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.header .search .form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.header .search .form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.header .search .form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.header .search .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.header .search .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
  opacity: 0.5;
}
.header .search .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333333;
  opacity: 0.5;
}
.header .search .search-ic {
  background-image: url("../images/icon/ic-search02.png");
  background-size: 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header.header-dashboard {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.header.header-dashboard .logo {
  top: initial;
}
@media only screen and (min-width: 1200px) {
  .header.header-dashboard .logo {
    width: 225px;
    height: 52px;
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    position: fixed;
    left: 70px;
    top: 15px;
  }
}
.header.header-dashboard #show-sidebar {
  left: 30px;
}
.header.header-dashboard #show-sidebar .ic-hamburger {
  background: url(../images/icon/hamburger02.png);
  background-size: 29px 19px;
  width: 29px;
  height: 19px;
}
.header.header-dashboard #show-sidebar-admin {
  left: 30px;
}
.header.header-dashboard #show-sidebar-admin .ic-hamburger {
  background: url(../images/icon/hamburger02.png);
  background-size: 29px 19px;
  width: 29px;
  height: 19px;
}

@media only screen and (max-width: 1199px) {
  .navbar.navbar-expand-lg {
    width: 100%;
  }
}

.navbar .nav-item.active .dropdown-toggle {
  color: #88C543 !important;
}
.navbar .nav-item.active .nav-link {
  color: #F9DA02 !important;
  font-weight: 700;
}
.navbar .nav-item .nav-link {
  padding-top: 5px;
  padding-bottom: 5px;
}

@media only screen and (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
}

.navbar .nav-item.noti:hover .dropdown-menu {
  display: none;
}

.navbar .nav-item.noti.show:before {
  content: "";
  background-image: url(../images/icon/triangle.png);
  background-size: 19px 14px;
  width: 19px;
  height: 14px;
  position: absolute;
  bottom: -165%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
    display: block;
    width: 100%;
    border-top: none;
    border-bottom: none !important;
  }
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu a {
    border-bottom: none !important;
  }
}

.navbar-menu-list {
  position: absolute;
  right: 0;
}

@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list li .dropdown-menu li:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  right: 3px;
  top: 40%;
}
@media only screen and (max-width: 1199px) {
  .dropdown-submenu a::after {
    display: none;
  }
}

.dropdown-submenu:hover .dropdown-menu, .dropdown-submenu:focus .dropdown-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute !important;
  margin-top: -40px;
  left: 100%;
}

@media only screen and (max-width: 1199px) {
  .dropdown-toggle::after {
    float: right;
    margin-top: 5px;
  }
}

.header-top {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.04);
          box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.04);
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1199px) {
  .header-top {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .header-top.active {
    height: 0;
    position: relative;
    top: -100px;
  }
}
.header-top .header-top-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #FFFFFF;
  padding-left: 5px;
  padding-right: 5px;
}
.header-top .header-top-group:first-child {
  border-left: none;
  border-right: none;
}
.header-top .header-top-group:last-child {
  border-right: none;
}
.header-top .header-top-group ul {
  list-style: none;
  padding-left: 0;
}
.header-top .header-top-group ul li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  border-right: 1px solid #333333;
}
.header-top .header-top-group ul li:last-child {
  border-right: none;
}
.header-top .header-top-group ul li a {
  color: #333333;
}
.header-top .header-top-group ul li a:hover {
  color: #88C543;
}
.header-top .header-top-row {
  border-right: 1px solid #333333;
  padding-left: 5px;
  padding-right: 5px;
}
.header-top .header-top-row:last-child {
  border-right: none;
}
.header-top .topic-text {
  padding-right: 5px;
}
.header-top .lang {
  background-repeat: no-repeat;
  background-size: 28px 19px;
  width: 28px;
  height: 19px;
  margin-left: 8px;
  margin-right: 8px;
}
.header-top .lang.th {
  background-image: url(../images/icon/flag-th.png);
}
.header-top .lang.eng {
  background-image: url(../images/icon/flag-eng.png);
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#88C543), color-stop(287.18%, #5A9B48));
  background: -o-linear-gradient(top, #88C543 0%, #5A9B48 287.18%);
  background: linear-gradient(180deg, #88C543 0%, #5A9B48 287.18%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .footer {
    border-top: 5px solid #FFD900;
  }
}
.footer .footer-logo {
  display: block;
  background-image: url("../images/logo-dss.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 194px;
  max-width: 100%;
  height: 46px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .footer .footer-logo {
    width: 294px;
    height: 56px;
  }
}
.footer .footer-top {
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer .footer-top .footer-sub {
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-top .footer-sub {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.footer .footer-top .footer-sub h1 {
  font-size: 2rem !important;
  font-size: 20px !important;
  line-height: inherit !important;
  font-weight: 600;
}
.footer .footer-top .footer-sub h2 {
  font-size: 1.6rem !important;
  font-size: 16px !important;
  font-weight: 600;
}
.footer .footer-top .footer-sub p {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.4;
}
@media only screen and (min-width: 992px) {
  .footer .footer-top .footer-sub p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.footer .footer-top .footer-sub a {
  color: #444444;
}
.footer .footer-top .footer-sub a:hover {
  color: #88C543;
}
.footer .footer-top .footer-sub .social-group {
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 10px;
}
.footer .footer-top .footer-sub .social-group .social {
  width: 48px;
  width: 48px;
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (min-width: 768px) {
  .footer .footer-top .footer-sub:first-child {
    width: 25%;
  }
}
.footer .footer-top .footer-sub:first-child ul {
  padding-top: 10px;
}
.footer .footer-top .footer-sub:first-child ul li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  border-right: 1px solid rgba(68, 68, 68, 0.41);
  color: rgba(68, 68, 68, 0.41);
  font-size: 14px;
  font-size: 1.4rem;
}
.footer .footer-top .footer-sub:first-child ul li:last-child {
  border-bottom: none;
}
.footer .footer-top .footer-sub:first-child ul li.hide-border {
  border-right: none;
}
.footer .footer-top .footer-sub:first-child ul li a {
  color: rgba(68, 68, 68, 0.41);
}
.footer .footer-top .footer-sub:first-child ul li a:hover {
  color: #444444;
}
.footer .footer-top .footer-sub:first-child ul li img {
  width: 70px;
}
@media only screen and (min-width: 768px) {
  .footer .footer-top .footer-sub:nth-child(2) {
    width: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-top .footer-sub:nth-child(2) .social-item {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .footer .footer-top .footer-sub:last-child {
    width: 37%;
  }
}
.footer .copyright {
  font-size: 1.6rem !important;
  font-size: 16px !important;
  padding: 10px 0;
  border-top: 2px solid rgb(255, 255, 255);
}
.footer .copyright ul {
  padding-left: 0;
}
.footer .copyright ul li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  border-right: 1px solid rgb(255, 255, 255);
  font-size: 14px;
  font-size: 1.4rem;
}
.footer .copyright ul li:last-child {
  border-bottom: none;
}
.footer .copyright ul li.hide-border {
  border-right: none;
}
.footer .copyright ul li a {
  color: rgb(255, 255, 255);
}
.footer .copyright ul li a:hover {
  color: #444444;
}
.footer .copyright ul li img {
  width: 50px;
}
@media only screen and (max-width: 767px) {
  .footer .copyright ul li:last-child {
    width: 100%;
    padding-top: 5px;
  }
}
.footer a[href^=tel] {
  color: rgba(68, 68, 68, 0.41);
}

.wrapper-inner {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wrapper-inner {
    min-height: 100vh;
  }
}
.wrapper-inner.home:before {
  content: "";
  display: block;
  background: url(../images/img-network01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 943px;
  max-width: 100%;
  height: 685px;
  position: absolute;
  top: 0;
  left: 0;
}
.wrapper-inner.home:after {
  content: "";
  display: block;
  background: url(../images/img-network02.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
  width: 100%;
  padding-bottom: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.wrapper-inner.news:before {
  content: "";
  display: block;
  background: url(../images/bg/bg-news.jpg);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: cover;
  width: 100%;
  height: 85%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.wrapper-inner.pt {
  padding-top: 75px;
}
@media only screen and (min-width: 1200px) {
  .wrapper-inner.pt {
    padding-top: 120px;
  }
}
.wrapper-inner.bg-full {
  background-image: url(../images/bg/bg-full.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.wrapper-inner.bg-full-extra {
  background-image: url(../images/bg/bg-full02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

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: #444444;
  font-family: Prompt;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

html {
  position: relative;
  min-height: 100%;
}

label {
  font-family: Prompt;
  font-weight: 400;
}

select {
  background: url("../images/icon/arrow-down-gray.png") no-repeat right #ddd;
  background-size: 15px 10px;
  -webkit-appearance: none;
  background-position-x: 95%;
}

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 {
  color: initial;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -ms-flex: 0 0 16.6666%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666%;
    max-width: 16.6666%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

.c-black {
  color: rgb(0, 0, 0) !important;
}

.c-blue {
  color: #88C543 !important;
}

.c-gray {
  color: #444444 !important;
}

.c-graydark {
  color: #333333 !important;
}

.c-graylight {
  color: #B9B9B9 !important;
}

.c-green {
  color: #88C543 !important;
}

.c-greenlight {
  color: #87C543 !important;
}

.c-pink {
  color: #88C543 !important;
}

.c-white {
  color: rgb(255, 255, 255) !important;
}

.c-yellow {
  color: #F9DA02 !important;
}

.bg-pink {
  background: #88C543 !important;
}

.bg-gray {
  background: #F2F2F2 !important;
}

.bg-gray2 {
  background: #F3F3F3 !important;
}

.bg-green {
  background: #88C543 !important;
}

.bg-greenlight {
  background: #87C543 !important;
}

.bg-bluelight {
  background: #5CC0DE !important;
}

.bg-yellow {
  background: #F0AD4E !important;
}

.bg-red {
  background: #D9534F !important;
}

.bg-white {
  background: rgb(255, 255, 255) !important;
}

.bg-transparent {
  background: transparent !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.font-14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.font-16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.bg-blue {
  background: #88C543 !important;
}

.border-5 {
  border-radius: 5px !important;
}

.border-10 {
  border-radius: 10px !important;
}

.border-greenlight {
  border: 1px solid #87C543;
}

.border-left.darkgray {
  border-left: 1px solid #BDBDBD !important;
}

.border-top-dash {
  border-top: 1px dashed rgba(0, 0, 0, 0.22) !important;
}

.border-tl-radius-0 {
  border-top-left-radius: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #DADADA !important;
}
.border-bottom.green {
  border-bottom: 1px solid #87C543 !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.title-line-group {
  text-align: center;
}
.title-line-group .title-line {
  position: relative;
  display: inline-block;
}
.title-line-group .title-line .title {
  font-size: 24px;
  font-size: 2.4rem;
  color: rgba(68, 68, 68, 0.28);
  text-align: center;
  padding-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line .title {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.title-line-group .title-line:before {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  background: #444444;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line:before {
    width: 220px;
  }
}
.title-line-group .title-line:after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #88C543;
  position: absolute;
  bottom: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 5px solid rgb(255, 255, 255);
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line:after {
    bottom: -18%;
  }
}
.title-line-group .title-line.sm .title {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line.sm .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.title-line-group .title-line.sm:before {
  width: 100px;
}
@media only screen and (min-width: 576px) {
  .title-line-group .title-line.sm:before {
    width: 140px;
  }
}
.title-line-group .title-line.white:before {
  background: rgb(255, 255, 255);
}
.title-line-group .title-line.white:after {
  background: rgb(255, 255, 255);
  border-color: #88C543;
}

.title-group:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #88C543;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
}
.title-group.gray:after {
  background: #E0E0E0;
}
.title-group h1 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 576px) {
  .title-group h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mt-25 {
  margin-top: 25px !important;
}

.btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-primary {
  background: #88C543;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
  border-radius: 28px;
  border: 1px solid #88C543 !important;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgb(255, 255, 255) !important;
  padding: 5px 40px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #71AC2E;
}
.btn-primary.download:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-download.png");
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.btn-secondary {
  background: transparent;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.25);
  border: 1px solid #88C543 !important;
  border-radius: 28px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #88C543 !important;
  padding: 5px 40px;
}
.btn-secondary:hover {
  background: #88C543;
  color: rgb(255, 255, 255) !important;
}

.btn-style {
  border-radius: 30px;
  color: rgb(255, 255, 255) !important;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px;
}

.btn-view {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #88C543 !important;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.btn-view:hover {
  -webkit-text-decoration-line: none !important;
          text-decoration-line: none !important;
}

.btn-more {
  min-width: 95px;
  height: 28px;
  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;
  border: 1px solid #3074DB;
  -webkit-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #88C543 !important;
  padding-top: 5px;
}
.btn-more:hover {
  background: #88C543;
  color: rgb(255, 255, 255) !important;
}

.btn-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#88C543), color-stop(287.18%, #5A9B48)), #88C543;
  background: -o-linear-gradient(top, #88C543 0%, #5A9B48 287.18%), #88C543;
  background: linear-gradient(180deg, #88C543 0%, #5A9B48 287.18%), #88C543;
}
.btn-green:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#5fa60f), color-stop(287.18%, #5A9B48)), #88C543;
  background: -o-linear-gradient(top, #5fa60f 0%, #5A9B48 287.18%), #88C543;
  background: linear-gradient(180deg, #5fa60f 0%, #5A9B48 287.18%), #88C543;
}

.btn-yellow {
  background: #FFD900 !important;
}
.btn-yellow:hover {
  background: #EDA100 !important;
}

.btn-confirm.with-icon {
  color: #88C543 !important;
  text-decoration: underline;
}
.btn-confirm.with-icon:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-check-mark02.png");
  background-size: 13px 10px;
  width: 13px;
  height: 10px;
  margin-right: 5px;
}
.btn-confirm:hover.with-icon {
  text-decoration: none;
}

.btn-change.with-icon {
  color: #E01500 !important;
  text-decoration: underline;
}
.btn-change.with-icon:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-wrong-mark.png");
  background-size: 11px 10px;
  width: 11px;
  height: 10px;
  margin-right: 5px;
}
.btn-change:hover.with-icon {
  text-decoration: none;
}

.btn-add.light {
  background: transparent;
  color: #88C543;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
}

.btn-search {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  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;
  border: 1px solid #87C543;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.btn-search:before {
  content: "";
  display: block;
  vertical-align: middle;
  background-image: url(../images/icon/ic-search-green.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
}

.btn-search-light {
  display: block;
  background-image: url(../images/icon/ic-search-green.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
}

.btn-light {
  border: 0.75px solid #E0E0E0 !important;
  color: #4F4F4F;
}
.btn-light:hover {
  background-color: #E0E0E0;
}
.btn-light.green {
  border: 0.75px solid #87C543 !important;
  color: #87C543 !important;
  background-color: rgb(255, 255, 255);
}
.btn-light.green:hover {
  background-color: #87C543 !important;
  color: rgb(255, 255, 255) !important;
}
.btn-light.bd-gray {
  border: 0.75px solid #E0E0E0 !important;
}
.btn-light.bg-green {
  background-color: rgba(136, 197, 67, 0.15) !important;
  border: 0.75px solid #87C543 !important;
  color: #87C543 !important;
}
.btn-light.bg-green:hover, .btn-light.bg-green[aria-expanded=true] {
  background-color: #87C543 !important;
  color: rgb(255, 255, 255) !important;
}

.btn-green {
  background: #87C543;
  border: 0.75px solid #E0E0E0;
  color: rgb(255, 255, 255) !important;
}
.btn-green:hover {
  background: #72b12c;
}

.btn-link {
  color: #87C543 !important;
  text-decoration: underline !important;
}
.btn-link:hover {
  text-decoration: none !important;
}
.btn-link.c-gray {
  color: #444444 !important;
}
.btn-link.extra {
  text-decoration: none !important;
}
.btn-link.extra:hover {
  text-decoration: underline !important;
}

.btn-link-extra:hover {
  color: #87C543 !important;
}

.btn-radius {
  border-radius: 20px;
  min-width: 145px;
  height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.button-group .btn {
  margin-left: 2px;
  margin-right: 2px;
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  min-width: 110px;
  height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
.button-group.extra .btn {
  min-width: 175px;
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .button-group.extra .btn {
    width: 45%;
    min-width: auto;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 374px) {
  .button-group.extra .btn {
    width: 40%;
    height: 45px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.form-control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.5px solid #BEBEBE;
  border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Prompt;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.form-control:hover, .form-control:focus {
  border: 0.5px solid #87C543 !important;
}

.form-check-input {
  margin-top: 0.8rem;
}

.form-group label {
  color: #333333;
  font-size: 14px;
  font-size: 1.4rem;
}

.wrapper {
  position: relative;
  min-height: 100vh;
}

.wrapper-content {
  padding-top: 100px;
  padding-bottom: 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 992px) {
  .wrapper-content {
    padding-top: 160px;
    padding-bottom: 50px;
    min-height: 85vh;
  }
  .wrapper-content.bg-main3 {
    padding-top: 120px;
  }
}
.wrapper-content.extra {
  min-height: 85vh;
}
.wrapper-content.bg {
  background-image: url(../images/bg/bg-vector-green.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.logo {
  display: block;
  background-image: url("../images/logo-dss.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 230px;
  max-width: 100%;
  height: 80px;
}
@media only screen and (max-width: 1199px) {
  .logo {
    background-image: url("../images/logo-dss02.png");
    background-size: 60px;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -14px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.logo.circle {
  background-image: url("../images/logo-dss02.png");
  position: initial;
  top: initial;
  left: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}
.logo.text {
  background-image: url("../images/logo-dss-text.png");
  background-size: 284px 69px;
  width: 284px;
  height: 69px;
  position: initial;
  top: initial;
  left: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}
.logo.extra {
  background-image: url("../images/logo-dss.png");
  background-size: contain;
  width: 390px;
  height: 92px;
  position: initial;
  top: initial;
  left: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
}
@media only screen and (max-width: 575px) {
  .logo.extra {
    background-image: url("../images/logo-dss02.png");
    background-size: 80px;
    width: 80px;
    height: 80px;
  }
}

.header-admin {
  position: absolute !important;
}

@media only screen and (max-width: 1199px) {
  .navbar.navbar-expand-lg {
    width: 100%;
  }
}

.navbar .nav-item.active .dropdown-toggle {
  color: #88C543 !important;
}
.navbar .nav-item.active .nav-link {
  color: #F9DA02 !important;
  font-weight: 700;
}
.navbar .nav-item .nav-link {
  padding-top: 5px;
  padding-bottom: 5px;
}

@media only screen and (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
}

.navbar .nav-item.noti:hover .dropdown-menu {
  display: none;
}

.navbar .nav-item.noti.show:before {
  content: "";
  background-image: url(../images/icon/triangle.png);
  background-size: 19px 14px;
  width: 19px;
  height: 14px;
  position: absolute;
  bottom: -165%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu {
    display: block;
    width: 100%;
    border-top: none;
    border-bottom: none !important;
  }
  .header .header-menu .header-menu-list li .dropdown-menu .dropdown-menu a {
    border-bottom: none !important;
  }
}

.navbar-menu-list {
  position: absolute;
  right: 0;
}

@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list li .dropdown-menu li:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  right: 3px;
  top: 40%;
}
@media only screen and (max-width: 1199px) {
  .dropdown-submenu a::after {
    display: none;
  }
}

.dropdown-submenu:hover .dropdown-menu, .dropdown-submenu:focus .dropdown-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute !important;
  margin-top: -40px;
  left: 100%;
}

@media only screen and (max-width: 1199px) {
  .dropdown-toggle::after {
    float: right;
    margin-top: 5px;
  }
}

.header-top {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.04);
          box-shadow: 0px 3px 4px rgba(85, 86, 90, 0.04);
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1199px) {
  .header-top {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .header-top.active {
    height: 0;
    position: relative;
    top: -100px;
  }
}
.header-top .header-top-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #FFFFFF;
  padding-left: 5px;
  padding-right: 5px;
}
.header-top .header-top-group:first-child {
  border-left: none;
  border-right: none;
}
.header-top .header-top-group:last-child {
  border-right: none;
}
.header-top .header-top-group ul {
  list-style: none;
  padding-left: 0;
}
.header-top .header-top-group ul li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  border-right: 1px solid #333333;
}
.header-top .header-top-group ul li:last-child {
  border-right: none;
}
.header-top .header-top-group ul li a {
  color: #333333;
}
.header-top .header-top-group ul li a:hover {
  color: #88C543;
}
.header-top .header-top-row {
  border-right: 1px solid #333333;
  padding-left: 5px;
  padding-right: 5px;
}
.header-top .header-top-row:last-child {
  border-right: none;
}
.header-top .topic-text {
  padding-right: 5px;
}
.header-top .lang {
  background-repeat: no-repeat;
  background-size: 28px 19px;
  width: 28px;
  height: 19px;
  margin-left: 8px;
  margin-right: 8px;
}
.header-top .lang.th {
  background-image: url(../images/icon/flag-th.png);
}
.header-top .lang.eng {
  background-image: url(../images/icon/flag-eng.png);
}

.z-index {
  z-index: 1 !important;
}

.ic-style {
  display: inline-block !important;
  vertical-align: middle !important;
}

.ic-search {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-search.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 19px;
}

.ic-vdo {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-video.png");
  background-repeat: no-repeat;
  background-size: 32px 21px;
  width: 32px;
  height: 21px;
}

.ic-megaphone {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-megaphone.png");
  background-repeat: no-repeat;
  background-size: 46px;
  width: 46px;
  height: 46px;
}

.ic-man {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-man.png");
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
}

.ic-service {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-service.png");
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}

.ic-comment {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-comment.png");
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.ic-poll {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-poll.png");
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.ic-computer {
  display: block;
  background-image: url("../images/icon/ic-computer.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-city-hall {
  display: block;
  background-image: url("../images/icon/ic-city-hall.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-newspaper {
  display: block;
  background-image: url("../images/icon/ic-newspaper.png");
  background-repeat: no-repeat;
  background-size: 31px;
  width: 31px;
  height: 31px;
}

.ic-iso {
  display: block;
  background-image: url("../images/icon/iso.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-contact-book {
  display: block;
  background-image: url("../images/icon/ic-contact-book.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-iphone {
  display: block;
  background-image: url("../images/icon/iphone.png");
  background-repeat: no-repeat;
  background-size: 52px;
  width: 52px;
  height: 52px;
}

.photo-thumb {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 70%;
  background: #C2C2C2;
}
.photo-thumb.square {
  padding-bottom: 100%;
}
.photo-thumb.news {
  padding-bottom: 54.6%;
}
.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;
}

.btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-vote {
  background: #87C543;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(255, 255, 255) !important;
  padding: 5px 15px;
}
.btn-vote:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.txt-wrap {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.txt-wrap2 {
  word-break: break-word;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.txt-wrap3 {
  word-break: break-word;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.nav-link {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Prompt;
  padding: 20px;
  border: none;
  color: rgb(255, 255, 255) !important;
  text-transform: uppercase;
}
.nav-link.active, .nav-link:hover {
  color: #F9DA02 !important;
}

.tab-pane {
  padding-top: 25px;
  padding-bottom: 25px;
}

.list-group {
  list-style: none;
  padding: 0;
}
.list-group li {
  padding-left: 1.3em;
}
.list-group li:before {
  content: "-";
  display: inline-block;
  margin-left: -1.3em;
  /* same as padding-left set on li */
  width: 1.3em;
  /* same as padding-left set on li */
}

.date {
  font-size: 14px;
  font-size: 1.4rem;
}
.date:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-clock.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  margin-bottom: 2px;
}
.date.gray {
  color: rgba(68, 68, 68, 0.4) !important;
}
.date.gray:before {
  opacity: 0.4;
}

.view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.view:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-eye.png");
  background-repeat: no-repeat;
  background-size: 13px 8px;
  width: 13px;
  height: 8px;
  margin-right: 5px;
}

/* The container */
.radio-check {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-family: Prompt;
  font-size: 16px;
  font-size: 1.6rem;
  color: #444444;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid #444444;
}

/* When the radio button is checked, add a blue background */
.radio-check input:checked ~ .checkmark {
  background-color: #87C543;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-check .checkmark:after {
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
}

.progress {
  font-family: Prompt;
  font-size: 12px;
  font-size: 1.2rem;
  height: 2.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-prev {
  left: -5%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .slick-prev {
    left: -5px;
  }
}
.slick-prev:before {
  content: "";
  display: block;
  background-image: url("../images/icon/arrow-prev.png");
  background-repeat: no-repeat;
  background-size: 12px 24px;
  width: 12px;
  height: 24px;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .slick-prev:before {
    background-size: 18px 30px;
    width: 18px;
    height: 30px;
  }
}

.slick-next {
  right: -5%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .slick-next {
    right: -14px;
  }
}
.slick-next:before {
  content: "";
  display: block;
  background-image: url("../images/icon/arrow-next.png");
  background-repeat: no-repeat;
  background-size: 12px 24px;
  width: 12px;
  height: 24px;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .slick-next:before {
    background-size: 18px 30px;
    width: 18px;
    height: 30px;
  }
}

.tooltip-inner {
  font-size: 16px;
  font-size: 1.6rem;
}

.slick-dots {
  bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .slick-dots {
    bottom: 15px;
  }
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  font-size: 3rem;
}
@media only screen and (min-width: 768px) {
  .slick-dots li button:before {
    font-size: 40px;
    font-size: 4rem;
  }
}
.slick-dots li.slick-active button:before {
  color: #88C543;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media only screen and (min-width: 576px) {
  .table-wrapper .dataTables_info {
    float: right;
  }
}
@media only screen and (max-width: 575px) {
  .table-wrapper .dataTables_info {
    margin-bottom: 10px;
  }
}
.table-wrapper .dataTables_paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  float: none;
}
.table-wrapper .dataTables_length select {
  background-color: #EBE9F2;
  border: none !important;
  min-width: 70px;
  border-radius: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.table-wrapper .dataTables_scrollBody {
  border-bottom: none !important;
}
.table-wrapper .btn-green {
  min-height: 35px;
}

.pagination .page-item .page-link {
  background: transparent;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #444444;
  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;
  margin-left: 3px;
  margin-right: 3px;
}
.pagination .page-item .page-link.hide-hover {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
}
.pagination .page-item .page-link .first:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-first.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
}
.pagination .page-item .page-link .prev:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-prev.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
}
.pagination .page-item .page-link .next:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-next.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
}
.pagination .page-item .page-link .last:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-last.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
}
.pagination .page-item:hover .page-link, .pagination .page-item.active .page-link {
  color: rgb(255, 255, 255) !important;
  background: #F9DA02;
}
.pagination .paginate_button {
  padding: 5px 0px !important;
  margin-left: 0 !important;
  border: none !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important;
}
.pagination .paginate_button.page-item.first .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block !important;
  text-indent: -9999px;
  cursor: pointer;
  color: transparent !important;
}
.pagination .paginate_button.page-item.first .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-first.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination .paginate_button.page-item.previous .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block !important;
  text-indent: -9999px;
  cursor: pointer;
  color: transparent !important;
}
.pagination .paginate_button.page-item.previous .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-prev.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination .paginate_button.page-item.next .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block !important;
  text-indent: -9999px;
  cursor: pointer;
  color: transparent !important;
}
.pagination .paginate_button.page-item.next .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-next.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination .paginate_button.page-item.last .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block !important;
  text-indent: -9999px;
  cursor: pointer;
  color: transparent !important;
}
.pagination .paginate_button.page-item.last .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-last.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.txt-pagination {
  font-size: 14px;
  font-size: 1.4rem;
  color: #ABABAB;
}

.box-panel {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 25px 8%;
}
.box-panel .title {
  font-weight: 600;
}
.box-panel .title.md {
  font-size: 24px;
  font-size: 2.4rem;
}
.box-panel a {
  color: #444444;
}
.box-panel a:hover {
  color: #88C543;
}

.breadcrumb {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-size: 1.6rem;
}
.breadcrumb .breadcrumb-item:before {
  color: rgba(68, 68, 68, 0.29);
  content: ">";
}
.breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb .breadcrumb-item a {
  font-size: 16px;
  font-size: 1.6rem;
  color: rgba(68, 68, 68, 0.29);
}
.breadcrumb .breadcrumb-item a:hover {
  color: #88C543;
}

.slick-arrow-list {
  text-align: center;
  padding-top: 4%;
}
.slick-arrow-list .prev {
  display: inline-block;
  background-image: url(../images/icon/arrow-prev-gray.png);
  background-repeat: no-repeat;
  background-size: 12px 19px;
  width: 12px;
  height: 19px;
  cursor: pointer;
  margin-left: 15px;
  margin-right: 15px;
}
.slick-arrow-list .next {
  display: inline-block;
  background-image: url(../images/icon/arrow-next-gray.png);
  background-repeat: no-repeat;
  background-size: 12px 19px;
  width: 12px;
  height: 19px;
  cursor: pointer;
  margin-left: 15px;
  margin-right: 15px;
}

.modal-primary .modal-content {
  border-radius: 5px;
  padding: 5px 25px 25px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 125%;
}
.modal-primary .modal-content .modal-title {
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 224.25%;
}
.modal-primary .modal-content h6 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 154.75%;
  color: #444444;
}
.modal-primary .modal-content p {
  color: rgba(68, 68, 68, 0.55);
}
.modal-primary .modal-content a {
  display: block;
  color: #88C543;
  text-decoration: underline;
}
.modal-primary .modal-content a:hover {
  text-decoration: none;
}
.modal-primary .modal-content .content-group {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.22);
  padding-top: 20px;
  padding-bottom: 25px;
}
.modal-primary .modal-content .content-group:last-child {
  border-bottom: none;
}
.modal-primary .modal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-primary .modal-header .close {
  display: block;
  background: url(../images/icon/ic-close02.png);
  background-repeat: no-repeat;
  background-size: 23px;
  width: 23px;
  height: 23px;
  outline: none !important;
  border: none !important;
  opacity: 1;
}
.modal-primary .modal-header .close span {
  display: none;
}
.modal-primary .modal-footer > * {
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
}
.modal-primary.modal-box .modal-title {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 224.3%;
}
.modal-primary.modal-box .c-gray {
  color: #BDBDBD !important;
}
.modal-primary.modal-box .btn-secondary {
  min-width: 140px;
}
.modal-primary.modal-alert .modal-dialog {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 576px) {
  .modal-primary.modal-alert .modal-dialog {
    max-width: 300px;
  }
}
.modal-primary.modal-alert .modal-content {
  padding-top: 25px;
  padding-bottom: 25px;
}
.modal-primary .btn-green {
  min-width: 135px;
  min-height: 40px;
}

.modal-landing {
  background: #FAE093;
}
.modal-landing .modal-content {
  background: #FAE093;
  border: none;
}
.modal-landing .modal-content .btn-primary {
  position: absolute;
  bottom: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #F5F6FA;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .modal-landing .modal-content .btn-primary {
    bottom: 5%;
  }
}
@media only screen and (max-width: 374px) {
  .modal-landing .modal-content .btn-primary {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1440px) {
  .modal-landing .modal-content img {
    height: 100vh;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 575px) {
  .modal-landing .modal-content img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-width: 1200px) {
  .modal-search {
    display: none !important;
  }
}
.modal-search .modal-dialog {
  max-width: 100%;
  top: 75px;
  margin: 0;
}
.modal-search .modal-dialog .modal-content {
  border-radius: 0 !important;
  border: none;
  padding: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal-search .search .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: 0.5px solid #333333 !important;
  border-radius: 15px !important;
  height: initial !important;
  color: rgb(0, 0, 0);
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: normal !important;
  padding-left: 30px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.modal-search .search .form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
  opacity: 0.5;
}
.modal-search .search .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333333;
  opacity: 0.5;
}
.modal-search .search .search-ic {
  background-image: url("../images/icon/ic-search02.png");
  background-size: 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.modal-open-search .header {
  z-index: 1050;
}

@media only screen and (min-width: 576px) {
  .modal-custom .modal-header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.modal-custom .modal-header .modal-title {
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (min-width: 576px) {
  .modal-custom .modal-body {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.modal-custom .modal-body p, .modal-custom .modal-body ul, .modal-custom .modal-body ol {
  line-height: 1.4;
}
.modal-custom .modal-footer .btn {
  border-radius: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 10px;
  margin-left: 8px;
  margin-right: 8px;
}
@media only screen and (min-width: 576px) {
  .modal-custom .modal-footer .btn {
    min-width: 160px;
  }
}
@media only screen and (max-width: 576px) {
  .modal-custom .modal-footer .btn {
    width: 45%;
  }
}
.modal-custom .modal-footer .btn.btn-light {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border: 1px solid #E0E0E0;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  .modal-custom .modal-footer .btn.btn-light {
    width: 200px;
  }
}
.modal-custom .modal-footer .btn.btn-light:hover {
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.modal-custom .modal-footer .btn.modal-primaty {
  background-color: #88C543;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal-custom .modal-footer .btn.modal-primaty:hover {
  background: #71AC2E;
  color: rgb(255, 255, 255);
}

.custom-checkbox .custom-control-label {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
  padding-left: 15px;
  padding-top: 4px;
  line-height: 1.2;
}
.custom-checkbox .custom-control-label::before {
  top: 0.12rem;
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 0.5px solid #8A8A8A !important;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #87C543 !important;
  background-color: #87C543 !important;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  top: 0.1rem;
  left: -1.3rem;
  width: 15px;
  height: 21px;
  background-size: 15px 21px;
}
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(135, 197, 67, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(135, 197, 67, 0.25);
}
.custom-checkbox.sm .custom-control-label {
  padding-left: 8px;
  padding-top: 0;
}
.custom-checkbox.sm .custom-control-label::before {
  top: 0.12rem;
  width: 14px;
  height: 14px;
}
.custom-checkbox.sm .custom-control-input:checked ~ .custom-control-label::after {
  top: 0.1rem;
  left: -1.3rem;
  width: 10px;
  height: 15px;
  background-size: 10px 15px;
}

.calendar-custom .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
  }
}
.calendar-custom .fc .fc-toolbar-title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444444;
  font-weight: 700;
}
.calendar-custom .fc .fc-button-primary {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #D1D1D1;
  font-size: 16px;
  font-size: 1.6rem;
}
.calendar-custom .fc .fc-button-primary:not(:disabled).fc-button-active {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #88C543;
  font-size: 16px;
  font-size: 1.6rem;
}
.calendar-custom .fc .fc-button .fc-icon {
  background: #87C540;
  color: #444444;
  font-weight: 500;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  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;
}
.calendar-custom .fc .fc-button .fc-icon-chevron-left:before {
  color: rgb(255, 255, 255);
}
.calendar-custom .fc .fc-button .fc-icon-chevron-right:before {
  color: rgb(255, 255, 255);
}
.calendar-custom .fc .fc-prevYear-button {
  display: none;
}
.calendar-custom .fc .fc-nextYear-button {
  display: none;
}
.calendar-custom .fc .fc-today-button {
  display: none;
}
.calendar-custom .fc .fc-button-group .fc-dayGridMonth-button {
  display: none;
}
.calendar-custom .fc .fc-button-group .fc-dayGridWeek-button {
  display: none;
}
.calendar-custom .fc .fc-button-group .fc-dayGridDay-button {
  display: none;
}
.calendar-custom .fc .fc-view-harness {
  background: rgb(255, 255, 255);
  overflow: hidden;
}
.calendar-custom .fc .fc-col-header-cell {
  padding: 5px;
  text-align: right;
}
@media only screen and (min-width: 576px) {
  .calendar-custom .fc .fc-col-header-cell {
    padding: 20px;
  }
}
.calendar-custom .fc .fc-col-header-cell .fc-col-header-cell-cushion {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}
.calendar-custom .fc .fc-scrollgrid {
  border: 0px;
}
.calendar-custom .fc .fc-col-header th {
  border: 0px;
  border-bottom: 1px solid #ddd;
}
.calendar-custom .fc .fc-daygrid-day-frame {
  padding: 10px;
}
@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-daygrid-day-frame {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.calendar-custom .fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(100, 149, 237, 0.15);
}
.calendar-custom .fc .fc-h-event {
  border: 0px;
  background-color: #88C543;
  padding: 5px 10px;
}
.calendar-custom .fc .fc-popover-header {
  padding: 10px 4px 5px;
}
.calendar-custom .fc .fc-popover-close {
  margin-top: -5px;
}
.calendar-custom .fc .fc-more-popover .fc-popover-body {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-toolbar.fc-header-toolbar {
    display: inline-block;
    text-align: center;
  }
  .calendar-custom .fc .fc-toolbar-chunk {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .calendar-custom .fc .fc-daygrid-more-link {
    font-size: 9px;
    font-size: 0.9rem;
    margin-top: 5px;
    bottom: 5px;
  }
}

.table {
  margin-bottom: 0;
}
.table.fixed {
  table-layout: fixed;
}
.table.fixed td {
  overflow: hidden;
}

/* width */
.scrollbar::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
  background: #88C543;
}
.scrollbar.gray::-webkit-scrollbar-track {
  background: #F9F9F9;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
  background: #1554B5;
}
.scrollbar.gray::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
}

.datepicker.datepicker-dropdown {
  font-size: 1.4rem;
}

.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  color: #BDBDBD;
}
.breadcrumb .breadcrumb-item:before {
  color: #BDBDBD;
  content: "-";
}
.breadcrumb .breadcrumb-item.active {
  color: #BDBDBD;
}
.breadcrumb .breadcrumb-item.active .c-blue {
  padding-left: 10px;
}
.breadcrumb .ic-search-sm {
  margin-right: 0;
  margin-top: 2px;
}

.progress-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.progress-container .progress {
  width: 100%;
  height: 1.2rem;
}
.progress-container .progress .progress-bar {
  background-color: #88C543;
  border-radius: 50px;
}
.progress-container .progress-text {
  padding-left: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}

.dropdown-more .dropdown-menu {
  border: none;
  -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
}
.dropdown-more .dropdown-menu .dropdown-item {
  border-bottom: 1px dashed #CCCCCC;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}
.dropdown-more .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.card-effect h3 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-effect:hover h3 {
  color: #87C543 !important;
}
.card-effect:hover .photo-thumb .photo {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.card-primary {
  -webkit-box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
}
.card-primary .card-header {
  background-color: rgb(255, 255, 255);
}
.card-primary .card-body {
  padding: 15px;
}
.card-primary .card-footer {
  background-color: rgb(255, 255, 255);
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
.card-primary h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #444444 !important;
}
.card-primary .text-sm {
  font-size: 12px;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.26);
}
@media only screen and (max-width: 414px) {
  .card-primary .text-sm {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.card-primary p {
  color: #444444;
}
.card-primary .txt-wrap2 {
  max-height: 53px;
}
@media only screen and (max-width: 575px) {
  .card-primary.px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.card-primary.news {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 576px) {
  .card-primary.news {
    padding-left: 65px;
    padding-right: 65px;
  }
}

.card-collapse {
  border: 1px solid #DADADA;
  border-radius: 10px;
  padding: 10px 15px;
}
@media only screen and (min-width: 768px) {
  .card-collapse {
    padding: 30px 40px;
  }
}
.card-collapse .card-header {
  border-bottom: none;
}
.card-collapse .card-header h5 {
  font-size: 14px;
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-collapse .card-header h5:hover {
  color: #87C543 !important;
}
.card-collapse .card-body {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.4;
  font-size: 14px;
  font-size: 1.4rem;
}
.card-collapse .card-body .btn-style {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 15px;
}
@media only screen and (min-width: 768px) {
  .card-collapse .card-body .btn-style {
    padding: 10px 25px;
  }
}
.card-collapse .card-body .dropdown-menu {
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  width: 95%;
  margin-top: 0;
  border: 0.75px solid #87C543 !important;
  color: #87C543 !important;
  padding: 10px;
}
.card-collapse .card-body .dropdown-menu .dropdown-item {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #333333;
}
.card-collapse .card-body .dropdown-menu .dropdown-item:hover {
  background-color: #D7EFBD !important;
  border-radius: 5px !important;
}
@media only screen and (max-width: 1199px) {
  .card-collapse .card-body .dropdown-toggle::after {
    margin-top: 8px;
  }
}
.card-collapse .card-body .dropdown-collapse {
  position: relative;
}
.card-collapse .accordion-button::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 13px;
  margin-left: auto;
  content: "";
  display: block;
  background-image: url(../images/icon/ic-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 20px 13px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.card-collapse .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (min-width: 576px) {
  .card-collapse .button-collapse-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (max-width: 991px) {
  .card-collapse .button-collapse-group {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (max-width: 575px) {
  .card-collapse .button-collapse-group .btn-style {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

#collapseSearch {
  margin-top: 20px;
}

.badge-primary {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  padding: 8px 15px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.badge-primary.bg-green-gradient {
  background: -webkit-gradient(linear, left bottom, left top, from(#87C543), to(#87C543)), #C4C4C4;
  background: -o-linear-gradient(bottom, #87C543, #87C543), #C4C4C4;
  background: linear-gradient(0deg, #87C543, #87C543), #C4C4C4;
}
.badge-primary.bg-green-gradient:hover {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08) !important;
}

.breadcrumb-primary {
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.breadcrumb-primary .breadcrumb-item {
  padding-left: 5px;
  padding-right: 5px;
}
.breadcrumb-primary .breadcrumb-item.active {
  color: #BDBDBD;
}
.breadcrumb-primary .breadcrumb-item .home {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-home.png");
  background-repeat: no-repeat;
  background-size: 18px 13px;
  width: 18px;
  height: 13px;
}
.breadcrumb-primary .breadcrumb-item + .breadcrumb-item::before {
  content: "-";
  color: #BDBDBD;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-primary.hide-mb {
    border-left: none !important;
    padding-left: 0 !important;
  }
  .breadcrumb-primary.hide-mb .breadcrumb-item {
    padding-left: 0;
  }
}

.arrow-search {
  display: block;
  background-image: url("../images/icon/triangle-up.png");
  background-repeat: no-repeat;
  background-size: 25px 15px;
  width: 25px;
  height: 15px;
  margin-left: auto;
  margin-right: 5%;
}
@media only screen and (min-width: 768px) {
  .arrow-search {
    margin-right: 1%;
  }
}

.content-editor img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav-tabs-primary {
  background: #F3F3F3;
  border-radius: 32px;
  border-bottom: 0;
}
.nav-tabs-primary .nav-link {
  background-color: transparent !important;
  border: none;
  text-align: center;
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .nav-tabs-primary .nav-link {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .nav-tabs-primary .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.nav-tabs-primary .nav-link.active {
  color: #87C543 !important;
}

.table-main {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.table-main.dataTable th, .table-main.dataTable td {
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #ddd !important
}
.table-main.dataTable th:last-child, .table-main.dataTable td:last-child {
  border-right: 0 !important
}
.table-main.fixed {
  table-layout: fixed;
}
.table-main.fixed td {
  vertical-align: middle;
  overflow: hidden;
}

.table-main .sum {
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 5px;
  background-color: #f8f9fa;
  color: #87C543 !important;
  font-weight: 700;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
  background-color: #F8F8F8;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}

.dataTable {
  border-bottom: none !important;
}
.dataTable thead th {
  border: none;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #444444;
}
.dataTable thead th.hide-sorting::before, .dataTable thead th.hide-sorting::after {
  opacity: 0 !important;
  display: none !important;
}
.dataTable thead tr.bg-greenlight {
  background: #D7EFBD !important;
}
.dataTable thead tr.bg-greenlight th {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.dataTable tbody td {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  color: rgb(0, 0, 0);
}
.dataTable tbody tr:first-child td {
  border-top: none !important;
}
.dataTable td, .dataTable th {
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  vertical-align: middle;
  line-height: 1.4;
}

.z-index {
  z-index: 1 !important;
}

.ic-style {
  display: inline-block !important;
  vertical-align: middle !important;
}

.ic-search {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-search.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 19px;
}

.ic-vdo {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-video.png");
  background-repeat: no-repeat;
  background-size: 32px 21px;
  width: 32px;
  height: 21px;
}

.ic-megaphone {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-megaphone.png");
  background-repeat: no-repeat;
  background-size: 46px;
  width: 46px;
  height: 46px;
}

.ic-man {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-man.png");
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
}

.ic-service {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-service.png");
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}

.ic-comment {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-comment.png");
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.ic-poll {
  display: block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-poll.png");
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.ic-computer {
  display: block;
  background-image: url("../images/icon/ic-computer.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-city-hall {
  display: block;
  background-image: url("../images/icon/ic-city-hall.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-newspaper {
  display: block;
  background-image: url("../images/icon/ic-newspaper.png");
  background-repeat: no-repeat;
  background-size: 31px;
  width: 31px;
  height: 31px;
}

.ic-iso {
  display: block;
  background-image: url("../images/icon/iso.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-contact-book {
  display: block;
  background-image: url("../images/icon/ic-contact-book.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
}

.ic-iphone {
  display: block;
  background-image: url("../images/icon/iphone.png");
  background-repeat: no-repeat;
  background-size: 52px;
  width: 52px;
  height: 52px;
}

.photo-thumb {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 70%;
  background: #C2C2C2;
}
.photo-thumb.square {
  padding-bottom: 100%;
}
.photo-thumb.news {
  padding-bottom: 54.6%;
}
.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;
}

.btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-vote {
  background: #87C543;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(255, 255, 255) !important;
  padding: 5px 15px;
}
.btn-vote:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.txt-wrap {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.txt-wrap2 {
  word-break: break-word;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.txt-wrap3 {
  word-break: break-word;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.nav-link {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Prompt;
  padding: 20px;
  border: none;
  color: rgb(255, 255, 255) !important;
  text-transform: uppercase;
}
.nav-link.active, .nav-link:hover {
  color: #F9DA02 !important;
}

.tab-pane {
  padding-top: 25px;
  padding-bottom: 25px;
}

.list-group {
  list-style: none;
  padding: 0;
}
.list-group li {
  padding-left: 1.3em;
}
.list-group li:before {
  content: "-";
  display: inline-block;
  margin-left: -1.3em;
  /* same as padding-left set on li */
  width: 1.3em;
  /* same as padding-left set on li */
}

.date {
  font-size: 14px;
  font-size: 1.4rem;
}
.date:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-clock.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  margin-bottom: 2px;
}
.date.gray {
  color: rgba(68, 68, 68, 0.4) !important;
}
.date.gray:before {
  opacity: 0.4;
}

.view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.view:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-eye.png");
  background-repeat: no-repeat;
  background-size: 13px 8px;
  width: 13px;
  height: 8px;
  margin-right: 5px;
}

/* The container */
.radio-check {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-family: Prompt;
  font-size: 16px;
  font-size: 1.6rem;
  color: #444444;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid #444444;
}

/* When the radio button is checked, add a blue background */
.radio-check input:checked ~ .checkmark {
  background-color: #87C543;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-check .checkmark:after {
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
}

.custom-radio {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 15px;
}
.custom-radio .custom-control-label {
  padding-left: 15px;
}
.custom-radio .custom-control-label::before {
  width: 22px;
  height: 22px;
  top: -0.4rem;
  border: 1px solid #878787 !important;
  background-color: rgb(255, 255, 255) !important;
}
.custom-radio .custom-control-label:after {
  top: 0.01rem;
  left: -1.1rem;
  width: 14px;
  height: 14px;
  background-size: 14px;
  border-radius: 50%;
  background-image: none !important;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 4px rgba(135, 197, 61, 0.6);
          box-shadow: 0 0 4px rgba(135, 197, 61, 0.6);
}
.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
  background-color: #87C543;
}

.progress {
  font-family: Prompt;
  font-size: 12px;
  font-size: 1.2rem;
  height: 2.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-prev {
  left: -5%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .slick-prev {
    left: -5px;
  }
}
.slick-prev:before {
  content: "";
  display: block;
  background-image: url("../images/icon/arrow-prev.png");
  background-repeat: no-repeat;
  background-size: 12px 24px;
  width: 12px;
  height: 24px;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .slick-prev:before {
    background-size: 18px 30px;
    width: 18px;
    height: 30px;
  }
}

.slick-next {
  right: -5%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .slick-next {
    right: -14px;
  }
}
.slick-next:before {
  content: "";
  display: block;
  background-image: url("../images/icon/arrow-next.png");
  background-repeat: no-repeat;
  background-size: 12px 24px;
  width: 12px;
  height: 24px;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .slick-next:before {
    background-size: 18px 30px;
    width: 18px;
    height: 30px;
  }
}

.tooltip-inner {
  font-size: 16px;
  font-size: 1.6rem;
}

.slick-dots {
  bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .slick-dots {
    bottom: 15px;
  }
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  font-size: 3rem;
}
@media only screen and (min-width: 768px) {
  .slick-dots li button:before {
    font-size: 40px;
    font-size: 4rem;
  }
}
.slick-dots li.slick-active button:before {
  color: #88C543;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media only screen and (min-width: 576px) {
  .table-wrapper .dataTables_info {
    float: right;
  }
}
@media only screen and (max-width: 575px) {
  .table-wrapper .dataTables_info {
    margin-bottom: 10px;
  }
}
.table-wrapper .dataTables_paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  float: none;
}
.table-wrapper .dataTables_length select {
  background-color: #EBE9F2;
  border: none !important;
  min-width: 70px;
  border-radius: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.table-wrapper .btn-green {
  min-height: 35px;
}

.pagination .page-item .page-link {
  background: transparent;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #444444;
  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;
  margin-left: 3px;
  margin-right: 3px;
}
.pagination .page-item .page-link.hide-hover {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
}
.pagination .page-item .page-link .first:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-first.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
}
.pagination .page-item .page-link .prev:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-prev.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
}
.pagination .page-item .page-link .next:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-next.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
}
.pagination .page-item .page-link .last:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-last.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
}
.pagination .page-item:hover .page-link, .pagination .page-item.active .page-link {
  color: rgb(255, 255, 255) !important;
  background: #F9DA02;
}
.pagination .paginate_button {
  padding: 5px 0px !important;
  margin-left: 0 !important;
  border: none !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important;
}
.pagination .paginate_button.page-item.first .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  text-indent: -9999px;
  cursor: pointer;
}
.pagination .paginate_button.page-item.first .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-first.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
}
.pagination .paginate_button.page-item.previous .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  text-indent: -9999px;
  cursor: pointer;
}
.pagination .paginate_button.page-item.previous .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-prev.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
}
.pagination .paginate_button.page-item.next .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  text-indent: -9999px;
  cursor: pointer;
}
.pagination .paginate_button.page-item.next .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-next.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  width: 6px;
  height: 11px;
}
.pagination .paginate_button.page-item.last .page-link {
  background-color: #EBE9F2 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  text-indent: -9999px;
  cursor: pointer;
}
.pagination .paginate_button.page-item.last .page-link:before {
  content: "";
  display: block;
  background-color: #EBE9F2;
  background-image: url(../images/icon/page-last.png);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  width: 12px;
  height: 11px;
}

.txt-pagination {
  font-size: 14px;
  font-size: 1.4rem;
  color: #ABABAB;
}

.box-panel {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 25px 8%;
}
.box-panel .title {
  font-weight: 600;
}
.box-panel .title.md {
  font-size: 24px;
  font-size: 2.4rem;
}
.box-panel a {
  color: #444444;
}
.box-panel a:hover {
  color: #88C543;
}

.breadcrumb {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-size: 1.6rem;
}
.breadcrumb .breadcrumb-item:before {
  color: rgba(68, 68, 68, 0.29);
  content: ">";
}
.breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb .breadcrumb-item a {
  font-size: 16px;
  font-size: 1.6rem;
  color: rgba(68, 68, 68, 0.29);
}
.breadcrumb .breadcrumb-item a:hover {
  color: #88C543;
}

.slick-arrow-list {
  text-align: center;
  padding-top: 4%;
}
.slick-arrow-list .prev {
  display: inline-block;
  background-image: url(../images/icon/arrow-prev-gray.png);
  background-repeat: no-repeat;
  background-size: 12px 19px;
  width: 12px;
  height: 19px;
  cursor: pointer;
  margin-left: 15px;
  margin-right: 15px;
}
.slick-arrow-list .next {
  display: inline-block;
  background-image: url(../images/icon/arrow-next-gray.png);
  background-repeat: no-repeat;
  background-size: 12px 19px;
  width: 12px;
  height: 19px;
  cursor: pointer;
  margin-left: 15px;
  margin-right: 15px;
}

.modal-primary .modal-content {
  border-radius: 5px;
  padding: 5px 25px 25px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 125%;
}
.modal-primary .modal-content .modal-title {
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 224.25%;
}
.modal-primary .modal-content h6 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 154.75%;
  color: #444444;
}
.modal-primary .modal-content p {
  color: rgba(68, 68, 68, 0.55);
}
.modal-primary .modal-content a {
  display: block;
  color: #88C543;
  text-decoration: underline;
}
.modal-primary .modal-content a:hover {
  text-decoration: none;
}
.modal-primary .modal-content .content-group {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.22);
  padding-top: 20px;
  padding-bottom: 25px;
}
.modal-primary .modal-content .content-group:last-child {
  border-bottom: none;
}
.modal-primary .modal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-primary .modal-header .close {
  display: block;
  background: url(../images/icon/ic-close02.png);
  background-repeat: no-repeat;
  background-size: 23px;
  width: 23px;
  height: 23px;
  outline: none !important;
  border: none !important;
  opacity: 1;
}
.modal-primary .modal-header .close span {
  display: none;
}
.modal-primary .modal-footer > * {
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
}
.modal-primary.modal-box .modal-title {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 224.3%;
}
.modal-primary.modal-box .c-gray {
  color: #BDBDBD !important;
}
.modal-primary.modal-box .btn-secondary {
  min-width: 140px;
}
.modal-primary .btn-green {
  min-width: 135px;
  min-height: 40px;
}

.modal-landing {
  background: #FAE093;
}
.modal-landing .modal-content {
  background: #FAE093;
  border: none;
}
.modal-landing .modal-content .btn-primary {
  position: absolute;
  bottom: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #F5F6FA;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .modal-landing .modal-content .btn-primary {
    bottom: 5%;
  }
}
@media only screen and (max-width: 374px) {
  .modal-landing .modal-content .btn-primary {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1440px) {
  .modal-landing .modal-content img {
    height: 100vh;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 575px) {
  .modal-landing .modal-content img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-width: 1200px) {
  .modal-search {
    display: none !important;
  }
}
.modal-search .modal-dialog {
  max-width: 100%;
  top: 75px;
  margin: 0;
}
.modal-search .modal-dialog .modal-content {
  border-radius: 0 !important;
  border: none;
  padding: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal-search .search .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: 0.5px solid #333333 !important;
  border-radius: 15px !important;
  height: initial !important;
  color: rgb(0, 0, 0);
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: normal !important;
  padding-left: 30px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.modal-search .search .form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 0.5;
  /* Firefox */
}
.modal-search .search .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
  opacity: 0.5;
}
.modal-search .search .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333333;
  opacity: 0.5;
}
.modal-search .search .search-ic {
  background-image: url("../images/icon/ic-search02.png");
  background-size: 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.modal-open-search .header {
  z-index: 1050;
}

@media only screen and (min-width: 576px) {
  .modal-custom .modal-header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.modal-custom .modal-header .modal-title {
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (min-width: 576px) {
  .modal-custom .modal-body {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.modal-custom .modal-body p, .modal-custom .modal-body ul, .modal-custom .modal-body ol {
  line-height: 1.4;
}
.modal-custom .modal-footer .btn {
  border-radius: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 10px;
  margin-left: 8px;
  margin-right: 8px;
}
@media only screen and (min-width: 576px) {
  .modal-custom .modal-footer .btn {
    min-width: 160px;
  }
}
@media only screen and (max-width: 576px) {
  .modal-custom .modal-footer .btn {
    width: 45%;
  }
}
.modal-custom .modal-footer .btn.btn-light {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border: 1px solid #E0E0E0;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  .modal-custom .modal-footer .btn.btn-light {
    width: 200px;
  }
}
.modal-custom .modal-footer .btn.btn-light:hover {
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.modal-custom .modal-footer .btn.modal-primaty {
  background-color: #88C543;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal-custom .modal-footer .btn.modal-primaty:hover {
  background: #71AC2E;
  color: rgb(255, 255, 255);
}

.calendar-custom .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
  }
}
.calendar-custom .fc .fc-toolbar-title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444444;
  font-weight: 700;
}
.calendar-custom .fc .fc-button-primary {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #D1D1D1;
  font-size: 16px;
  font-size: 1.6rem;
}
.calendar-custom .fc .fc-button-primary:not(:disabled).fc-button-active {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #88C543;
  font-size: 16px;
  font-size: 1.6rem;
}
.calendar-custom .fc .fc-button .fc-icon {
  background: #87C540;
  color: #444444;
  font-weight: 500;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  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;
}
.calendar-custom .fc .fc-button .fc-icon-chevron-left:before {
  color: rgb(255, 255, 255);
}
.calendar-custom .fc .fc-button .fc-icon-chevron-right:before {
  color: rgb(255, 255, 255);
}
.calendar-custom .fc .fc-prevYear-button {
  display: none;
}
.calendar-custom .fc .fc-nextYear-button {
  display: none;
}
.calendar-custom .fc .fc-today-button {
  display: none;
}
.calendar-custom .fc .fc-button-group .fc-dayGridMonth-button {
  display: none;
}
.calendar-custom .fc .fc-button-group .fc-dayGridWeek-button {
  display: none;
}
.calendar-custom .fc .fc-button-group .fc-dayGridDay-button {
  display: none;
}
.calendar-custom .fc .fc-view-harness {
  background: rgb(255, 255, 255);
  overflow: hidden;
}
.calendar-custom .fc .fc-col-header-cell {
  padding: 5px;
  text-align: right;
}
@media only screen and (min-width: 576px) {
  .calendar-custom .fc .fc-col-header-cell {
    padding: 20px;
  }
}
.calendar-custom .fc .fc-col-header-cell .fc-col-header-cell-cushion {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}
.calendar-custom .fc .fc-scrollgrid {
  border: 0px;
}
.calendar-custom .fc .fc-col-header th {
  border: 0px;
  border-bottom: 1px solid #ddd;
}
.calendar-custom .fc .fc-daygrid-day-frame {
  padding: 10px;
}
@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-daygrid-day-frame {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.calendar-custom .fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(100, 149, 237, 0.15);
}
.calendar-custom .fc .fc-h-event {
  border: 0px;
  background-color: #88C543;
  padding: 5px 10px;
}
.calendar-custom .fc .fc-popover-header {
  padding: 10px 4px 5px;
}
.calendar-custom .fc .fc-popover-close {
  margin-top: -5px;
}
.calendar-custom .fc .fc-more-popover .fc-popover-body {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 575px) {
  .calendar-custom .fc .fc-toolbar.fc-header-toolbar {
    display: inline-block;
    text-align: center;
  }
  .calendar-custom .fc .fc-toolbar-chunk {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .calendar-custom .fc .fc-daygrid-more-link {
    font-size: 9px;
    font-size: 0.9rem;
    margin-top: 5px;
    bottom: 5px;
  }
}

.table {
  margin-bottom: 0;
}
.table.fixed {
  table-layout: fixed;
}
.table.fixed td {
  overflow: hidden;
}

/* width */
.scrollbar::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
  background: #88C543;
}
.scrollbar.gray::-webkit-scrollbar-track {
  background: #F9F9F9;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
  background: #1554B5;
}
.scrollbar.gray::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
}

.datepicker.datepicker-dropdown {
  font-size: 1.4rem;
}

.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  color: #BDBDBD;
}
.breadcrumb .breadcrumb-item:before {
  color: #BDBDBD;
  content: "-";
}
.breadcrumb .breadcrumb-item.active {
  color: #BDBDBD;
}
.breadcrumb .breadcrumb-item.active .c-blue {
  padding-left: 10px;
}
.breadcrumb .ic-search-sm {
  margin-right: 0;
  margin-top: 2px;
}

.progress-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.progress-container .progress {
  width: 100%;
  height: 1.2rem;
}
.progress-container .progress .progress-bar {
  background-color: #88C543;
  border-radius: 50px;
}
.progress-container .progress-text {
  padding-left: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}

.dropdown-more .dropdown-menu {
  border: none;
  -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
}
.dropdown-more .dropdown-menu .dropdown-item {
  border-bottom: 1px dashed #CCCCCC;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}
.dropdown-more .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.card-primary {
  -webkit-box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
}
.card-primary .card-header {
  background-color: rgb(255, 255, 255);
}
.card-primary .card-body {
  padding: 15px;
}
.card-primary h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #444444 !important;
}
.card-primary .text-sm {
  font-size: 12px;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.26);
}
@media only screen and (max-width: 414px) {
  .card-primary .text-sm {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.card-primary p {
  color: #444444;
}
.card-primary .txt-wrap2 {
  max-height: 53px;
}
@media only screen and (max-width: 575px) {
  .card-primary.px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.badge-primary {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  padding: 8px 15px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.badge-primary.bg-green-gradient {
  background: -webkit-gradient(linear, left bottom, left top, from(#87C543), to(#87C543)), #C4C4C4;
  background: -o-linear-gradient(bottom, #87C543, #87C543), #C4C4C4;
  background: linear-gradient(0deg, #87C543, #87C543), #C4C4C4;
}
.badge-primary.bg-green-gradient:hover {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08) !important;
}

.breadcrumb-primary {
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.breadcrumb-primary .breadcrumb-item {
  padding-left: 5px;
  padding-right: 5px;
}
.breadcrumb-primary .breadcrumb-item.active {
  color: #BDBDBD;
}
.breadcrumb-primary .breadcrumb-item .home {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-home.png");
  background-repeat: no-repeat;
  background-size: 18px 13px;
  width: 18px;
  height: 13px;
}
.breadcrumb-primary .breadcrumb-item + .breadcrumb-item::before {
  content: "-";
  color: #BDBDBD;
}

.arrow-search {
  display: block;
  background-image: url("../images/icon/triangle-up.png");
  background-repeat: no-repeat;
  background-size: 25px 15px;
  width: 25px;
  height: 15px;
  margin-left: auto;
  margin-right: 5%;
}
@media only screen and (min-width: 768px) {
  .arrow-search {
    margin-right: 1%;
  }
}

.content-editor img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav-tabs-primary {
  background: #F3F3F3;
  border-radius: 32px;
  border-bottom: 0;
}
.nav-tabs-primary .nav-link {
  background-color: transparent !important;
  border: none;
  text-align: center;
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .nav-tabs-primary .nav-link {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .nav-tabs-primary .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.nav-tabs-primary .nav-link.active {
  color: #87C543 !important;
}

.table-main {
  font-size: 14px;
  font-size: 1.4rem;
}
.table-main.fixed {
  table-layout: fixed;
}
.table-main.fixed td {
  overflow: hidden;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
  background-color: #F8F8F8;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}

.dataTable {
  border-bottom: none !important;
}
.dataTable thead th {
  border: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #444444;
}
.dataTable thead th.hide-sorting::before, .dataTable thead th.hide-sorting::after {
  opacity: 0 !important;
  display: none !important;
}
.dataTable thead tr.bg-greenlight th {
  padding-top: 10px !important;
  padding-bottom: 0 !important;
  background: #D7EFBD !important;
}
.dataTable tbody td {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  color: rgb(0, 0, 0);
}
.dataTable tbody tr:first-child td {
  border-top: none !important;
}
.dataTable td, .dataTable th {
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  vertical-align: middle;
  line-height: 1.4;
}

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: rgb(185, 74, 72);
}
.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;
  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: rgb(245, 245, 245);
  border: 1px solid rgb(227, 227, 227);
  -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;
  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;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-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: 0.75s;
  animation-duration: 0.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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -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: rgb(0, 0, 0);
}
.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;
}

.hero-banner {
  padding-top: 75px;
  border-bottom: 3px solid #FFD900;
}
@media only screen and (min-width: 1200px) {
  .hero-banner {
    padding-top: 120px;
    border-bottom: 6px solid #FFD900;
  }
}
.hero-banner .photo-thumb {
  padding-bottom: 17.362%;
}
@media only screen and (max-width: 991px) {
  .hero-banner .photo-thumb {
    /* padding-bottom: 60%; แก้ไข*/
    display: none; 
  }
}
.hero-banner .photo-thumb:before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(42.56%, rgba(0, 0, 0, 0)), color-stop(114.26%, rgba(0, 0, 0, 0.84)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 42.56%, rgba(0, 0, 0, 0.84) 114.26%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42.56%, rgba(0, 0, 0, 0.84) 114.26%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-banner .photo-thumb.hide-border:before {
  display: none;
}
.hero-banner .hero-caption {
  width: 100%;
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  z-index: 2;
}
.hero-banner .hero-caption h1 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 125%;
  font-weight: 500;
}
@media only screen and (min-width: 992px) {
  .hero-banner .hero-caption h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.hero-banner .slick-dotted.slick-slider {
  margin-bottom: -3px;
}

.product-group .photo-thumb {
  width: 170px;
  height: 170px;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1200px) {
  .product-group .photo-thumb {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 414px) {
  .product-group .photo-thumb {
    width: 100px;
    height: 100px;
  }
}
.product-group .photo-thumb.sm {
  width: 145px;
  height: 145px;
}
@media only screen and (max-width: 1200px) {
  .product-group .photo-thumb.sm {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 414px) {
  .product-group .photo-thumb.sm {
    width: 100px;
    height: 100px;
  }
}
.product-group a:hover {
  color: #87C543;
}

.img-sdo {
  -webkit-filter: drop-shadow(0px 1px 24px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 1px 24px rgba(0, 0, 0, 0.15));
}

.card-rules {
  background: url(../images/bg/vector-cloudy-yellow.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.contact-section {
  padding-bottom: 55px;
}
.contact-section .contact-bg {
  background: url(../images/bg/bg-contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .contact-section .contact-bg {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.form-contact {
  padding: 20px 30px;
}
@media only screen and (min-width: 768px) {
  .form-contact {
    padding: 30px 60px;
  }
}
.form-contact .form-group label {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-size: 1.4rem;
}
.form-contact .form-control {
  height: 30px !important;
}
.form-contact .btn-yellow {
  color: #444444 !important;
  font-size: 12px;
  font-size: 1.2rem;
  min-width: 155px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.tag-list {
  list-style-type: none;
  padding-left: 0;
}
.tag-list li {
  display: inline-block;
}
.tag-list li:after {
  content: ",";
  display: inline-block;
}
.tag-list li:last-child:after {
  content: "";
}

.img-qrcode {
  width: 155px;
}

.card-login {
  max-width: 535px;
  -webkit-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}
.card-login .card-body {
  padding: 15px 30px;
}
@media only screen and (min-width: 768px) {
  .card-login .card-body {
    padding: 35px 60px;
  }
}
.card-login .form-group {
  margin-bottom: 25px;
}
.card-login .form-control {
  border: 1px solid #8A8A8A;
  border-radius: 46px;
  height: 40px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 14px;
  font-size: 1.4rem;
}
.card-login .form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.card-login .form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.card-login .form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.card-login .form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.card-login .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D2D2D2;
  opacity: 1;
  /* Firefox */
}
.card-login .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: red;
}
.card-login .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: red;
}
.card-login .btn-green {
  font-size: 18px;
  font-size: 1.8rem;
  height: 50px;
}
.card-login .logo-img {
  width: 95px;
  display: block;
}
.card-login .logo-text-img {
  width: 284px;
  display: block;
}
.card-login .text-btm {
  color: #333333 !important;
  font-size: 16px;
  font-size: 1.6rem;
}
.card-login .text-btm a {
  color: #333333 !important;
}
.card-login .text-btm a:hover {
  text-decoration: underline;
}

.process-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 5%;
}
@media only screen and (min-width: 768px) {
  .process-group {
    margin: 20px 8%;
  }
}
.process-group::before {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background: #444444;
  opacity: 0.3;
  position: absolute;
  top: 22%;
  left: 50%;
  -webkit-transform: translate(-50%, -22%);
      -ms-transform: translate(-50%, -22%);
          transform: translate(-50%, -22%);
}
@media only screen and (min-width: 768px) {
  .process-group::before {
    width: 90%;
    top: 27%;
    left: 50%;
    -webkit-transform: translate(-50%, -27%);
        -ms-transform: translate(-50%, -27%);
            transform: translate(-50%, -27%);
  }
}
.process-group .process-item {
  text-align: center;
}
.process-group .process-item .process-circle {
  width: 45px;
  height: 45px;
  border: 1px solid #87C543;
  color: #87C540;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  background: rgb(255, 255, 255);
  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;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .process-group .process-item .process-circle {
    width: 50px;
    height: 50px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) {
  .process-group .process-item .process-circle {
    width: 70px;
    height: 70px;
  }
}
.process-group .process-item.active .process-circle {
  background-color: #87C543;
  color: white;
}
.process-group .process-item.active p {
  color: #87C543;
  font-weight: 600;
}
.process-group .ic-check {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-check-mark.png");
  background-repeat: no-repeat;
  background-size: 11px 9px;
  width: 11px;
  height: 9px;
  margin-right: 5px;
  margin-left: 0px;
  margin-top: 0px;
}

.select2-container {
  width: 100% !important;
}

.select2-selection {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  font-size: 16px;
  font-size: 1.6rem;
  height: 40px !important;
  padding-left: 15px;
  padding-right: 15px;
}

.select2-selection__rendered {
  font-size: 14px;
  padding: 5px 0 !important;
}

.select2-selection__arrow {
  background: url("../images/icon/arrow-down-gray.png") no-repeat right;
  background-size: 15px 10px;
  background-position-x: 95%;
  -webkit-appearance: none;
  top: 20% !important;
  right: 5% !important;
}
.select2-selection__arrow b {
  display: none !important;
}

.select2-results__options, .select2-search, .select2-search__field {
  font-size: 14px;
}

.select2-container--default .select2-selection--single {
  border-radius: 5px;
  border: 1px solid #E0E0E0;
}

textarea.form-control {
  height: auto !important;
}

.btn-del {
  display: block;
	background-image: url(../images/icon/trash-red.png);
	background-size: 16px 18px;
	width: 16px;
	height: 18px;
	transition: transform .2s;
  position: absolute;
  right: 12px;
  top: 12px;
}

.btn-del:hover {
  transform: scale(1.2);
}

.ic-question {
  display: block;
  background: url("../images/icon/ic-question.png");
  background-size: 60px;
  width: 60px;
  height: 60px;
}