@charset "UTF-8";
/* Table */
.table-wrapper {
  overflow-y: auto;
  overflow-x: auto;
  height: fit-content;
  margin-top: 10px;
  margin: 6px;
  padding-bottom: 8px;
}
.table-wrapper table {
  border-collapse: collapse;
  border-spacing: 0px;
  margin: 0px;
  width: 100%;
}
.table-wrapper th {
  position: sticky;
  top: 0px;
  background-color: #505050;
  color: #F5C800;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  outline: 0.7px solid black;
  border: 1px solid black;
}
.table-wrapper th td {
  padding: 8px;
}
.table-wrapper tr {
  background: #fff;
  display: table-row !important;
}
.table-wrapper tr:nth-child(odd) {
  background: #f5f5f5;
}
.table-wrapper tr:hover {
  background-color: #eaf9ff;
  color: #1C1C1C;
}
.table-wrapper td {
  border: 1px solid #dedede;
  display: table-cell !important;
  text-align: left;
  font-size: 14px;
  padding: 8px 8px 8px 7px !important;
}
@media (max-width: 767px) {
  .table-wrapper td {
    display: block !important;
    width: 100%;
  }
}
label {
  color: var(--bricks-text-dark);
}
figure {
  display: table !important;
}
figcaption {
  display: table-caption;
  caption-side: bottom;
}
.clickable {
  position: relative !important;
}
.clickable *:not(a) a {
  position: static !important;
}
.clickable a::after {
  content: "";
  cursor: pointer !important;
  display: flex;
  inset: 0;
  position: absolute !important;
  z-index: 1;
}
.line-limit-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.youtube-container {
  position: relative;
  width: 100%;
}
.youtube-container iframe, .youtube-container object, .youtube-container embed {
  aspect-ratio: 1.7777777778;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ff-default .ff-el-form-control:not(textarea) {
  height: 2.5em !important;
}
.size-container .ff-el-input--content {
  overflow: hidden;
  display: grid;
  gap: 0 15px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row dense;
}
.size-container .ff-el-input--content .ff-el-form-check:nth-child(-n+5) {
  grid-column: 1;
}
.size-container .ff-el-input--content .ff-el-form-check:nth-child(n+6) {
  grid-column: 2;
}
.accordion-style-1 .accordion-item {
  border-top: 0.5px solid var(--bricks-border-light);
}
.accordion-style-1 .accordion-item:last-child {
  border-bottom: 0.5px solid var(--bricks-border-light);
}
.accordion-style-1 .accordion-item.brx-open .icon {
  color: var(--bricks-primary);
}
.accordion-style-1 .accordion-item .title, .accordion-style-1 .accordion-item .icon {
  transition: 0.1s all linear;
}
#menu-main .sub-menu {
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-color: var(--bricks-primary) transparent;
  /* Thumb color and Track color */
  scrollbar-width: thin;
  /* Sets the scrollbar to a thin width */
  /* Targeting the scrollbar within a specific element */
}
#menu-main .sub-menu::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
}
#menu-main .sub-menu::-webkit-scrollbar-thumb {
  background-color: var(--bricks-primary);
  /* Color of the scroll thumb */
  border-radius: 20px;
  /* Roundness of the scroll thumb */
}
.description-graphic-item-wrapper:nth-child(2n+1) .description-graphic-item {
  flex-direction: row-reverse;
}
.exhibition-item:hover .hover-bg:after {
  opacity: 1;
}
.hover-bg {
  position: relative;
  /* Other styles */
}
.hover-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s;
  /* Adjust the duration and easing function as needed */
}
.exhibition-item__period .same-month-year .row-1 {
  font-size: calc(var(--bm-font-body)*1.5);
}
.exhibition-item__period .same-year-different-month .row-1 {
  font-size: calc(var(--bm-font-body)*1.2);
}
.exhibition-item__period .different-year .row-1, .exhibition-item__period .different-year .row-2 {
  font-size: calc(var(--bm-font-body)*1.1);
}
.exhibition-item__title::after {
  color: var(--bricks-primary);
  content: "";
  font-family: Ionicons;
  margin-left: 15px;
}
/* WhatsApp & Contact Widgets start */
#widget-wrapper {
  position: fixed;
  z-index: 2147483646;
  bottom: 40px;
  right: 20px;
}
#widget-wrapper #channels {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
#widget-wrapper .channel {
  border: none;
  display: flex;
  padding: 4px;
  width: max-content;
  height: 47px;
  min-height: 47px;
  cursor: pointer;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 2px 7px -3px rgba(0, 0, 0, 0.25), 0 4px 15px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  text-decoration: none;
}
#widget-wrapper .channel-name {
  display: inline-block;
  font-size: 1.7rem;
  margin-right: 10px;
  margin-left: 10px;
  font-weight: 500;
}
/* WhatsApp & Contact Widgets end */
/* Gtransltae start */
/* Select all elements without lang="ar" or lang="iw" */
html:not([lang="ar"]):not([lang="iw"]) {
  direction: ltr !important;
  /* or whatever direction you want */
}
html:not([lang="ar"]):not([lang="iw"]) body {
  direction: ltr !important;
}
#gt_float_wrapper {
  top: unset !important;
  right: unset !important;
  bottom: 30px !important;
  left: 20px !important;
}
.gt_options {
  width: 200px !important;
}
.gt_float_switcher .gt_options {
  scrollbar-color: var(--bricks-primary) transparent;
  /* Thumb color and Track color */
  scrollbar-width: thin;
  /* Sets the scrollbar to a thin width */
  /* Targeting the scrollbar within a specific element */
}
.gt_float_switcher .gt_options::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
}
.gt_float_switcher .gt_options::-webkit-scrollbar-thumb {
  background-color: var(--bricks-primary);
  /* Color of the scroll thumb */
  border-radius: 20px;
  /* Roundness of the scroll thumb */
}
/* Gtransltae end */
@media (min-width: 991.1px) and (max-width: 1200px) {
  .col-3.brxe-div {
    width: 33.3%;
  }
  .col-4.brxe-div {
    width: 50%;
  }
}
@media (min-width: 1380px) {
  .production-line-table-wrapper {
    min-width: 798px;
  }
}
