@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: OpenSans;
  font-size: 1.5rem;
  src: url("../fonts/OpenSans-Semibold.ttf");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-Bold.ttf");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: 'UTM-Bebas';
  src: url("../fonts/UTM-Bebas.ttf");
  font-style: normal;
}

@font-face {
  font-family: UTMAvo;
  src: url("../fonts/UTM-Avo.ttf");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: UTMAvo;
  src: url("../fonts/UTM-AvoBold.ttf");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: iCiel;
  src: url("../fonts/iCielNovecentosans-UltraBold.ttf");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: iCiel;
  src: url("../fonts/iCielNovecentosans-DemiBold.ttf");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: iCiel;
  src: url("../fonts/iCielNovecentosans-Medium.ttf");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: iCiel;
  src: url("../fonts/iCielNovecentosans-Normal.ttf");
  font-style: normal;
  font-weight: 400;
}

* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

body {
  font-family: UTMAvo;
  font-size: 14px;
  font-style: normal;
  background: #777777;
  position: relative;
  height: 100%;
}

body.overflow-hidden {
  overflow: hidden;
}

body .btn-custom {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.5px solid #fff;
  padding: 6px 40px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
  background-color: #6cf124;
  border-radius: 40px;
  font-weight: bold;
  color: #000;
  transition: background .3s;
  -moz-transition: background .3s;
  -webkit-transition: background .3s;
}

body .btn-custom:hover {
  text-decoration: none;
  background-color: #53d40e;
}
@media (min-width: 993px) {
  header .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

header #navigation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  header #navigation {
    width: auto;
  }
}

header #navigation .navbar-brand {
  margin-right: 40px;
}

header #navigation .nav-item > .nav-link {
  display: block;
  font-weight: bold;
  color: #000;
  padding-left: 30px;
  padding-right: 30px;
  transition: color .3s;
  -moz-transition: color .3s;
  -webkit-transition: color .3s;
}

header #navigation .nav-item > .nav-link:hover, header #navigation .nav-item > .nav-link:focus {
  color: #fec231;
}

@media screen and (max-width: 1024px) {
  header #navigation .nav-item > .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}

header #mobile-navigattion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  header #mobile-navigattion .navbar-brand img {
    max-width: 120px;
    margin-bottom: 15px;
  }
}

header #mobile-navigattion #toggle-menu-button {
  display: block;
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 100;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 35px;
  height: 30px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

@media screen and (min-width: 544px) and (max-width: 992px) {
  header #mobile-navigattion #toggle-menu-button {
    width: 45px;
    height: 45px;
  }
}

header #mobile-navigattion #toggle-menu-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

@media screen and (min-width: 544px) and (max-width: 992px) {
  header #mobile-navigattion #toggle-menu-button span {
    height: 4px;
  }
}

header #mobile-navigattion #toggle-menu-button span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

header #mobile-navigattion #toggle-menu-button span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@media screen and (min-width: 544px) and (max-width: 992px) {
  header #mobile-navigattion #toggle-menu-button span:nth-child(2) {
    top: 10px;
  }
}

header #mobile-navigattion #toggle-menu-button span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@media screen and (min-width: 544px) and (max-width: 992px) {
  header #mobile-navigattion #toggle-menu-button span:nth-child(3) {
    top: 20px;
  }
}

header #mobile-navigattion #toggle-menu-button.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

@media screen and (min-width: 544px) and (max-width: 992px) {
  header #mobile-navigattion #toggle-menu-button.open span:nth-child(1) {
    top: -3px;
    left: 8px;
  }
}

header #mobile-navigattion #toggle-menu-button.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

header #mobile-navigattion #toggle-menu-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 23px;
  left: 8px;
}

@media screen and (min-width: 544px) and (max-width: 992px) {
  header #mobile-navigattion #toggle-menu-button.open span:nth-child(3) {
    top: 30px;
    left: 8px;
  }
}

header #mobile-navigattion #fixed-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header #mobile-navigattion #fixed-menu.active {
  z-index: 0;
  opacity: 1;
  visibility: visible;
}

