.bg-indigo { background-color: var(--bs-indigo); }
.bg-purple { background-color: var(--bs-purple); }
.bg-pink { background-color: var(--bs-pink); }
.bg-orange { background-color: var(--bs-orange); }
.bg-teal { background-color: var(--bs-teal); }
.bg-cyan { background-color: var(--bs-cyan); }

.inputtext input.form-control,
.inputtext input.form-control[type=file],
.inputtext input.form-control:focus {
  border: none;
  border-bottom: 1px solid #d42020 !important;
  border-radius: 0;
  box-shadow: none !important;
}

.input-eb {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  padding: 8px 0 4px;
  border-radius: 0;
  border-bottom: 1px solid #000000;
}
.input-eb:active, .input-eb:focus {
  border-bottom: 1px solid #d92027;
}
.input-eb-select * {
  border-radius: 1px;
}

.fw-500 {
  font-weight: 500;
}

.input-estimated-visitor {
  border: unset;
  border-bottom: 1px solid #d92027;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  height: 30px;
}
.input-estimated-visitor:focus-visible {
  outline: inherit;
}

.select-eb {
  padding-left: 0;
  border: unset;
  border-bottom: 1px solid black;
  border-radius: 0;
}
.select-eb:focus {
  box-shadow: unset !important;
  border-color: unset;
}
.select-eb:focus-visible {
  outline: unset !important;
}

.bg-red {
  background-color: #d92027 !important;
}

.text-red {
  color: #d92027 !important;
}

