/**
 * @file
 * oc_bootstrap theme specific CSS.
 */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1, h2 {
  border-bottom-style: solid;
  border-bottom-color: #dcdcde;
  border-bottom-width: 1px;
  padding-bottom: 0.25rem;
}

html[data-bs-theme=dark] h1, 
html[data-bs-theme=dark] h2 {
  border-bottom-color: #5f6368;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.3125rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.8125rem;
}

b, strong {
  font-weight: 600;
}

.node__meta {
  margin-bottom: 0;
}

.navbar-nav h1, 
.navbar-nav h2 {
  border-bottom: 0;
}

[data-bs-theme=light] tr td, 
[data-bs-theme=light] tr th {
  border: 1px solid #dee2e6;
}

.btn-primary {
  padding: 7px 14px;
}

#drupal-off-canvas-wrapper {
  z-index: 1051;
}
.layout-builder-form #edit-actions,
.layout-builder-revert-overrides #edit-actions,
.layout-builder-discard-changes #edit-actions {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.layout-builder-form #edit-actions input[type=submit],
.layout-builder-revert-overrides #edit-actions input[type=submit],
.layout-builder-discard-changes #edit-actions input[type=submit] {
  flex: 1;
  max-width: 200px;
}

.oc-sidebar-menu__inner {
  z-index: 1050;
  overflow: initial;
}
.btn.oc-sidebar-menu-toggle {
  z-index: 1051;
}

.oc-sidebar-menu .dropdown .dropdown-toggle::after {
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.oc-sidebar-menu .dropdown .dropdown-toggle.show::after {
  transform: rotate(0deg);
}

aside .fixed-submenu-container.fixed {
  position: fixed;
  display: block;
  z-index: 9999;
}

aside .fixed-submenu-container.fixed ul {
  background-color: var(--bs-gray-100);
  display: block;
  z-index: 9999;
  padding: 10px 10px;
}

[data-bs-theme=light] aside .fixed-submenu-container.fixed ul {
  background-color: #ffffff;
}
.oc-sidebar-menu .dropdown-menu {
  padding-left: 10px;
}
.fourcol-section {
  display: flex;
  flex-wrap: wrap;
}
[data-bs-theme=dark] .oc-header,
[data-bs-theme=dark] .oc-sidebar-menu__inner {
  border-color: #5f6368;
}
@media (min-width: 1440px) {
  body.page-with-sidebar--left #toolbar-item-administration-tray.toolbar-tray-vertical {
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 11.5%;
  }
  body.page-with-sidebar--left.sidebar-1 #toolbar-item-administration-tray.toolbar-tray-vertical {
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0;
  }
  body.page-with-sidebar--left .toolbar-bar,
  body.page-with-sidebar--left .toolbar-tray-horizontal {
    padding-left: 16rem !important;
  }
  body.page-with-sidebar--right .toolbar-bar,
  body.page-with-sidebar--right .toolbar-tray-horizontal {
    padding-right: 16rem !important;
  }
  /*body.page-with-sidebar--left.sidebar-1,*/
  body.page-with-sidebar--left.sidebar-1 .toolbar-bar,
  body.page-with-sidebar--left.sidebar-1 #toolbar-item-administration-tray.toolbar-tray-horizontal,
  body.page-with-sidebar--left.sidebar-1 .toolbar-tray-horizontal {
    padding-left: 3rem !important;
  }
  /*body.page-with-sidebar--right.sidebar-2,*/
  body.page-with-sidebar--right.sidebar-2 .toolbar-bar,
  body.page-with-sidebar--right.sidebar-2 #toolbar-item-administration-tray.toolbar-tray-horizontal,
  body.page-with-sidebar--right.sidebar-2 .toolbar-tray-horizontal {
    padding-right: 3rem !important;
  }
  body.page-with-sidebar--right.sidebar-2 .toolbar-toggle-orientation {
    margin-right: 0;
  }
  body.page-with-sidebar--right .toolbar-toggle-orientation {
    margin-right: 16rem;
  }
  .oc-sidebar-menu.oc-sidebar-menu--open .oc-sidebar-menu__inner {
    display: none;
  }
}