header #mobile-navigattion #fixed-menu #toggle-menu {
  text-align: center;
}

header #mobile-navigattion #fixed-menu #toggle-menu .navbar-brand {
  margin: 0px 0px 30px 0px;
}

header #mobile-navigattion #fixed-menu #toggle-menu .nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

header #mobile-navigattion #fixed-menu #toggle-menu .nav-link:focus {
  color: #fec231;
}

#footer {
  font-family: OpenSans;
  color: #777;
}

#footer #footer-upper {
  background-color: #4beb06;
  padding-top: 15px;
  padding-bottom: 15px;
}

#footer #footer-upper .title {
  line-height: 28px;
  color: #fff;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  #footer #footer-upper .newsletter-subscribe {
    width: 100%;
  }
  #footer #footer-upper .newsletter-subscribe .newsletter-email {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  #footer #footer-upper .newsletter {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer #footer-upper .newsletter .title {
    width: 100%;
    text-align: center;
    margin: 10px auto;
  }
}

#footer #footer-upper .newsletter-email .newsletter-subscribe-text {
  width: 300px;
  height: 43px;
  margin: 0 5px;
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
  #footer #footer-upper .newsletter-email .newsletter-subscribe-text {
    width: 70%;
    max-width: 300px;
  }
}

#footer #footer-upper .newsletter-email .newsletter-subscribe-text::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.7);
}

#footer #footer-upper .newsletter-email .newsletter-subscribe-text::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.7);
}

#footer #footer-upper .newsletter-email .newsletter-subscribe-text:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.7);
}

#footer #footer-upper .newsletter-email .newsletter-subscribe-text:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.7);
}

#footer #footer-upper .newsletter-validation {
  display: none;
}

#footer #footer-upper .newsletter-result {
  line-height: 28px;
  color: #fff;
}

#footer #footer-upper .newsletter-subscribe-button {
  display: inline-block;
  width: 47px;
  height: 47px;
  margin: 0 5px;
  border: none;
  background: #fec231 url("http://ketnoisingapore.com/Themes/Pavilion/Content/img/subscribe-button.png") center no-repeat;
  vertical-align: middle;
  font-size: 0;
  border-radius: 0;
  outline: 1px solid transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#footer #footer-upper .social-sharing {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  #footer #footer-upper .social-sharing {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#footer #footer-upper .social-sharing li {
  display: inline-block;
  margin: 0 8px;
}

#footer #footer-upper .social-sharing .twitter a {
  background-position: -32px 0;
}

#footer #footer-upper .social-sharing .facebook a {
  background-position: 0 0;
}

#footer #footer-upper .social-sharing .youtube a {
  background-position: -160px 0;
}

#footer #footer-upper .social-sharing .google a {
  background-position: -64px 0;
}

#footer #footer-upper .social-sharing .rss a {
  background-position: -192px 0;
}

#footer #footer-upper .social-sharing a {
  display: block;
  width: 32px;
  height: 32px;
  background: url("http://ketnoisingapore.com/Themes/Pavilion/Content/img/social-sprite-1.png") no-repeat;
}

#footer #footer-middle {
  padding: 60px 0 30px;
  overflow: hidden;
  background-color: #f6f6f6;
}

@media screen and (max-width: 768px) {
  #footer #footer-middle {
    padding: 0;
  }
  #footer #footer-middle .container {
    width: 100%;
    padding: 0;
  }
  #footer #footer-middle .footer-logo {
    text-align: center;
    margin-top: 10px;
  }
}

#footer #footer-middle .title {
  margin: 0 0 12px;
  border: none;
  padding: 0;
  color: #777;
  font-weight: bold;
  text-transform: uppercase;
}

#footer #footer-middle .title button {
  display: none;
}