.nav-margin {
  position: relative;
}
.nav-margin:not(.active):hover {
  border-bottom: 3px solid #d92027;
  border-radius: 2px 2px 0 0;
}
.nav-margin.active:after {
  display: block;
  content: "";
  border-bottom: 3px solid #d92027;
  border-radius: 2px 2px 0 0;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.tab-margin:not(.active):hover {
  padding-bottom: 11px;
  border-bottom: 3px solid #d92027;
  border-radius: 2px 2px 0 0;
}
.tab-margin.active:after {
  display: block;
  content: "";
  border-bottom: 3px solid #d92027;
  border-radius: 2px 2px 0 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.btn-login {
  width: 75px;
  border: 1px solid #d92027;
  box-sizing: border-box;
  border-radius: 5px;
}

.btn-outline-eb {
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 0.75rem;
}

.btn-google:before {
  background-image: url("../img/google-icon.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-facebook:before {
  background-image: url("../img/fb-icon.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-apple:before {
  background-image: url("../img/apple-icon.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.banner-caption-wrapper {
  background: rgba(183, 194, 196, 0.4);
  border-radius: 5px;
  position: absolute;
  left: 12px;
  bottom: 70px;
  text-align: left;
  padding-left: 24px;
  text-transform: uppercase;
}
.banner-caption-wrapper .heading {
  color: #d92027;
  font-size: 36px;
  font-weight: 800;
}
.banner-caption-wrapper .description {
  font-size: 14px;
  font-weight: 500;
}

.footer-overlay .footer-top {
  /* background: linear-gradient(180deg, #172030 0%, rgba(0, 0, 0, 0.6) 86.4%); */
  background: rgba(255, 255, 255, 0.7);
}

.footer-skew .footer-top {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.footer-skew .footer-top:before,
.footer-skew .footer-top:after {
  background: #ffffff;
  content: "";
  position: absolute;
}

.footer-skew .footer-top:after {
  height: 80px;
  left: 0;
  top: -40px;
  transform: skewX(0deg) skewY(-7deg);
  width: 40%;
}

.footer-skew .footer-top:before {
  height: 85px;
  right: 0;
  top: -43px;
  transform: skewX(0deg) skewY(5deg);
  width: 60%;
}

@media only screen and (max-width: 1024px) {
  .footer-skew .footer-top:before {
    transform: skewX(0deg) skewY(6deg);
  }
}
@media screen and (max-width: 360px) {
  .footer-skew .footer-top {
    padding-top: 80px;
  }
}
.card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8rem;
  margin: 0;
}

.left-addon .icon-search {
  left: 0;
  position: absolute;
  padding: 7px 10px;
  pointer-events: none;
}
.left-addon input {
  width: 0px;
  padding-left: 22px;
  border-color: #d92027;
  float: right;
  cursor: pointer;
}
.left-addon input:focus {
  transition: all 0.3s linear;
  width: 100%;
  padding-left: 30px;
  border-color: #d92027;
  box-shadow: 0 0 0 0.25rem rgba(217, 32, 39, 0.25);
}
.left-addon input:not(:focus) {
  transition: all 0.3s linear;
}
.left-addon.full {
  width: calc(100% - 291px);
}

.navbar-nav li:hover > .dropdown-menu {
  display: flex;
  flex-direction: inherit;
  flex-wrap: wrap;
}

.navbar-nav .img-flag {
  border: 1px solid #aeaeae;
  filter: grayscale(100%);
}

.navbar-nav .img-flag.active {
  filter: grayscale(0%);
}

.navbar-nav .img-flag:hover {
  filter: grayscale(0%);
}

.main-menu {
  width: 22rem;
  top: calc(70px - 8px);
  border: unset;
  border-top-left-radius: unset !important;
  border-top-right-radius: unset !important;
  z-index: 1031;
}
.main-menu div:nth-child(-n+3) {
  padding-top: 12px;
}
.main-menu div:last-child {
  padding-bottom: 12px;
}

.dropdown-submenu {
  position: relative;
}

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

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}

.dropdown-item.active,
.dropdown-item:active {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  border-left: 2px solid #d92027;
  padding-left: calc(1rem - 2px);
}

.user-menu {
  right: -1px;
  top: 46px !important;
  left: unset !important;
  border-top: none;
  border-top-left-radius: unset !important;
  border-top-right-radius: unset !important;
  min-width: 11rem !important;
}
.user-menu a {
  height: 30px;
}
.user-menu a div {
  display: inline-block;
  text-align: center;
  width: 17px;
  margin: 0 5px 0 -5px;
}

@media (min-width: 992px) {
  #top_menu {
    padding-top: 3px !important;
  }
}
.btn-more {
  border: 1px solid #4ad295;
  border-radius: 12px;
  color: #4ad295;
  display: block;
  padding: 10px 50px;
  margin: 12px auto;
}
.btn-more:hover {
  background-color: #4ad295;
  color: #ffffff;
}

.category-img {
  background: url("../img/category-gradient.png");
  top: 0;
  left: 0;
  right: 0;
  background-repeat: round;
  border-radius: 10px;
  height: 100%;
  background-position: center;
  background-size: contain;
  display: flex;
}
.category-img img {
  border-radius: 10px;
  position: relative;
  z-index: -1;
}

.category-desc {
  position: absolute;
  bottom: 10%;
  left: 10%;
  right: 10%;
}

#searchbox1 .ui-autocomplete, #searchbox2 .ui-autocomplete {
  top: 48px !important;
  border-radius: 0px 0px 5px 5px;
  border: unset;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 400px;
  overflow: hidden;
  overflow-y: auto;
}
#searchbox1 .ui-state-active,
#searchbox1 .ui-widget-content .ui-state-active,
#searchbox1 .ui-widget-header .ui-state-active,
#searchbox1 a.ui-button:active,
#searchbox1 .ui-button:active,
#searchbox1 .ui-button.ui-state-active:hover,
#searchbox2 .ui-state-active,
#searchbox2 .ui-widget-content .ui-state-active,
#searchbox2 .ui-widget-header .ui-state-active,
#searchbox2 a.ui-button:active,
#searchbox2 .ui-button:active,
#searchbox2 .ui-button.ui-state-active:hover {
  border: unset !important;
  background: #ffebeb !important;
  color: unset !important;
  margin: 0;
}
#searchbox1 .ui-state-active a,
#searchbox1 .ui-state-active a:link,
#searchbox1 .ui-state-active a:visited,
#searchbox2 .ui-state-active a,
#searchbox2 .ui-state-active a:link,
#searchbox2 .ui-state-active a:visited {
  color: unset;
}

.search-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.icon-search-right {
  right: 0;
  position: absolute;
}

