:root {
  --color-red: #cc0f09;
  --color-black: #1d1d1b;
  --color-gold: #cead5c;
}

body.top_bar_active header.header-global {
  position: relative !important;
  height: 123px;
  margin-bottom: -123px;
}

body.top_bar_active header.header-global.oxy-sticky-header-active {
  position: fixed !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.top_bar {
  position: relative;
  width: 100%;
  padding: 8px 15px;
}

.top_bar > .ct-section-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}

.top_bar_body {
  font-size: 0.8rem;
  color: white;
  padding-right: 30px;
}

.top_bar.bg-color-black_white,
.top_bar.bg-color-black_gold {
  background-color: var(--color-black);
}

.top_bar.bg-color-white_black {
  background-color: white;
}

.top_bar.bg-color-red_white {
  background-color: var(--color-red);
}

.top_bar.bg-color-black_gold .top_bar_body {
  color: var(--color-gold);
}

.top_bar.bg-color-white_black .top_bar_body {
  color: var(--color-black);
}

.top_bar.bg-color-white_black .top_bar_close svg path {
  fill: var(--color-black);
}

.top_bar.bg-color-white {
  background-color: white;
}

.top_bar_title {
  font-weight: 600;
}

.top_bar_close {
  appearance: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Add this CSS to hide the top bar by default */
.top_bar {
  display: none;
}

/* Add this CSS to show the top bar when the 'top_bar_active' class is present on the body */
body.top_bar_active .top_bar {
  display: block;
}