@media screen and (max-width: 768px) {
  #footer #footer-middle .title {
    margin-bottom: 0px;
  }
  #footer #footer-middle .title strong {
    display: none;
  }
  #footer #footer-middle .title button {
    display: block;
    text-align: center;
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #e9e9e9;
    padding: 25px;
    font-weight: bold;
    color: #777;
    text-transform: uppercase;
    position: relative;
  }
  #footer #footer-middle .title button:after {
    content: "";
    position: absolute;
    top: 30px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #fec231 url("http://ketnoisingapore.com/Themes/Pavilion/Content/img/toggle-button.png") center no-repeat;
  }
  #footer #footer-middle .title button:focus {
    outline: none;
    border: 0;
    border-bottom: 1px solid #e9e9e9;
  }
  #footer #footer-middle .title + .list {
    display: none;
  }
}

#footer #footer-middle .list {
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  #footer #footer-middle .list {
    text-align: center;
    background-color: #fff;
    margin-bottom: 0;
  }
}

#footer #footer-middle .list li {
  padding: 6px 0;
}

@media screen and (max-width: 768px) {
  #footer #footer-middle .list li {
    padding: 6px 10px;
  }
}

#footer #footer-middle .list li a {
  color: #777;
}

#footer #footer-middle .list li a:hover, #footer #footer-middle .list li a:focus {
  color: #fec231;
  text-decoration: none;
}

#footer #footer-middle .footer-block.quick-contact span {
  padding: 0 0 0 28px;
  position: relative;
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #footer #footer-middle .footer-block.quick-contact span {
    width: auto;
    display: inline-block;
  }
}

#footer #footer-middle .footer-block.quick-contact .list span:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fca00c;
  background-image: url("http://ketnoisingapore.com/Themes/Pavilion/Content/img/footer-sprite.png");
  background-repeat: no-repeat;
}

#footer #footer-middle .footer-block .address span:before {
  height: 17px;
  background-position: center 0;
}

#footer #footer-middle .footer-block .email span:before {
  background-position: center -17px;
}

#footer #footer-middle .footer-block .phone span:before {
  background-position: center -33px;
}

#footer #footer-middle .content-col p {
  margin-bottom: 0;
}

#footer #footer-lower {
  background-color: #eee;
}

#footer #footer-lower .container {
  border-top: 1px solid #e9e9e9;
  padding: 30px 0;
}

#footer #footer-lower .container .accepted-payments {
  margin: 0 0 20px;
  font-size: 0;
}

#footer #footer-lower .container .accepted-payments li {
  display: inline-block;
  width: 50px;
  height: 30px;
}

#footer #footer-lower .container .accepted-payments .method1 {
  background-position: 0 0;
}

#footer #footer-lower .container .accepted-payments .method2 {
  background-position: -50px 0;
}

#footer #footer-lower .container .accepted-payments .method3 {
  background-position: -100px 0;
}

#footer #footer-lower .container .accepted-payments .method4 {
  background-position: -150px 0;
}
.loading_element,.loading {
    background: url("../images/ajax-loader.gif") no-repeat scroll center center black;
    bottom: 0;
    display: none;
    left: 0;
    opacity: 0.5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1230px;
  }
}
a.btn-trash{
    cursor: pointer;
}
.list_product .datetime,.list_cart .datetime{
    display: inline-block;
    width: 115px;
    height: 30px;
    margin-left: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 37px;
    height: 37px;
}
.select2-container--default .select2-selection--single,.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 37px;
}
.required{
    color: red; 
    font-size: 10px;
}
.info_customer .error,.notification_place .error{
    color: red;
}
.info_customer .has-error input,.info_customer .has-error .select2-container--default .select2-selection--single{
    border: 1px solid red;
}
.maincheckout .quantity, .maincheckout .date_choose{
    margin-left: 5px;
}
.maincheckout .contentckBank{
    margin-top: 10px;
}
.maincheckout .contentckBank .content_bank{
    display: flex;
    align-items: center;    
}
.maincheckout .content_bank .bank-info{
    margin-left: 10px;
}
.title_bank{
    font-size: 15px;
}
.totalAll{
    font-weight: bold;
}
.checkout .you_code{
    margin-top: 10px;
}
.notification .error{
    color: red;
    text-align: center;
    margin: 15px 0px 10px;
    border: 1px solid red;
    padding: 10px;
    font-weight: bold;
}
.redbold{
    font-weight: bold;
    color: red;
}
.saleoff{
    margin-right: 5px;
    width: 20px;
}