.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-clip: padding-box;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-menu .dropdown-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  clear: both;
  font-weight: 400;
  color: #222222;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-menu.dropdown-menu-end {
  inset: 0 0 auto auto !important;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #222222;
  pointer-events: auto;
  background-color: var(--color-white);
  background-clip: padding-box;
  filter: drop-shadow(1px 3px 15px #000);
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: 8px;
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #1d2327;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  font-size: 22px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222222'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(53, 116, 240, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #222222;
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
  cursor: pointer;
}

.btn-close:hover, .btn-close._hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}

.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}

.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: var(--spacing-xs) var(--spacing-sm);
  gap: var(--spacing-xs);
  color: var(--color-white);
  border-radius: 8px;
  background-color: #272727;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  text-transform: uppercase;
  border: 0;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.btn .icon {
  fill: var(--color-white);
}
.btn.icon_size .icon {
  width: 24px;
  height: 24px;
}
.btn:hover, .btn ._hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn.btn-sm {
  font-weight: 500;
  height: 32px;
}
.btn.btn-lg {
  height: 50px;
  font-size: 18px;
  font-weight: 700;
}
.btn.btn-xl {
  height: 60px;
  font-size: 18px;
  font-weight: 700;
}
.btn.btn-primary {
  background: var(--color-primary);
}
.btn.btn-primary:hover, .btn.btn-primary ._hover {
  background: var(--color-primary-hover);
}
.btn.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.6px solid var(--color-primary);
}
.btn.btn-secondary:hover, .btn.btn-secondary ._hover {
  color: var(--color-white);
  background: var(--color-primary-hover);
}
.btn.btn-light {
  background: rgba(255, 255, 255, 0.5);
}
.btn.btn-light:hover, .btn.btn-light ._hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn.btn-link {
  background: transparent;
}
.btn.btn-link:hover, .btn.btn-link ._hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn.btn-danger {
  background: transparent;
  background: var(--color-white);
  color: red;
  border: 1.6px solid var(--border-color);
}
.btn.btn-danger:hover, .btn.btn-danger ._hover {
  background: rgba(0, 0, 0, 0.1);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.2) inset;
  -webkit-transition: background-color 0.3s ease-in-out 0s;
  transition: background-color 0.3s ease-in-out 0s;
}

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1.5px solid #555;
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  height: 40px;
  padding: 0 var(--spacing-sm);
  width: 100%;
  position: relative;
}
.form-control:focus {
  border-color: var(--color-primary-hover);
  outline: none;
}

textarea.form-control {
  height: auto;
}

.input_icon {
  position: relative;
}
.input_icon .form-control {
  padding-left: 48px;
}
.input_icon::before {
  content: attr(icon);
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: var(--spacing-unit);
  transform: translate(var(--spacing-unit), -50%);
  z-index: 1;
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #555;
}
.input_icon:has(> .form-control:focus)::before {
  color: var(--color-primary-hover);
}

.input_alert {
  display: flex;
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  color: red;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid var(--border-color);
  border-radius: var(--bs-card-border-radius);
}

.card-body {
  flex: 1 1 auto;
  padding: var(--spacing-sm);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.text-size-9 {
  font-size: 9px;
}

.text-size-10 {
  font-size: 10px;
}

.text-size-11 {
  font-size: 11px;
}

.text-size-12 {
  font-size: 12px;
}

.text-size-13 {
  font-size: 13px;
}

.text-size-14 {
  font-size: 14px;
}

.text-size-15 {
  font-size: 15px;
}

.text-size-16 {
  font-size: 16px;
}

.text-size-17 {
  font-size: 17px;
}

.text-size-18 {
  font-size: 18px;
}

.text-size-19 {
  font-size: 19px;
}

.text-size-20 {
  font-size: 20px;
}

.text-size-21 {
  font-size: 21px;
}

.text-size-22 {
  font-size: 22px;
}

.text-size-23 {
  font-size: 23px;
}

.text-size-24 {
  font-size: 24px;
}

.text-size-25 {
  font-size: 25px;
}

.text-size-26 {
  font-size: 26px;
}

.text-size-27 {
  font-size: 27px;
}

.text-size-28 {
  font-size: 28px;
}

.text-size-29 {
  font-size: 29px;
}

.text-size-30 {
  font-size: 30px;
}

.text-size-31 {
  font-size: 31px;
}

.text-size-32 {
  font-size: 32px;
}

.text-size-33 {
  font-size: 33px;
}

.text-size-34 {
  font-size: 34px;
}

.text-size-35 {
  font-size: 35px;
}

.text-size-36 {
  font-size: 36px;
}

.text-size-37 {
  font-size: 37px;
}

.text-size-38 {
  font-size: 38px;
}

.text-size-39 {
  font-size: 39px;
}

.text-size-40 {
  font-size: 40px;
}

.text-size-50 {
  font-size: 50px;
}

.text-size-60 {
  font-size: 60px;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

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

.text-secondary {
  color: var(--color-secondary);
}

.text-dark {
  color: var(--color-dark);
}

.text-white {
  color: #ffffff;
}

.text-light {
  color: #dddddd;
}

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

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

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

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

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

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

.fw-bolder {
  font-weight: 900 !important;
}

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

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

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

.h-0 {
  height: 0 !important;
}

.h-10 {
  height: 10% !important;
}

.h-20 {
  height: 20% !important;
}

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

.h-30 {
  height: 30% !important;
}

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

.h-35 {
  height: 35% !important;
}

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

.h-40 {
  height: 40% !important;
}

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

.h-60 {
  height: 60% !important;
}

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

.h-65 {
  height: 65% !important;
}

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

.h-70 {
  height: 70% !important;
}

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

.h-80 {
  height: 80% !important;
}

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

.h-90 {
  height: 90% !important;
}

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

.h-100 {
  height: 100% !important;
}

#loading_page {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  text-align: center;
}
#loading_page .icon_loading {
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: #fff url(../../images/loading.gif) no-repeat center;
  background-size: 400px;
  z-index: 9999;
}