.toolbar-oriented .toolbar-tray-vertical .toolbar-toggle-orientation{
  float: left;    
}

img {
  max-width: 100%;
  height: auto;
}

.ck-editor__editable_inline, 
.field--name-body img {
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
}
.hero-section {
  padding: 80px 12px;
  background-color: #ffffff;
  text-align: center;
}
.herorating {
  margin: 24px 0 80px;
}
.herorating img {
  max-width: 16px;
}
.herorating span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.marquee {
  --gap:24px;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: var(--gap);
}
.marquee .marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}
.marquee .marqueeList > .inner {
  width: 180px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee .marqueeList > .inner img {
  max-height: 40px !important;
  filter: grayscale(1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 30s linear infinite;
}

/* Pause on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.marquee--fit-content {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}
.stats-section {
  background-color: #fff;
  text-align: center;
  padding: 80px 0;
}
.stats-section h2 {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.stats-section .row > div p:first-of-type {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.stats-section .row > div h3 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}
.stats-section .row > div p:last-of-type {
  color: #6c757d;
  font-weight: 600;
}

.postjob-section {
  background-color: #f9f8f6;
  padding-top: 80px;
}
.postjob-section p {
  color: #6c757d;
}
.postjob-section a.btn-link {
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
}

.iconswrap {
  margin-top: 120px;
  display: flex;
  align-items: end;
  gap: 12px;
  justify-content: center;
}
.iconswrap .centerImg {
  font-size: 0;
}
.iconswrap .centerImg img {
  width: 500px;
  min-width: 500px;
}

.leftIcons, .rightIcons {
  display: flex;
  gap: 16px;
  height: 330px;
  overflow: hidden;
}
.leftIcons > div, .rightIcons > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.leftIcons > div img, .rightIcons > div img {
  width: 64px;
  height: 64px;
  min-width: 64px;
}

.leftIcons > div:first-child {
  margin-top: 160px;
}
.leftIcons > div:nth-child(2) {
  margin-top: 128px;
}
.leftIcons > div:nth-child(3) {
  margin-top: 96px;
}
.leftIcons > div:nth-child(4) {
  margin-top: 64px;
}
.leftIcons > div:last-child {
  margin-top: 32px;
}

.rightIcons > div:first-child {
  margin-top: 32px;
}
.rightIcons > div:nth-child(2) {
  margin-top: 64px;
}
.rightIcons > div:nth-child(3) {
  margin-top: 96px;
}
.rightIcons > div:nth-child(4) {
  margin-top: 128px;
}
.rightIcons > div:last-child {
  margin-top: 160px;
}

.features-section {
  background-color: #fff;
  padding: 80px 0;
}
.features-section .row > .col-md-4 {
  display: flex;
}
.features-section .p-4 {
  flex-grow: 1;
  background-color: #f9f9f9;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}
.features-section .p-4 h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.features-section .p-4 p {
  font-size: 0.95rem;
  color: #6c757d;
}
.features-section .p-4 img {
  margin-top: 1rem;
  border-radius: 0.5rem;
}
.features-section a {
  text-decoration: none;
  height: 100%;
  display: inline-block;
}

.features-section .card {
  padding-top: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #f7f6f3;
  overflow: hidden;
}
.features-section .card h5 {
  color: #212529;
  font-size: 18px;
}
.features-section .card h5 a {
  color: #212529;
}
.features-section .card p {
  font-size: 16px;
  color: rgba(33, 37, 41, 0.7490196078);
  flex: 1;
}
.features-section .card p a {
  color: rgba(33, 37, 41, 0.7490196078);
}
.features-section .card h5, 
.features-section .card p {
  padding: 0 72px 0 24px;
}
.features-section .card img {
  width: 100%;
}
.features-section .card::before {
  width: 48px;
  height: 48px;
  top: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #dadada;
}
.features-section .card::before, 
.features-section .card::after {
  content: "";
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.1s, transform 0.1s;
  position: absolute;
  transform: translateY(16px);
}
.features-section .card::after {
  width: 24px;
  height: 24px;
  top: 36px;
  right: 36px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url("../assets/images/join/arrow.svg");
}
.features-section .card:hover::before, 
.features-section .card:hover::after {
  opacity: 1;
}

.testimonial-bubble {
  background-color: #fff;
}
.testimonial-bubble .speech-bubble h3 {
  background-color: #007bff;
  color: #fff;
  padding: 4px 12px;
  border-radius: 2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  font-size: 13px;
  border: 1px solid #ffffff;
}
.testimonial-bubble .speech-bubble p {
  font-size: 10px;
}
.testimonial-bubble .content {
  position: relative;
}
.testimonial-bubble .content .speech-bubble {
  position: absolute;
  left: 70px;
  bottom: -15px;
}
.testimonial-bubble img {
  border: 1px solid #000;
  height: 80px !important;
}
.testimonial-bubble .bubble-tag {
  background-color: #007bff;
  color: #fff;
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 48px;
  margin-left: 180px;
  position: relative;
}
.testimonial-bubble .bubble-tag::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 18px;
  height: 18px;
  background-image: url(../assets/images/join/bluearrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.testimonial-bubble .singleTestimonial.green {
  position: relative;
}
.testimonial-bubble .singleTestimonial.green .content {
  display: flex;
  flex-direction: row-reverse;
}
.testimonial-bubble .singleTestimonial.green .content .speech-bubble {
  position: relative;
  left: auto;
  bottom: -40px;
  text-align: right;
  right: -10px;
}
.testimonial-bubble .singleTestimonial.green .content .speech-bubble h3 {
  background-color: #34c074;
}
.testimonial-bubble .singleTestimonial.green .bubble-tag {
  position: absolute;
  right: 100px;
  background-color: #34c074;
}
.testimonial-bubble .singleTestimonial.green .bubble-tag::after {
  background-image: url(../assets/images/join/greenarrow.svg);
}

.card-img-top {
  padding-bottom: 24px;
}
.card-img-top img {
  max-height: 80% !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}
.card-img-top h5 {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.card-img-top p {
  flex: inherit;
}
.grey-bg {
  background-color: #f7f6f3;
}
.stories-section {
  position: relative;
  padding: 80px 0;
  margin-bottom: 80px;
}
.stories-section .swiper-slide {
  min-height: 500px;
}
.stories-section .swiper-button-next:after, .stories-section .swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
}
.stories-section .swiper-button-next, .stories-section .swiper-button-prev {
  top: auto;
  bottom: 0;
  background: green;
  padding: 16px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.stories-section .swiper-button-prev, .stories-section .swiper-rtl .swiper-button-next {
  left: 50%;
  margin-left: -66px;
}
.stories-section .swiper-button-next, .stories-section .swiper-rtl .swiper-button-prev {
  right: 50%;
  margin-right: -66px;
}

.testimonial-card {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.testimonial-card .object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  opacity: 0.9;
  height: 100% !important;
}
.testimonial-card img.rounded-circle {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
}
.testimonial-card .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
}
.testimonial-card .content {
  color: white;
  z-index: 2;
  position: relative;
}
.testimonial-card .content .quote {
  position: absolute;
  width: 100%;
  bottom: 85px;
  left: 0;
  padding: 24px;
}
.testimonial-card .content .quote,
.testimonial-card .content .icon-link {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.testimonial-card:hover .quote,
.testimonial-card:hover .icon-link {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card .icon-link {
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
}

.readmoreslide {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f6f3;
  text-decoration: none;
  border-radius: 20px;
}

.btn-dark {
  background: #000;
  /*font-size: 14px;*/
  padding: 7px 14px;
  border: 0;
  box-shadow: none;
}

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

.cta-section {
  /*background: linear-gradient(135deg, #116DFF, #005BFF);*/
  padding: 6rem 12px;
  color: #000;
}
.cta-section .avatars-inline img {
  height: 60px !important;
  width: auto;
  max-height: 60px !important;
}
.cta-section .container {
  background-color: #fff;
  border-radius: 1.5rem;
}
.cta-section img {
  display: inline-block;
  max-height: 24px !important;
  width: auto;
}

.single-rating .small {
  display: inline-block;
  position: relative;
}
.single-rating .small::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -28px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../assets/images/join/flower.svg);
  height: 32px;
  width: 20px;
}
.single-rating .small::after {
  content: "";
  position: absolute;
  top: 12px;
  right: -28px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../assets/images/join/rightflower.svg);
  height: 32px;
  width: 20px;
  transform: translate();
}

