@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=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@600&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: "Noto Sans Thai", "Noto Sans";
  text-rendering: optimizelegibility;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

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

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

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

h3,
.h3 {
  font-size: 16px;
  font-size: 1.6rem;
  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: #f2f2f2;
  color: #333333;
  text-decoration: none;
}

mark {
  background-color: #f2f2f2;
  color: #333333;
  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 {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

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: Helvetica, Thonburi, Tahoma;
  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;
}

@font-face {
  font-family: "Noto Sans Thai";
  src: url("../fonts/font-face/notosansthai-regular-webfont.eot");
  src: url("../fonts/font-face/notosansthai-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/font-face/notosansthai-regular-webfont.woff2") format("woff2"), url("../fonts/font-face/notosansthai-regular-webfont.woff") format("woff"), url("../fonts/font-face/notosansthai-regular-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Thai";
  src: url("../fonts/font-face/notosansthai-semibold-webfont.eot");
  src: url("../fonts/font-face/notosansthai-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/font-face/notosansthai-semibold-webfont.woff2") format("woff2"), url("../fonts/font-face/notosansthai-semibold-webfont.woff") format("woff"), url("../fonts/font-face/notosansthai-semibold-webfont.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Thai";
  src: url("../fonts/font-face/notosansthai-bold-webfont.eot");
  src: url("../fonts/font-face/notosansthai-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/font-face/notosansthai-bold-webfont.woff2") format("woff2"), url("../fonts/font-face/notosansthai-bold-webfont.woff") format("woff"), url("../fonts/font-face/notosansthai-bold-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
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: #333333;
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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

body, html {
  overflow-x: hidden;
}

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: inherit !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: "Noto Sans Thai", "Noto Sans";
  cursor: pointer;
}

label, input, select, textarea {
  font-family: "Noto Sans Thai", "Noto Sans";
}

::-webkit-input-placeholder { /* Edge */
  font-size: 14px;
  font-size: 1.4rem;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 14px;
  font-size: 1.4rem;
}

::-moz-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
}

::-ms-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
}

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

.cursor-pointer {
  cursor: pointer;
}

.btn {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: "Noto Sans Thai", "Noto Sans";
  border: none !important;
  outline: none !important;
}

.btn-signin {
  background: -o-linear-gradient(359.66deg, #7E3584 13.55%, #9744B9 116.56%) !important;
  background: linear-gradient(90.34deg, #7E3584 13.55%, #9744B9 116.56%) !important;
  border-radius: 14px;
  color: #FEB315 !important;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 5px;
  text-align: center;
}
.btn-signin:hover {
  -webkit-box-shadow: 1px 5px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 5px 20px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 991px) {
  .btn-signin {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .btn-add-vdo {
    min-width: auto !important;
  }
}

.btn-award {
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%);
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%);
  border: 0.75px solid #FEB315;
  border-radius: 25px;
  color: #FFFFFF !important;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 8px 35px;
  -webkit-filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.btn-award:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.bg-gradient-orange {
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
}

.bg-gradient-purple {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
}

.bg-gradient-yellow {
  background: -webkit-gradient(linear, left top, right top, color-stop(-7.74%, #FFD629), color-stop(142.37%, #FFAA27));
  background: -o-linear-gradient(left, #FFD629 -7.74%, #FFAA27 142.37%);
  background: linear-gradient(90deg, #FFD629 -7.74%, #FFAA27 142.37%);
}

.bg-yellow {
  background: #FEB315 !important;
}

.bg-green {
  background: #219653 !important;
}

.bg-transparent {
  background: transparent !important;
}

.c-gradient-orange {
  background: -webkit-linear-gradient(#FF9029, #FF3427);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FF3427;
}

.c-gradient-purple {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}

.c-bluelight {
  color: #49D3FF !important;
}

.c-yellow {
  color: #FEB315 !important;
}

.c-warning {
  color: #FFF739 !important;
}

.c-darkpurple {
  color: #2E3B55 !important;
}

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

.c-gray2 {
  color: #444444 !important;
}

.c-gray3 {
  color: #8A8A8A !important;
}

.c-gray-topic {
  color: #55565A !important;
}

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

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

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

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

.bd-orange {
  border: 1px solid #E75729 !important;
}

.bd-purple {
  border: 1px solid #612C73 !important;
}

.bd-yellow {
  border: 1px solid #FEB315 !important;
}

.border-md-right {
  border-right: none;
}
@media only screen and (min-width: 768px) {
  .border-md-right {
    border-right: 1px solid #dee2e6 !important;
  }
}

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

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

.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;
  max-height: 41px;
}

.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;
  max-height: 54px;
}

.border-10 {
  border-radius: 10px;
}

@media only screen and (min-width: 992px) {
  .topic-px-50 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

.wrapper {
  position: relative;
  min-height: 100vh;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
  height: 60px;
}
.header:before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(0.73%, #EEC1F3), color-stop(22.05%, #FF9029), color-stop(47.66%, #31EDC0), color-stop(71.55%, #FDCF78), color-stop(99.24%, #1383C9));
  background: -o-linear-gradient(left, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  background: linear-gradient(90deg, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .header {
    height: 85px;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    padding-top: 5px;
  }
}
.header .header-menu {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 992px) {
  .header .header-menu.active .logo {
    height: 72px;
    margin-top: 10px;
  }
}
.header .header-menu .logo {
  display: block;
  background-image: url("../images/logo-u2t-bcg.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 180px;
  max-width: 100%;
  height: 72px;
  margin-top: 9px;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .logo {
    background-position: 50%;
    width: 125px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
  }
}
.header .header-menu .navbar {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .menu-box {
    height: 0;
    display: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-height: 100%;
    overflow-y: scroll;
    padding-bottom: 100px !important;
  }
  .header .header-menu .menu-box.active {
    display: block;
    background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%), #FFFFFF;
    background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%), #FFFFFF;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
  }
  .header .header-menu .menu-box.active ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .header-menu .menu-box.active ul li {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #FFFFFF;
  }
}
@media only screen and (max-width: 991px) and (min-width: 576px) {
  .header .header-menu .menu-box.active ul li {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.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;
  padding-top: 15px;
  padding-bottom: 10px;
}
.header .header-menu .header-menu-list li {
  padding-left: 15px;
  padding-right: 15px;
}
.header .header-menu .header-menu-list li.dropdown a:before {
  display: none;
}
.header .header-menu .header-menu-list li a {
  color: #333333;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 5px;
}
@media only screen and (max-width: 1199px) {
  .header .header-menu .header-menu-list li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.header .header-menu .header-menu-list li a:before {
  content: "";
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%), #FFFFFF;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%), #FFFFFF;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header-menu .header-menu-list li a:hover:before, .header .header-menu .header-menu-list li a:focus:before {
  width: 100%;
}
.header .header-menu .header-menu-list li a .ic-megaphone-extra {
  display: block;
  background: url("../images/icon/ic-megaphone-extra.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-book-extra {
  display: block;
  background: url("../images/icon/ic-book-extra.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-open-book {
  display: block;
  background: url("../images/icon/ic-open-book.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-admin-extra {
  display: block;
  background: url("../images/icon/ic-admin-extra.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-teamwork {
  display: block;
  background: url("../images/icon/ic-teamwork.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-hackathon {
  display: block;
  background: url("../images/icon/ic-hackathon.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-book-group {
  display: block;
  background: url("../images/icon/ic-book-group.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li a .ic-register-home {
  display: block;
  background: url("../images/icon/ic-register-home.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}
.header .header-menu .header-menu-list li.active a, .header .header-menu .header-menu-list li:hover a {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-list li.active a, .header .header-menu .header-menu-list li:hover a {
    color: #FEB315;
    -webkit-text-fill-color: #FEB315;
  }
}
.header .header-menu .header-menu-list li.active a:before, .header .header-menu .header-menu-list li:hover a:before {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-list li.active a:before, .header .header-menu .header-menu-list li:hover a:before {
    background: #FEB315;
  }
}
.header .header-menu .header-menu-list .dropdown-menu {
  min-width: 100%;
}
@media only screen and (min-width: 992px) {
  .header .header-menu .header-menu-list .dropdown-menu {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-list .dropdown-menu {
    position: static;
    float: none;
    background-color: transparent;
    border: none;
  }
}
.header .header-menu .header-menu-list .dropdown-menu li {
  padding: 5px 0;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-list .dropdown-menu li {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
.header .header-menu .header-menu-list .dropdown-menu li a {
  -webkit-text-fill-color: #333333 !important;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-list .dropdown-menu li a {
    -webkit-text-fill-color: #FFFFFF !important;
  }
}
.header .header-menu .header-menu-list .dropdown-menu li:hover a {
  -webkit-text-fill-color: #592A6E !important;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-list .dropdown-menu li:hover a {
    -webkit-text-fill-color: #FEB315 !important;
  }
}
.header .header-menu .header-menu-list .dropdown-toggle::after {
  position: relative;
  top: 2px;
}
@media only screen and (min-width: 992px) {
  .header .header-menu .header-menu-list.list-border li {
    border-left: 1px solid rgba(136, 69, 145, 0.27);
    height: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list.list-border li {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .header .header-menu .header-menu-list.list-border li:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .header-menu .header-menu-list.list-border li:last-child {
  padding-right: 0;
}
.header .header-menu .header-menu-list.list-border li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
}
.header .header-menu .header-menu-list.list-border li a span {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.header .header-menu .header-menu-list.list-border li a:hover span {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
@media only screen and (min-width: 992px) {
  .header .header-menu .header-menu-col {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .header .header-menu .header-menu-col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
.header .header-menu .hamberger {
  background-image: url("../images/icon/ic-hamberger.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 19px;
  width: 24px;
  height: 19px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  margin-top: 4px;
}
@media only screen and (min-width: 992px) {
  .header .header-menu .hamberger {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .header .header-menu .hamberger.close {
    background-image: url("../images/icon/ic-close-purple.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 20px 19px;
    width: 20px;
    height: 19px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-top: -8px;
  }
}
.header .header-menu .search {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-search02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 25px;
  margin-left: 5px;
  margin-top: 6px;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .search {
    display: none;
  }
}
.header .header-menu .search.mb {
  position: absolute;
  right: 15px;
  top: 40%;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
  background-size: 19px;
  width: 19px;
  height: 19px;
}
@media only screen and (min-width: 992px) {
  .header .header-menu .search.mb {
    display: none !important;
  }
}
.header .header-menu .btn-invite-sm {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header .header-menu .btn-invite-sm.active {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 4px;
  }
  .header .header-menu .btn-invite-sm.active img {
    width: 80px;
  }
}

.footer {
  position: relative;
  background: #F3F3F3;
}
.footer:before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(0.73%, #EEC1F3), color-stop(22.05%, #FF9029), color-stop(47.66%, #31EDC0), color-stop(71.55%, #FDCF78), color-stop(99.24%, #1383C9));
  background: -o-linear-gradient(left, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  background: linear-gradient(90deg, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .footer:before {
    height: 7px;
  }
}
.footer .logo {
  display: block;
  background-image: url("../images/logo-default04.png");
  background-repeat: no-repeat;
  background-size: 150px;
  width: 150px;
  max-width: 100%;
  height: 150px;
}
@media only screen and (max-width: 767px) {
  .footer .logo {
    background-size: 95px;
    width: 95px;
    height: 95px;
  }
}
.footer a {
  color: #6D6D6D;
}
.footer a:hover {
  text-decoration: underline;
}
.footer h1 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  line-height: 2.5rem;
  color: #8A8A8A;
}
.footer .social-list {
  list-style: none;
  padding-left: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.footer .social-list li {
  display: inline-block;
  padding-left: 2px;
  padding-right: 2px;
  cursor: pointer;
}
.footer .social-list li .ic {
  display: block;
  background-repeat: no-repeat;
  background-size: 36px;
  width: 36px;
  height: 36px;
}
.footer .social-list li .ic.line {
  background-image: url("../images/icon/ic-line.png");
}
.footer .social-list li .ic.facebook {
  background-image: url("../images/icon/ic-facebook.png");
}
.footer .social-list li .ic.twitter {
  background-image: url("../images/icon/ic-twitter.png");
}
.footer .footer-top {
  padding: 40px 0 15px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-top {
    padding-top: 25px;
    text-align: center;
  }
  .footer .footer-top .logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .footer-top .img-call {
  width: 145px;
}
.footer .footer-btm {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  border-top: 2px solid #E9E9E9;
  padding: 12px 0;
  text-align: center;
  color: #8A8A8A;
}
.footer .footer-quicklink {
  padding-top: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E9E9E9;
}
.footer .footer-quicklink .quicklink-list {
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .footer .footer-quicklink .quicklink-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media only screen and (min-width: 1200px) {
  .footer .footer-quicklink .quicklink-list {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-quicklink .quicklink-list {
    display: none;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    padding-left: 0;
    padding-top: 20px;
  }
  .footer .footer-quicklink .quicklink-list li {
    padding-bottom: 20px;
  }
  .footer .footer-quicklink .quicklink-list li:last-child {
    padding-bottom: 0;
  }
}
.footer .footer-quicklink .quicklink-list li a {
  color: #B7B7B7 !important;
  text-decoration: none !important;
}
.footer .footer-quicklink .quicklink-list li a:hover {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}
.footer .footer-quicklink .btn-quicklink {
  display: block;
  text-decoration: none !important;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.footer .footer-quicklink .btn-quicklink:after {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-arrow-down-purple.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: contain;
  width: 16px;
  height: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: -2px;
}
.footer .footer-quicklink .btn-quicklink.active:after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.menu-container .menu-side {
  width: 100%;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
}
@media only screen and (max-width: 374px) {
  .menu-container .menu-side {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) {
  .menu-container .menu-side {
    display: inline-table;
    height: auto;
    width: 275px;
    height: auto;
    overflow: hidden;
    margin-left: 30px;
    -webkit-box-shadow: 0px 15px 40px rgba(222, 222, 222, 0.1);
            box-shadow: 0px 15px 40px rgba(222, 222, 222, 0.1);
    border-radius: 30px;
    top: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-container .menu-side {
    position: fixed;
    height: 75px;
  }
  .menu-container .menu-side .hamberger {
    display: block;
    background: url("../images/icon/ic-hamberger-white.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 24px;
    height: 19px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
  }
  .menu-container .menu-side .hamberger.active {
    background: url("../images/icon/ic-close-white.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: contain;
    width: 24px;
    height: 19px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-top: -5px;
  }
}
@media only screen and (min-width: 768px) {
  .menu-container .menu-side .menu-side-inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-container .menu-side .menu-side-inner {
    display: block;
    width: 200px;
    position: fixed;
    top: 74px;
    left: -100%;
    bottom: 0;
    z-index: 4;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .menu-container .menu-side .menu-side-inner.active {
    left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .menu-container .menu-side .menu-side-inner {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 374px) {
  .menu-container .menu-side .menu-side-inner {
    padding-top: 5px;
  }
}
.menu-container .menu-side .menu-side-inner ul {
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .menu-container .menu-side .menu-side-inner ul {
    padding-right: 20px;
    overflow-y: auto;
    max-height: 100%;
  }
}
.menu-container .menu-side .menu-side-inner ul li {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .menu-container .menu-side .menu-side-inner ul li {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-container .menu-side .menu-side-inner ul li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.menu-container .menu-side .menu-side-inner ul li a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.menu-container .menu-side .menu-side-inner ul li.active {
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .menu-container .menu-side .menu-side-inner ul li.active {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .menu-container .menu-side .menu-side-inner ul li.active:before {
    content: "";
    background-image: url("../images/dashboard/subtract.svg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 255px;
    height: 174px;
    position: absolute;
    right: 0;
    top: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-container .menu-side .menu-side-inner ul li.active {
    background: #F3E9FD;
    border-radius: 60px;
    padding: 10px 18px;
  }
}
.menu-container .menu-side .menu-side-inner ul li.active a .menu-text {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  font-weight: 700;
}
.menu-container .menu-side .menu-side-inner ul li .dashboard:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-dashboard.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 26px;
  height: 25px;
}
.menu-container .menu-side .menu-side-inner ul li .user-group:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-team.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 33px;
  height: 31px;
}
.menu-container .menu-side .menu-side-inner ul li .newspaper:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-newspaper.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 33px;
  height: 33px;
}
.menu-container .menu-side .menu-side-inner ul li .vdo:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-vdo-cam.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 31px;
  height: 21px;
}
.menu-container .menu-side .menu-side-inner ul li .chat:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-webboard.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 33px;
  height: 33px;
}
.menu-container .menu-side .menu-side-inner ul li .filedrop:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-folder.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 31px;
  height: 31px;
}
.menu-container .menu-side .menu-side-inner ul li .faq:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-faq.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 27px;
  height: 31px;
}
.menu-container .menu-side .menu-side-inner ul li .qa:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-q&a.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 28px;
  height: 25px;
}
.menu-container .menu-side .menu-side-inner ul li .challenge:before {
  content: "";
  display: block;
  background-image: url("../images/dashboard/ic-challenge.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 27px;
  height: 33px;
}
.menu-container .menu-side .menu-side-inner ul li .monitor:before {
  content: "";
  display: block;
  background-image: url(../images/dashboard/ic-monitor.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 30px 26px;
  width: 30px;
  height: 26px;
}
.menu-container .menu-side .menu-side-inner ul li .meet:before {
  content: "";
  display: block;
  background-image: url(../images/dashboard/ic-meet.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 27px;
  height: 26px;
}
.menu-container .menu-side .menu-side-inner ul li .setting:before {
  content: "";
  display: block;
  background-image: url(../images/dashboard/ic-setting.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 27px;
  height: 26px;
}
.menu-container .menu-side .menu-side-inner ul li.active .dashboard:before {
  content: "";
  background-image: url("../images/dashboard/ic-dashboard-at.svg");
}
.menu-container .menu-side .menu-side-inner .menu-text {
  font-size: 14px;
  font-size: 1.4rem;
  color: #FFFFFF;
  padding-left: 20px;
  display: block;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .menu-container .menu-side .menu-side-inner .menu-text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.menu-container.bg-yellow .menu-side {
  background: #FEB315;
}
@media only screen and (max-width: 767px) {
  .menu-container.bg-yellow .menu-side .menu-side-inner {
    background: #FEB315 !important;
  }
}
.menu-container.bg-gradient-orange .menu-side {
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
}
@media only screen and (max-width: 767px) {
  .menu-container.bg-gradient-orange .menu-side .menu-side-inner {
    background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
    background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  }
}
.menu-container.bg-gradient-purple .menu-side {
  background-image: url("../images/bg/bg-menu-purple.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .menu-container.bg-gradient-purple .menu-side .menu-side-inner {
    background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
    background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  }
}
.menu-container.bg-gradient-purple .menu-side .menu-side-inner ul li.active:before {
  content: "";
}

.user-mb {
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  .user-mb {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .user-mb {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .user-mb .signout {
    display: none !important;
  }
}
.user-mb .user-img {
  display: block;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 1px solid #FFFFFF;
  position: relative;
}
.user-mb .status-online {
  display: block;
  background: #A7E520;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  position: absolute;
  bottom: 0;
  right: 0;
}

table.dataTable {
  border: none;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
}

table.table-bordered.dataTable th {
  color: #FFFFFF;
  border: none;
  padding: 10px 15px;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  table.table-bordered.dataTable th {
    padding: 10px 50px;
  }
}

table.table-bordered.dataTable td {
  border: none;
  padding: 15px 15px;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  table.table-bordered.dataTable td {
    padding: 15px 50px;
  }
}

table.dataTable .odd td {
  background: #FCFDFF;
}

table.dataTable .even td {
  background: rgba(238, 238, 238, 0.71);
}

table.dataTable a {
  text-decoration: underline;
  color: #333333;
  line-height: normal;
}
table.dataTable a:hover, table.dataTable a:focus {
  text-decoration: none;
}

.btn-view {
  display: block;
  background: url("../images/icon/ic-eye.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
}

.btn-viewall {
  cursor: pointer;
  color: #31394D !important;
  font-size: 14px;
  font-size: 1.4rem;
}
.btn-viewall:hover, .btn-viewall:focus {
  text-decoration: underline;
}

.btn-link {
  text-decoration: underline;
}
.btn-link:hover, .btn-link:focus {
  text-decoration: none;
}

.btn-file {
  display: inline-block;
  border: 1px solid #D1D1D1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  width: 26px;
  height: 28px;
  margin-left: 5px;
  position: relative;
}
.btn-file:before {
  content: "";
  background: url("../images/icon/ic-file.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 11px 15px;
  width: 11px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn-fav {
  display: inline-block;
  border: 1px solid #D1D1D1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  width: 26px;
  height: 28px;
  margin-left: 5px;
  position: relative;
}
.btn-fav:before {
  content: "";
  background: url("../images/icon/ic-star.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-fav.yellow.active:before {
  content: "";
  background: url("../images/icon/ic-star-at-yellow.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-fav.orange.active:before {
  content: "";
  background: url("../images/icon/ic-star-at.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-fav.purple.active:before {
  content: "";
  background: url("../images/icon/ic-star-at-purple.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn-submit {
  font-size: 14px;
  font-size: 1.4rem;
  color: #FFFFFF !important;
  border-radius: 20px;
}
.btn-submit:hover, .btn-submit:focus {
  opacity: 0.8;
}

.btn-share {
  display: block;
  background: url("../images/icon/ic-share.png");
  background-repeat: no-repeat;
  background-size: 27px 25px;
  width: 27px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
}
.btn-share.yellow-circle {
  background: url("../images/icon/ic-share-yellow-circle.png");
  background-size: 24px;
  width: 24px;
  height: 24px;
}

.btn-like {
  display: block;
  background: url("../images/icon/ic-thumbs-up.png");
  background-repeat: no-repeat;
  background-size: 22px 23px;
  width: 22px;
  height: 23px;
  margin-left: auto;
  margin-right: auto;
}

.btn-back {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (min-width: 576px) {
  .btn-back {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.btn-back:hover {
  color: transparent;
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  line-height: normal;
}
.btn-back:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-back-purple.png");
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 8px;
  height: 13px;
  margin-right: 15px;
}
@media only screen and (max-width: 374px) {
  .btn-back {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.btn-back.orange:hover {
  color: transparent;
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%);
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #CF4528;
  line-height: normal;
}
.btn-back.orange:before {
  background: url("../images/icon/ic-back-orange.png");
}
.btn-back.yellow:hover {
  color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEB315));
  background: -o-linear-gradient(#FEB315);
  background: linear-gradient(#FEB315);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FEB315;
  line-height: normal;
}
.btn-back.yellow:before {
  background: url("../images/icon/ic-back-yellow.png");
}

.btn-cancel {
  border: 0.75px solid #E0E0E0 !important;
  color: #4F4F4F;
}
.btn-cancel:hover {
  background: #E0E0E0;
}

.btn-save {
  background: #34BFA3;
  border: 0.75px solid #E0E0E0;
  color: #FFFFFF !important;
}
.btn-save:hover {
  background: #33B79C;
}

.btn-facebook {
  width: 280px;
  max-width: 100%;
  background: #3B5998;
  color: #FFFFFF !important;
  border: 0.5px solid #BBBBBB;
  border-radius: 5px;
  padding: 2px 20px 2px 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.btn-facebook:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-facebook02.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.btn-facebook:hover {
  opacity: 0.8;
}

.btn-twitter {
  width: 280px;
  max-width: 100%;
  background: #55ACEE;
  color: #FFFFFF !important;
  border: 0.5px solid #BBBBBB;
  border-radius: 5px;
  padding: 2px 20px 2px 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.btn-twitter:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-twitter02.png");
  background-repeat: no-repeat;
  background-size: 38px;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.btn-twitter:hover {
  opacity: 0.8;
}

.btn-transparent {
  color: #230540 !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
}
.btn-transparent:hover {
  text-decoration: underline;
}

.btn-send {
  width: 175px;
  height: 30px;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-size: 14px;
  font-size: 1.4rem;
}
.btn-send:hover {
  opacity: 0.8;
}
.btn-send.bd-purple:hover, .btn-send.bd-yellow:hover {
  opacity: 0.5;
}
.btn-send.c-yellow {
  color: #FEB315 !important;
}

.btn-more {
  width: 315px;
  max-width: 100%;
  padding: 10px 0;
}
.btn-more:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-arrow-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 10px;
  margin-left: 8px;
  margin-top: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.btn-more.active:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-arrow-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 10px;
  margin-left: 8px;
  margin-top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.btn-more-dropdown {
  display: block;
  background: url("../images/icon/ic-more.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 3px;
  height: 19px;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}
.btn-more-dropdown:after {
  display: none;
}

.btn-howto {
  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;
  font-size: 14px;
  font-size: 1.4rem;
  color: #979797 !important;
  margin-top: 25px;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .btn-howto {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 322px) {
  .btn-howto {
    font-size: 10px;
    font-size: 1rem;
  }
}
.btn-howto:after {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-question-circle.png");
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
.btn-howto:hover {
  opacity: 0.5;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .btn-howto {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.btn-style {
  min-width: 110px;
  height: 40px;
  border-radius: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

.dropdown-menu.menu-more {
  margin-left: -80px;
}
.dropdown-menu.menu-more .dropdown-item {
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 10px;
  padding-bottom: 10px;
}
.dropdown-menu.menu-more.extra {
  margin-left: -124px;
}

.badge {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  border-radius: 10px !important;
  padding: 4px 8px 2px !important;
}

.form-control {
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}

.form-control:disabled, .form-control[readonly] {
  background: #F1F1F1;
  color: #2E3B55;
}

.photo-thumb {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 70%;
  background: #FFFFFF;
}
.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;
}

.w-80 {
  width: 80%;
}

.w-175px {
  width: 175px;
  max-width: 100%;
}

.w-230px {
  width: 230px;
  max-width: 100%;
}

@media only screen and (min-width: 992px) {
  .row-dash .row-dash-item {
    border-right: 1px dashed #D6D6D6;
  }
  .row-dash .row-dash-item:last-child {
    border-right: none;
  }
}
@media only screen and (max-width: 991px) {
  .row-dash .row-dash-item {
    border-bottom: 1px solid #EBEDF4;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .row-dash .row-dash-item:first-child {
    padding-top: 0;
  }
  .row-dash .row-dash-item:last-child {
    border-bottom: none;
  }
}

.dataTables_wrapper .page-link {
  background-color: transparent !important;
  color: #363636;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.dataTables_wrapper .page-item .page-link {
  border: 0.5px solid transparent;
}
.dataTables_wrapper .page-item.active .page-link {
  border: 0.5px solid #E1E1E1;
}
.dataTables_wrapper .page-item:first-child .page-link,
.dataTables_wrapper .page-item:last-child .page-link {
  border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 2px;
  font-size: 12px;
  font-size: 1.2rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #FFFFFF;
}

.fc .fc-button-primary {
  background-color: transparent !important;
  border: none !important;
  color: #D1D1D1 !important;
  text-transform: uppercase;
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
  border: none !important;
}

.fc .fc-toolbar-title {
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
  color: #31394D;
  text-transform: uppercase;
  text-align: center;
}

.fc .fc-col-header-cell-cushion {
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
}

.fc .fc-daygrid-day-number {
  font-size: 12px;
  font-size: 1.2rem;
  color: #8A8A8A;
}

.fc-event .fc-content {
  color: #FFFFFF !important;
}

.fc .fc-button {
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.fc-daygrid-block-event .fc-event-title,
.fc-direction-ltr .fc-daygrid-event .fc-event-time,
.fc-daygrid-dot-event .fc-event-title,
.fc .fc-daygrid-more-link {
  font-size: 12px;
  font-size: 1.2rem;
}

.fc-icon-left-single-arrow:after,
.fc-icon-right-single-arrow:after {
  top: -35% !important;
}

.fc-unthemed th {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px 0 !important;
  color: #B8C5D3 !important;
}

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

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  color: #8A8A8A;
}

.fc .fc-toolbar > * > * {
  padding-top: 0;
  padding-bottom: 0;
}

.fc .fc-button-group > .fc-button {
  padding-top: 0;
  padding-bottom: 0;
}

.fc .fc-button .fc-icon {
  font-size: 1em;
}

@media only screen and (min-width: 768px) {
  .fc-toolbar .fc-left,
.fc-toolbar .fc-right {
    width: 50%;
  }
}

.fc-toolbar .fc-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fc .fc-button-group > .fc-button {
  color: #BDBDBD !important;
}

.fc .fc-button-group > .fc-button:focus, .calendar-yellow .fc .fc-button-group > .fc-button:active, .calendar-yellow .fc .fc-button-group > .fc-button.fc-button-active {
  color: #4F4F4F !important;
}

.calendar-orange .fc .fc-button-group > .fc-button:focus, .calendar-orange .fc .fc-button-group > .fc-button:active, .calendar-orange .fc .fc-button-group > .fc-button.fc-button-active {
  color: transparent !important;
  background: -webkit-linear-gradient(#FF9029, #FF3427);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FF3427;
  border: none !important;
}
.calendar-orange .fc-h-event {
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  border: none !important;
}

.calendar-yellow .fc .fc-button-group > .fc-button:focus, .calendar-yellow .fc .fc-button-group > .fc-button:active, .calendar-yellow .fc .fc-button-group > .fc-button.fc-button-active {
  color: #FEB315 !important;
  background: #FEB315;
  border: none !important;
}
.calendar-yellow .fc-h-event {
  background: #FEB315;
  border: none !important;
}

.calendar-purple .fc .fc-button-group > .fc-button:focus, .calendar-purple .fc .fc-button-group > .fc-button:active, .calendar-purple .fc .fc-button-group > .fc-button.fc-button-active {
  color: transparent !important;
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  border: none !important;
}
.calendar-purple .fc-h-event {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  border: none !important;
}

.border-5px {
  border-radius: 5px;
}

nav .pagination .page-item .page-link {
  border-radius: 2px;
  border: 1px solid transparent !important;
  padding: 5px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #777777;
  margin-left: 5px;
  margin-right: 5px;
}
nav .pagination .page-item.active .page-link {
  color: #FFFFFF !important;
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%);
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%);
  border-color: #007bff;
}
nav .pagination .page-item:last-child .page-link {
  background: #EDEDED;
}
nav .pagination.yellow .page-item.active .page-link {
  background: #FEB315;
  border-color: #FEB315;
}
nav .pagination.orange .page-item.active .page-link {
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%);
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%);
}

.btn-group .btn {
  margin-left: 8px;
  margin-right: 8px;
  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: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

.slider {
  margin-left: -15px;
  margin-right: -15px;
}

.slick-slide {
  margin: 0px 15px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev, .slick-next {
  width: 35px;
  height: 35px;
}

.slick-prev {
  left: 0;
  z-index: 1;
}
.slick-prev:before {
  content: "";
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-arrow-left-square.png");
  background-repeat: no-repeat;
  background-size: 36px;
  width: 36px;
  height: 36px;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.slick-prev:hover:before {
  opacity: 0.75;
}

.slick-next {
  right: 0;
  z-index: 1;
}
.slick-next:before {
  content: "";
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-arrow-right-square.png");
  background-repeat: no-repeat;
  background-size: 36px;
  width: 36px;
  height: 36px;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.slick-next:hover:before {
  opacity: 0.75;
}

.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: none;
}
.overlay.active {
  display: block;
}

.input-group.date .form-control {
  font-family: "Noto Sans Thai", "Noto Sans";
  background: #FFFFFF;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.input-group .input-group-addon {
  background: #F4F5F8;
  width: 40px;
  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-radius: 0px 5px 5px 0px;
  border-top: 0.5px solid #E0E0E0;
  border-right: 0.5px solid #E0E0E0;
  border-bottom: 0.5px solid #E0E0E0;
  cursor: pointer;
}
.input-group .input-group-addon .calendar-ic {
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar.png");
  background-repeat: no-repeat;
  background-size: 16px 18px;
  width: 16px;
  height: 18px;
}

.table.gradient-purple {
  border-bottom: 1px solid red;
}
.table.gradient-purple thead {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%);
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%);
}
.table.gradient-purple thead th {
  color: #FFFFFF;
  border-top: none;
  padding-bottom: none;
  padding: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 27px;
  line-height: 2.7rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .table.gradient-purple thead th {
    padding: 15px;
  }
}
@media only screen and (max-width: 374px) {
  .table.gradient-purple thead th {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 25px;
    line-height: 2.5rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.table.gradient-purple tbody td {
  border-left: 1px solid rgba(60, 58, 58, 0.22);
  border-bottom: 1px solid rgba(238, 238, 238, 0.71);
  padding: 15px 3%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 21px;
  line-height: 2.1rem;
  color: #333333;
}
@media only screen and (min-width: 768px) {
  .table.gradient-purple tbody td {
    padding: 15px 6%;
  }
}
@media only screen and (max-width: 374px) {
  .table.gradient-purple tbody td {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 19px;
    line-height: 1.9rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.table.gradient-purple tbody td:last-child {
  border-right: 1px solid rgba(60, 58, 58, 0.22);
}
.table.gradient-purple tbody td > * {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 21px;
  line-height: 2.1rem;
  color: #333333;
}
.table.gradient-purple tbody tr {
  background: #E2E2E2;
}
.table.gradient-purple tbody tr:nth-of-type(odd) {
  background: #FCFDFF;
}
.table.gradient-purple tbody tr:last-child td {
  border-bottom: 1.5px solid #C4C4C4;
}
.table.table-fixed {
  table-layout: fixed;
}

.nav-pills {
  background: #F3F3F3;
  border-radius: 32px;
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 992px) {
  .nav-pills {
    padding: 15px;
  }
}
.nav-pills .nav-item {
  width: 33.33%;
}
.nav-pills .nav-item .nav-link {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  color: rgb(0, 0, 0);
  opacity: 0.25;
}
@media only screen and (min-width: 992px) {
  .nav-pills .nav-item .nav-link {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 991px) {
  .nav-pills .nav-item .nav-link {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .nav-pills .nav-item .nav-link {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0.5rem 0.2rem;
  }
}
@media only screen and (max-width: 363px) {
  .nav-pills .nav-item .nav-link {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.nav-pills .nav-item .nav-link.active {
  background-color: transparent;
}
.nav-pills.gradient-purple .nav-item .nav-link.active {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .menu-list-group {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .menu-list-group h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.menu-list-group ul {
  list-style: none;
  padding-left: 0;
  padding-top: 10px;
}
.menu-list-group ul li {
  letter-spacing: 0.04em;
  color: #333333;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .menu-list-group ul li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 25px;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .menu-list-group ul li {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.menu-list-group ul.gradient-purple li:hover {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}

.custom-select {
  border: 1px solid #B9B9B9;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  height: 50px;
}
.custom-select.purple {
  color: #7E3584;
  background: url(../images/icon/ic-arrow-down-purple.png) 96%/20% no-repeat;
  background-size: 15px 10px;
}
.custom-select.purple:focus {
  border: 1px solid #7E3584;
}

.modal-style .modal-dialog {
  width: 954px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.modal-style .modal-dialog .modal-content {
  background: -webkit-gradient(linear, left bottom, left top, from(#F9F9F9), to(#F9F9F9));
  background: -o-linear-gradient(bottom, #F9F9F9, #F9F9F9);
  background: linear-gradient(0deg, #F9F9F9, #F9F9F9);
  border-radius: 10px;
  min-height: 300px;
  position: relative;
  padding: 15px;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content {
    padding: 25px 65px 45px;
  }
  .modal-style .modal-dialog .modal-content:before {
    content: "";
    background: url("../images/bg/bg-modal.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 360px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.modal-style .modal-dialog .modal-content h1 {
  font-size: 26px;
  font-size: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content h1 {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
.modal-style .modal-dialog .modal-content h2 {
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.modal-style .modal-dialog .modal-content p {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
  opacity: 0.7;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.modal-style .modal-dialog .modal-content .modal-header {
  border: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-style .modal-dialog .modal-content .modal-header .close {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-close-circle.png");
  background-repeat: no-repeat;
  background-size: 29px;
  width: 29px;
  height: 29px;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: 15px;
  right: 15px;
  outline: none !important;
  z-index: 1;
  background-color: #FFFFFF;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content .modal-header .close {
    background-size: 39px;
    width: 39px;
    height: 39px;
    top: 25px;
    right: 25px;
  }
}
.modal-style .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 0.8;
}
.modal-style .modal-dialog .modal-content .modal-body .modal-list {
  list-style: none;
  padding-left: 0;
}
.modal-style .modal-dialog .modal-content .modal-body .modal-list li {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content .modal-body .modal-list li {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.modal-style .modal-dialog .modal-content .modal-body .modal-list li:hover h2 {
  opacity: 0.5;
}
.modal-style .modal-dialog .modal-content .modal-body .modal-list li:hover .modal-ic {
  opacity: 0.5;
}
.modal-style .modal-dialog .modal-content .modal-body .modal-list .modal-ic {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) {
  .modal-style .modal-dialog .modal-content .modal-body .modal-list .modal-ic {
    width: 73px;
    height: 73px;
    margin-right: 35px;
  }
}
.modal-style .modal-dialog .modal-content .modal-body .modal-vdo {
  border: 4px solid #592A6E;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .modal-style .modal-dialog .modal-content .student-img:before {
    content: "";
    background: url("../images/student-female.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 83px;
    height: 295px;
    position: absolute;
    bottom: 0;
    left: 35px;
  }
  .modal-style .modal-dialog .modal-content .student-img:after {
    content: "";
    background: url("../images/student-male.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 108px;
    height: 305px;
    position: absolute;
    bottom: 0;
    right: 35px;
  }
}
.modal-style.modal-welcome-vdo .modal-dialog {
  width: 1100px;
}
@media only screen and (min-width: 992px) {
  .modal-style.modal-welcome-vdo .modal-dialog .modal-content {
    padding-left: 160px;
    padding-right: 160px;
  }
}

.select-style {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
.select-style select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.select-style .form-control {
  height: 40px;
  padding-right: 30px;
}
.select-style:after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  display: block;
  background-image: url(../images/icon/ic-arrow-down-purple.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 14px;
  pointer-events: none;
}

.topic-line {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .topic-line.lg {
    font-size: 30px;
    font-size: 3rem;
  }
}

.blur {
  filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  -moz-filter: blur(2px);
  -webkit-filter: blur(2px);
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.head-line {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 32px;
}
.head-line:before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(0.73%, #EEC1F3), color-stop(22.05%, #FF9029), color-stop(47.66%, #31EDC0), color-stop(71.55%, #FDCF78), color-stop(99.24%, #1383C9));
  background: -o-linear-gradient(left, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  background: linear-gradient(90deg, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  width: 97%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.head-line h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}
@media only screen and (min-width: 992px) {
  .head-line h3 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.note-editor {
  border-radius: 5px !important;
}
.note-editor .btn-group .btn {
  margin-left: inherit;
  margin-right: inherit;
  border-top-right-radius: inherit !important;
  border-bottom-right-radius: inherit !important;
  border-top-left-radius: inherit !important;
  border-bottom-left-radius: inherit !important;
  min-width: inherit;
  height: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.logo-db {
  display: block;
  background-image: url("../images/logo-u2t.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .logo-db {
    background-position: 50%;
    width: 110px;
    height: 50px;
    margin-top: -8px;
  }
}
@media only screen and (max-width: 767px) {
  .logo-db {
    background-image: url("../images/logo-u2t04.png");
    width: 55px;
    height: 53px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 5;
  }
}

.del {
  cursor: pointer;
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-trash-gray.png");
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 18px;
  height: 21px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
  .del {
    width: 13px;
    height: 16px;
    margin-top: 10px;
  }
}
.del:hover {
  background: url("../images/icon/ic-trash-yellow.png");
}

.popover {
  z-index: 1050;
}
.popover .popover-body {
  background: rgb(0, 0, 0);
  color: #FFFFFF;
  font-size: 14px;
  font-size: 1.4rem;
}
.popover .arrow::after {
  border-top-color: rgb(0, 0, 0);
}

.nav-pills {
  padding-bottom: 0;
}
.nav-pills.gradient-purple .nav-item .nav-link {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 2px solid #F3F3F3;
}
.nav-pills.gradient-purple .nav-item .nav-link.active {
  border-bottom: 2px solid #592A6E;
}

.nav-pills {
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.tab-content.dash {
  border-top: 2px dashed #592A6E;
}

.file-upload {
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
}
.file-upload .camera {
  display: block;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
}
.file-upload .camera.purple {
  background-image: url("../images/icon/ic-camera.png");
}
.file-upload .camera.orange {
  background-image: url("../images/icon/ic-camera-orange.png");
}
.file-upload .camera.yellow {
  background-image: url("../images/icon/ic-camera-yellow.png");
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border: 0.5px solid #E0E0E0 !important;
  border-radius: 5px !important;
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 1.4rem !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 1.4rem !important;
  font-size: 14px !important;
  color: black !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  font-size: 2rem !important;
  font-size: 20px !important;
}

.col-custom-5 {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 992px) {
  .col-custom-5 {
    width: 20%;
  }
}
@media only screen and (max-width: 991px) {
  .col-custom-5 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .col-custom-5.extra {
    width: 100%;
  }
}

.table-backend.table-striped thead {
  background: #D3D3D3;
  border-top: none;
  border-bottom: none;
}
.table-backend.table-striped thead th {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: none;
  padding: 5px;
}
@media only screen and (min-width: 992px) {
  .table-backend.table-striped thead th {
    padding: 20px 16px;
  }
}
.table-backend.table-striped tbody tr {
  background: #F3F3F3;
}
.table-backend.table-striped tbody tr:nth-of-type(odd) {
  background: #FCFDFF;
}
.table-backend.table-striped tbody td {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  border-top: none;
  padding: 5px;
}
@media only screen and (min-width: 992px) {
  .table-backend.table-striped tbody td {
    padding: 16px;
  }
}
.table-backend.table-striped tbody td img {
  width: 75px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.table-backend.table-striped tbody td .btn-edit {
  display: inline-block;
  background: url("../images/icon/ic-pencil.png");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-left: 8px;
  margin-right: 8px;
}
.table-backend.table-striped tbody td .btn-edit:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.table-backend.table-striped tbody td .btn-del {
  display: inline-block;
  background: url("../images/icon/ic-trash.png");
  background-repeat: no-repeat;
  background-size: 13px 15px;
  width: 13px;
  height: 15px;
  margin-left: 8px;
  margin-right: 8px;
}
.table-backend.table-striped tbody td .btn-del:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.table-backend.table-striped tbody td .btn-del.rounded {
  background: url("../images/icon/ic-trash-border-red.png");
  background-size: 20px;
  width: 20px;
  height: 20px;
}
.table-backend.table-striped tbody td:last-child {
  text-align: center;
}

.rounded-30 {
  border-radius: 30px !important;
}

.fireworks > .before, .fireworks > .after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600;
          box-shadow: 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600, 0 0 #fff600;
  -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
}

.fireworks > .after {
  -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
  animation-delay: 1.25s, 1.25s, 1.25s;
  -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
  animation-duration: 1.25s, 1.25s, 6.25s;
}

@-webkit-keyframes bang {
  to {
    -webkit-box-shadow: -137px -359px hsl(309deg, 100%, 50%), 253px -348px hsl(185deg, 100%, 50%), 267px -243px hsl(281deg, 100%, 50%), 244px -272px hsl(322deg, 100%, 50%), -55px -40px hsl(234deg, 100%, 50%), 292px 82px hsl(78deg, 100%, 50%), -233px -200px hsl(219deg, 100%, 50%), 28px -76px hsl(309deg, 100%, 50%), -296px -138px hsl(246deg, 100%, 50%), -143px -394px hsl(139deg, 100%, 50%), -36px -480px hsl(158deg, 100%, 50%), 23px -194px hsl(357deg, 100%, 50%), 240px -407px hsl(73deg, 100%, 50%), -286px -348px hsl(38deg, 100%, 50%), -259px -9px hsl(303deg, 100%, 50%), -4px -468px hsl(104deg, 100%, 50%), 146px 57px hsl(57deg, 100%, 50%), -211px -465px hsl(196deg, 100%, 50%), -208px -115px hsl(172deg, 100%, 50%), -91px 26px hsl(194deg, 100%, 50%), 104px -208px hsl(138deg, 100%, 50%), 67px -183px hsl(80deg, 100%, 50%), -157px -165px hsl(250deg, 100%, 50%), 177px 22px hsl(180deg, 100%, 50%), -197px -214px hsl(209deg, 100%, 50%), 298px -169px hsl(313deg, 100%, 50%), 161px -334px hsl(49deg, 100%, 50%), 143px -351px hsl(44deg, 100%, 50%), -246px -456px hsl(50deg, 100%, 50%), -270px -235px hsl(60deg, 100%, 50%), -70px -271px hsl(44deg, 100%, 50%), 41px 14px hsl(203deg, 100%, 50%), 273px -128px hsl(356deg, 100%, 50%), -189px -302px hsl(108deg, 100%, 50%), 43px -412px hsl(116deg, 100%, 50%), -132px -49px hsl(112deg, 100%, 50%), -117px -473px hsl(110deg, 100%, 50%), 296px -466px hsl(201deg, 100%, 50%), 223px -164px hsl(86deg, 100%, 50%), 279px -80px hsl(115deg, 100%, 50%), 238px -105px hsl(129deg, 100%, 50%), -278px -363px hsl(27deg, 100%, 50%), -73px -471px hsl(252deg, 100%, 50%), 152px -177px hsl(100deg, 100%, 50%), 290px -157px hsl(36deg, 100%, 50%), 216px 83px hsl(181deg, 100%, 50%), 140px -115px hsl(197deg, 100%, 50%), 74px -53px hsl(300deg, 100%, 50%), 149px -480px hsl(108deg, 100%, 50%), -193px 55px hsl(108deg, 100%, 50%), -155px -423px hsl(197deg, 100%, 50%), 109px -212px hsl(65deg, 100%, 50%), 127px -276px hsl(318deg, 100%, 50%), 14px 39px hsl(304deg, 100%, 50%), -129px -412px hsl(267deg, 100%, 50%), -101px -55px hsl(91deg, 100%, 50%), 194px -277px hsl(256deg, 100%, 50%), 75px -177px hsl(335deg, 100%, 50%), 296px -146px hsl(16deg, 100%, 50%), 43px -205px hsl(136deg, 100%, 50%), -93px -303px hsl(345deg, 100%, 50%), 266px -298px hsl(6deg, 100%, 50%), 251px -126px hsl(34deg, 100%, 50%), -49px -184px hsl(203deg, 100%, 50%), 10px -491px hsl(207deg, 100%, 50%), 182px -449px hsl(250deg, 100%, 50%), -17px -499px hsl(148deg, 100%, 50%), 277px 73px hsl(49deg, 100%, 50%), 133px -202px hsl(143deg, 100%, 50%), -43px -410px hsl(17deg, 100%, 50%), 69px -41px hsl(65deg, 100%, 50%), -205px -207px hsl(218deg, 100%, 50%), 152px -426px hsl(241deg, 100%, 50%), -58px -413px hsl(34deg, 100%, 50%), 111px -268px hsl(89deg, 100%, 50%), 122px -456px hsl(313deg, 100%, 50%), -271px -438px hsl(353deg, 100%, 50%), 59px -42px hsl(268deg, 100%, 50%), 123px -199px hsl(75deg, 100%, 50%), 20px -157px hsl(335deg, 100%, 50%), -6px -477px hsl(51deg, 100%, 50%);
            box-shadow: -137px -359px hsl(309deg, 100%, 50%), 253px -348px hsl(185deg, 100%, 50%), 267px -243px hsl(281deg, 100%, 50%), 244px -272px hsl(322deg, 100%, 50%), -55px -40px hsl(234deg, 100%, 50%), 292px 82px hsl(78deg, 100%, 50%), -233px -200px hsl(219deg, 100%, 50%), 28px -76px hsl(309deg, 100%, 50%), -296px -138px hsl(246deg, 100%, 50%), -143px -394px hsl(139deg, 100%, 50%), -36px -480px hsl(158deg, 100%, 50%), 23px -194px hsl(357deg, 100%, 50%), 240px -407px hsl(73deg, 100%, 50%), -286px -348px hsl(38deg, 100%, 50%), -259px -9px hsl(303deg, 100%, 50%), -4px -468px hsl(104deg, 100%, 50%), 146px 57px hsl(57deg, 100%, 50%), -211px -465px hsl(196deg, 100%, 50%), -208px -115px hsl(172deg, 100%, 50%), -91px 26px hsl(194deg, 100%, 50%), 104px -208px hsl(138deg, 100%, 50%), 67px -183px hsl(80deg, 100%, 50%), -157px -165px hsl(250deg, 100%, 50%), 177px 22px hsl(180deg, 100%, 50%), -197px -214px hsl(209deg, 100%, 50%), 298px -169px hsl(313deg, 100%, 50%), 161px -334px hsl(49deg, 100%, 50%), 143px -351px hsl(44deg, 100%, 50%), -246px -456px hsl(50deg, 100%, 50%), -270px -235px hsl(60deg, 100%, 50%), -70px -271px hsl(44deg, 100%, 50%), 41px 14px hsl(203deg, 100%, 50%), 273px -128px hsl(356deg, 100%, 50%), -189px -302px hsl(108deg, 100%, 50%), 43px -412px hsl(116deg, 100%, 50%), -132px -49px hsl(112deg, 100%, 50%), -117px -473px hsl(110deg, 100%, 50%), 296px -466px hsl(201deg, 100%, 50%), 223px -164px hsl(86deg, 100%, 50%), 279px -80px hsl(115deg, 100%, 50%), 238px -105px hsl(129deg, 100%, 50%), -278px -363px hsl(27deg, 100%, 50%), -73px -471px hsl(252deg, 100%, 50%), 152px -177px hsl(100deg, 100%, 50%), 290px -157px hsl(36deg, 100%, 50%), 216px 83px hsl(181deg, 100%, 50%), 140px -115px hsl(197deg, 100%, 50%), 74px -53px hsl(300deg, 100%, 50%), 149px -480px hsl(108deg, 100%, 50%), -193px 55px hsl(108deg, 100%, 50%), -155px -423px hsl(197deg, 100%, 50%), 109px -212px hsl(65deg, 100%, 50%), 127px -276px hsl(318deg, 100%, 50%), 14px 39px hsl(304deg, 100%, 50%), -129px -412px hsl(267deg, 100%, 50%), -101px -55px hsl(91deg, 100%, 50%), 194px -277px hsl(256deg, 100%, 50%), 75px -177px hsl(335deg, 100%, 50%), 296px -146px hsl(16deg, 100%, 50%), 43px -205px hsl(136deg, 100%, 50%), -93px -303px hsl(345deg, 100%, 50%), 266px -298px hsl(6deg, 100%, 50%), 251px -126px hsl(34deg, 100%, 50%), -49px -184px hsl(203deg, 100%, 50%), 10px -491px hsl(207deg, 100%, 50%), 182px -449px hsl(250deg, 100%, 50%), -17px -499px hsl(148deg, 100%, 50%), 277px 73px hsl(49deg, 100%, 50%), 133px -202px hsl(143deg, 100%, 50%), -43px -410px hsl(17deg, 100%, 50%), 69px -41px hsl(65deg, 100%, 50%), -205px -207px hsl(218deg, 100%, 50%), 152px -426px hsl(241deg, 100%, 50%), -58px -413px hsl(34deg, 100%, 50%), 111px -268px hsl(89deg, 100%, 50%), 122px -456px hsl(313deg, 100%, 50%), -271px -438px hsl(353deg, 100%, 50%), 59px -42px hsl(268deg, 100%, 50%), 123px -199px hsl(75deg, 100%, 50%), 20px -157px hsl(335deg, 100%, 50%), -6px -477px hsl(51deg, 100%, 50%);
  }
}
@keyframes bang {
  to {
    -webkit-box-shadow: -137px -359px hsl(309deg, 100%, 50%), 253px -348px hsl(185deg, 100%, 50%), 267px -243px hsl(281deg, 100%, 50%), 244px -272px hsl(322deg, 100%, 50%), -55px -40px hsl(234deg, 100%, 50%), 292px 82px hsl(78deg, 100%, 50%), -233px -200px hsl(219deg, 100%, 50%), 28px -76px hsl(309deg, 100%, 50%), -296px -138px hsl(246deg, 100%, 50%), -143px -394px hsl(139deg, 100%, 50%), -36px -480px hsl(158deg, 100%, 50%), 23px -194px hsl(357deg, 100%, 50%), 240px -407px hsl(73deg, 100%, 50%), -286px -348px hsl(38deg, 100%, 50%), -259px -9px hsl(303deg, 100%, 50%), -4px -468px hsl(104deg, 100%, 50%), 146px 57px hsl(57deg, 100%, 50%), -211px -465px hsl(196deg, 100%, 50%), -208px -115px hsl(172deg, 100%, 50%), -91px 26px hsl(194deg, 100%, 50%), 104px -208px hsl(138deg, 100%, 50%), 67px -183px hsl(80deg, 100%, 50%), -157px -165px hsl(250deg, 100%, 50%), 177px 22px hsl(180deg, 100%, 50%), -197px -214px hsl(209deg, 100%, 50%), 298px -169px hsl(313deg, 100%, 50%), 161px -334px hsl(49deg, 100%, 50%), 143px -351px hsl(44deg, 100%, 50%), -246px -456px hsl(50deg, 100%, 50%), -270px -235px hsl(60deg, 100%, 50%), -70px -271px hsl(44deg, 100%, 50%), 41px 14px hsl(203deg, 100%, 50%), 273px -128px hsl(356deg, 100%, 50%), -189px -302px hsl(108deg, 100%, 50%), 43px -412px hsl(116deg, 100%, 50%), -132px -49px hsl(112deg, 100%, 50%), -117px -473px hsl(110deg, 100%, 50%), 296px -466px hsl(201deg, 100%, 50%), 223px -164px hsl(86deg, 100%, 50%), 279px -80px hsl(115deg, 100%, 50%), 238px -105px hsl(129deg, 100%, 50%), -278px -363px hsl(27deg, 100%, 50%), -73px -471px hsl(252deg, 100%, 50%), 152px -177px hsl(100deg, 100%, 50%), 290px -157px hsl(36deg, 100%, 50%), 216px 83px hsl(181deg, 100%, 50%), 140px -115px hsl(197deg, 100%, 50%), 74px -53px hsl(300deg, 100%, 50%), 149px -480px hsl(108deg, 100%, 50%), -193px 55px hsl(108deg, 100%, 50%), -155px -423px hsl(197deg, 100%, 50%), 109px -212px hsl(65deg, 100%, 50%), 127px -276px hsl(318deg, 100%, 50%), 14px 39px hsl(304deg, 100%, 50%), -129px -412px hsl(267deg, 100%, 50%), -101px -55px hsl(91deg, 100%, 50%), 194px -277px hsl(256deg, 100%, 50%), 75px -177px hsl(335deg, 100%, 50%), 296px -146px hsl(16deg, 100%, 50%), 43px -205px hsl(136deg, 100%, 50%), -93px -303px hsl(345deg, 100%, 50%), 266px -298px hsl(6deg, 100%, 50%), 251px -126px hsl(34deg, 100%, 50%), -49px -184px hsl(203deg, 100%, 50%), 10px -491px hsl(207deg, 100%, 50%), 182px -449px hsl(250deg, 100%, 50%), -17px -499px hsl(148deg, 100%, 50%), 277px 73px hsl(49deg, 100%, 50%), 133px -202px hsl(143deg, 100%, 50%), -43px -410px hsl(17deg, 100%, 50%), 69px -41px hsl(65deg, 100%, 50%), -205px -207px hsl(218deg, 100%, 50%), 152px -426px hsl(241deg, 100%, 50%), -58px -413px hsl(34deg, 100%, 50%), 111px -268px hsl(89deg, 100%, 50%), 122px -456px hsl(313deg, 100%, 50%), -271px -438px hsl(353deg, 100%, 50%), 59px -42px hsl(268deg, 100%, 50%), 123px -199px hsl(75deg, 100%, 50%), 20px -157px hsl(335deg, 100%, 50%), -6px -477px hsl(51deg, 100%, 50%);
            box-shadow: -137px -359px hsl(309deg, 100%, 50%), 253px -348px hsl(185deg, 100%, 50%), 267px -243px hsl(281deg, 100%, 50%), 244px -272px hsl(322deg, 100%, 50%), -55px -40px hsl(234deg, 100%, 50%), 292px 82px hsl(78deg, 100%, 50%), -233px -200px hsl(219deg, 100%, 50%), 28px -76px hsl(309deg, 100%, 50%), -296px -138px hsl(246deg, 100%, 50%), -143px -394px hsl(139deg, 100%, 50%), -36px -480px hsl(158deg, 100%, 50%), 23px -194px hsl(357deg, 100%, 50%), 240px -407px hsl(73deg, 100%, 50%), -286px -348px hsl(38deg, 100%, 50%), -259px -9px hsl(303deg, 100%, 50%), -4px -468px hsl(104deg, 100%, 50%), 146px 57px hsl(57deg, 100%, 50%), -211px -465px hsl(196deg, 100%, 50%), -208px -115px hsl(172deg, 100%, 50%), -91px 26px hsl(194deg, 100%, 50%), 104px -208px hsl(138deg, 100%, 50%), 67px -183px hsl(80deg, 100%, 50%), -157px -165px hsl(250deg, 100%, 50%), 177px 22px hsl(180deg, 100%, 50%), -197px -214px hsl(209deg, 100%, 50%), 298px -169px hsl(313deg, 100%, 50%), 161px -334px hsl(49deg, 100%, 50%), 143px -351px hsl(44deg, 100%, 50%), -246px -456px hsl(50deg, 100%, 50%), -270px -235px hsl(60deg, 100%, 50%), -70px -271px hsl(44deg, 100%, 50%), 41px 14px hsl(203deg, 100%, 50%), 273px -128px hsl(356deg, 100%, 50%), -189px -302px hsl(108deg, 100%, 50%), 43px -412px hsl(116deg, 100%, 50%), -132px -49px hsl(112deg, 100%, 50%), -117px -473px hsl(110deg, 100%, 50%), 296px -466px hsl(201deg, 100%, 50%), 223px -164px hsl(86deg, 100%, 50%), 279px -80px hsl(115deg, 100%, 50%), 238px -105px hsl(129deg, 100%, 50%), -278px -363px hsl(27deg, 100%, 50%), -73px -471px hsl(252deg, 100%, 50%), 152px -177px hsl(100deg, 100%, 50%), 290px -157px hsl(36deg, 100%, 50%), 216px 83px hsl(181deg, 100%, 50%), 140px -115px hsl(197deg, 100%, 50%), 74px -53px hsl(300deg, 100%, 50%), 149px -480px hsl(108deg, 100%, 50%), -193px 55px hsl(108deg, 100%, 50%), -155px -423px hsl(197deg, 100%, 50%), 109px -212px hsl(65deg, 100%, 50%), 127px -276px hsl(318deg, 100%, 50%), 14px 39px hsl(304deg, 100%, 50%), -129px -412px hsl(267deg, 100%, 50%), -101px -55px hsl(91deg, 100%, 50%), 194px -277px hsl(256deg, 100%, 50%), 75px -177px hsl(335deg, 100%, 50%), 296px -146px hsl(16deg, 100%, 50%), 43px -205px hsl(136deg, 100%, 50%), -93px -303px hsl(345deg, 100%, 50%), 266px -298px hsl(6deg, 100%, 50%), 251px -126px hsl(34deg, 100%, 50%), -49px -184px hsl(203deg, 100%, 50%), 10px -491px hsl(207deg, 100%, 50%), 182px -449px hsl(250deg, 100%, 50%), -17px -499px hsl(148deg, 100%, 50%), 277px 73px hsl(49deg, 100%, 50%), 133px -202px hsl(143deg, 100%, 50%), -43px -410px hsl(17deg, 100%, 50%), 69px -41px hsl(65deg, 100%, 50%), -205px -207px hsl(218deg, 100%, 50%), 152px -426px hsl(241deg, 100%, 50%), -58px -413px hsl(34deg, 100%, 50%), 111px -268px hsl(89deg, 100%, 50%), 122px -456px hsl(313deg, 100%, 50%), -271px -438px hsl(353deg, 100%, 50%), 59px -42px hsl(268deg, 100%, 50%), 123px -199px hsl(75deg, 100%, 50%), 20px -157px hsl(335deg, 100%, 50%), -6px -477px hsl(51deg, 100%, 50%);
  }
}
@-webkit-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-webkit-keyframes position {
  0%, 19.9% {
    margin-top: 50%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 60%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 30%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 50%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 80%;
    margin-left: 80%;
  }
}
@keyframes position {
  0%, 19.9% {
    margin-top: 50%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 60%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 30%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 50%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 80%;
    margin-left: 80%;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.arrow-right {
  display: inline-block;
  background: url("../images/icon/ic-arrow-right-purple.png");
  background-repeat: no-repeat;
  background-size: 24px 15px;
  width: 24px;
  height: 15px;
  margin-left: 5px;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.text-purple {
  color: #BD0BF4 !important;
  font-weight: bold !important;
}

.slick-arrow-list .prev {
  display: inline-block;
  background-image: url(../images/icon/ic-arrow-prev.png);
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-left: 2px;
  margin-right: 2px;
}
@media only screen and (max-width: 991px) {
  .slick-arrow-list .prev {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.slick-arrow-list .next {
  display: inline-block;
  background-image: url(../images/icon/ic-arrow-next.png);
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-left: 2px;
  margin-right: 2px;
}
@media only screen and (max-width: 991px) {
  .slick-arrow-list .next {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.tooltip {
  font-family: Noto Sans Thai, Noto Sans;
  font-size: 14px;
  font-size: 1.4rem;
}

.z-index1 {
  z-index: 1 !important;
}

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

@media only screen and (min-width: 768px) {
  .wrapper-dashboard {
    overflow: auto;
  }
}
.wrapper-dashboard.purple {
  background-image: url("../images/bg/bg-dashboard-purple.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  background-attachment: fixed;
}
.wrapper-dashboard .menu-text {
  line-height: 1.4;
}
.wrapper-dashboard.orange {
  background-image: url("../images/bg/bg-dashboard-orange.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  background-attachment: fixed;
}
.wrapper-dashboard.orange .menu-container .menu-side .menu-side-inner ul li.active a .menu-text {
  background: -webkit-linear-gradient(#FF9029, #FF3427);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FF3427;
}
.wrapper-dashboard.orange .menu-container .menu-side .menu-side-inner ul li.active .dashboard:before {
  background-image: url("../images/dashboard/ic-dashboard-at-orange.svg");
}
@media only screen and (max-width: 767px) {
  .wrapper-dashboard.orange .menu-container .menu-side .menu-side-inner ul li.active {
    background: #FBEAE6;
  }
}
.wrapper-dashboard.orange .card-profile .card-header {
  background-image: url(../images/bg/bg-profile-orange.png);
}
.wrapper-dashboard.yellow {
  background-image: url("../images/bg/bg-dashboard-yellow.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  background-attachment: fixed;
}
.wrapper-dashboard.yellow .menu-container .menu-side .menu-side-inner ul li.active a .menu-text {
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FFAC01;
  color: #FFAC01;
}
.wrapper-dashboard.yellow .menu-container .menu-side .menu-side-inner ul li.active .dashboard:before {
  background-image: url("../images/dashboard/ic-dashboard-at-yellow.svg");
}
@media only screen and (max-width: 767px) {
  .wrapper-dashboard.yellow .menu-container .menu-side .menu-side-inner ul li.active {
    background: #FFF3DC;
  }
}
.wrapper-dashboard.yellow .card-profile .card-header {
  background-image: url(../images/bg/bg-profile-yellow.png);
}
@media only screen and (min-width: 768px) {
  .wrapper-dashboard.orange .menu-container .menu-side .menu-side-inner ul li.active:before {
    background-image: url(../images/dashboard/subtract-orange.svg);
  }
  .wrapper-dashboard.yellow .menu-container .menu-side .menu-side-inner ul li.active:before {
    background-image: url(../images/dashboard/subtract-yellow.svg);
  }
}
.wrapper-dashboard .menu-container.bg-gradient-purple {
  background: transparent !important;
}
.wrapper-dashboard .menu-container .logo {
  display: block;
  background-image: url("../images/logo-u2t05.png");
  background-repeat: no-repeat;
  background-size: 128px 92px;
  width: 128px;
  height: 92px;
  margin-left: 100px;
  position: absolute;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .wrapper-dashboard .menu-container .logo {
    display: none;
  }
}
.wrapper-dashboard .menu-container .btn-signout {
  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: #FF4A4A;
  padding: 5px 18px;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  color: #FFFFFF !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .wrapper-dashboard .menu-container .btn-signout {
    border-radius: 60px;
    bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
  .wrapper-dashboard .menu-container .btn-signout:before {
    content: "";
    display: block;
    background-image: url("../images/dashboard/ic-signout.svg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 31px;
    height: 31px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-dashboard .menu-container .btn-signout {
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.wrapper-dashboard .box-folder .box-folder-dt h3 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.bg-wrapper {
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
.bg-wrapper.middle {
  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;
}
.bg-wrapper .box-panel {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  width: 90%;
  max-width: 100%;
  padding: 15px 10px;
}
@media only screen and (min-width: 768px) {
  .bg-wrapper .box-panel {
    width: 525px;
    padding: 20px 35px;
  }
}
.bg-wrapper .box-panel.signin {
  min-height: 300px;
}
@media only screen and (min-width: 768px) {
  .bg-wrapper .box-panel.signin {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .bg-wrapper .box-panel.signin {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.bg-wrapper .box-panel .logo {
  display: block;
  background: url("../images/logo-u2t.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 60px;
  margin: 0 auto 25px;
}
.bg-wrapper .box-panel .form-group {
  margin-top: 20px;
  margin-bottom: 20px;
}
.bg-wrapper .box-panel .form-group label {
  font-size: 14px;
  font-size: 1.4rem;
  color: #979797;
  padding-bottom: 5px;
}
.bg-wrapper .box-panel .form-group .form-control {
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #CCCCCC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 46px;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
}
.bg-wrapper .box-panel .btn {
  -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 575px) {
  .bg-wrapper .box-panel .btn {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 322px) {
  .bg-wrapper .box-panel .btn {
    font-size: 10px;
    font-size: 1rem;
  }
}
.bg-wrapper .box-panel .btn.btn-google:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-google.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
@media only screen and (min-width: 576px) {
  .bg-wrapper .box-panel .btn.btn-google:before {
    background-size: 29px;
    width: 29px;
    height: 29px;
  }
}
.bg-wrapper .box-panel .btn.btn-google:hover, .bg-wrapper .box-panel .btn.btn-google:focus {
  border-color: #FEB315;
}

.content-area {
  padding: 90px 15px 0;
  min-height: 100vh;
}
@media only screen and (min-width: 768px) {
  .content-area {
    padding: 40px 30px;
    margin-left: 305px;
  }
}
.content-area h1, .content-area h2, .content-area h3 {
  font-weight: 600;
}
.content-area .user-img {
  display: block;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: cover !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 1px solid #FFFFFF;
  position: relative;
}
.content-area .user-img.sm {
  width: 24px;
  height: 24px;
}
.content-area .user-img.d-inline-block {
  display: inline-block !important;
}
@media only screen and (max-width: 767px) {
  .content-area .row.justify-content-between.align-items-center .user-img {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .content-area .signout {
    display: none !important;
  }
}
.content-area .signout.orange {
  background: url("../images/icon/ic-signout.png");
  display: block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 23px 17px;
  width: 23px;
  height: 17px;
}
.content-area .signout.yellow {
  background: url("../images/icon/ic-signout-yellow.png");
  display: block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 23px 17px;
  width: 23px;
  height: 17px;
}
.content-area .signout.purple {
  background: url("../images/icon/ic-signout-purple.png");
  display: block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 23px 17px;
  width: 23px;
  height: 17px;
}
.content-area .status-online {
  display: block;
  background: #A7E520;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  position: absolute;
  bottom: 0;
  right: 0;
}
.content-area .card {
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.card {
  -webkit-box-shadow: 0px 1px 4px #E5E9F2;
          box-shadow: 0px 1px 4px #E5E9F2;
  border-radius: 5px;
  border: none;
}
.card.radius-top {
  border-radius: 15px 15px 0 0;
}
.card.radius-bottom {
  border-radius: 0 0 15px 15px;
}
.card.bd-purple {
  border: 1px solid #592A6E;
}
.card.bd-yellow {
  border: 1px solid #FEB315;
}
.card.bd-orange {
  border: 1px solid #FF3427;
}
.card .card-header {
  background: #FFFFFF;
  padding: 15px;
  border-bottom: 1px solid #EBEDF4;
  position: relative;
  z-index: 1;
}
.card .card-header.extra {
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .card .card-header {
    padding: 25px 30px;
  }
}
.card .card-header .title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (min-width: 576px) {
  .card .card-header .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.card .card-header .title .title-ic {
  display: inline-block;
  background: url("../images/icon/ic-th-large.png");
  background-repeat: no-repeat;
  background-size: 17px 15px;
  width: 17px;
  height: 15px;
  margin-right: 15px;
}
.card .card-body {
  padding: 15px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .card .card-body {
    padding: 15px 20px;
  }
}
.card .card-body iframe {
  border-radius: 10px;
  max-width: 100%;
}
.card .card-body h1,
.card .card-body h2,
.card .card-body h3,
.card .card-body h4,
.card .card-body h5,
.card .card-body h6,
.card .card-body .h1,
.card .card-body .h2,
.card .card-body .h3,
.card .card-body .h4,
.card .card-body .h5,
.card .card-body .h6 {
  line-height: normal;
}
.card .card-footer {
  border-top: 1px solid #EBEDF4;
  background: #FFFFFF;
  padding: 15px 15px 30px 15px;
}
.card .overlay-blur {
  pointer-events: none;
}
.card .overlay-blur:before {
  content: "Coming soon...";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(44.97%, rgba(92, 43, 112, 0.38)), color-stop(170.29%, rgba(92, 43, 112, 0)));
  background: -o-linear-gradient(top, rgba(92, 43, 112, 0.38) 44.97%, rgba(92, 43, 112, 0) 170.29%);
  background: linear-gradient(180deg, rgba(92, 43, 112, 0.38) 44.97%, rgba(92, 43, 112, 0) 170.29%);
  color: #FFFFFF;
  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;
  z-index: 1;
  font-weight: 700;
  font-size: 26px;
  font-size: 2.6rem;
  text-shadow: 2px 2px #000;
}
.card .overlay-blur.lg:before {
  content: "Coming soon...";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(44.97%, rgba(92, 43, 112, 0.58)), color-stop(170.29%, rgba(92, 43, 112, 0)));
  background: -o-linear-gradient(top, rgba(92, 43, 112, 0.58) 44.97%, rgba(92, 43, 112, 0) 170.29%);
  background: linear-gradient(180deg, rgba(92, 43, 112, 0.58) 44.97%, rgba(92, 43, 112, 0) 170.29%);
  color: #FFFFFF;
  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;
  font-weight: 700;
  font-size: 26px;
  font-size: 2.6rem;
  text-shadow: 2px 2px #000;
}

.title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
}
.title-line:before {
  content: "";
  border-radius: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 26px;
  margin-right: 12px;
}
.title-line.gradient-orange {
  background: -webkit-linear-gradient(#FF9029, #FF3427);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FF3427;
  line-height: normal;
}
.title-line.gradient-orange:before {
  content: "";
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
}
.title-line.gradient-purple {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  line-height: normal;
}
.title-line.gradient-purple:before {
  content: "";
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
}
.title-line.yellow {
  color: #FEB315;
}
.title-line.yellow:before {
  content: "";
  background: #FEB315 !important;
}

.content-item {
  display: block;
  border-bottom: 1px dashed #EBEDF4;
  padding-top: 10px;
  padding-bottom: 10px;
}
.content-item p {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 5px;
  color: #B7B7B7;
}
.content-item.webboard {
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .content-item.webboard {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.content-item.webboard:last-child {
  border-bottom: none;
}
.content-item.webboard p {
  color: #333333;
}
.content-item.webboard:hover {
  background: rgba(196, 196, 196, 0.22);
}
.content-item.webboard.active {
  background: rgba(196, 196, 196, 0.22);
}
.content-item.webboard.active:before {
  content: "";
  display: block;
  float: right;
  background: url("../images/icon/ic-star-at-purple.png");
  background-size: 31px 30px;
  width: 31px;
  height: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .content-item.webboard.active:before {
    background-size: 18px 17px;
    width: 18px;
    height: 17px;
    margin-top: 62px;
  }
}
.content-item.webboard.all {
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (min-width: 768px) {
  .content-item.webboard.all.extra {
    height: 155px;
  }
}
@media only screen and (min-width: 1200px) {
  .content-item.webboard.all.extra {
    height: 205px;
  }
}
@media only screen and (min-width: 1200px) {
  .content-item.webboard.all .webboard-dt {
    display: -ms-inline-grid;
    display: inline-grid;
    padding-right: 8%;
  }
}
@media only screen and (max-width: 991px) {
  .content-item.webboard.all .webboard-dt {
    padding-top: 15px;
  }
}
.content-item.webboard.all .webboard-dt h3.txt-wrap2 {
  max-height: 51px;
}
.content-item.webboard.all .photo-thumb {
  width: 100%;
  padding-bottom: 55%;
  border-radius: 10px;
  border: 1px solid #E7E7E7;
}
@media only screen and (min-width: 1200px) {
  .content-item.webboard.all .photo-thumb {
    display: inline-table;
    width: 170px;
    height: 120px;
    padding-bottom: 0;
    margin-right: 20px;
    position: relative;
    top: -14px;
  }
}
@media only screen and (max-width: 1199px) {
  .content-item.webboard.all .photo-thumb {
    width: 100px;
    height: 50px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .content-item.webboard.all .photo-thumb {
    width: 100%;
    height: auto;
    padding-bottom: 70%;
  }
}
.content-item.webboard.all .del {
  cursor: pointer;
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-trash-gray.png");
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 18px;
  height: 21px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
  .content-item.webboard.all .del {
    width: 13px;
    height: 16px;
    margin-top: 10px;
  }
}
.content-item.webboard.all .del:hover {
  background: url("../images/icon/ic-trash-yellow.png");
}
.content-item.webboard.all .edit {
  cursor: pointer;
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-edit-gray.png");
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 24px;
  height: 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
  .content-item.webboard.all .edit {
    width: 16px;
    height: 16px;
    margin-top: 10px;
  }
}
.content-item.webboard.all .edit:hover {
  background: url("../images/icon/ic-edit-yellow.png");
}
@media only screen and (min-width: 768px) {
  .content-item.webboard.all .control-webboard {
    width: 100px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.content-item.manual {
  padding-top: 12px;
  padding-bottom: 0;
}
.content-item.manual:first-child {
  padding-top: 15px;
}
.content-item.manual .photo-thumb {
  display: inline-block;
  vertical-align: middle;
  width: 140px;
  height: 90px;
  padding-bottom: 0;
  margin-right: 15px;
  margin-bottom: 10px;
}
.content-item.manual .dt {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 160px);
}
.content-item.manual .dt .txt-wrap3 {
  max-height: 59px;
}
.content-item.inspire {
  padding-top: 12px;
  padding-bottom: 0;
}
.content-item.inspire:first-child {
  padding-top: 15px;
}
.content-item.inspire .photo-thumb {
  display: inline-block;
  vertical-align: middle;
  width: 58px;
  height: 90px;
  padding-bottom: 0;
  margin-right: 15px;
  margin-bottom: 10px;
}
.content-item.inspire .dt {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 78px);
}
.content-item.inspire .dt h3.txt-wrap2 {
  max-height: 34px;
}
.content-item.inspire .dt p.txt-wrap2 {
  max-height: 41px;
}
.content-item.announcement {
  background: #FFFFFF;
  padding: 20px 25px;
  position: relative;
}
.content-item.announcement:last-child {
  border-bottom: none;
}
.content-item.announcement:hover {
  background: rgba(196, 196, 196, 0.22);
}
.content-item.announcement .content-item-inner:before {
  content: "";
  display: block;
  background: rgb(0, 0, 0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.content-item.announcement.active {
  background: #F5F6FA;
}
.content-item.announcement.active .content-item-inner:before {
  content: "";
  display: block;
  background: rgb(0, 0, 0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.content-item.announcement .group-icon {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}
.content-item.announcement .edit {
  cursor: pointer;
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-edit.png");
  background-repeat: no-repeat;
  background-size: 24px 21px;
  width: 24px;
  height: 21px;
  margin-left: 8px;
  margin-right: 8px;
}
.content-item.announcement .del {
  cursor: pointer;
  display: block;
  vertical-align: middle;
  background: url("../images/icon/ic-trash-orange.png");
  background-repeat: no-repeat;
  background-size: 18px 21px;
  width: 18px;
  height: 21px;
  margin-left: 8px;
  margin-right: 8px;
}
.content-item.faq {
  padding: 15px 20px;
}
.content-item.faq:first-child {
  padding-top: 24px;
}
.content-item.faq:last-child {
  border-bottom: none;
}
.content-item.faq:hover {
  background: rgba(196, 196, 196, 0.22);
}
.content-item .content-item-inner {
  padding: 0 15px;
  position: relative;
}
.content-item .content-item-inner:before {
  display: none;
}
.content-item .content-item-dash {
  border-top: 1px dashed #EBEDF4;
  border-bottom: 1px dashed #EBEDF4;
}
.content-item.read {
  background: #F5F6FA;
  border-left: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
}
.content-item .bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.learning .photo-thumb {
  padding-bottom: 65%;
}

.content-tag {
  display: inline-block;
  color: #49D3FF;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-right: 5px;
  cursor: pointer;
}
@media only screen and (min-width: 576px) {
  .content-tag {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .content-stat-group {
    margin-top: -8px;
  }
}
.content-stat-group .content-stat {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #8A8A8A;
  margin-right: 5px;
  cursor: pointer;
}
.content-stat-group .content-stat:before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat !important;
  margin-right: 5px;
}
.content-stat-group .content-stat.like:before {
  background: url("../images/icon/ic-thumbs-up.png");
  background-size: 9px 10px !important;
  width: 9px;
  height: 10px;
}
.content-stat-group .content-stat.like.active:before {
  background: url("../images/icon/ic-thumbs-up-purple.png");
}
.content-stat-group .content-stat.unlike:before {
  background: url("../images/icon/ic-thumbs-down.png");
  background-size: 9px 10px !important;
  width: 9px;
  height: 10px;
}
.content-stat-group .content-stat.unlike.active:before {
  background: url("../images/icon/ic-thumbs-down-at.png");
}
.content-stat-group .content-stat.heart:before {
  background: url("../images/icon/ic-heart.png");
  background-size: 12px !important;
  width: 12px;
  height: 12px;
}
.content-stat-group .content-stat.heart.active:before {
  background: url("../images/icon/ic-heart-at.png");
}
.content-stat-group .content-stat.comment:before {
  background: url("../images/icon/ic-comment.png");
  background-size: 12px 10px;
  width: 12px;
  height: 10px;
}

.content-item-tb .photo-thumb {
  display: inline-block;
  vertical-align: middle;
  width: 186px;
  height: 115px;
  padding-bottom: 0;
  border-radius: 5px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.content-item-tb .dt {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}

.table p {
  color: #B7B7B7;
}
.table td, .table th {
  padding: 10px;
  vertical-align: middle;
}
.table.table-dash {
  border-collapse: collapse;
}
@media only screen and (min-width: 992px) {
  .table.table-dash td {
    border-top: none;
    border-bottom: 1px dashed #EBEDF4;
    border-right: 1px dashed #EBEDF4;
  }
  .table.table-dash td:last-child {
    border-right: none;
  }
  .table.table-dash tr:last-child td {
    border-bottom: none;
  }
}
@media only screen and (max-width: 991px) {
  .table.table-dash {
    table-layout: fixed;
  }
  .table.table-dash tbody {
    border-top: none;
  }
  .table.table-dash tr {
    border-bottom: 1px dashed #EBEDF4;
  }
  .table.table-dash tr td {
    border-right: 1px dashed #EBEDF4;
    border-top: none;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .table.table-dash tr:first-child {
    border-bottom: none;
  }
  .table.table-dash tr:first-child td {
    border-right: none;
  }
  .table.table-dash tr:last-child {
    border-bottom: 1px solid #EBEDF4;
  }
}
.table.table-dash .txt-wrap2 {
  max-height: 34px;
}

@media only screen and (max-width: 991px) {
  .table-project h3 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 19px;
    line-height: 1.9rem;
  }
  .table-project h3.txt-wrap2 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    line-height: 2.2rem;
    max-height: 41px !important;
    margin-bottom: 10px;
  }
  .table-project p {
    font-size: 10px;
    font-size: 1rem;
  }
}

.box-folder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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: 1px solid #D2D2D2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 10px 5px;
  margin: 8px;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .box-folder {
    width: 45%;
  }
}
.box-folder .folder-ic {
  display: block;
  background: url("../images/icon/ic-folder-purple.png");
  background-repeat: no-repeat;
  background-size: 31px 27px;
  width: 31px;
  height: 27px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.box-folder .pdf-ic {
  display: block;
  background: url("../images/icon/ic-file-pdf.png");
  background-repeat: no-repeat;
  background-size: 30px 40px;
  width: 30px;
  height: 40px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.box-folder .box-folder-dt {
  width: calc(100% - 46px);
}
.box-folder .box-folder-dt h3 {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.box-folder .box-folder-dt p {
  color: #BDBDBD;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.box-folder .user-img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: -2px;
  margin-right: -2px;
  background: #C4C4C4;
  border: 1px solid #979797;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: -0.0888889px;
  color: #717171;
  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;
}
.box-folder .user-img.first-child {
  border: 1px solid #00B907;
}
.box-folder.extra {
  min-height: 74px;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .box-folder.extra {
    margin-left: 0;
    margin-right: 0;
  }
}
.box-folder.extra .box-folder-dt {
  padding-right: 20px;
}
.box-folder.extra .user-img {
  padding: 10px;
}
.box-folder .btn-del {
  display: block;
  background: url("../images/icon/ic-trash-red.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.box-menu {
  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: 10px 25px;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.box-menu h1 {
  color: #FFFFFF;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 991px) {
  .box-menu h1 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .box-menu h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.box-menu .img-map {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .box-menu .img-map {
    width: 122px;
  }
}
@media only screen and (max-width: 1199px) {
  .box-menu .img-map {
    width: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .box-menu .img-map {
    width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .box-menu .img-map {
    width: 122px;
  }
}
.box-menu .img-gi {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .box-menu .img-gi {
    width: 205px;
  }
}
@media only screen and (max-width: 1199px) {
  .box-menu .img-gi {
    width: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .box-menu .img-gi {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .box-menu .img-gi {
    width: 205px;
  }
}
.box-menu .img-bigdata {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .box-menu .img-bigdata {
    width: 158px;
  }
}
@media only screen and (max-width: 1199px) {
  .box-menu .img-bigdata {
    width: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .box-menu .img-bigdata {
    width: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .box-menu .img-bigdata {
    width: 158px;
  }
}

.noti {
  -webkit-box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  padding: 15px;
  position: absolute;
  top: 30px;
  left: 280px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .noti {
    width: 93%;
    left: 15px;
    right: 15px;
    top: 90px;
  }
}
.noti .user-img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  display: block !important;
}
.noti div {
  padding-right: 50px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .noti div {
    padding-right: 40px;
    width: 80%;
  }
}
.noti p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
.noti h3 {
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 5px;
  font-weight: 400;
  word-break: break-word;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 768px) {
  .noti h3 {
    font-size: 18px;
    font-size: 1.8rem;
    max-height: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .noti h3 {
    max-height: 31px;
  }
}
.noti span {
  font-size: 10px;
  font-size: 1rem;
  color: #333333;
}
@media only screen and (max-width: 767px) {
  .noti span {
    display: none;
  }
}
.noti .close {
  display: block;
  background: url("../images/icon/ic-close.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 1;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-detail .title {
  font-size: 18px;
  font-size: 1.8rem;
  padding-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .blog-detail .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.blog-detail .blog-detail-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 0.75px solid #E0E0E0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.blog-detail .blog-detail-sub p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(85, 86, 90, 0.57);
  margin-right: 10px;
}
@media only screen and (min-width: 576px) {
  .blog-detail .blog-detail-sub p {
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 25px;
  }
}
.blog-detail .blog-detail-sub .ic-clock {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-clock.png");
  background-repeat: no-repeat;
  background-size: 11px;
  width: 11px;
  height: 11px;
  margin-right: 5px;
}
.blog-detail .blog-detail-sub .ic-comment {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-comment.png");
  background-repeat: no-repeat;
  background-size: 11px 8px;
  width: 11px;
  height: 8px;
  margin-right: 5px;
}
.blog-detail .blog-detail-editor {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 124.7%;
  letter-spacing: 0.04em;
  color: #848484;
}
@media only screen and (min-width: 576px) {
  .blog-detail .blog-detail-editor {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.blog-detail .blog-detail-editor img {
  max-width: 100%;
  height: auto !important;
}
.blog-detail [class*=col-] {
  border-right: 0.75px solid #E0E0E0;
}
.blog-detail [class*=col-]:last-child {
  border-right: none;
}
.blog-detail .share-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.share-list {
  padding-left: 0;
  list-style: none;
  margin: 12px -5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.share-list li {
  display: inline-block;
  padding: 0 5px;
}
.share-list li .facebook {
  background: url("../images/icon/ic-facebook.png");
  display: block;
  background-repeat: no-repeat;
  background-size: 42px;
  width: 42px;
  height: 42px;
}
@media only screen and (max-width: 901px) {
  .share-list li .facebook {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .share-list li .facebook {
    background-size: 42px;
    width: 42px;
    height: 42px;
  }
}
.share-list li .twitter {
  background: url("../images/icon/ic-twitter.png");
  display: block;
  background-repeat: no-repeat;
  background-size: 42px;
  width: 42px;
  height: 42px;
}
@media only screen and (max-width: 901px) {
  .share-list li .twitter {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .share-list li .twitter {
    background-size: 42px;
    width: 42px;
    height: 42px;
  }
}
.share-list li .clipboard {
  background: url("../images/icon/ic-clipboard.png");
  display: block;
  background-repeat: no-repeat;
  background-size: 42px;
  width: 42px;
  height: 42px;
}
@media only screen and (max-width: 901px) {
  .share-list li .clipboard {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .share-list li .clipboard {
    background-size: 42px;
    width: 42px;
    height: 42px;
  }
}
.share-list li .like {
  background: url("../images/icon/ic-thumbs-up02.png");
  display: block;
  background-repeat: no-repeat !important;
  background-size: 28px 30px !important;
  width: 28px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .share-list li .like {
    background-size: 18px 20px !important;
    width: 18px;
    height: 20px;
  }
}
.share-list li .like:hover, .share-list li .like.active {
  background: url("../images/icon/ic-thumbs-up-yellow.png");
}
.share-list li .share {
  background: url("../images/icon/ic-share-gray02.png");
  display: block;
  background-repeat: no-repeat !important;
  background-size: 32px 30px !important;
  width: 32px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .share-list li .share {
    background-size: 22px 20px !important;
    width: 22px;
    height: 20px;
  }
}
.share-list li .share:hover {
  background: url("../images/icon/ic-share-yellow02.png");
}

.file-topic {
  color: #55565A;
}
@media only screen and (max-width: 575px) {
  .file-topic {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.file-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
@media only screen and (max-width: 767px) {
  .file-group {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.file-group .file-pdf {
  display: inline-block;
  border: 1px solid #D2D2D2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 8px;
  width: 165px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .file-group .file-pdf {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .file-group .file-pdf {
    width: 44%;
  }
}
.file-group .file-pdf .pdf-ic {
  display: block;
  background: url("../images/icon/ic-file-pdf.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 40px;
  margin-right: 15px;
}
.file-group .file-pdf .file-pdf-dt {
  width: 102px;
}
.file-group .file-pdf .file-pdf-dt h4 {
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (min-width: 576px) {
  .file-group .file-pdf .file-pdf-dt h4 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.file-group .file-pdf .file-pdf-dt p {
  font-size: 10px;
  font-size: 1rem;
  color: #BDBDBD;
}
@media only screen and (min-width: 576px) {
  .file-group .file-pdf .file-pdf-dt p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.file-group .file-pdf .del {
  display: block;
  background: url("../images/icon/ic-trash-red.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.file-group .file-pdf .del.yellow {
  display: block;
  background: url("../images/icon/ic-trash-yellow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.file-group .file-pdf .del.orange {
  display: block;
  background: url("../images/icon/ic-trash-orange.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.file-group .box-white {
  width: calc(33.3333333333% - 24px);
  display: block;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  margin: 8px;
}
@media only screen and (max-width: 575px) {
  .file-group .box-white {
    width: calc(50% - 16px);
  }
}
.file-group .box-white .box-white-dt {
  padding: 10px;
}
.file-group .box-white .box-white-dt h3 {
  font-size: 14px;
  font-size: 1.4rem;
  color: #4F4F4F;
  padding-bottom: 5px;
  padding-left: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.file-group .box-white .box-white-dt p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 132.7%;
  color: #BDBDBD;
  padding-left: 0;
}
.file-group .box-white .box-white-dt p.txt-wrap2 {
  max-height: 30px;
}
.file-group .box-white .photo-thumb .photo {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.file-group .box-white:hover .photo-thumb .photo {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.file-group .box-white:hover .box-white-dt h3 {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}
.file-group .box-white.tube .photo-thumb:before {
  content: "";
  background: url("../images/icon/ic-play-transparent.png");
  background-repeat: no-repeat;
  background-size: 24px 27px;
  width: 24px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

@media only screen and (max-width: 575px) {
  .share-topic {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.announcement-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.announcement-topic:before {
  content: "";
  display: block;
  background: url("../images/icon/ic-th-large.png");
  background-repeat: no-repeat;
  background-size: 17px 15px;
  width: 17px;
  height: 15px;
  margin-right: 10px;
}

.form-group {
  margin-top: 20px;
  margin-bottom: 20px;
}
.form-group label {
  color: #2E3B55;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 8px;
}
.form-group .form-control {
  border: 0.5px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  height: 40px;
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}

.form-panel .custom-file {
  height: 40px;
  border-radius: 5px;
}
.form-panel .custom-file .custom-file-input {
  border: 0.5px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
}
.form-panel .custom-file .custom-file-label {
  height: 40px;
}
.form-panel .custom-file .custom-file-label:after {
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}
.form-panel .custom-file label {
  font-size: 14px;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
}
.form-panel .select2-container--bootstrap4 .select2-selection {
  border-radius: 5px;
  border: 0.5px solid #E0E0E0;
  padding-left: 28px;
}
.form-panel .select2-container--bootstrap4 .select2-selection:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-search.png");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-panel .select2-container .select2-search--inline .select2-search__field {
  font-family: "Noto Sans Thai", "Noto Sans";
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}
.form-panel .select2-container--bootstrap4 .select2-results > .select2-results__options {
  font-size: 14px;
  font-size: 1.4rem;
}
.form-panel .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 7px;
}
.form-panel .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear {
  padding-top: 2px;
}
.form-panel .user-img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .form-panel .user-img {
    width: 154px;
    height: 154px;
    margin-bottom: 50px;
  }
}
.form-panel .user-img .camera-ic {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .form-panel .user-img .camera-ic {
    width: 48px;
    height: 48px;
  }
}
.form-panel .user-img .camera-ic:before {
  content: "";
  display: block;
  background: url("../images/icon/ic-camera.png");
  background-repeat: no-repeat;
  background-size: 26px 22px;
  width: 26px;
  height: 22px;
}
@media only screen and (max-width: 767px) {
  .form-panel .user-img .camera-ic:before {
    background-size: contain;
    width: 20px;
  }
}

.select2-container--bootstrap4 .select2-results__option[aria-selected=true] {
  background-color: transparent !important;
  color: #2E3B55 !important;
}
.select2-container--bootstrap4 .select2-results__option[aria-selected=true]:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-check.png");
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.select2-container--bootstrap4 .select2-results__option {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: transparent !important;
  color: #2E3B55 !important;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .select2-container--bootstrap4 .select2-results__option {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.select2-container--bootstrap4 .select2-results__option:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-uncheck.png");
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.topic-line {
  color: #FFFFFF;
  padding-bottom: 12px;
  position: relative;
}
.topic-line:before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(0.73%, #EEC1F3), color-stop(22.05%, #FF9029), color-stop(47.66%, #31EDC0), color-stop(71.55%, #FDCF78), color-stop(99.24%, #1383C9));
  background: -o-linear-gradient(left, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  background: linear-gradient(90deg, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
}

.btn-yellow {
  background: #FEB315;
  border-radius: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFFFFF !important;
  padding-left: 65px;
  padding-right: 65px;
}
.btn-yellow:hover {
  opacity: 0.8;
}

.section-intro {
  position: relative;
  padding-top: 60px;
}
@media only screen and (min-width: 992px) {
  .section-intro {
    padding-top: 85px;
  }
}
.section-intro.sm {
  position: relative;
  z-index: 1;
}
.section-intro.sm .photo-thumb {
  padding-bottom: 31%;
}
@media only screen and (min-width: 768px) {
  .section-intro.sm .photo-thumb {
    padding-bottom: 18%;
  }
}
.section-intro.sm .caption {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (min-width: 992px) {
  .section-intro.sm .caption {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.section-intro.sm .caption h1 {
  color: #FFFFFF;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 992px) {
  .section-intro.sm .caption h1 {
    font-size: 76px;
    font-size: 7.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-intro.sm .caption h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
.section-intro .intro-overlay {
  position: relative;
}
.section-intro .intro-overlay:before {
  content: "";
  background: -o-linear-gradient(165.01deg, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0) 56.46%);
  background: linear-gradient(284.99deg, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0) 56.46%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-intro .intro-overlay.yellow:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(254, 179, 21, 0.77)), color-stop(292.19%, rgba(254, 179, 21, 0.49))) !important;
  background: -o-linear-gradient(top, rgba(254, 179, 21, 0.77) 0%, rgba(254, 179, 21, 0.49) 292.19%) !important;
  background: linear-gradient(180deg, rgba(254, 179, 21, 0.77) 0%, rgba(254, 179, 21, 0.49) 292.19%) !important;
}
.section-intro .intro-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-intro .intro-content.home {
  top: auto;
  bottom: 8%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media only screen and (max-width: 767px) {
  .section-intro .intro-content.home {
    bottom: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .section-intro .intro-content.home .img-intro {
    width: 210px;
  }
}
.section-intro .intro-content.news .content-txt, .section-intro .intro-content.news .content-txt * {
  font-family: "Noto Sans Thai", "Noto Sans" !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 132.7%;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .section-intro .intro-content.news .content-txt, .section-intro .intro-content.news .content-txt * {
    font-size: 20px !important;
    font-size: 2rem !important;
  }
}
@media only screen and (min-width: 768px) {
  .section-intro .intro-content.news {
    top: 57%;
  }
}
@media only screen and (max-width: 1199px) {
  .section-intro .intro-content.news {
    top: 58%;
  }
}
@media only screen and (max-width: 767px) {
  .section-intro .intro-content.news {
    top: 55%;
  }
}
.section-intro .intro-content.extra {
  top: auto;
  bottom: 8%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media only screen and (max-width: 767px) {
  .section-intro .intro-content.extra {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-intro .intro-content.extra .img-intro {
    width: 210px;
  }
}
.section-intro .intro-content h1 {
  font-weight: 900;
  font-size: 36px;
  font-size: 3.6rem;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #FEB315;
}
@media only screen and (min-width: 992px) {
  .section-intro .intro-content h1 {
    font-size: 68px;
    font-size: 6.8rem;
    line-height: 93px;
    line-height: 9.3rem;
  }
}
.section-intro .intro-content p {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFFFFF;
}
@media only screen and (min-width: 992px) {
  .section-intro .intro-content p {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.section-intro .intro-content .btn-invite {
  display: block;
  margin-top: 5px;
  z-index: 4;
}
.section-intro .intro-content .btn-invite.active {
  position: fixed;
  top: 105px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .section-intro .intro-content .btn-invite.active {
    display: none;
  }
}
.section-intro .intro-content .btn-invite img {
  width: 463px;
  height: auto;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .section-intro .intro-content .btn-invite img {
    width: 284px;
  }
}
.section-intro.extra .intro-content h1 {
  font-size: 20px;
  font-size: 2rem;
  line-height: normal;
}
@media only screen and (min-width: 992px) {
  .section-intro.extra .intro-content h1 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 374px) {
  .section-intro.extra .intro-content h1 {
    margin-top: -10%;
  }
}
.section-intro.extra .intro-content p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .section-intro.extra .intro-content p {
    font-size: 20px;
    font-size: 2rem;
  }
}
.section-intro.extra .intro-content .date {
  display: block;
  padding-top: 10px;
  color: #FFFFFF;
  font-size: 10px;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  .section-intro.extra .intro-content .date {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 20px;
  }
}
.section-intro.extra .intro-content .date:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar-white.png");
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-top: -5px;
}
.section-intro.extra .intro-overlay:before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15.22%, rgba(92, 43, 112, 0.77)), color-stop(113.35%, rgba(92, 43, 112, 0.35)));
  background: -o-linear-gradient(top, rgba(92, 43, 112, 0.77) 15.22%, rgba(92, 43, 112, 0.35) 113.35%);
  background: linear-gradient(180deg, rgba(92, 43, 112, 0.77) 15.22%, rgba(92, 43, 112, 0.35) 113.35%);
}
.section-intro.border-gradient:after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.73%, #EEC1F3), color-stop(22.05%, #FF9029), color-stop(47.66%, #31EDC0), color-stop(71.55%, #FDCF78), color-stop(99.24%, #1383C9));
  background: -o-linear-gradient(left, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  background: linear-gradient(90deg, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 992px) {
  .section-intro.border-gradient:after {
    height: 7px;
  }
}

.section-content {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-content h1 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 135.19%;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .section-content h1 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.section-content .content-editor {
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 135.19%;
  letter-spacing: 0.03em;
  word-break: break-word;
  color: #444444;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .section-content .content-editor {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.section-content .content-editor img {
  max-width: 100% !important;
  height: auto !important;
}
.section-content .content-editor iframe {
  max-width: 100% !important;
}
.section-content .date {
  padding-top: 10px;
  padding-bottom: 15px;
  color: #FEB315;
}
.section-content .date:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar-yellow.png");
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-top: -5px;
}
@media only screen and (max-width: 767px) {
  .section-content .date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.section-content .info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px -14px;
}
.section-content .info-group .info-sub {
  padding: 5px 14px;
  position: relative;
}
.section-content .info-group .info-sub:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: #E0E0E0;
  width: 1px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-content .info-group .info-sub:last-child:before {
  display: none;
}
.section-content .topic-line {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .section-content .topic-line {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.section-about {
  position: relative;
  padding-top: 25px;
  padding-bottom: 10px;
}
.section-about.extra {
  padding-top: 50px;
  padding-bottom: 0;
}
.section-about.extra:before, .section-about.extra:after {
  display: none;
}
.section-about.extra .about-inner {
  padding-bottom: 0;
}
.section-about.extra .about-inner:before {
  content: "";
  background: url(../images/logo-vector02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 345px;
  max-width: 100%;
  height: 360px;
  position: absolute;
  left: 0;
  top: 0;
}
.section-about.extra .about-inner:after {
  content: "";
  background: url(../images/logo-vector09.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 310px;
  max-width: 100%;
  height: 340px;
  position: absolute;
  right: 0;
  top: -40%;
}
@media only screen and (min-width: 768px) {
  .section-about {
    padding-bottom: 35px;
  }
  .section-about .col-about {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-about .col-showcase:first-child {
    padding-left: 70px;
  }
  .section-about .col-showcase:last-child {
    padding-right: 70px;
  }
}
@media only screen and (min-width: 992px) {
  .section-about {
    padding-top: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .section-about {
    padding-bottom: 65px;
  }
}
.section-about .container {
  position: relative;
  z-index: 3;
}
.section-about h1 {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 132.7%;
  font-weight: 600;
  text-transform: uppercase;
  color: #FEB315;
}
@media only screen and (min-width: 992px) {
  .section-about h1 {
    font-size: 39px;
    font-size: 3.9rem;
  }
}
.section-about h2 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 132.7%;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .section-about h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.section-about .content-txt, .section-about .content-txt * {
  font-family: "Noto Sans Thai", "Noto Sans" !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 132.7%;
  color: #8A8A8A;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .section-about .content-txt, .section-about .content-txt * {
    font-size: 20px !important;
    font-size: 2rem !important;
  }
}
.section-about .content-txt.c-white, .section-about .content-txt.c-white * {
  color: #FFFFFF;
}
.section-about .date {
  padding-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (min-width: 992px) {
  .section-about .date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.section-about .topic-line {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .section-about .topic-line {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.section-about:before {
  content: "";
  background: url("../images/bg/bg-vector-purple-mb.png");
  background-repeat: no-repeatn !important;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .section-about:before {
    background: url("../images/bg/bg-vector-purple.png");
    height: 870px;
    top: 35%;
  }
}
.section-about:after {
  content: "";
  background: url("../images/vector-cloud.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 19%;
}
.section-about .img-cloud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .section-about .img-cloud {
    bottom: -5px;
  }
}
.section-about .about-inner {
  padding-bottom: 70px;
}
@media only screen and (min-width: 992px) {
  .section-about .about-inner {
    padding-bottom: 150px;
  }
}
.section-about .about-inner:before {
  content: "";
  background: url("../images/logo-vector01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  max-width: 100%;
  height: 400px;
  position: absolute;
  right: 0;
  top: 10%;
}
.section-about .about-inner .dt-txt {
  line-height: 132.7%;
}
.section-about img {
  border: 1px solid #E0E0E0;
  -webkit-box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
.section-about .slick-dots {
  display: none !important;
}

.section-project {
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .section-project {
    margin-top: -2%;
  }
}
@media only screen and (max-width: 767px) {
  .section-project {
    padding-top: 20px;
  }
}
.section-project.extra {
  padding-top: 85px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .section-project.extra {
    padding-top: 160px;
  }
}
.section-project .topic-line {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}
@media only screen and (min-width: 992px) {
  .section-project .topic-line {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.section-project .box-white {
  margin-top: 15px;
  margin-bottom: 15px;
}
.section-project .nav-tabs-project {
  -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;
  border-bottom: none;
}
.section-project .nav-tabs-project .nav-link {
  color: #B7B7B7 !important;
  border: none !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.section-project .nav-tabs-project .nav-link.extra {
  padding-left: 2.5em;
  padding-right: 2.5em;
}
.section-project .nav-tabs-project .nav-link:first-child {
  padding-left: 0;
}
.section-project .nav-tabs-project .nav-link.last-child {
  padding-right: 0;
}
.section-project .nav-tabs-project .nav-link.active {
  color: #592A6E !important;
  font-weight: 700;
}
.section-project .nav-tabs-project .nav-link.active:before {
  content: "";
  background: #592A6E;
  width: 65%;
  height: 2px;
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.section-project .input-group-icon .form-control {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
}
.section-project .btn-search {
  display: block;
  background-image: url("../images/icon/ic-search-circle-yellow.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 40px;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  .section-project .btn-search {
    margin-left: 20px;
  }
}
.section-project .btn-search:hover {
  opacity: 0.8;
}

.filter {
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 20px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .filter.mb {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .filter.dk {
    display: none;
  }
}
.filter .col-filter {
  padding: 8px;
}
@media only screen and (max-width: 767px) {
  .filter .col-filter:first-child {
    padding-top: 0;
  }
  .filter .col-filter:last-child {
    padding-bottom: 0;
  }
  .filter .col-filter.extra {
    padding-top: 0;
    padding-bottom: 0;
  }
  .filter .col-filter.extra .btn-search {
    border-radius: 5px;
  }
}
.filter .col-filter .form-control {
  border: 1px solid #C2C2C2 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #B7B7B7 !important;
  height: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
.filter .col-filter .form-control::-webkit-input-placeholder { /* Edge */
  color: #B7B7B7 !important;
}
.filter .col-filter .form-control-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B7B7B7 !important;
}
.filter .col-filter .form-control::-webkit-input-placeholder {
  color: #B7B7B7 !important;
}
.filter .col-filter .form-control::-moz-placeholder {
  color: #B7B7B7 !important;
}
.filter .col-filter .form-control:-ms-input-placeholder {
  color: #B7B7B7 !important;
}
.filter .col-filter .form-control::-ms-input-placeholder {
  color: #B7B7B7 !important;
}
.filter .col-filter .form-control::placeholder {
  color: #B7B7B7 !important;
}
@media only screen and (min-width: 768px) {
  .filter .col-filter .btn-search {
    display: block;
    background: url("../images/icon/ic-search-circle-yellow.png");
    background-repeat: no-repeat;
    background-size: 45px;
    width: 45px;
    height: 45px;
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .filter .col-filter .btn-search {
    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: #FEB315;
    width: 100%;
    height: 45px;
    border-radius: 22px;
    color: #FFFFFF !important;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .filter .col-filter .btn-search:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("../images/icon/ic-search-white.png");
    background-repeat: no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}
.filter .col-filter .btn-search:hover {
  opacity: 0.8;
}
.filter .btn-filter {
  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;
  width: 50px;
  height: 45px;
  border: 1px solid #C2C2C2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  margin-left: 6px;
}
.filter .btn-filter:before {
  content: "";
  display: block;
  background: url("../images/icon/ic-filter-gray.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.filter .btn-filter.active:before {
  content: "";
  display: block;
  background: url("../images/icon/ic-filter-yellow.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.filter .collapse {
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-sponsors {
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  padding-top: 25px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .section-sponsors {
    padding-top: 50px;
    padding-bottom: 65px;
  }
}

.section-coach {
  position: relative;
  background: #FFFFFF;
  padding: 40px 0;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .section-coach {
    padding: 45px 0 95px;
  }
}
@media only screen and (max-width: 991px) {
  .section-coach {
    padding-bottom: 75px;
  }
}
.section-coach:before {
  content: "";
  background: url("../images/logo-vector02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 345px;
  max-width: 100%;
  height: 484px;
  position: absolute;
  left: 0;
  top: 0;
}
.section-coach .container {
  position: relative;
  z-index: 1;
}
.section-coach h1 {
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 132.7%;
  text-transform: uppercase;
  color: #7E3584;
}
@media only screen and (min-width: 768px) {
  .section-coach h1 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.section-coach h2 {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 29px;
  line-height: 2.9rem;
  -webkit-columns: #FFFFFF;
     -moz-columns: #FFFFFF;
          columns: #FFFFFF;
}
@media only screen and (min-width: 992px) {
  .section-coach h2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 33px;
    line-height: 3.3rem;
  }
}
.section-coach .name-txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 110.6%;
  color: #5C2B70;
}
@media only screen and (min-width: 768px) {
  .section-coach .name-txt {
    font-size: 20px;
    font-size: 2rem;
  }
}
.section-coach .role-txt {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #5C2B70;
}
@media only screen and (min-width: 992px) {
  .section-coach .role-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.section-coach .slider-coach .slick-prev {
  position: absolute;
  right: 110px;
  left: auto;
  top: 100%;
  margin-top: 20px;
}
.section-coach .slider-coach .slick-next {
  position: absolute;
  right: 45px;
  top: 100%;
  margin-top: 20px;
}

.section-contact {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-contact {
    padding-top: 40px;
  }
}
.section-contact:before {
  content: "";
  background: url("../images/logo-vector01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  max-width: 100%;
  height: 400px;
  position: absolute;
  right: 0;
  top: -15%;
}
.section-contact h1 {
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
.section-contact p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
}
.section-contact .contact-group {
  padding: 18px 0;
  margin: 18px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-contact .contact-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.section-contact .contact-group:before {
  content: "";
  width: 100%;
  max-width: 100%;
  height: 2px;
  background: rgba(81, 81, 81, 0.2);
  position: absolute;
  bottom: 0;
}
.section-contact .contact-group:last-child:before {
  display: none;
}
.section-contact .contact-list {
  list-style: none;
  padding-left: 0;
}
.section-contact .contact-list li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.section-contact .contact-list li a {
  font-size: 16px;
  font-size: 1.6rem;
}
.section-contact .contact-list li .phone:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-phone-square.png");
  background-repeat: no-repeat;
  background-size: 40px;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.section-contact .contact-list li .fax:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-fax-square.png");
  background-repeat: no-repeat;
  background-size: 40px;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.section-contact-info {
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .section-contact-info {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .section-contact-info:before {
    content: "";
    background: url("../images/logo-vector03.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 145px;
    max-width: 100%;
    height: 584px;
    position: absolute;
    left: 16%;
    top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1499px) {
  .section-contact-info:before {
    left: 3%;
  }
}
@media only screen and (min-width: 768px) {
  .section-contact-info:after {
    content: "";
    background: url("../images/logo-vector04.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 145px;
    max-width: 100%;
    height: 584px;
    position: absolute;
    right: 16%;
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1499px) {
  .section-contact-info:after {
    right: 3%;
  }
}
@media only screen and (min-width: 768px) {
  .section-contact-info .contact-box {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 40px 40px 25px;
    position: relative;
    z-index: 1;
  }
}
.section-contact-info .contact-box .img-contact {
  width: 100px;
}
@media only screen and (min-width: 768px) {
  .section-contact-info .contact-box .img-contact {
    width: 240px;
  }
}
.section-contact-info .contact-box .title {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .section-contact-info .contact-box .title {
    font-size: 43px;
    font-size: 4.3rem;
  }
}
.section-contact-info .contact-box h1 {
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  font-size: 2rem;
}
.section-contact-info .contact-box p {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .section-contact-info .contact-box .contact-line {
    border: 5px solid #FEB315;
    margin-bottom: 10px;
  }
}
.section-contact-info .contact-box .btn-search {
  display: block;
  background: url("../images/icon/ic-link-circle-yellow.png");
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
}
@media only screen and (min-width: 768px) {
  .section-contact-info .contact-box .btn-search {
    background-size: 45px;
    width: 45px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-contact-info .contact-box .btn-search:hover {
  opacity: 0.8;
}
.section-contact-info .table-contact {
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .section-contact-info .table-contact {
    display: none;
  }
}
.section-contact-info .table-contact thead {
  background: #FEB315;
}
.section-contact-info .table-contact thead th {
  padding: 25px;
  color: #FFFFFF;
  border-top: none;
  font-size: 18px;
  font-size: 1.8rem;
  word-break: break-word;
}
.section-contact-info .table-contact tbody tr:nth-of-type(even) {
  background: #F2F2F2;
}
.section-contact-info .table-contact tbody td {
  padding: 25px;
  border-top: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 124.7%;
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  .section-contact-info .card-contact {
    display: none;
  }
}

.section-contact-form {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 0 15px;
}
@media only screen and (min-width: 768px) {
  .section-contact-form {
    padding: 60px 0 40px;
  }
}
.section-contact-form h1 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .section-contact-form h1 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.section-contact-form p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .section-contact-form p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}
.section-contact-form .form-control {
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 0;
  border: none;
  padding: 10px 15px;
}
.section-contact-form .form-control::-webkit-input-placeholder { /* Edge */
  color: #8A8A8A;
}
.section-contact-form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #8A8A8A;
}
.section-contact-form .form-control::-moz-placeholder {
  color: #8A8A8A;
}
.section-contact-form .form-control::-ms-input-placeholder {
  color: #8A8A8A;
}
.section-contact-form .form-control::placeholder {
  color: #8A8A8A;
}
.section-contact-form select {
  font-size: 14px;
  font-size: 1.4rem;
  color: #BFBFBF;
  width: 100%;
  padding: 10px;
  color: #8A8A8A;
  border: none;
}
.section-contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.section-contact-form textarea::-webkit-input-placeholder { /* Edge */
  color: #8A8A8A;
}
.section-contact-form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #8A8A8A;
}
.section-contact-form textarea::-moz-placeholder {
  color: #8A8A8A;
}
.section-contact-form textarea::-ms-input-placeholder {
  color: #8A8A8A;
}
.section-contact-form textarea::placeholder {
  color: #8A8A8A;
}

.section-grid {
  padding-top: 35px;
  padding-bottom: 25px;
}
.section-grid .topic-line {
  font-weight: 700;
  text-transform: uppercase;
  color: #592A6E;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .section-grid .topic-line {
    font-size: 30px;
    font-size: 3rem;
  }
}
.section-grid .topic-line .c-yellow {
  color: #FEB315 !important;
}
.section-grid .box-white {
  margin-top: 15px;
  margin-bottom: 15px;
}
.section-grid .box-white .date {
  padding-top: 5px;
}
.section-grid .box-white .date:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar02.png");
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-top: -5px;
}
.section-grid .slider-coach .slick-prev {
  top: 32%;
}
.section-grid .slider-coach .slick-next {
  top: 32%;
}
.section-grid .box-coach {
  display: block;
}
.section-grid .box-coach .box-coach-dt {
  padding: 5px;
}
.section-grid .box-coach .box-coach-dt h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  min-height: 48px;
}

.section-doc {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .section-doc {
    padding-top: 35px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .section-doc:before {
    content: "";
    background: url("../images/vector-book-pencil.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 482px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.section-doc .container {
  position: relative;
  z-index: 1;
}
.section-doc .topic-line {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .section-doc .topic-line {
    font-size: 30px;
    font-size: 3rem;
  }
}

.section-document {
  position: relative;
  padding-top: 85px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .section-document {
    padding-top: 130px;
    padding-bottom: 55px;
  }
  .section-document .btn-search {
    margin-left: 20px;
  }
}
.section-document .btn-search {
  display: block;
  background-image: url("../images/icon/ic-search-circle-yellow.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 40px;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
.section-document .btn-search:hover {
  opacity: 0.8;
}

.section-doc-published {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 85px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .section-doc-published {
    padding-top: 130px;
    padding-bottom: 55px;
  }
}
.section-doc-published .doc-item {
  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;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 15px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.section-doc-published .doc-item:last-child {
  margin-bottom: 0;
}
.section-doc-published .doc-item .photo-thumb {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  padding-bottom: 0;
  background: #FFFFFF;
  border: 1px solid #DBDBDB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}
.section-doc-published .doc-item .photo-thumb .photo {
  background-size: contain;
}
.section-doc-published .doc-item .doc-item-dt {
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 60px);
}
.section-doc-published .doc-item .doc-item-dt h3 {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) {
  .section-doc-published .doc-item .doc-item-dt h3 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 767px) {
  .section-doc-published .doc-item .doc-item-dt h3 {
    word-break: break-word;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    font-size: 1.2rem;
    max-height: 26px;
    height: 26px;
  }
}
.section-doc-published .doc-item .doc-item-dt p {
  color: #B7B7B7;
  font-size: 10px;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .section-doc-published .doc-item .doc-item-dt p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.section-doc-published .doc-item .ic-download {
  display: inline-block;
  vertical-align: middle;
  background-size: 16px !important;
  width: 16px;
  height: 16px;
}
.section-doc-published .doc-item.doc-file .photo-thumb .photo-parent {
  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;
}
.section-doc-published .doc-item.doc-file .photo-thumb .photo-parent .photo {
  width: 80%;
  height: 80%;
}
.section-doc-published .doc-item:hover .doc-item-dt h3 {
  color: #FEB315 !important;
}
.section-doc-published .doc-item:hover .ic-download {
  margin-top: -10px;
}
.section-doc-published .collapse-file-media .doc-item:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .section-doc-published .row-dash {
    margin-left: -55px;
    margin-right: -55px;
  }
}
.section-doc-published .row-dash .col-dash {
  border-right: 1px dashed rgba(255, 255, 255, 0.58);
}
@media only screen and (min-width: 768px) {
  .section-doc-published .row-dash .col-dash {
    padding-left: 55px;
    padding-right: 55px;
  }
}
.section-doc-published .row-dash .col-dash:last-child {
  border-right: none;
}

.section-faq {
  position: relative;
  padding-top: 12px;
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .section-faq {
    padding-bottom: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .section-faq {
    background-image: none !important;
  }
}
.section-faq .container {
  position: relative;
  z-index: 1;
}
.section-faq .topic-line {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .section-faq .topic-line {
    font-size: 30px;
    font-size: 3rem;
  }
}
.section-faq #accordion {
  margin-top: 25px;
}
@media only screen and (min-width: 768px) {
  .section-faq #accordion {
    margin-top: 50px;
  }
}

.faq-panel-title {
  padding-bottom: 25px;
}

.faq-panel-title > a:after {
  display: block;
  content: "";
  border-bottom: 1px dashed rgba(68, 68, 68, 0.27);
  padding-bottom: 25px;
}

.faq-panel-title a, .faq-panel-title a:active {
  color: #333333;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .faq-panel-title a, .faq-panel-title a:active {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}

.faq-panel-heading .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: -25px;
  margin-left: 12px;
}
.faq-panel-heading .btn-group .btn-edit {
  display: block;
  background: url("../images/icon/ic-edit-gray.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 15px;
  margin-left: 8px;
  margin-right: 8px;
  cursor: pointer;
}
.faq-panel-heading .btn-group .btn-del {
  display: block;
  background: url("../images/icon/ic-trash-gray.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 13px;
  height: 15px;
  margin-left: 8px;
  margin-right: 8px;
  cursor: pointer;
}

.faq-panel-heading a:before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  float: right;
  background: url("../images/icon/ic-arrow-down-purple.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 18px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

.faq-panel-heading a[aria-expanded=true]::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  float: right;
  background: url("../images/icon/ic-arrow-down-purple.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 18px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.faq-panel-collapse {
  padding: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  background: #F4F4F4;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .faq-panel-collapse {
    padding: 20px 45px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}

.box-white {
  display: block;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
.box-white .box-white-dt {
  padding: 20px 15px;
}
.box-white .box-white-dt h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #4F4F4F;
  padding-bottom: 5px;
  padding-left: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-white .box-white-dt h3.extra {
  line-height: 132.7%;
}
.box-white .box-white-dt p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 132.7%;
  color: #BDBDBD;
  padding-left: 0;
}
.box-white .box-white-dt p.txt-wrap2 {
  max-height: 30px;
}
.box-white .box-white-dt p.extra {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 132.7%;
  color: #B7B7B7;
}
.box-white .box-white-dt.news .txt-wrap2 {
  max-height: 43px;
  height: 43px;
  line-height: 1.4;
}
.box-white .txt-dt, .box-white .txt-dt * {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 132.7%;
  color: #BDBDBD;
  padding-left: 0;
}
.box-white .txt-dt.txt-wrap2, .box-white .txt-dt *.txt-wrap2 {
  max-height: 30px;
  height: 30px;
}
.box-white .photo-thumb .photo {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-white:hover .photo-thumb .photo {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.box-white:hover .box-white-dt h3 {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
}
.box-white.doc {
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .box-white.doc {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.box-white.doc .box-white-dt .dt {
  width: calc(100% - 26px);
  padding-right: 5px;
}
.box-white.doc .box-white-dt .dt h3 {
  font-size: 16px;
  font-size: 1.6rem;
}
.box-white.doc:hover .box-white-dt .ic-download {
  margin-top: -5px;
}
.box-white.tube .photo-thumb:before {
  content: "";
  background: url("../images/icon/ic-play-transparent.png");
  background-repeat: no-repeat;
  background-size: 44px 50px;
  width: 44px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.box-white.tube .box-white-dt .btn-like {
  background: url("../images/icon/ic-thumbs-up-gray.png") !important;
  background-repeat: no-repeat !important;
  background-size: 22px 23px !important;
  width: 22px !important;
  height: 23px !important;
  margin-left: 0;
  margin-right: 20px;
  cursor: pointer;
}
.box-white.tube .box-white-dt .btn-like:hover, .box-white.tube .box-white-dt .btn-like.active {
  background: url("../images/icon/ic-thumbs-up-yellow.png") !important;
  background-repeat: no-repeat !important;
  background-size: 22px 23px !important;
  width: 22px !important;
  height: 23px !important;
}
.box-white.tube .box-white-dt .btn-share {
  background: url("../images/icon/ic-share-gray.png") !important;
  background-repeat: no-repeat !important;
  background-size: 25px 23px !important;
  width: 25px !important;
  height: 23px !important;
  margin-left: 0;
  margin-right: 20px;
  cursor: pointer;
}
.box-white.tube .box-white-dt .btn-share:hover, .box-white.tube .box-white-dt .btn-share.active {
  background: url("../images/icon/ic-share-yellow.png") !important;
  background-repeat: no-repeat !important;
  background-size: 25px 23px !important;
  width: 25px !important;
  height: 23px !important;
}
.box-white.tube .box-white-dt .btn-share.extra {
  background: url("../images/icon/ic-share-gray02.png") !important;
  background-repeat: no-repeat !important;
  background-size: 25px 23px !important;
  width: 25px !important;
  height: 23px !important;
}
.box-white.tube .box-white-dt .btn-share.extra:hover, .box-white.tube .box-white-dt .btn-share.extra.active {
  background: url("../images/icon/ic-share-yellow02.png") !important;
  background-repeat: no-repeat !important;
  background-size: 25px 23px !important;
  width: 25px !important;
  height: 23px !important;
}
.box-white.tube .box-white-dt .btn-disabled.active {
  pointer-events: none;
}
.box-white.tube .box-white-dt .txt-wrap2 {
  max-height: 45px;
  height: 45px;
}
.box-white.tube.transparent {
  background: transparent;
  border: none;
}
.box-white.tube.transparent .box-white-dt {
  padding: 10px 15px 0;
}
.box-white.tube.transparent .box-white-dt p {
  font-size: 16px;
  font-size: 1.6rem;
}
.box-white.tube.transparent .photo-thumb {
  -webkit-box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.box-white.tube.transparent .btn-like.tube {
  background-size: 14px 15px !important;
  width: 14px !important;
  height: 15px !important;
  margin-bottom: 2px;
}
.box-white.tube.transparent .btn-like.tube.active {
  background: url(../images/icon/ic-thumbs-up-yellow.png) !important;
  background-repeat: no-repeat !important;
  background-size: 14px 15px !important;
  width: 14px !important;
  height: 15px !important;
}

.btn-like-txt {
  font-size: 16px;
  font-size: 1.6rem;
  color: #BDBDBD;
}

.topic-txt {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .topic-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.slider-news .slick-prev, .slider-news .slick-next {
  top: 35%;
}

.slider-doc img {
  border: 1px solid #DBDBDB;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.slider-doc img:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

@media only screen and (max-width: 767px) {
  .slider-showcase .slick-prev {
    position: absolute;
    right: 110px;
    left: 38%;
    top: 100%;
    margin-top: 20px;
  }
  .slider-showcase .slick-next {
    position: absolute;
    right: 38%;
    top: 100%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .slider-showcase .col-showcase span.c-white.d-block.pt-1 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.slider-tube-event, .slider-tube-u2t, .slider-tube-work, .slider-tube-inspire, .slider-tube-other {
  margin-top: 10px;
  margin-left: -8px;
  margin-right: -8px;
}
@media only screen and (max-width: 767px) {
  .slider-tube-event, .slider-tube-u2t, .slider-tube-work, .slider-tube-inspire, .slider-tube-other {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.slider-tube-event .slick-slide, .slider-tube-u2t .slick-slide, .slider-tube-work .slick-slide, .slider-tube-inspire .slick-slide, .slider-tube-other .slick-slide {
  margin: 0 8px;
}

.slider-tube-inspire .slick-prev, .slider-tube-inspire .slick-next {
  top: 29%;
  -webkit-transform: translateY(-29%);
      -ms-transform: translateY(-29%);
          transform: translateY(-29%);
}

.slider-vdo .slick-prev, .slider-vdo .slick-next {
  top: 29%;
  -webkit-transform: translateY(-29%);
      -ms-transform: translateY(-29%);
          transform: translateY(-29%);
}
@media only screen and (min-width: 768px) {
  .slider-vdo .slick-prev, .slider-vdo .slick-next {
    top: 40%;
    -webkit-transform: translateY(-40%);
        -ms-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}
.slider-vdo .tube {
  cursor: pointer;
}
.slider-vdo .tube .photo-thumb:before {
  content: "";
  background: url(../images/icon/ic-play-vdo.png);
  background-repeat: no-repeat;
  background-size: 80px;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.section-other {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 0;
}
@media only screen and (min-width: 768px) {
  .section-other {
    padding: 45px 0;
  }
}
.section-other .topic-line {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .section-other .topic-line {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.section-other .slick-dots {
  display: none !important;
}
.section-other .slider-news .slick-prev, .section-other .slider-news .slick-next {
  top: 50%;
}

@media only screen and (max-width: 767px) {
  .head-row .btn-group {
    width: 100%;
  }
  .head-row .btn-group .btn {
    padding-left: 2px !important;
    padding-right: 2px !important;
    height: auto;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.comment-container label {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) {
  .comment-container label {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.comment-container .form-control {
  border: 1px solid #B7B7B7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 12px 18px;
}
.comment-container .form-control::-webkit-input-placeholder { /* Edge */
  color: #BFBFBF;
}
.comment-container .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #BFBFBF;
}
.comment-container .form-control::-moz-placeholder {
  color: #BFBFBF;
}
.comment-container .form-control::-ms-input-placeholder {
  color: #BFBFBF;
}
.comment-container .form-control::placeholder {
  color: #BFBFBF;
}
.comment-container h2 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) {
  .comment-container h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.comment-container .comment-box {
  border: 1px solid #B7B7B7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.comment-container .comment-box .head {
  padding: 20px 12px;
  border-bottom: 0.75px solid #E0E0E0;
}
.comment-container .comment-box .head .user-img {
  display: inline-table;
  margin-right: 10px;
}
.comment-container .comment-box .head .head-info {
  display: -ms-grid;
  display: grid;
}
.comment-container .comment-box .head .head-info h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  line-height: 2.5rem;
  font-weight: 500;
  color: #333333;
}
.comment-container .comment-box .head .head-info .txt-datetime {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #B7B7B7;
}
.comment-container .comment-box .body {
  padding: 20px 12px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  letter-spacing: 0.04em;
  color: #333333;
}

.modal-border .modal-content {
  position: relative;
  overflow: hidden;
}
.modal-border .modal-content:after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(0.73%, #EEC1F3), color-stop(22.05%, #FF9029), color-stop(47.66%, #31EDC0), color-stop(71.55%, #FDCF78), color-stop(99.24%, #1383C9));
  background: -o-linear-gradient(left, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  background: linear-gradient(90deg, #EEC1F3 0.73%, #FF9029 22.05%, #31EDC0 47.66%, #FDCF78 71.55%, #1383C9 99.24%);
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 992px) {
  .modal-border .modal-content:after {
    height: 7px;
  }
}

.modal-howto .modal-dialog .modal-content:before {
  display: none;
}
.modal-howto .modal-dialog .modal-content .modal-header h1 {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .modal-howto .modal-dialog .modal-content .modal-header h1 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.modal-howto .modal-dialog .modal-content .modal-body .col-img {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .modal-howto .modal-dialog .modal-content .modal-body .col-img {
    margin: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-howto .modal-dialog .modal-content .modal-body .col-img {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-howto .modal-dialog .modal-content .modal-body .col-img img {
    width: 100px;
  }
  .modal-howto .modal-dialog .modal-content .modal-body .col-img img:first-child {
    width: 200px;
  }
}

.modal-upload .modal-dialog .modal-content {
  width: 735px;
  max-width: 100%;
  min-height: 433px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
}
.modal-upload .modal-dialog .modal-content:before {
  display: none;
}
.modal-upload .modal-dialog .modal-content .modal-body .upload-box .dropzone {
  font-family: "Noto Sans Thai", "Noto Sans";
  border-radius: 20px;
  border: 1px dashed #592A6E;
  position: relative;
  min-height: 185px;
  text-align: center;
}
.modal-upload .modal-dialog .modal-content .modal-body .upload-box .dropzone .dz-message .dz-button {
  color: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%), #FFFFFF;
  font-size: 12px;
  font-size: 1.2rem;
}
.modal-upload .modal-dialog .modal-content .modal-body .upload-box .dropzone .dz-preview .dz-remove {
  display: block;
  background: url("../images/icon/ic-trash-red.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
}
.modal-upload .modal-dialog .modal-content .modal-body .upload-box .dropzone .ic-upload {
  display: block;
  background: url("../images/icon/ic-dragdrop.png");
  background-repeat: no-repeat;
  background-size: 96px 130px;
  width: 96px;
  height: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.modal-upload .modal-dialog .modal-content .modal-body .btn-submit {
  width: 326px;
  max-width: 100%;
  height: 45px;
  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;
  margin-top: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  font-weight: 700;
}

.modal-hide-bg .modal-dialog .modal-content {
  background: #FFFFFF;
}
.modal-hide-bg .modal-dialog .modal-content:before {
  display: none;
}

.modal-md .modal-dialog .modal-content {
  width: 735px;
  max-width: 100%;
  min-height: 433px;
  margin-left: auto;
  margin-right: auto;
}

.modal-welcome .modal-dialog {
  max-width: 100%;
}
.modal-welcome .modal-dialog .modal-content {
  width: 95%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
  .modal-welcome .modal-dialog .modal-content {
    width: 1100px;
  }
}
.modal-welcome .modal-dialog .modal-content .modal-header {
  border: none;
  padding: 0;
}
.modal-welcome .modal-dialog .modal-content .modal-header .close {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-close-circle.png");
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  outline: none !important;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.modal-welcome .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 0.8;
}
.modal-welcome .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.modal-share .modal-dialog .modal-content {
  width: 565px;
  max-width: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .modal-share .modal-dialog .modal-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.modal-share .modal-dialog .modal-content .share-list li {
  padding-left: 12px;
  padding-right: 12px;
}
.modal-share .modal-dialog .modal-content .share-list li .facebook {
  background-size: 70px;
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 767px) {
  .modal-share .modal-dialog .modal-content .share-list li .facebook {
    background-size: 50px;
    width: 50px;
    height: 50px;
  }
}
.modal-share .modal-dialog .modal-content .share-list li .twitter {
  background-size: 70px;
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 767px) {
  .modal-share .modal-dialog .modal-content .share-list li .twitter {
    background-size: 50px;
    width: 50px;
    height: 50px;
  }
}
.modal-share .modal-dialog .modal-content .share-list li .clipboard {
  background-size: 70px;
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 767px) {
  .modal-share .modal-dialog .modal-content .share-list li .clipboard {
    background-size: 50px;
    width: 50px;
    height: 50px;
  }
}

.modal-game .modal-dialog {
  width: 800px;
}
.modal-game .modal-dialog .modal-content {
  padding: 25px 20px;
}
@media only screen and (max-width: 575px) {
  .modal-game .modal-dialog .modal-content {
    padding: 0;
  }
}
.modal-game .modal-dialog .modal-content .modal-header {
  padding: 0;
}
.modal-game .modal-dialog .modal-content .modal-header .close {
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  .modal-game .modal-dialog .modal-content .modal-header .close {
    background-size: 23px;
    width: 23px;
    height: 23px;
  }
}
.modal-game .modal-dialog .modal-content .modal-body .challenge-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .modal-game .modal-dialog .modal-content .modal-body .challenge-item {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .modal-game .modal-dialog .modal-content .modal-body .challenge-item .photo-thumb {
    width: 35%;
    padding-bottom: 35%;
  }
}
@media only screen and (max-width: 575px) {
  .modal-game .modal-dialog .modal-content .modal-body .challenge-item .photo-thumb {
    width: 220px;
    height: 220px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
  }
}
.modal-game .modal-dialog .modal-content .modal-body .challenge-item .photo-thumb .photo {
  background-size: contain;
}
.modal-game .modal-dialog .modal-content .modal-body .challenge-item .challenge-item-dt {
  padding-right: 0;
}
@media only screen and (min-width: 576px) {
  .modal-game .modal-dialog .modal-content .modal-body .challenge-item .challenge-item-dt {
    width: 65%;
  }
}
@media only screen and (max-width: 575px) {
  .modal-game .modal-dialog .modal-content .modal-body .challenge-item .challenge-item-dt {
    width: 100%;
    padding-right: 0;
  }
}
.modal-game .modal-dialog .modal-content .modal-body .challenge-item .challenge-item-dt h1 {
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  max-height: initial;
}
.modal-game .modal-dialog .modal-content .modal-body .challenge-item .challenge-item-dt .time {
  font-size: 16px;
  font-size: 1.6rem;
  color: #B7B7B7;
  padding-bottom: 15px;
}
.modal-game .modal-dialog .modal-content .modal-body .challenge-item .challenge-item-dt .txt-dt {
  font-size: 14px;
  font-size: 1.4rem;
}

.modal-vdo .modal-header .close {
  top: 0 !important;
  right: 0 !important;
  background-color: #FFFFFF !important;
  border-radius: 50% !important;
}

.modal-award {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-award .modal-dialog {
  width: 580px;
  max-width: 100%;
}
@media only screen and (max-width: 575px) {
  .modal-award .modal-dialog {
    width: 100%;
    max-width: 95%;
  }
}
.modal-award .modal-dialog .modal-content {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  -webkit-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
}
.modal-award .modal-dialog .modal-content p {
  opacity: 1;
}
.modal-award .modal-dialog .modal-content .modal-header {
  border-radius: 20px 20px 0px 0px;
  position: relative;
  padding: 0 20px;
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%);
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%);
}
.modal-award .modal-dialog .modal-content .modal-header.main {
  display: block;
  background: url("../images/bg/bg-award.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 260px;
}
.modal-award .modal-dialog .modal-content .modal-header.main .modal-header-inner {
  padding-bottom: 0;
}
.modal-award .modal-dialog .modal-content .modal-header.main .modal-header-inner .close {
  top: 25px;
}
.modal-award .modal-dialog .modal-content .modal-header .close {
  background: url(../images/icon/ic-close-circle02.png);
  background-size: 25px;
  width: 25px;
  height: 25px;
  top: 35px;
  right: 25px;
}
.modal-award .modal-dialog .modal-content .modal-header .modal-header-inner {
  padding: 25px 20px;
}
.modal-award .modal-dialog .modal-content .modal-header .modal-header-inner h1 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
}
.modal-award .modal-dialog .modal-content .modal-header .modal-header-inner p {
  font-size: 16px;
  font-size: 1.6rem;
}
.modal-award .modal-dialog .modal-content .modal-header .podium {
  position: relative;
  z-index: 1;
}
.modal-award .modal-dialog .modal-content .modal-header .podium img {
  width: 33.33%;
  max-width: 100%;
  height: 63px;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-header .podium img {
    height: 100px;
  }
}
.modal-award .modal-dialog .modal-content .modal-header .podium .first {
  height: 76px;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-header .podium .first {
    height: 124px;
  }
}
.modal-award .modal-dialog .modal-content .modal-body {
  background: #FFFFFF;
  overflow-y: scroll;
  max-height: 565px;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-body {
    max-height: 702px;
  }
}
.modal-award .modal-dialog .modal-content .modal-body.main {
  max-height: 402px;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-body.main {
    max-height: 502px;
  }
}
.modal-award .modal-dialog .modal-content .modal-body.main .rank-item:hover {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%);
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%);
  -webkit-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border-bottom: 1px dashed transparent;
}
.modal-award .modal-dialog .modal-content .modal-body.main .rank-item:hover .txt-no, .modal-award .modal-dialog .modal-content .modal-body.main .rank-item:hover .txt-name {
  color: #FFFFFF;
}
.modal-award .modal-dialog .modal-content .modal-body.main .rank-item:hover .txt-like {
  background: -webkit-linear-gradient(transparent, transparent);
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .rank-user {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-no {
  font-weight: 600;
  color: #444444;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-no {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 374px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-no {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-name {
  font-weight: 500;
  color: #444444;
  font-size: 16px;
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-name {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 374px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-name {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-like {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-like .num {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-like .num {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 374px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-like .num {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 374px) {
  .modal-award .modal-dialog .modal-content .modal-body .rank-item .txt-like {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .item-left {
  width: 75%;
  text-align: left;
}
.modal-award .modal-dialog .modal-content .modal-body .rank-item .item-right {
  width: 25%;
  text-align: right;
}
.modal-award .modal-dialog .modal-content .rank-main {
  padding-top: 33px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .rank-main {
    padding-top: 65px;
  }
}
.modal-award .modal-dialog .modal-content .rank-main .rank-main-item {
  width: 33.33%;
  text-align: center;
  position: relative;
  bottom: -15px;
  cursor: pointer;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .rank-main .rank-main-item {
    bottom: -25px;
  }
}
.modal-award .modal-dialog .modal-content .rank-main .rank-main-item h2 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 3.2rem;
  line-height: 32px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.modal-award .modal-dialog .modal-content .rank-main .rank-main-item p {
  font-size: 12px;
  font-size: 1.2rem;
}
.modal-award .modal-dialog .modal-content .rank-main .rank-main-item.first {
  bottom: 0;
}
.modal-award .modal-dialog .modal-content .rank-main .rank-main-item.first:before {
  content: "";
  display: block;
  background: url("../images/crown.png");
  background-repeat: no-repeat;
  background-size: 27px 23px;
  width: 27px;
  height: 23px;
  position: absolute;
  top: -20%;
  left: 35%;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .rank-main .rank-main-item.first:before {
    background-size: 53px 46px;
    width: 53px;
    height: 46px;
    top: -30%;
  }
}
.modal-award .modal-dialog .modal-content .rank-item {
  border-bottom: 1px dashed #B7B7B7;
  padding: 15px 5px;
  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;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .rank-item {
    padding: 15px 25px;
  }
}
.modal-award .modal-dialog .modal-content .rank-item:last-child {
  border-bottom: none;
}
.modal-award .modal-dialog .modal-content .rank-user {
  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-bottom: 0;
  margin-left: 25px;
  margin-right: 25px;
}
.modal-award .modal-dialog .modal-content .rank-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #FEB315;
  margin: 0 -10px;
}
@media only screen and (min-width: 576px) {
  .modal-award .modal-dialog .modal-content .rank-user img {
    width: 68px;
    height: 68px;
  }
}

.card.contact {
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.25);
}
.card.contact .card-header {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%);
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%);
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFFFFF;
}
.card.contact .card-body {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
}
.card.contact .card-body .topic-txt {
  color: rgba(51, 51, 51, 0.26);
}

.date {
  padding-top: 5px;
}
.date:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar-white.png");
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-top: -5px;
}
.date.gray:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar02.png");
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-top: -5px;
}

.slider-gallery {
  position: relative;
  padding-bottom: 30px;
}
.slider-gallery .photo-thumb {
  padding-bottom: 100%;
}
@media only screen and (min-width: 1200px) {
  .slider-gallery .slick-prev {
    left: -5%;
  }
  .slider-gallery .slick-next {
    right: -5%;
  }
}
.slider-gallery .slick-dots {
  display: none !important;
}

.doc {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .doc {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.card-award .col-award {
  text-align: center;
  border-right: 1px dashed #D6D6D6;
}
.card-award .col-award h3 {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 49px;
  line-height: 4.8rem;
}
.card-award .col-award p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 19px;
  line-height: 1.9rem;
}
.card-award .col-award img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .card-award .col-award img {
    width: 90px;
    height: 90px;
  }
}

.ic-download {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-download.png");
  background-repeat: no-repeat !important;
  background-size: 26px !important;
  width: 26px;
  height: 26px;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.ic-download.yellow {
  background: url("../images/icon/ic-download-yellow.png");
}

.ic-db-user {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/dashboard/ic-user.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-webboard {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/dashboard/ic-webboard.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 33px;
  height: 33px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-newspaper {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/dashboard/ic-newspaper.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 31px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-flag {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/dashboard/ic-challenge.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 37px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-filedrop {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/dashboard/ic-folder.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 31px;
  height: 31px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-faq {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/dashboard/ic-faq.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 34px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-qa {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/dashboard/ic-q&a.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 33px;
  height: 34px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-learning {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/dashboard/ic-learning.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-vdo {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/dashboard/ic-vdo-cam.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 31px;
  height: 21px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-megaphone {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-megaphone-purple.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  margin-top: -10px;
}

.ic-db-calendar {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar-purple.png");
  background-repeat: no-repeat;
  background-size: 20px 22px;
  width: 20px;
  height: 22px;
  margin-right: 8px;
  margin-top: -10px;
}

.ic-db-briefcase {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-briefcase-purple.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-star {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-star-at-purple.png");
  background-repeat: no-repeat;
  background-size: 27px 26px;
  width: 27px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-book {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-open-book-purple.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  margin-top: -10px;
}

.ic-db-trophy {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-trophy-purple.png");
  background-repeat: no-repeat;
  background-size: 25px 27px;
  width: 25px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}

.ic-db-play {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-play-purple.png");
  background-repeat: no-repeat;
  background-size: 23px 24px;
  width: 23px;
  height: 24px;
  margin-right: 10px;
  margin-top: -10px;
}

.c-yellow .ic-db-megaphone {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-megaphone-yellow.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  margin-top: -10px;
}
.c-yellow .ic-db-calendar {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar-yellow.png");
  background-repeat: no-repeat;
  background-size: 20px 22px;
  width: 20px;
  height: 22px;
  margin-right: 8px;
  margin-top: -10px;
}
.c-yellow .ic-db-briefcase {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-briefcase-yellow.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-yellow .ic-db-star {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-star-at-yellow.png");
  background-repeat: no-repeat;
  background-size: 27px 26px;
  width: 27px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-yellow .ic-db-chatting {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-chatting-yellow.png");
  background-repeat: no-repeat;
  background-size: 27px;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-yellow .ic-db-book {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-open-book-yellow.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  margin-top: -10px;
}
.c-yellow .ic-db-filedrop {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-filedrop-yellow.png");
  background-repeat: no-repeat;
  background-size: 27px;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-yellow .ic-db-qa {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-q&a-yellow.png");
  background-repeat: no-repeat;
  background-size: 27px;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-yellow .ic-db-faq {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-faq-yellow.png");
  background-repeat: no-repeat;
  background-size: 23px;
  width: 23px;
  height: 23px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-yellow .ic-db-play {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-play-yellow.png");
  background-repeat: no-repeat;
  background-size: 23px 24px;
  width: 23px;
  height: 24px;
  margin-right: 10px;
  margin-top: -10px;
}

.c-gradient-orange .ic-db-megaphone {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-megaphone-orange.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-calendar {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-calendar-orange.png");
  background-repeat: no-repeat;
  background-size: 20px 22px;
  width: 20px;
  height: 22px;
  margin-right: 8px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-flag {
  display: inline-block;
  vertical-align: middle;
  background: url(../images/icon/ic-flag-orange.png);
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-briefcase {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-briefcase-orange.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-star {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-star-at-orange.png");
  background-repeat: no-repeat;
  background-size: 27px 26px;
  width: 27px;
  height: 26px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-chatting {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-chatting-orange.png");
  background-repeat: no-repeat;
  background-size: 27px;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-book {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-open-book-orange.png");
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-filedrop {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-filedrop-orange.png");
  background-repeat: no-repeat;
  background-size: 27px;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-qa {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-q&a-orange.png");
  background-repeat: no-repeat;
  background-size: 27px;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  margin-top: -10px;
}
.c-gradient-orange .ic-db-play {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-play-orange.png");
  background-repeat: no-repeat;
  background-size: 23px 24px;
  width: 23px;
  height: 24px;
  margin-right: 10px;
  margin-top: -10px;
}

.input-group-icon {
  border-radius: 5px;
}
.input-group-icon .form-control {
  border: 1px solid #C2C2C2 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #B7B7B7 !important;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
.input-group-icon .form-control::-webkit-input-placeholder { /* Edge */
  color: #B7B7B7 !important;
}
.input-group-icon .form-control-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B7B7B7 !important;
}
.input-group-icon .form-control::-webkit-input-placeholder {
  color: #B7B7B7 !important;
}
.input-group-icon .form-control::-moz-placeholder {
  color: #B7B7B7 !important;
}
.input-group-icon .form-control:-ms-input-placeholder {
  color: #B7B7B7 !important;
}
.input-group-icon .form-control::-ms-input-placeholder {
  color: #B7B7B7 !important;
}
.input-group-icon .form-control::placeholder {
  color: #B7B7B7 !important;
}
.input-group-icon .input-group-append .input-group-text {
  background: #FEB315;
  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;
}
.input-group-icon .input-group-append .input-group-text:before {
  content: "";
  display: block;
  background: url("../images/icon/ic-search-circle-yellow.png");
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.file-topic {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .file-topic {
    font-size: 20px;
    font-size: 2rem;
  }
}

.filedrop-card .topic-filedrop {
  font-weight: 500;
  padding-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .filedrop-card .topic-filedrop {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.filedrop-card .breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 414px) {
  .filedrop-card .select-style .form-control {
    width: 140px;
  }
}
@media only screen and (max-width: 375px) {
  .filedrop-card .select-style .form-control {
    width: 94px;
  }
}

@media only screen and (min-width: 992px) {
  .chat .col-left {
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .chat .col-right {
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .chat .col-right {
    display: none;
  }
}
.chat .chat-topic {
  padding: 10px;
  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;
  min-height: 63px;
  border-bottom: 0.75px solid #E0E0E0;
}
@media only screen and (min-width: 992px) {
  .chat .chat-topic {
    padding: 15px 30px 10px;
  }
}
.chat .chat-topic h1 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 992px) {
  .chat .chat-topic h1 {
    font-size: 24px;
    font-size: 2.4rem;
    color: #444444;
  }
}
.chat .chat-topic .sm-txt {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #444444;
}
@media only screen and (max-width: 767px) {
  .chat .chat-topic .sm-txt {
    display: block;
  }
}
.chat .chat-topic .btn-contact {
  display: block;
  background: url("../images/icon/ic-phone-book-orange.png");
  background-repeat: no-repeat;
  background-size: 35px;
  width: 35px;
  height: 35px;
}
@media only screen and (min-width: 992px) {
  .chat .chat-topic .btn-contact {
    display: none;
  }
}
.chat .chat-topic-contact {
  padding: 15px;
}
.chat .chat-topic-contact h2 {
  font-size: 18px;
  font-size: 1.8rem;
  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;
}
@media only screen and (min-width: 992px) {
  .chat .chat-topic-contact h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.chat .chat-topic-contact h2.c-orange:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-phone-book-orange.png");
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.chat .chat-topic-contact h2.c-yellow:before {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-phone-book-yellow.png");
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.chat .chat-topic-contact .form-group {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.chat .chat-topic-contact .form-group .ic-search {
  background: url("../images/icon/ic-search.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.chat .chat-topic-contact .form-group .form-control {
  border: 1px solid #C2C2C2 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding-right: 40px;
}
.chat .chat-topic-contact .form-group .form-control ::-webkit-input-placeholder { /* Edge */
  color: #BFBFBF;
}
.chat .chat-topic-contact .form-group .form-control :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #BFBFBF;
}
.chat .chat-topic-contact .form-group .form-control ::-moz-placeholder {
  color: #BFBFBF;
}
.chat .chat-topic-contact .form-group .form-control ::-ms-input-placeholder {
  color: #BFBFBF;
}
.chat .chat-topic-contact .form-group .form-control ::placeholder {
  color: #BFBFBF;
}
.chat .chat-body .chat-area {
  padding: 15px;
  position: relative;
  overflow-y: scroll;
  height: calc(100vh - 260px);
  /* Portrait */
  /* width */
}
@media only screen and (max-width: 767px) {
  .chat .chat-body .chat-area {
    height: calc(100vh - 360px);
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .chat .chat-body .chat-area {
    height: calc(100vh - 600px);
  }
}
.chat .chat-body .chat-area::-webkit-scrollbar {
  width: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.chat .chat-body .chat-area:hover {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.chat .chat-body .chat-area:hover::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.chat .chat-body .chat-area:hover::-webkit-scrollbar-thumb {
  background: #BDBDBD;
}
.chat .chat-body .chat-area:hover::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.chat .chat-body .chat-area .chat-group {
  margin-top: 15px;
  margin-bottom: 15px;
}
.chat .chat-body .chat-area .chat-group .chat-item {
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-area .chat-group .chat-item {
    padding: 20px 15px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2.9rem;
    line-height: 29px;
  }
}
.chat .chat-body .chat-area .chat-group .chat-item .chat-item-forward {
  padding-bottom: 10px;
}
.chat .chat-body .chat-area .chat-group .chat-item .chat-item-forward .chat-user {
  width: 15px;
  height: 15px;
  margin-top: 0;
  margin-right: 8px;
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-area .chat-group .chat-item .chat-item-forward .chat-user {
    width: 20px;
    height: 20px;
  }
}
.chat .chat-body .chat-area .chat-group .chat-item .chat-item-forward h4 {
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-area .chat-group .chat-item .chat-item-forward h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.chat .chat-body .chat-area .chat-group .chat-item img {
  max-width: 100%;
}
.chat .chat-body .chat-area .chat-group .chat-datetime {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.37);
  padding-top: 10px;
}
.chat .chat-body .chat-area .chat-group .chat-user {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-top: 5px;
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-area .chat-group .chat-user {
    margin-top: 12px;
  }
}
.chat .chat-body .chat-area .chat-group .btn-forward {
  display: block;
  background: url("../images/icon/ic-share-yellow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 22px;
  margin-top: 18px;
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-area .chat-group .btn-forward {
    margin-top: 25px;
  }
}
.chat .chat-body .chat-area .chat-group .forward-txt {
  color: #BDBDBD;
  font-weight: 600;
  padding-bottom: 5px;
}
.chat .chat-body .chat-area .chat-group .forward-txt:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-share-gray.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 10px;
  margin-right: 5px;
}
.chat .chat-body .chat-area.line-seperate {
  border-right: 0.75px solid #E0E0E0;
}
.chat .chat-body .chat-form {
  position: relative;
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-form {
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
  }
}
.chat .chat-body .chat-form textarea {
  width: 100%;
  height: 120px;
  background: #FFFFFF;
  border: 1px solid #B7B7B7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 50px 15px 15px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  line-height: 25px;
  color: #333333;
  /* Portrait */
}
@media only screen and (min-width: 992px) {
  .chat .chat-body .chat-form textarea {
    height: 140px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .chat .chat-body .chat-form textarea {
    height: 120px;
  }
}
.chat .chat-body .chat-form textarea::-webkit-input-placeholder { /* Edge */
  color: #BFBFBF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  line-height: 25px;
}
.chat .chat-body .chat-form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #BFBFBF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  line-height: 25px;
}
.chat .chat-body .chat-form textarea::-moz-placeholder {
  color: #BFBFBF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  line-height: 25px;
}
.chat .chat-body .chat-form textarea::-ms-input-placeholder {
  color: #BFBFBF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  line-height: 25px;
}
.chat .chat-body .chat-form textarea::placeholder {
  color: #BFBFBF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  line-height: 25px;
}
.chat .chat-body .chat-form .file-upload {
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
}
.chat .chat-body .chat-form .file-upload .camera {
  display: block;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
}
.chat .chat-body .chat-form .file-upload .camera.purple {
  background-image: url("../images/icon/ic-camera.png");
}
.chat .chat-body .chat-form .file-upload .camera.orange {
  background-image: url("../images/icon/ic-camera-orange.png");
}
.chat .chat-body .chat-form .file-upload .camera.yellow {
  background-image: url("../images/icon/ic-camera-yellow.png");
}
.chat .chat-body .btn {
  width: 175px;
  border-radius: 20px;
  padding: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-top: 10px;
}
.chat .chat-body .btn:hover {
  opacity: 0.8;
}

.contact-group {
  overflow-y: scroll;
  height: calc(100vh - 200px);
  /* Portrait */
  /* width */
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .contact-group {
    height: calc(100vh - 665px);
  }
}
.contact-group::-webkit-scrollbar {
  width: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-group:hover {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.contact-group:hover::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.contact-group:hover::-webkit-scrollbar-thumb {
  background: #BDBDBD;
}
.contact-group:hover::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.contact-group .contact-item {
  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;
  padding: 20px 65px 20px 20px;
  border-bottom: 0.75px solid #E0E0E0;
  position: relative;
}
.contact-group .contact-item.active {
  background: #E0E0E0;
}
.contact-group .contact-item.active:before {
  content: "";
  background: url("../images/icon/ic-triangle-rotate.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-group .contact-item .contact-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 12px;
}
.contact-group .contact-item .contact-item-dt {
  width: calc(100% - 52px);
}
.contact-group .contact-item .contact-item-dt h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.9rem;
  line-height: 29px;
}
.contact-group .contact-item .contact-item-dt p {
  color: 444444;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  line-height: 22px;
}
.contact-group .contact-item .contact-item-dt .datetime-txt {
  color: #B7B7B7;
  font-size: 12px;
  font-size: 1.2rem;
}
.contact-group .contact-item .contact-item-dt .datetime-txt span {
  display: inline-block;
}
.contact-group .contact-item.unread:after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-group .contact-item.unread.orange:after {
  background: -o-linear-gradient(359.83deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
  background: linear-gradient(90.17deg, #FF6929 -46.14%, #CF4528 110.72%) !important;
}
.contact-group .contact-item.unread.yellow:after {
  background: #FEB315 !important;
}

@media only screen and (min-width: 992px) {
  .modal-contact {
    display: none !important;
  }
}
.modal-contact .modal-dialog {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 757px) {
  .modal-contact .modal-dialog {
    width: 95%;
  }
}
.modal-contact .modal-dialog .modal-content {
  height: calc(100vh - 175px);
  -webkit-box-shadow: 0px 1px 4px #E5E9F2;
          box-shadow: 0px 1px 4px #E5E9F2;
  border-radius: 10px;
  border: none;
}
.modal-contact .modal-dialog .modal-content .modal-header {
  border-bottom: 1px solid #E0E0E0;
}
.modal-contact .modal-dialog .modal-content .modal-header h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-contact .modal-dialog .modal-content .modal-header h2.c-gradient-orange:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-phone-book-orange.png");
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.modal-contact .modal-dialog .modal-content .modal-header h2.c-yellow:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-phone-book-yellow.png");
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.modal-contact .modal-dialog .modal-content .modal-header .close {
  opacity: 1;
}
.modal-contact .modal-dialog .modal-content .modal-header .close.hover, .modal-contact .modal-dialog .modal-content .modal-header .close:focus {
  opacity: 0.5;
}
.modal-contact .modal-dialog .modal-content .modal-header .close .ic-close {
  display: inline-block;
  vertical-align: middle;
  background: url("../images/icon/ic-close-circle.png");
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group {
  position: relative;
  margin-top: 5px;
  margin-bottom: 15px;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .ic-search {
  background: url("../images/icon/ic-search.png");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .form-control {
  border: 1px solid #C2C2C2 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding-right: 40px;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .form-control ::-webkit-input-placeholder { /* Edge */
  color: #BFBFBF;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .form-control :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #BFBFBF;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .form-control ::-moz-placeholder {
  color: #BFBFBF;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .form-control ::-ms-input-placeholder {
  color: #BFBFBF;
}
.modal-contact .modal-dialog .modal-content .modal-body .form-group .form-control ::placeholder {
  color: #BFBFBF;
}
.modal-contact .modal-dialog .modal-content .modal-body .contact-group {
  height: calc(100vh - 305px);
}
@media only screen and (min-width: 992px) {
  .modal-contact.modal-backdrop {
    display: none !important;
  }
}

#show-event img {
  max-width: 100% !important;
  height: auto !important;
}

.news-body {
  padding-left: 15px !important;
}
@media only screen and (max-width: 991px) {
  .news-body {
    padding-left: 5px !important;
    height: 460px;
  }
  .news-body .content-item p {
    height: 23px;
  }
}

.tube-head-group .form-group {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.tube-head-group .form-group.tube .ic-search {
  background-repeat: no-repeat !important;
  background-size: 20px !important;
  width: 20px !important;
  height: 20px !important;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tube-head-group .form-group.tube .ic-search.yellow {
  background: url("../images/icon/ic-search-yellow.png");
}
.tube-head-group .form-group.tube .ic-search.purple {
  background: url("../images/icon/ic-search-purple.png");
}
.tube-head-group .form-group.tube .ic-search.orange {
  background: url("../images/icon/ic-search-orange.png");
}
.tube-head-group .form-group.tube .form-control {
  border: 1px solid #C2C2C2 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding-left: 40px;
  width: 200px;
  height: 30px;
}
.tube-head-group .form-group.tube .form-control ::-webkit-input-placeholder { /* Edge */
  color: #BFBFBF;
}
.tube-head-group .form-group.tube .form-control :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #BFBFBF;
}
.tube-head-group .form-group.tube .form-control ::-moz-placeholder {
  color: #BFBFBF;
}
.tube-head-group .form-group.tube .form-control ::-ms-input-placeholder {
  color: #BFBFBF;
}
.tube-head-group .form-group.tube .form-control ::placeholder {
  color: #BFBFBF;
}
@media only screen and (max-width: 575px) {
  .tube-head-group {
    width: 100%;
    margin-top: 10px;
  }
  .tube-head-group .tube-head-sub {
    width: 100%;
  }
  .tube-head-group .tube-head-sub .btn, .tube-head-group .tube-head-sub .form-control {
    width: 100%;
  }
}
.tube-head-group .tube-head-sub .btn {
  min-width: 175px;
}

.img-supporter {
  display: block;
  max-width: 250px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .img-supporter {
    max-width: 50%;
  }
}

.img-doc {
  max-width: 100%;
  background-size: cover;
  width: 264px;
  height: 374px;
}
@media only screen and (max-width: 991px) {
  .img-doc {
    width: 100%;
    height: 211px;
  }
}

.btn-tg-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-tg-tag:after {
  content: "";
  display: inline-block;
  background: url("../images/icon/ic-arrow-down-purple.png");
  background-repeat: no-repeat;
  background-position: center 45%;
  background-size: contain;
  width: 12px;
  height: 18px;
  margin-left: 5px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-tg-tag[aria-expanded=true]:after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  float: right;
  background: url("../images/icon/ic-arrow-down-purple.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 18px;
  margin-left: 5px;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.collapse-tag li a {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 363px) {
  .collapse-tag li a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .collapse-tag .del {
    width: 14px;
    height: 17px;
  }
}

@media only screen and (min-width: 768px) {
  .menu-list-group .collapse-tag ul {
    overflow: auto;
    height: 1295px;
  }
}
@media only screen and (min-width: 1200px) {
  .menu-list-group .collapse-tag ul {
    height: 1660px;
  }
}

.all-tag-list .all-tag-link {
  font-size: 16px;
  font-size: 1.6rem;
}

.all-tag-detail-back {
  font-size: 16px;
  font-size: 1.6rem;
}

.slider-banner .slick-prev {
  left: 30px;
}
.slider-banner .slick-next {
  right: 30px;
}
.slider-banner .slick-dots {
  position: absolute;
  bottom: 20px;
}
.slider-banner .slick-dots li button:before {
  font-size: 20px;
  font-size: 2rem;
  color: #FFFFFF;
  opacity: 1;
}
.slider-banner .slick-dots li.slick-active button:before {
  color: #FEB315;
}

.nav-tabs-challenge {
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 0.75px solid #E0E0E0;
  position: relative;
  z-index: 1;
}
.nav-tabs-challenge .nav-link {
  font-size: 26px;
  font-size: 2.6rem;
  opacity: 0.2;
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  opacity: 0.2;
  border-left: 4px solid transparent;
}
@media only screen and (max-width: 991px) {
  .nav-tabs-challenge .nav-link {
    font-size: 18px;
    font-size: 1.8rem;
    border-left: 2px solid transparent;
  }
}
@media only screen and (max-width: 575px) {
  .nav-tabs-challenge .nav-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.nav-tabs-challenge .nav-link.active {
  border-color: transparent;
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%);
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%);
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  opacity: 1;
  border-left: 4px solid #FEB315;
}
@media only screen and (max-width: 991px) {
  .nav-tabs-challenge .nav-link.active {
    border-left: 2px solid #FEB315;
  }
}

.tab-content-challenge {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .tab-content-challenge {
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .tab-content-challenge .tab-pane-play:before {
    content: "";
    display: inline-block;
    background-image: url(../images/logo-vector06.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 294px;
    max-width: 100%;
    height: 665px;
    position: absolute;
    top: -36%;
    right: -50px;
  }
  .tab-content-challenge .tab-pane-play:after {
    content: "";
    display: inline-block;
    background-image: url(../images/vector-game.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 378px;
    max-width: 100%;
    height: 220px;
    position: absolute;
    bottom: -15px;
    right: -50px;
  }
}
@media only screen and (min-width: 992px) {
  .tab-content-challenge .tab-pane-play.detail:before {
    content: "";
    display: inline-block;
    background-image: url(../images/logo-vector08.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1320px;
    max-width: 100%;
    height: 1406px;
    position: absolute;
    bottom: 0;
    top: auto;
    right: -30px;
  }
  .tab-content-challenge .tab-pane-play.detail:after {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .tab-pane-play .challenge-item .challenge-item-type {
    position: absolute;
    bottom: 15px;
    left: 5px;
  }
}
.tab-content-challenge .tab-pane-play .share-list li .facebook, .tab-content-challenge .tab-pane-play .share-list li .twitter, .tab-content-challenge .tab-pane-play .share-list li .clipboard {
  background-size: 30px;
  width: 30px;
  height: 30px;
}
.tab-content-challenge .tab-pane-play .btn-camera {
  background-image: url(../images/icon/ic-camera-circle.png);
  background-repeat: no-repeat;
  background-size: 60px;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .tab-content-challenge .tab-pane-play .btn-camera {
    display: none;
  }
}
.tab-content-challenge .tab-pane-play .btn-camera .custom-file {
  opacity: 0;
  height: 60px;
}
.tab-content-challenge .tab-pane-play .btn-camera .custom-file-label {
  opacity: 0;
}
.tab-content-challenge .tab-pane-play .btn-camera .custom-file-input:lang(en) ~ .custom-file-label::after {
  opacity: 0;
}
.tab-content-challenge .tab-pane-play .challenge-list .box-white .box-white-dt {
  padding: 10px;
}
.tab-content-challenge .tab-pane-play .challenge-list .box-white .box-white-dt h3 {
  padding-bottom: 0;
}
.tab-content-challenge .tab-pane-play .challenge-list .del {
  background: url(../images/icon/ic-close.png);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tab-content-challenge .tab-pane-achievement .challenge-item .photo-thumb .photo {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tab-content-challenge .tab-pane-achievement .challenge-item:hover .photo-thumb .photo {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
@media only screen and (min-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .photo-thumb {
    width: 18%;
    padding-bottom: 18%;
  }
  .tab-content-challenge .tab-pane-achievement .challenge-item-dt {
    width: 72% !important;
  }
}
@media only screen and (min-width: 992px) {
  .tab-content-challenge .tab-pane-achievement:after {
    content: "";
    display: inline-block;
    background-image: url(../images/logo-vector08.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1320px;
    max-width: 100%;
    height: 1406px;
    position: absolute;
    bottom: -130px;
    right: -30px;
  }
}
@media only screen and (min-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-dt {
    width: 50%;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-dt {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-dt .txt-dt {
    display: none;
  }
}
.tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-type {
  position: relative;
  bottom: inherit;
  left: inherit;
  text-align: right;
}
@media only screen and (max-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-type {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-type img {
    width: 50px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .challenge-item-type .rank-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 576px) {
  .tab-content-challenge .tab-pane-achievement .challenge-item .photo-thumb {
    padding-bottom: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .tab-pane-profile .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .tab-pane-profile [class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.tab-content-challenge .like {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #B7B7B7;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .like {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5rem;
    line-height: 15px;
  }
}
.tab-content-challenge .like:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon/ic-thumbs-up-gray.png);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.tab-content-challenge .time {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #B7B7B7;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .time {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5rem;
    line-height: 15px;
  }
}
.tab-content-challenge .time:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon/ic-clock.png);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.tab-content-challenge .user {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #B7B7B7;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .user {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5rem;
    line-height: 15px;
  }
}
.tab-content-challenge .user:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon/ic-user-gray.png);
  background-repeat: no-repeat;
  background-size: 10px 12px;
  width: 10px;
  height: 12px;
  margin-right: 5px;
}
.tab-content-challenge .btn-more {
  border-radius: 20px;
  border: 1px solid #592A6E !important;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  width: 195px;
  margin-top: 20px;
}
.tab-content-challenge .btn-more:hover {
  opacity: 0.5;
}
.tab-content-challenge .btn-more:after {
  display: none;
}
@media only screen and (min-width: 576px) {
  .tab-content-challenge .btn-more {
    margin-top: 35px;
  }
}
.tab-content-challenge .btn-like {
  width: 100%;
  height: 35px;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  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-top: 0.75px solid #E0E0E0;
  font-size: 16px;
  font-size: 1.6rem;
  background: transparent;
}
.tab-content-challenge .btn-like:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/icon/ic-thumbs-up-purple.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  margin-top: -3px;
}
.tab-content-challenge .btn-like.active {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: -webkit-linear-gradient(#FFFFFF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FFFFFF;
  border-top: 0.75px solid transparent;
}
.tab-content-challenge .btn-like.active:before {
  background-image: url(../images/icon/ic-thumbs-up-at.png);
}
.tab-content-challenge .btn-like.disable {
  pointer-events: none;
}
.tab-content-challenge .btn-like.disable.active {
  background: #E0E0E0 !important;
  color: #FFFFFF !important;
}
.tab-content-challenge .btn-like.disable.active:before {
  background-image: url(../images/icon/ic-thumbs-up-white.png) !important;
}
.tab-content-challenge .box-white.extra {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  padding-bottom: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.tab-content-challenge .box-white.extra .photo-thumb {
  padding-bottom: 100%;
}
.tab-content-challenge .label-style {
  background: #FEB315;
  position: absolute;
  top: 15px;
  left: 0;
  padding: 2px 5px;
}
.tab-content-challenge .label-style .like {
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFFFFF;
}
.tab-content-challenge .label-style .like:before {
  background-image: url(../images/icon/ic-thumbs-up-white.png);
}
.tab-content-challenge .challenge-upload {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.tab-content-challenge .challenge-upload h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}
.tab-content-challenge .challenge-upload .custom-file {
  border: 0.5px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  height: 40px;
}
.tab-content-challenge .challenge-upload .custom-file .custom-file-input {
  height: 40px;
}
.tab-content-challenge .challenge-upload .custom-file .custom-file-label {
  height: 40px;
}
.tab-content-challenge .challenge-upload .custom-file .custom-file-label:after {
  height: 40px;
  line-height: 2;
}
.tab-content-challenge .challenge-upload .file-group .file-img-item {
  margin: 8px;
}
.tab-content-challenge .challenge-upload .file-group .file-img-item .file-img {
  width: 217px;
  height: 139px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.tab-content-challenge .challenge-upload .file-group .file-img-item .photo-thumb {
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .tab-content-challenge .challenge-upload .file-group .file-img-item .photo-thumb {
    width: 32%;
    padding-bottom: 32%;
  }
}
.tab-content-challenge .challenge-upload .file-group .file-img-item .remove {
  vertical-align: middle;
  background-image: url(../images/icon/ic-close02.png);
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
}
.tab-content-challenge .challenge-upload .btn-send {
  background: #34BFA3;
  border: 0.75px solid #E0E0E0;
  border-radius: 20px;
  min-width: 110px;
  height: 40px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .challenge-upload .btn-send {
    min-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .challenge-upload {
    border-top: 0.75px solid #E0E0E0;
    margin-top: 35px;
    padding-top: 15px;
  }
}
.tab-content-challenge .select-style {
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .tab-content-challenge .select-style:after {
    margin-top: -10px;
  }
}
.tab-content-challenge .select-style select {
  border: 1px solid #C2C2C2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 12px;
  color: #B7B7B7;
  width: 220px;
}

.challenge-item {
  border-bottom: 1px dashed #692F78;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
.challenge-item:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 576px) {
  .challenge-item {
    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;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.challenge-item.extra {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 0.75px solid #E0E0E0;
  margin-bottom: 15px;
}
@media only screen and (max-width: 575px) {
  .challenge-item.extra {
    display: block;
    margin-bottom: 40px;
  }
}
.challenge-item .photo-thumb {
  width: 25%;
  padding-bottom: 25%;
  border-radius: 10px;
}
@media only screen and (min-width: 576px) {
  .challenge-item .photo-thumb.db {
    width: 54.74%;
    padding-bottom: 45.5%;
  }
}
@media only screen and (max-width: 575px) {
  .challenge-item .photo-thumb {
    width: 100%;
    padding-bottom: 100%;
  }
}
.challenge-item .photo-thumb.extra {
  width: 195px;
  height: 195px;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .challenge-item .photo-thumb.extra {
    width: 30%;
    padding-bottom: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .challenge-item .photo-thumb.extra {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.challenge-item .challenge-item-dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 13px;
  width: 65%;
  padding-left: 10px;
  padding-right: 3%;
}
@media only screen and (max-width: 575px) {
  .challenge-item .challenge-item-dt {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
  }
}
.challenge-item .challenge-item-dt.extra {
  width: 100%;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .challenge-item .challenge-item-dt.extra {
    width: 65%;
    padding-left: 50px;
  }
}
.challenge-item .challenge-item-dt h1 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.9rem;
  line-height: 29px;
  max-height: 58px;
}
.challenge-item .challenge-item-dt .like {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #B7B7B7;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .challenge-item .challenge-item-dt .like {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5rem;
    line-height: 15px;
  }
}
.challenge-item .challenge-item-dt .like:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon/ic-thumbs-up-gray.png);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.challenge-item .challenge-item-dt .time {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: #B7B7B7;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .challenge-item .challenge-item-dt .time {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5rem;
    line-height: 15px;
  }
}
.challenge-item .challenge-item-dt .time:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon/ic-clock.png);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.challenge-item .challenge-item-dt .txt-dt {
  color: #333333;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 147.7%;
  letter-spacing: 0.04em;
}
.challenge-item .challenge-item-dt .txt-dt.txt-wrap3 {
  max-height: 60px;
}
.challenge-item .challenge-item-dt .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}
@media only screen and (min-width: 576px) {
  .challenge-item .challenge-item-dt .btn-group {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media only screen and (max-width: 575px) {
  .challenge-item .challenge-item-dt .btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.challenge-item .challenge-item-dt .btn-group .btn {
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  border: 1px solid #FEB315 !important;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (max-width: 575px) {
  .challenge-item .challenge-item-dt .btn-group .btn {
    font-size: 11px;
    font-size: 1.1rem;
    height: auto;
    min-width: 42%;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.challenge-item .challenge-item-dt .btn-group .btn:hover {
  opacity: 0.8;
}
.challenge-item .challenge-item-dt .btn-group .btn.btn-start {
  background: #692F78;
  color: #FFFFFF;
}
.challenge-item .challenge-item-dt .btn-group .btn.btn-detail {
  background: #F7C438;
  color: #622C70;
}
.challenge-item .challenge-item-dt .info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.75px solid #E0E0E0;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.challenge-item .challenge-item-dt .info-group .info-group-sub {
  padding-left: 15px;
  padding-right: 15px;
  border-right: 1px solid #E0E0E0;
}
.challenge-item .challenge-item-dt .info-group .info-group-sub:last-child {
  border-right: none;
}
.challenge-item .challenge-item-dt .info-group p {
  color: #B7B7B7;
  font-size: 16px;
  font-size: 1.6rem;
}
.challenge-item .challenge-item-type {
  width: 10%;
}
.challenge-item .challenge-item-type img {
  width: 100px;
}
.challenge-item .challenge-item-type .rank-txt {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  font-size: 16px;
  font-size: 1.6rem;
}
.challenge-item .challenge-item-type .rank-num {
  background: -webkit-linear-gradient(#7E3584, #592A6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #592A6E;
  font-size: 36px;
  font-size: 3.6rem;
}
@media only screen and (min-width: 576px) {
  .challenge-item .challenge-item-type .rank-num {
    font-size: 62px;
    font-size: 6.2rem;
  }
}
.challenge-item .btn-group.db {
  margin-left: -4px;
  margin-right: -4px;
}
.challenge-item .btn-group.db .btn {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  height: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-left: 4px;
  margin-right: 4px;
}
.challenge-item .btn-group.db .btn.btn-start {
  border: 1px solid #692F78 !important;
}
.challenge-item .btn-group.db .btn.btn-detail {
  background: transparent;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0) !important;
}
.challenge-item .btn-group.db .btn.btn-detail:hover {
  background: rgb(0, 0, 0);
  color: #FFFFFF;
}

.collapseGamePf .card {
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .collapseGamePf .card {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
.collapseGamePf .card .card-header {
  border-radius: 5px;
  padding: 0;
}
.collapseGamePf .card .card-header .btn-link {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
  width: 100%;
  padding: 5px 15px;
  text-align: left;
}
.collapseGamePf .card .card-header .btn-link:before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  float: right;
  background-image: url(../images/icon/ic-arrow-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  height: 20px;
  margin-top: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
          transform: rotate(-360deg);
}
.collapseGamePf .card .card-header .btn-link[aria-expanded=true]:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  float: right;
  background-image: url(../images/icon/ic-arrow-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  height: 20px;
  margin-top: 8px;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.collapseGamePf .card .card-body {
  padding: 15px 0 0;
}
.collapseGamePf .card .card-body .box-white {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}
.collapseGamePf .card .card-body .box-white .box-white-dt {
  padding: 10px;
}
.collapseGamePf .card .card-body .box-white .photo-thumb {
  padding-bottom: 100%;
}

.box-challenge {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.box-challenge:first-child {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .box-challenge {
    display: none;
  }
}
.box-challenge.rules {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url(../images/box-rules.jpg);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/box-rules.jpg);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/box-rules.jpg);
  background-position: 50% 100%;
  border: 1px solid #9B51E0;
  -webkit-box-shadow: 0px 1px 11px #7E3584;
          box-shadow: 0px 1px 11px #7E3584;
}
.box-challenge.rules .rules-list {
  list-style: none;
  padding-left: 0;
  padding-top: 15px;
  padding-bottom: 0;
}
.box-challenge.rules .rules-list li {
  color: #FFFFFF;
  border-bottom: 1px dashed #FFFFFF;
  padding-top: 20px;
  padding-bottom: 20px;
  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;
}
.box-challenge.rules .rules-list li:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}
.box-challenge.rules .rules-list li .play-game {
  display: inline-block;
  background-image: url(../images/icon/ic-play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 63px;
  max-width: 100%;
  height: 63px;
}
.box-challenge.rules .rules-list li .play-game.photograph {
  background-image: url(../images/icon/ic-camera02.png);
}
.box-challenge.rules .rules-list li .play-game.voting {
  background-image: url(../images/icon/ic-voting.png);
}
.box-challenge.rules .rules-list li .play-game.like {
  background-image: url(../images/icon/ic-like.png);
}
.box-challenge.rules .rules-list li .rules-dt {
  width: 75%;
  padding-left: 20px;
}
.box-challenge.rules .rules-list li .rules-dt h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFBB02;
  padding-bottom: 5px;
  opacity: 1;
}
.box-challenge.rules .rules-list li .rules-dt p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFFFFF;
  opacity: 1;
}
.box-challenge.awards {
  background: -webkit-gradient(linear, left bottom, left top, from(#00C29F), to(#00C29F)), #FFFFFF;
  background: -o-linear-gradient(bottom, #00C29F, #00C29F), #FFFFFF;
  background: linear-gradient(0deg, #00C29F, #00C29F), #FFFFFF;
  -webkit-box-shadow: 0px 1px 12px #00C29F;
          box-shadow: 0px 1px 12px #00C29F;
}
.box-challenge.awards .awards-list {
  list-style: none;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #FFFFFF;
}
.box-challenge.awards .awards-list:last-child {
  border-bottom: none;
}
.box-challenge.awards .awards-list li {
  width: 33.33%;
  color: #FFFFFF;
  text-align: center;
  border-right: 1px dashed #FFFFFF;
  position: relative;
}
.box-challenge.awards .awards-list li:last-child {
  border-right: 0;
}
.box-challenge.awards .awards-list li img {
  width: 60px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.box-challenge.awards .awards-type {
  font-size: 18px;
  font-size: 1.8rem;
  color: #FFFFFF;
  padding-top: 20px;
}
.box-challenge.awards .awards-type.team:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/team-type.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  margin-top: -8px;
}
.box-challenge.awards .awards-type.single:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/single-type.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  margin-top: -8px;
}
.box-challenge .title-line {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 600;
  color: #FFFFFF;
  border-bottom: 0.75px solid #FFFFFF;
  padding-bottom: 10px;
}
.box-challenge .title-line:before {
  display: none;
}
.box-challenge p {
  color: #FFFFFF;
}

@media only screen and (min-width: 992px) {
  .btn-modal-group {
    display: none !important;
  }
}
.btn-modal-group .btn-modal {
  background: #FEB315;
  border-radius: 15px;
  padding: 5px 25px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #592A6E;
}

.select-challenge {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  margin-bottom: -5px !important;
}
.select-challenge select {
  border: 1px solid #C2C2C2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 12px;
  color: #B7B7B7;
  width: 175px;
}
@media only screen and (max-width: 575px) {
  .select-challenge select {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
.select-challenge.mb-0 {
  margin-bottom: 0 !important;
}

@media only screen and (min-width: 991px) {
  .modal-box-challenge {
    display: none !important;
  }
}
.modal-box-challenge .modal-dialog {
  max-width: 90%;
}
.modal-box-challenge .modal-dialog .modal-content {
  background: transparent;
  padding: 0;
  border: none;
}
.modal-box-challenge .modal-dialog .modal-content .modal-header {
  padding: 0;
}
.modal-box-challenge .modal-dialog .modal-content .modal-header .close {
  z-index: 1;
  background-size: 23px;
  width: 23px;
  height: 23px;
  top: 25px;
  right: 25px;
}
.modal-box-challenge .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal-box-challenge .modal-dialog .modal-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
}
.modal-box-challenge .box-challenge {
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .modal-box-challenge .box-challenge {
    display: block !important;
  }
}

@media only screen and (max-width: 575px) {
  .challenge-item .challenge-item-type {
    position: absolute;
    bottom: 15px;
    left: 5px;
  }
}

@media only screen and (max-width: 991px) {
  .row-award {
    margin-bottom: 20px;
  }
}
.row-award [class*=col-] {
  position: relative;
}
.row-award [class*=col-]:after {
  content: "";
  display: block;
  background: #E0E0E0;
  width: 100%;
  height: 0.75px;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 992px) {
  .row-award [class*=col-]:after {
    width: 0.75px;
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .row-award [class*=col-]:after {
    margin-top: 30px;
  }
}
.row-award [class*=col-]:first-child:after {
  display: none;
}

.award-img {
  display: block;
  background-image: url(../images/award-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 193px 150px;
  width: 193px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -8px;
  -webkit-filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: -1;
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}
@media only screen and (max-width: 991px) {
  .award-img {
    margin-top: 60px;
  }
}

.box-profile {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .box-profile {
    padding: 20px;
  }
}
.box-profile .user-img {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 10px;
}
@media only screen and (min-width: 576px) {
  .box-profile .user-img {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
  }
}
.box-profile h1 {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  line-height: 2.5rem;
  color: rgb(0, 0, 0);
}
@media only screen and (min-width: 576px) {
  .box-profile h1 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 27px;
    line-height: 2.7rem;
  }
}
.box-profile a {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #939393 !important;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .box-profile a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.box-profile a.user-mail:before {
  content: "";
  display: block;
  background-image: url(../images/icon/ic-envelope.png);
  background-repeat: no-repeat;
  background-size: 10px 7px;
  width: 10px;
  height: 7px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 576px) {
  .box-profile a.user-mail:before {
    display: inline-block;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .box-profile a.user-mail:before {
    margin-bottom: 5px;
  }
}
.box-profile a.user-tel:before {
  content: "";
  display: block;
  background-image: url(../images/icon/ic-phone.png);
  background-repeat: no-repeat;
  background-size: 9px;
  width: 9px;
  height: 9px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 576px) {
  .box-profile a.user-tel:before {
    display: inline-block;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .box-profile a.user-tel:before {
    margin-bottom: 5px;
  }
}

.monitor-item {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}
.monitor-item img {
  border: 1px solid #D8D8D8;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.12));
  border-radius: 10px;
}

.meet-box .meet-detail {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .meet-box .meet-detail {
    left: 10%;
  }
}
@media only screen and (max-width: 991px) {
  .meet-box .meet-detail {
    padding-top: 10%;
    margin-bottom: -10%;
  }
}
.meet-box .meet-detail .logo {
  display: block;
  background-image: url("../images/logo-u2t03.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 175px 153px;
  width: 175px;
  height: 153px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.meet-box .meet-detail h1 {
  font-size: 26px;
  font-size: 2.6rem;
}
@media only screen and (min-width: 992px) {
  .meet-box .meet-detail h1 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 1199px) {
  .meet-box .meet-detail h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.meet-box .meet-detail p {
  color: #8A8A8A;
  font-size: 16px;
  font-size: 1.6rem;
}
.meet-box .meet-detail .btn-meet {
  border-radius: 20px;
  color: #FFFFFF !important;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 25px;
}
.meet-box .img-dk {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .meet-box .img-dk {
    display: block !important;
  }
}
.meet-box .img-mb {
  display: block !important;
}
@media only screen and (min-width: 992px) {
  .meet-box .img-mb {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .meet-box .img-mb {
    width: 100%;
  }
}

[class*=slider-tube-] .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.box-photo {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  padding-bottom: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.box-photo .box-white-dt h3 {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .box-photo .box-white-dt h3 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.box-photo .box-white-dt p {
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .box-photo .box-white-dt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.box-photo .user:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon/ic-user-gray.png);
  background-repeat: no-repeat;
  background-size: 10px 12px;
  width: 10px;
  height: 12px;
  margin-right: 5px;
  margin-bottom: -2px;
}
@media only screen and (min-width: 768px) {
  .box-photo .user:before {
    background-size: 18px 20px;
    width: 18px;
    height: 20px;
  }
}
.box-photo .photo-thumb {
  padding-bottom: 100%;
}
.box-photo .label-style {
  background: #FEB315;
  position: absolute;
  top: 15px;
  left: 0;
  padding: 2px 5px;
}
.box-photo .label-style .like {
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .box-photo .label-style .like {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.box-photo .label-style .like:before {
  background-image: url(../images/icon/ic-thumbs-up-white.png);
}
.box-photo .btn-like {
  width: 100%;
  height: 40px;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  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-top: 0.75px solid #E0E0E0;
  font-size: 16px;
  font-size: 1.6rem;
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .box-photo .btn-like {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.box-photo .btn-like:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/icon/ic-thumbs-up-purple.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  margin-top: -3px;
}
@media only screen and (min-width: 768px) {
  .box-photo .btn-like:before {
    width: 24px;
    height: 24px;
  }
}
.box-photo .btn-like.active {
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: -webkit-linear-gradient(#FFFFFF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FFFFFF;
  border-top: 0.75px solid transparent;
}
.box-photo .btn-like.active:before {
  background-image: url(../images/icon/ic-thumbs-up-at.png);
}
.box-photo .btn-like.disable {
  pointer-events: none;
}
.box-photo .btn-like.disable.active {
  background: #E0E0E0 !important;
  color: #FFFFFF !important;
}
.box-photo .btn-like.disable.active:before {
  background-image: url(../images/icon/ic-thumbs-up-white.png) !important;
}

@media only screen and (min-width: 768px) {
  .card-photo:before {
    content: "";
    display: inline-block;
    background-image: url(../images/logo-vector09.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 226px;
    max-width: 100%;
    height: 462px;
    position: absolute;
    bottom: 0;
    right: -1px;
  }
}

.pin-item {
  display: inline-block;
  background: #FF4A4A;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  padding: 4px 0 2px 4px;
  margin-right: 20px;
  position: relative;
  top: -2px;
}
.pin-item:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon/ic-pin.png");
  background-repeat: no-repeat;
  background-size: 17px;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  margin-top: -2px;
}
.pin-item:after {
  content: "";
  background-image: url("../images/triangle-right-red.svg");
  background-repeat: no-repeat;
  background-size: 12px 24px;
  width: 12px;
  height: 24px;
  position: absolute;
  right: -11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  margin-top: 1px;
}

.btn-pin {
  display: block;
  background-image: url("../images/icon/ic-pin-gray.png");
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
  .btn-pin {
    background-size: 15px;
    width: 15px;
    height: 15px;
    margin-top: 6px;
  }
}
.btn-pin.active {
  background-image: url("../images/icon/ic-pin-red.png");
}

@media only screen and (min-width: 992px) {
  .slider-learning {
    margin-top: 2%;
  }
}
@media only screen and (min-width: 1200px) {
  .slider-learning {
    margin-top: 3%;
  }
}
@media only screen and (min-width: 2000px) {
  .slider-learning {
    margin-top: 3.5%;
  }
}
.slider-learning .slick-slide {
  margin: 0 10px;
}
.slider-learning .box-white {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #D5D5D5;
}

.nav-pills-tube {
  background: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: -12px;
  margin-right: -12px;
}
@media only screen and (max-width: 991px) {
  .nav-pills-tube {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .nav-pills-tube::-webkit-scrollbar {
    display: none;
  }
}
.nav-pills-tube .nav-item {
  width: auto;
  margin-left: 12px;
  margin-right: 12px;
}
.nav-pills-tube .nav-item .nav-link {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent !important;
  padding: 10px 5px 5px 5px !important;
  opacity: 1;
}
.nav-pills-tube .nav-item .nav-link.active {
  border-color: transparent !important;
  background: -o-linear-gradient(184.89deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  background: linear-gradient(265.11deg, #7E3584 -88.15%, #592A6E 95.23%) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  opacity: 1 !important;
  border-left: 4px solid #FEB315 !important;
}
@media only screen and (max-width: 991px) {
  .nav-pills-tube .nav-item .nav-link.active {
    border-left: 2px solid #FEB315 !important;
  }
}

.row-tube {
  margin-left: -8px;
  margin-right: -8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.row-tube .col-tube {
  padding-left: 8px;
  padding-right: 8px;
  display: inline-block;
  float: none;
}
@media only screen and (max-width: 1024px) {
  .row-tube .col-tube {
    width: 225px;
  }
}
.row-tube::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 991px) {
  .row-card .card {
    height: auto !important;
  }
}

@media only screen and (min-width: 768px) {
  .card-profile {
    margin-top: 25px;
  }
}
.card-profile .card-header {
  background-image: url("../images/bg/bg-profile.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  width: 100%;
  height: 230px;
  border-bottom: none;
}
.card-profile .card-header:before {
  content: "";
  display: block;
  background-image: url("../images/vector-profile.png");
  background-repeat: no-repeat;
  background-size: 198px 167px;
  width: 198px;
  height: 167px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.card-profile .card-header .photo-thumb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  position: absolute;
  top: 50px;
  left: 49.5%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .card-profile .card-header .photo-thumb {
    top: 41px;
    left: 49.7%;
  }
}
.card-profile h1 {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 125%;
  letter-spacing: 0.5px;
  color: #444444;
}
@media only screen and (min-width: 768px) {
  .card-profile h1 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.card-profile .btn-edit {
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  line-height: 1.8rem;
  letter-spacing: 0.5px;
  color: #444444;
}
@media only screen and (min-width: 768px) {
  .card-profile .btn-edit {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.card-profile .btn-edit:hover {
  text-decoration: underline;
}
.card-profile .btn-edit:before {
  content: "";
  display: inline-block;
  background-image: url("../images/dashboard/ic-edit.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  margin-bottom: -7px;
}
.card-profile .col-award img {
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
}
.card-profile .col-award h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
  letter-spacing: 0.04em;
}
.card-profile .col-award p {
  font-weight: 400;
  font-size: 10px;
  font-size: 1rem;
  line-height: 14px;
  line-height: 1.4rem;
  letter-spacing: 0.04em;
}

@media only screen and (min-width: 768px) {
  .card-qa {
    margin-top: -5px;
  }
}

@media only screen and (min-width: 768px) {
  .card-learning {
    padding: 15px 20px;
  }
}

.img-qa {
  width: 100%;
  border-radius: 30px;
}

a:hover.font-bold .arrow-right {
  margin-left: 15px;
}

.card-filedrop {
  max-height: 300px;
  overflow: hidden;
  padding: 12px 15px !important;
}
.card-filedrop.extra {
  padding: 22px 15px !important;
}
@media only screen and (min-width: 768px) {
  .card-filedrop {
    padding: 15px 20px !important;
  }
  .card-filedrop.extra {
    padding: 22px 20px !important;
  }
}

.tab-content-tube .slick-prev, .tab-content-tube .slick-next {
  top: 37%;
}
@media only screen and (max-width: 575px) {
  .tab-content-tube .slick-prev, .tab-content-tube .slick-next {
    top: 34%;
  }
  .tab-content-tube .slick-prev:before, .tab-content-tube .slick-next:before {
    background-size: 26px;
    width: 26px;
    height: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .tab-content-tube .slick-next {
    right: -9px;
  }
}

.overflow-auto.overflow-faq {
  /* width */
}
.overflow-auto.overflow-faq::-webkit-scrollbar {
  width: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.overflow-auto.overflow-faq:hover {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.overflow-auto.overflow-faq:hover::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.overflow-auto.overflow-faq:hover::-webkit-scrollbar-thumb {
  background: #BDBDBD;
}
.overflow-auto.overflow-faq:hover::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.p-txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 135.19%;
}
/*# sourceMappingURL=main.css.map */