.btn-accordion {
  background-color: transparent !important;
  box-shadow: unset !important;
  color: #212529 !important;
}

.no-border {
  border: 0 !important;
}

.card-filter {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.card-booking {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.card-booking .rate-title {
  font-weight: bold;
  font-size: 13px !important;
}

.card-profile {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

#slider_range .ui-slider-range {
  background-color: #d92027;
}
#slider_range .ui-state-active,
#slider_range .ui-widget-content .ui-state-active,
#slider_range .ui-widget-header .ui-state-active,
#slider_range a.ui-button:active,
#slider_range .ui-button:active,
#slider_range .ui-button.ui-state-active:hover {
  border: 0;
  background-color: #d92027;
}

#labelHolder {
  height: 7px;
  position: relative;
  border: none;
}
#labelHolder #min,
#labelHolder #max {
  position: absolute;
  margin-left: -0.6em;
  text-align: center;
}

.icon-heart {
  position: absolute;
  right: 20px;
  top: 10px;
  background-color: white;
  border-radius: 25px;
  cursor: pointer;
  z-index: 1;;
}
.icon-heart.bc {
  border: 1px solid black;
  display: inline-block;
  position: unset;
}
.icon-heart .fa-heart {
  font-size: 11px;
  border: 1px solid #ffffff;
  border-radius: 25px;
  padding: 5px;
}
.icon-heart .fas.fa-heart {
  display: none;
}
.icon-heart:hover, .icon-heart.active {
  color: #d92027;
}
.icon-heart:hover .far.fa-heart, .icon-heart.active .far.fa-heart {
  display: none;
}
.icon-heart:hover .fas.fa-heart, .icon-heart.active .fas.fa-heart {
  display: inline-block;
}

.dropdown-eb {
  width: 112px;
}
.dropdown-eb a.dropdown-toggle {
  color: #000000 !important;
  background: #ffffff;
  border: 1px solid #a6a6b4;
  box-sizing: border-box;
  border-radius: 3px 3px 0px 0px;
  text-align: left;
}
.dropdown-eb a.dropdown-toggle::after {
  float: right;
  margin-top: 0.7em;
}
.dropdown-eb div.dropdown-menu {
  min-width: 7rem !important;
}

.dropdown-eb-border-bottom a.dropdown-toggle {
  color: #000000 !important;
  background: #ffffff;
  border-bottom: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 3px 3px 0px 0px;
  text-align: left;
}
.dropdown-eb-border-bottom a.dropdown-toggle::after {
  float: right;
  margin-top: 0.7em;
}
.dropdown-eb-border-bottom div.dropdown-menu {
  min-width: 7rem !important;
}

.dropdown-type-event a.dropdown-toggle {
  color: #000000 !important;
  background: #ffffff;
  border: 1px solid #a6a6b4;
  box-sizing: border-box;
  border-radius: 3px 3px 0px 0px;
  text-align: left;
}
.dropdown-type-event a.dropdown-toggle::after {
  float: right;
  margin-top: 0.7em;
}
.dropdown-type-event div.dropdown-menu {
  width: 100%;
}