.box_search_01 {
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  line-height: 26px;
  display: flex;
  align-items: center;
}
.box_search_01._hover {
  background: rgb(255, 255, 255);
}
.box_search_01 .input {
  background: transparent;
  border: 0;
  padding-left: 20px;
  flex: 1;
  margin-right: -36px;
  padding-right: 40px;
  color: var(--color-primary);
}
.box_search_01 .input:focus {
  border: 0;
  outline: 0;
}
.box_search_01 .btn-search {
  background: transparent;
  border: 0;
  margin-right: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.box_search_01 .btn-search i {
  color: #b3b3b3;
  font-size: 20px;
}
.box_search_01 .btn-search:hover i {
  color: var(--color-primary);
}

.autocomplete-suggestions {
  background: #090812;
  padding: 15px;
  margin-top: 10px;
  border-radius: 1rem;
  z-index: 1111;
  border: 1px solid #ccc;
  overflow: auto;
  max-height: 500px !important;
  box-shadow: var(--bs-box-shadow);
}
.autocomplete-suggestions .autocomplete-suggestion {
  padding: 3px 0;
  border-bottom: 1px dashed #ccc;
  font-size: 14px;
  position: relative;
}
.autocomplete-suggestions .autocomplete-suggestion strong {
  color: var(--color-primary);
}
.autocomplete-suggestions .autocomplete-suggestion:last-child {
  border-bottom: 0;
}
.autocomplete-suggestions .autocomplete-selected {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.autocomplete-suggestions .autocomplete-selected:after {
  position: absolute;
  left: -12px;
  right: -12px;
  top: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  background: #333333;
  border-radius: 6px;
}

.hover_o:hover {
  opacity: 0.8;
}

.has_scroll:before {
  content: "";
  left: 0;
  top: 48px;
  width: calc(100% - 1px);
  height: 40px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  will-change: transform;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="lgrad" x1="50%" y1="0%" x2="50%" y2="100%" ><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1"/><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0"/></linearGradient></defs><rect x="0" y="0" width="100%" height="100%" fill="url(%23lgrad)"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.icon_bar {
  width: 30px;
  aspect-ratio: 1/1;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.icon_bar:before {
  content: "MENU";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 10.5px;
  left: 0;
  right: 0;
}
.icon_bar._hover {
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.btn-google {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-google:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-facebook {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-facebook:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

.color-telegram {
  color: #000000;
}
.color-telegram:hover {
  color: var(--color-primary);
}

.color-facebook {
  color: #0069d9;
}
.color-facebook:hover {
  color: var(--color-primary);
}

.btn-go-top {
  display: none;
  border-radius: 5px;
  position: fixed;
  width: 35px;
  height: 35px;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #333;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0;
}
.btn-go-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-go-top:hover {
  color: var(--color-primary);
  font-size: 20px;
}

.badge_pro {
  --bs-badge-padding-x: 10px;
  --bs-badge-padding-y: 4px;
  --bs-badge-font-size: 12px;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  border-radius: 50em;
  font-weight: var(--bs-badge-font-weight);
  font-size: var(--bs-badge-font-size);
  color: var(--bs-badge-color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge_search {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 50em;
  font-size: 12px;
  color: var(--color-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge_search:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
}

.section_search {
  --bs-badge-padding-x: 15px;
  --bs-badge-padding-y: 6px;
  --bs-badge-font-size: 14px;
  --bs-badge-font-weight: 500;
  --bs-badge-color: #000000;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  border-radius: 50em;
  font-weight: var(--bs-badge-font-weight);
  font-size: var(--bs-badge-font-size);
  color: #000000;
  background: var(--color-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_search.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.grid-wrapper .wide {
  grid-column: span 2;
}

.grid-wrapper .tall {
  grid-row: span 2;
}

.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.rating-stars {
  display: inline-block;
  position: relative;
  font-size: 24px;
}

.stars-outer {
  display: inline-block;
  position: relative;
  font-family: FontAwesome;
}

.stars-outer::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: FontAwesome;
  color: #ccc;
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}

.stars-inner::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: FontAwesome;
  color: #f5a623;
}

.cursor:hover {
  cursor: pointer;
}

.click:hover {
  cursor: pointer;
}
.click_text {
  cursor: pointer;
}
.click_text:hover {
  color: var(--color-primary-hover) !important;
}

.click_border {
  cursor: pointer;
}
.click_border:hover {
  border-color: var(--color-primary-hover) !important;
}

.click_bg {
  position: relative;
}
.click_bg:hover {
  background-color: #f2f2f2 !important;
}

.click_bg_opacity {
  position: relative;
}
.click_bg_opacity:hover {
  --bs-bg-opacity: 0.1;
}

.line1_2 {
  line-height: 1.2;
}

.line1_1 {
  line-height: 1.1;
}

.text-active {
  color: var(--color-active);
}

.widgets_blocks.active .wiget_title {
  background: #E7E7E7;
}
.widgets_blocks.active .widget_body {
  background: #F2F2F2;
}
.widgets_blocks:hover .wiget_title {
  background: #E7E7E7;
}

.alert {
  border-radius: 0;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.alert.alert-success {
  background: #28a745;
}
.alert.alert-danger {
  background: #dc3545;
}
.alert.alert-warning {
  background: #ffc107;
}
.alert.alert-info {
  background: #17a2b8;
}
.alert .close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
}