@media (max-width: 1330px) {
  .leftIcons > div img, .rightIcons > div img {
    width: 48px;
    min-width: 48px;
  }
  .leftIcons > div, .rightIcons > div {
    gap: 8px;
  }
  .leftIcons, .rightIcons {
    gap: 8px;
    height: 270px;
  }
}
@media (max-width: 1200px) {
  .iconswrap .centerImg img {
    width: 380px;
    min-width: 380px;
  }
}
@media (max-width: 991px) {
  .iconswrap .centerImg img {
    display: none;
  }
  .card::before, .card::after {
    opacity: 1;
  }
  .testimonial-card .content .quote, .testimonial-card .content .icon-link {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media (max-width: 767px) {
  .herorating {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .hero-img {
    margin-top: 24px !important;
  }
  .marquee .marqueeList > .inner {
    width: 100px;
  }
  .hero-section {
    padding: 40px 12px;
  }
  .stats-section {
    padding: 40px 0;
  }
  .postjob-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .leftIcons, .rightIcons {
    gap: 8px;
    height: auto;
    width: 100%;
    justify-content: space-between;
  }
  .leftIcons > div img, .rightIcons > div img {
    width: 40px;
    height: 40px;
  }
  .iconswrap {
    margin-top: 40px;
    gap: 12px;
    flex-direction: column;
  }
  .leftIcons > div:first-child {
    margin-top: 0;
  }
  .leftIcons > div:nth-child(2) {
    margin-top: 0;
  }
  .leftIcons > div:nth-child(3) {
    margin-top: 0;
  }
  .leftIcons > div:nth-child(4) {
    margin-top: 0;
  }
  .leftIcons > div:last-child {
    margin-top: 0;
  }
  .rightIcons > div:first-child {
    margin-top: 0;
  }
  .rightIcons > div:nth-child(2) {
    margin-top: 0;
  }
  .rightIcons > div:nth-child(3) {
    margin-top: 0;
  }
  .rightIcons > div:nth-child(4) {
    margin-top: 0;
  }
  .rightIcons > div:last-child {
    margin-top: 0;
  }
  .cta-section {
    padding: 6rem 12px;
  }
  .features-section {
    padding: 40px 0;
  }
  .testimonial-bubble {
    margin-bottom: 60px;
  }
  .card-img-top {
    height: auto;
  }
  .card-img-top h5 {
    margin-top: 24px;
  }
  .card-img-top p {
    margin-bottom: 0;
  }
  .stories-section .swiper-button-next, .stories-section .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  .stories-section {
    padding: 40px 0 80px;
    margin-bottom: 40px;
  }
  .cta-section .container {
    padding: 24px !important;
  }
  .features-section .card::after {
    top: 16px;
  }
  .features-section .card::before {
    top: 4px;
  }
  .features-section .card p {
    padding: 0 24px;
  }
  
  .layout-no-sidebars .oc-header__navbar {
      margin: 0 24px;
    }
    .layout-no-sidebars .oc-header .navbar-toggler {
      margin-right: 0px;
    }
    .layout-no-sidebars .oc-color-toggler {
      right: 66px;
    }
}
@media (max-width: 1439px) {
  .admin-logged-in .btn.oc-sidebar-menu-toggle {
    top: 58px;
  }
  
  .admin-logged-in.sidebar-1 #oc-sidebar-menu-left-button,
  .admin-logged-in.sidebar-2 #oc-sidebar-menu-right-button {
    top: 16px;
  }

  .page-with-sidebar #toolbar-item-administration-tray .toolbar-lining {
    margin: 0;
  }
}
html[data-bs-theme=dark] .hero-section, html[data-bs-theme=dark] .stats-section, html[data-bs-theme=dark] .postjob-section, html[data-bs-theme=dark] .features-section, html[data-bs-theme=dark] .testimonial-bubble {
  color: #ffffff;
  background-color: #212529 !important;
}
html[data-bs-theme=dark] .btn-dark {
  background: #fff;
  color: #000;
}
html[data-bs-theme=dark] .cta-section .btn-dark {
  background: #000;
  color: #ffffff;
}
html[data-bs-theme=dark] .single-rating .small {
  color: #000 !important;
}
[data-bs-theme=dark] .oc-sidebar-menu__inner {
  background-color: #28272D;
}
.oc-sidebar-menu .nav-link, .oc-sidebar-menu .dropdown-item {
  font-size: 14px;
}
[data-bs-theme=dark] .oc-sidebar-menu .nav-link, 
[data-bs-theme=dark] .oc-sidebar-menu .dropdown-item {
  /*padding: 4px 8px;*/
  font-size: 14px;
  color: #ececef;
}
[data-bs-theme=dark] .oc-sidebar-menu .nav-link:hover, 
[data-bs-theme=dark] .oc-sidebar-menu .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
[data-bs-theme=dark] .oc-sidebar-menu--right .oc-sidebar-menu__inner,
[data-bs-theme=dark] aside .fixed-submenu-container.fixed ul {
  background-color: #28272D;
}
aside .fixed-submenu-container.fixed ul {
  padding:4px;
  margin: 0 0px 0 18px;
}
[data-bs-theme=light] aside .fixed-submenu-container.fixed ul {
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
  /*border-radius: 4px;*/
  /*border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);*/
  /*border-radius: var(--bs-dropdown-border-radius);*/
}
[data-bs-theme=dark] aside .fixed-submenu-container.fixed ul {
  /* background-color: #28272D; */
  /* padding:4px; */
  /* margin: 0 0px 0 18px; */
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
}
.oc-sidebar-menu--right .fixed-submenu-container.fixed ul {
  margin: 0 0 0 -29px;
}
aside .fixed-submenu-container.fixed ul .nav-link{
  padding:6px 12px 6px 10px;
}
aside .fixed-submenu-container.fixed ul .nav-link:has(span){
  padding-left: 36px !important;
}
[data-bs-theme=dark] body,
[data-bs-theme=dark] .oc-header {
  background-color: #18171D;
}
[data-bs-theme=dark] .layout-builder-block .oc-tile__title{
  color: #212529;
}
[data-bs-theme=dark] .oc-tile-list .layout-builder-block > h2{
  color: #212529;
}
[data-bs-theme=dark] .layout-builder-block .oc-tile__link:hover{
  color: #212529;
}
[data-bs-theme=dark] .dropdown-item-megamenu .oc-tile__title:hover{
  color: #ffffff;
}
[data-bs-theme=dark] .dropdown-item-megamenu .oc-tile__title{
  color: #ffffff;
}
.breadcrumb {
  margin-top: 1rem;
}
[data-bs-theme=dark] .breadcrumb a,
.oc-main.container a {
  text-decoration: none;
}
[data-bs-theme=dark] .breadcrumb a:hover,
.oc-main.container a:hover {
  text-decoration: underline;
  color: #1f75cb;
}
[data-bs-theme=dark] .breadcrumb-item.active {
  color: #ececef;
}
.oc-main.container a,
.oc-main.container .nav-link,
.page-link{
  color:#1f75cb;
}
.oc-main.container a.btn {
  color: #ffffff;
}
h1.title {
  margin-top: 1.5rem;
}
table { 
  font-size: inherit; 
}
table a{
  text-decoration: none;
  /*display: flex;
  align-items: center;
  gap: 4px;*/
}
table a:hover{
  text-decoration: underline;
}
table thead tr th {
  background-color: #ffffff !important;
  padding: 8px !important;
  color: #343a40;
  border: 0 !important;
  line-height: 1.7;
}
table tbody tr td {
  padding: 8px !important;
  background-color: transparent !important;
  border:1px solid #fff !important;
  line-height: 1.7;
}
.table>tbody>tr {
  background-color: rgba(0, 0, 0, 0);
}
.table>tbody>tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table>tbody>tr:first-child td{
  border-top: 1px solid #ddd;
}
table thead > tr {
  border-bottom: 0;
  background: transparent;
}
.table>:not(caption)>*>* {
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px transparent;
}
.table>tbody>tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
[data-bs-theme=dark] table thead tr th {
  background-color: transparent !important;
}
[data-bs-theme=dark] table tbody tr td {
  border: 0px solid rgba(255,255,255,0.25) !important;
}
[data-bs-theme=dark] .table>tbody>tr:first-child td {
  border-top: 1px solid rgba(255,255,255,0.25);
}
[data-bs-theme=dark] .table>tbody>tr:nth-of-type(odd) {
  background-color: rgba(255, 255,255, 0.05);
}
[data-bs-theme=dark] .table>tbody>tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}
[data-bs-theme=dark] .node--view-mode-teaser {
  border-color: #5f6368;
}
[data-bs-theme=dark] table.sticky-header thead tr {
    background-color: #18171e;
}
.oc-color-toggler .btn.show:focus{
  box-shadow: none;
}
.oc-header .navbar-toggler::after, 
.oc-header .navbar-toggler::before{
  display: none;
}
[data-bs-theme=light] .oc-color-toggler .dropdown-menu.show {
  border: none;
}