.breadcrumb-wrapper {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.period {
  border: 1px solid #a6a6b4;
  color: #a6a6b4;
}

.description-package li {
  display: flex;
}
.description-package li::before {
  margin-right: 8px;
}

.custom-modal {
  border-radius: 8px;
  border: unset;
}
.custom-modal .modal-header {
  border-top: 8px solid #d92027;
  border-bottom: unset;
  padding: 1rem 1rem 0 1rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.table-cart th,
.table-cart td {
  padding: 1rem;
}

.scrollable {
  overflow-y: auto;
}

.scrollable::-webkit-scrollbar {
  width: 6px;
}

.scrollable::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #d92027;
}

.dashed-divider {
  background-image: url("../img/border.svg");
  height: 10px;
  background-repeat: repeat-x;
}

.table-thankyou tr,
.table-thankyou td,
.table-thankyou th {
  border-style: dashed;
  border-width: 1px;
}
.table-thankyou .no-border tr,
.table-thankyou .no-border th,
.table-thankyou .no-border td {
  border-bottom-width: 0 !important;
  border-width: 0;
}

.card-login {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 350px;
}
.card-login .card-body {
  padding: 20px;
}

a .card .card-body {
  height: 100px;
}

@media (max-width: 576px) {
  .card-login {
    width: auto;
    position: static;
  }
}
.card-venue {
  border-radius: 20px;
  border: 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.hover-red:hover {
  color: #d92027 !important;
}

.fw-500 {
  font-weight: 500;
}

.payment-method img {
  opacity: 0.5;
}
.payment-method img.active {
  opacity: 1;
}

.upload-wrapper {
  border: 1px solid #929699;
  box-sizing: border-box;
  border-radius: 5px;
  width: 70px;
  height: 70px;
  position: relative;
  display: block;
}
.upload-icon {
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #929699;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 25%;
}

.header-sticky {
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1021;
}

.custom-bootbox .modal-dialog .modal-content {
  border-top: 8px solid #d92027;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.nav.navbar-nav .nav-item .nav-link img {
  width: 30px;
  display: block;
  margin: 0 auto;
}
.nav-link-eb {
  border: 1px solid #cccccc !important;
  box-sizing: border-box !important;
  border-radius: 6px !important;
  color: #000000;
}
.nav-link-eb.active {
  background-color: #d92027 !important;
}

.list-date {
  margin-bottom: 5px;
}
.list-date::before {
  content: "";
  background-color: #000000;
  width: 5px;
  height: 5px;
  display: inline-flex;
  border-radius: 50%;
  align-self: center;
  margin-right: 5px;
}

.notification-type.danger::before {
  content: "";
  background-color: #d92027;
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 50%;
  align-self: center;
  margin-right: 10px;
}
.notification-type.warning::before {
  content: "";
  background-color: #ff9635;
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 50%;
  align-self: center;
  margin-right: 10px;
}
.notification-type.success::before {
  content: "";
  background-color: #07ff6a;
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 50%;
  align-self: center;
  margin-right: 10px;
}

.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-file-input::before {
  content: "Select some files";
  display: inline-block;
  background: linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}

.custom-file-input:hover::before {
  border-color: black;
}

.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

#carouselCategory .carousel-item {
  margin-right: 20px;
  flex: 0 0 20%;
  display: block;
}

#carouselCategory .carousel-item:last-child {
  margin-right: 0px;
}

#carouselCategory .carousel-inner {
  display: flex;
}

.accordion .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

#calendar .fc-col-header-cell-cushion, #calendar .fc-list-day-text, #calendar .fc-list-day-side-text {
  text-decoration: none;
}

.btn-green {
  background-color: #388E3C;
}

.btn-green:hover, .btn-green:focus, .btn-green:active, .btn-green.active {
  background-color: #3fa044;
}

.fullcalendar-date-hover-preparation {
  background: #D3D3D3 !important;
}

.fullcalendar-date-hover {
  background: #A9A9A9 !important;
}

.fullcalendar-date-hover-dismantling {
  background: #696969 !important;
}

.fullcalendar-bloked-date {
  background: #32CD32;
}

.bootbox .ui-button-icon-only .ui-icon {
  margin-left:0px;
}

.not-allowed {
  cursor: not-allowed !important;
}

.disabled-all {
  border: none !important;
  background: #999 !important;
  pointer-events: none !important;
}

.calendar .fc-daygrid-dot-event .fc-event-title {
  cursor: default;
}

.label_item {
  opacity: .5;
  background-color:#EAEAEA;
  padding: 5px;
  border: 1px solid #B8B9BB;
  cursor: pointer;
}

.radio_item:checked+label {
  opacity:1;
  border:1px solid #7FA0C5;
}

.card-dashboard {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  border-left: 4px solid red;
}

.list-ads-notes {
  margin-bottom: 7px;
}

.list-ads-notes::before {
  content: "";
  background-color: #d92027;
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 50%;
  align-self: center;
  margin-right: 10px;
}

.ui-datepicker {
  z-index: 1061 !important;
}