table .dropbutton-multiple .dropbutton-widget .dropbutton-action a {
  min-width: 65px;
}
[data-bs-theme=dark] table .dropbutton-multiple .dropbutton-widget {
  border: 1px solid #5f6368;
}
[data-bs-theme=dark] table .dropbutton-multiple .dropbutton-widget .dropbutton-action a{
  background:#6f7680;
  color: #ffffff;
}
[data-bs-theme=dark] table .dropbutton-arrow{
  color:#18171D;
}
[data-bs-theme=dark] .field--widget-select2-entity-reference .select2-container span.selection .select2-selection,
[data-bs-theme=dark] .select2-container .select2-dropdown,
[data-bs-theme=dark] .form-textarea-wrapper .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
  background: #212529;
}
[data-bs-theme=dark] .form-textarea-wrapper .ck-rounded-corners .ck.ck-editor__main>.ck-editor__editable, 
[data-bs-theme=dark] .form-textarea-wrapper .ck.ck-editor__main>.ck-editor__editable.ck-rounded-corners {
  background: #212529;
  color: #fff;
  border-color: #fff;
}
[data-bs-theme=dark] .form-type-vertical-tabs .vertical-tabs__menu-item {
  background: #212529;
}
[data-bs-theme=dark] .form-type-vertical-tabs .vertical-tabs__menu-item a {
  color: #fff;
}
[data-bs-theme=dark] .form-type-vertical-tabs .vertical-tabs__menu-item.is-selected {
  background-color: #fff;
}
[data-bs-theme=dark] .form-type-vertical-tabs .vertical-tabs__menu-item.is-selected a {
  color: #000;
}
[data-bs-theme=dark] .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}
[data-bs-theme=dark] .select2-container--default .select2-results__option--selected {
  background-color: #ffffff;
  color: #18171D;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .oc-color-toggler {
    right: 3px;
  }
 /*.oc-header__container {
    max-width: none;
  }
  .page-with-sidebar .oc-header__container {
    max-width: 88%;
  }*/
  .oc-header__navbar .navbar-collapse .oc-color-toggler-wrap{
    display: none;
  }
}
@media (min-width: 1280px) {
  .page-with-sidebar .oc-header__container {
    max-width: 93%;
  }
}
@media (min-width: 1440px) {
  .page-with-sidebar .oc-header__container {
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  [data-bs-theme=dark] .oc-header .navbar-toggler .nav-mobile-icon {
    color: #ffffff;
  }
  [data-bs-theme=light] .oc-header .navbar-toggler .nav-mobile-icon {
    color: #383F49;
  }
  .navbar-toggler .cross-icon {
    display: none;
  }
  .navbar-toggler[aria-expanded="true"] .menu-icon {
    display: none;
  }
  .navbar-toggler[aria-expanded="true"] .cross-icon {
    display: inline-block;
  }
  .oc-header .navbar-toggler {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    transition: 0.3s all;
  }
  .oc-header .navbar-toggler[aria-expanded=false] {
    transform: rotate(0deg);
  }
  .oc-header .navbar-toggler[aria-expanded=true] {
    transform: rotate(180deg);
  }
  .oc-header .navbar-toggler .navbar-toggler-icon {
    display: none;
    background-image: none !important;
  }
  .oc-header__navbar > .oc-color-toggler{
    display: none;
  }
  .oc-header__navbar .navbar-collapse .oc-color-toggler-wrap{
    position: static;
    padding:0 20px;
  }
  .oc-header__navbar .navbar-collapse .oc-color-toggler-wrap .oc-color-toggler{
    position: relative;
    display: flex !important;
    justify-content: end;
    top: inherit;
    right: inherit;
    margin: 0;
    flex-direction: column;
    align-content: end;
    flex-wrap: wrap;
  }
  .oc-header__navbar .navbar-collapse .oc-color-toggler-wrap .oc-color-toggler .dropdown-menu.show {
    position: relative;
  }
  .oc-header__navbar .navbar-collapse .oc-color-toggler-wrap .oc-color-toggler .dropdown-toggle{
    justify-content: end;
  }
  .navbar-collapse .menu--account ul.menu--account{
    margin-bottom: 0;
  }
  .navbar-collapse nav.menu--account{
    padding-bottom: 20px;
  }

  [data-bs-theme=dark] .navbar-collapse {
    border-top-color: #5f6368;
  }
  [data-bs-theme=dark] .menu--main .nav-link {
    border-bottom-color: #5f6368;
  }
}

.layout-builder,
.layout-builder__add-section,
.layout-builder-block,
.layout-builder__add-block {
  background-color: inherit;
}
.path-batch .progress {
  padding: 10px;
  height: fit-content;
  margin-top: 16px;
}
.path-batch .progress #updateprogress,
.path-batch .progress-bar-message {
  font-size: 1rem;
  margin-top: 0;
  box-shadow: none;
}
[data-bs-theme=dark] .path-batch .progress #updateprogress,
[data-bs-theme=dark] .path-batch .progress .progress__track,
[data-bs-theme=dark] .path-batch .progress .progress__bar,
[data-bs-theme=dark] .path-batch .progress .progress__percentage,
[data-bs-theme=dark] .path-batch .progress .progress__description,
[data-bs-theme=dark] .path-batch .progress-bar-message{
  color: #ececef;
}
.path-batch .progress .progress__track {
  margin: 6px;
}
.ui-widget.ui-widget-content {
  z-index: 1040;
}
.ui-widget-content a,
.ui-dialog .nav-link {
  color: #1f75cb !important;
}
[data-bs-theme=dark] .comment__content::after {
  border-right-color: #212529;
}
[data-bs-theme=dark] .comment__content::before {
  border-right-color: #5f6368;
}
[data-bs-theme=dark] .comment__time, 
[data-bs-theme=dark] .comment__permalink {
  color: inherit;
}
[data-bs-theme=dark] .ui-dialog .ui-dialog-titlebar,
[data-bs-theme=dark] .ui-widget.ui-widget-content {
  background-color: inherit;
  color: #ececef;
}
[data-bs-theme=dark] .ui-dialog .ui-dialog-content {
  color: #ececef;
}
.ui-dialog .ui-dialog-titlebar-close {
  border-width: 2px;
}
[data-bs-theme=dark] .ui-button-icon-only .ui-icon {
  background-image: url("/core/assets/vendor/jquery.ui/themes/base/images/ui-icons_ffffff_256x240.png");
  background-color: #18171D;
}
.vbo-multipage-selector .item-list ul li {
  padding: 10px;
}
.vbo-multipage-selector button.button {
  margin: 10px 0;
}

[data-bs-theme=dark] .menu--main .dropdown-menu,
[data-bs-theme=dark] .oc-tile-list > div:nth-child(-n+4),
[data-bs-theme=dark] .oc-tile-list > div:not(:first-child) {
  border-color: #5f6368;
}


.dashboard-blocks .fc .fc-button-group button {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 12px;
}
.dashboard-blocks .fc-header-toolbar {
  gap:4px;
}
.dashboard-blocks .fc-toolbar>*>:not(:first-child) {
  margin-left: 0 !important;
}
.dashboard-blocks .fc-header-toolbar .fc-button {
  font-size: 12px;
}
.dashboard-blocks .fc-header-toolbar .fc-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-blocks .fc-center h2 {
  font-size: 14px;
}
.dashboard-blocks .fc-head-container table thead tr th {
  background-color: #ffffff !important;
  padding: 2px !important;
  font-size: 10px;
}
.dashboard-blocks .fc-head-container .fc-row.fc-widget-header {
  margin: 0 !important;
}
.dashboard-blocks th.fc-axis.fc-widget-header {
  width: 30px !important;
}
.dashboard-blocks .fc-scroller.fc-time-grid-container {
  height: 150px !important;
  overflow-x: scroll !important;
}
.dashboard-blocks .fc-scroller.fc-time-grid-container table tbody tr td {
  padding: 2px !important;
  background-color: transparent !important;
  border: 1px solid #fff !important;
  line-height: 1.7;
}
.dashboard-blocks .fc-scroller.fc-time-grid-container .fc-time-grid-event.fc-not-end {
  margin: 0 !important;
}
.dashboard-blocks .fc-content-skeleton table tbody tr td {
  width: 40px !important;
  font-size: 12px !important;
  white-space: break-spaces;
  word-break: break-word;
}
.dashboard-blocks .fc-scroller.fc-time-grid-container table tbody tr td {
  width: 75px !important;
  font-size: 12px !important;
  white-space: break-spaces;
  word-break: break-word;
}
.dashboard-blocks .fc-event-container .fc-time-grid .fc-event {
  position: relative;
}
.dashboard-blocks .fc-dayGridMonth-view .fc-content-skeleton table {
  margin: 0;
}
.dashboard-blocks .fc-dayGridMonth-view table tbody tr td {
  padding: 4px 2px !important;
  font-size: 14px;
}
.dashboard-blocks .fc-dayGrid-view .fc-day-number, .dashboard-blocks .fc-dayGrid-view .fc-week-number {
  padding:0
}
.dashboard-blocks .fc-timeGridWeek-view .fc-time-grid .fc-event {
  position: relative;
}
.dashboard-blocks .fc-time-grid .fc-bgevent, .dashboard-blocks .fc-time-grid .fc-event {
  position: relative;
  z-index: 1;
}
.dashboard-blocks .fc-listYear-view .fc-scroller {
  overflow:auto !important;
}
.dashboard-blocks .fc-listYear-view table tbody tr td {
  padding: 4px !important;
  font-size: 12px;
}
.dashboard-blocks .fc-listMonth-view .fc-scroller, .dashboard-blocks .fc-listWeek-view .fc-scroller, .dashboard-blocks .fc-listDay-view table tbody tr td {
  overflow:auto !important;
}
.dashboard-blocks .fc-listMonth-view table tbody tr td, .dashboard-blocks .fc-listWeek-view table tbody tr td, .dashboard-blocks .fc-listDay-view table tbody tr td {
  padding: 4px !important;
  font-size: 12px;
}
.dashboard-blocks .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 8px;
}
.dashboard-blocks .fc .fc-button-group button {
  max-width: 28px;
}
.dashboard-blocks .fc .fc-toolbar {
  align-items: end;
}
.dashboard-blocks .fc .fc-header-toolbar .fc-button {
  text-transform: capitalize;
}
.dashboard-blocks .fc .fc-header-toolbar .fc-left {
  flex-direction: column-reverse;
}
.dashboard-blocks .fc-header-toolbar .fc-right {
  margin-bottom: 32px;
}
.dashboard-blocks .fc .fc-header-toolbar .fc-center h2 {
  border: 0;
}
.dashboard-blocks .fc-dayGridMonth-view .fc-head-container table {
  margin:0;
}