.absolute-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trx-filter-date-wrapper input {
  padding-left: 25px;
  border: 1px solid #a6a6b4;
  border-radius: 6px;
}
.trx-filter-date-icon {
  position: absolute;
  top: 10px;
  left: 20px;
}
.trx-filter-key-wrapper input {
  border: 1px solid #a6a6b4;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.bg-success-50 {
  background: #35ff3d;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  width: 60px;
  text-align: center;
  align-items: center;
}

.step-spacer {
  width: 10vw;
  height: 1px;
  background-color: #c4c4c4;
  top: -4px;
  position: relative;
  display: block;
}

.bullet {
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  content: "";
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  position: relative;
  text-align: center;
  height: 31px;
  width: 31px;
  color: #c0c0c0;
}
.bullet.visit {
  background-color: #d92027;
  color: #ffffff;
}

.text-muted-50 {
  color: #c0c0c0;
}

.visitor .circle-1 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  opacity: 0.09;
  z-index: 1;
  top: -40px;
}
.visitor .circle-2 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  right: -30px;
  opacity: 0.2;
  z-index: 2;
  top: 25px;
}
.visitor .square-1 {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  opacity: 0.09;
  z-index: 1;
  top: -40px;
  transform: matrix(0.98, -0.08, 0.21, 1, 0, 0);
}
.visitor .square-2 {
  width: 90px;
  height: 60px;
  border-radius: 10px;
  background-color: #ffffff;
  position: absolute;
  right: -30px;
  opacity: 0.2;
  z-index: 2;
  top: 25px;
  transform: matrix(0.8, 0, 0.68, 0.9, 0, 0);
}
.visitor i {
  font-size: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.visitor.total-customer {
  display: block;
  position: relative;
  background: #7e78fe;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}
.visitor.total-transaction {
  position: relative;
  background: #fc8d89;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}
.visitor.total-schedule {
  position: relative;
  background: #fc85c2;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}
.visitor.total-visit {
  position: relative;
  background: #41a788;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}
.visitor.total-uniq-visit {
  position: relative;
  background: #bb89fc;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}
.visitor.total-realtime-visit {
  position: relative;
  background: #cd9d31;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}

.was-validated .form-control:valid,
.was-validated .form-control:invalid {
  background-image: none;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.carousel-control-prev, .carousel-control-next {
  width: 10%;
}

.icon-upload {
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  cursor: pointer;
  background-color: green;
  z-index: 1;
}

.icon-delete {
  font-size: 8px;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  padding-left: 6px !important;
  color: white;
  cursor: pointer;
  background-color: #d92027;
  z-index: 1;
}

.member-child {
  border: 1px solid #909090;
  border-radius: 5px;
  position: relative;
}

.btn-remove-club {
  position: absolute;
  right: 0;
  top: -2px;
  display: block;
  font-size: 25px;
  color: red;
}

.accordion-button:not(.collapsed) {
  color: #c62f2f;
  background-color: #fcebeb;
}

@media (max-width: 767px) {
  #carouselCategory .carousel-item {
    flex: 0 0 42%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #carouselCategory .carousel-item {
    flex: 0 0 29%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #carouselCategory .carousel-item {
    flex: 0 0 26.8%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  #carouselCategory .carousel-item {
    flex: 0 0 22.5%;
  }
}

@media (min-width: 1400px) {
  #carouselCategory .carousel-item {
    flex: 0 0 19.3%;
  }
}
div.stars {
  display: inline-block;
}
input.star {
  display: none;
}
label.star {
  float: right;
  padding: 10px;
  font-size: 26px;
  color: #444;
  transition: all .2s;
  cursor: pointer;
}
input.star:checked ~ label.star:before {
  content:'\2605';
  color: #FD4;
  transition: all .25s;
}
input.star-5:checked ~ label.star:before {
  color:#FE7;
  text-shadow: 0 0 1px #952;
}
label.star:hover {
  transform: rotate(-15deg) scale(1.3);
}
label.star:before {
  content:'\2605';
  font-family: FontAwesome;
}
label.star:hover:before,
label.star:hover ~ label.star:before {
  color: gold;
}