@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Assistant:400,700&display=swap");
@font-face {
  font-family: "almoni neue";
  src: url("../../fonts/almoni-neue-regular-aaa.woff2") format("woff2"), url("../../fonts/almoni-neue-regular-aaa.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "almoni neue";
  src: url("../../fonts/almoni-neue-bold-aaa.woff2") format("woff2"), url("../../fonts/almoni-neue-bold-aaa.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 10px;
}

body {
  color: #000;
  font-size: 1.8rem;
  direction: rtl;
  line-height: 1.5;
  font-weight: 400;
  font-family: "almoni neue", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "almoni neue", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2rem;
}

.small-title {
  font-size: 3rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "almoni neue", sans-serif;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #5CB797;
}

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

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.flex-box {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.content ol,
.content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  font-size: 1.8rem;
  border-radius: 0;
  padding: 0.25em 0.8em;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  gap: 10px;
}
.btn.button-primary {
  background-color: #5CB797;
  color: #fff;
  border: none;
}
.btn.button-primary:hover {
  background-color: rgb(68.629787234, 155.370212766, 124.8680851064);
  color: #fff;
}
.btn.button-red {
  background-color: #860C1B;
  color: #fff;
  border-color: #860C1B;
}
.btn.button-red:hover {
  background-color: rgb(87.1917808219, 7.8082191781, 17.5684931507);
  border-color: rgb(87.1917808219, 7.8082191781, 17.5684931507);
  color: #fff;
}
.btn.button-dark-green {
  background-color: #00544B;
  color: #fff;
  border-color: #00544B;
}
.btn.button-dark-green:hover {
  background-color: rgb(0, 33, 29.4642857143);
  border-color: rgb(0, 33, 29.4642857143);
  color: #fff;
}
.btn.button-purple {
  background-color: rgb(64, 37, 60);
  color: #fff;
  border-color: rgb(64, 37, 60);
}
.btn.button-purple:hover {
  background-color: rgb(31.6831683168, 18.3168316832, 29.702970297);
  border-color: rgb(31.6831683168, 18.3168316832, 29.702970297);
  color: #fff;
}
.btn.button-outline {
  background-color: transparent;
  border-color: #000;
  color: #000;
}
.btn.button-outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.btn svg:first-child {
  margin-inline-end: 5px;
}
.btn svg:last-child {
  margin-inline-start: 5px;
}
.btn.disabled {
  filter: grayscale(1);
  cursor: not-allowed;
}

.dark-green-bg {
  background-color: #00544B;
  color: #fff;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 0;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.custom-modal-close {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1435px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}
.container.full-container {
  max-width: calc(100% - 30px);
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .flex_container {
  align-items: stretch;
}
header .logo {
  margin: 5px 0;
}
header .languages {
  display: flex;
  align-items: center;
}
header .languages li.lang-item {
  list-style: none;
}
header .languages a {
  font-size: 0.9em;
  border: 1px solid #000;
  color: #000;
  padding: 5px 10px;
}

footer {
  padding: 20px 0;
}
footer .footer-bg {
  font-size: 1.4rem;
  display: flex;
  gap: 15px;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 5px 15px;
}

/** Main Menu */
ul#main-menu {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  list-style: none;
  height: 100%;
}

ul#main-menu > li {
  position: relative;
  margin: 0 5px;
  height: 100%;
}

ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 2rem;
  color: #000;
  line-height: 2;
  height: 100%;
  padding: 10px 10px;
  display: flex;
  align-items: center;
}

ul#main-menu > li.current-menu-item > a {
  font-weight: 700;
}
ul#main-menu > li.current-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #CB062C;
  z-index: 5;
}

ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #000;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: -15px;
  top: 100%;
  width: 250px;
  display: none;
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: #000;
  margin-right: 2px;
  margin-left: 2px;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #000;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #000;
}

/****** General ******/
.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.white {
  color: #fff;
}

.full-absolute {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bg-image {
  background-position: center;
  background-size: cover;
}

.small {
  font-size: 1.6rem;
}

.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.wpcf7 input {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border: 1px solid #000;
}
.wpcf7 .row {
  margin-bottom: 20px;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
  margin-inline-end: 10px;
  margin-top: 10px;
}
.wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
  background-color: #F3F1F1;
  padding: 5px 10px;
  display: block;
}
.wpcf7 .wpcf7-list-item .wpcf7-list-item-label:hover {
  background-color: rgb(219.4615384615, 213.5384615385, 213.5384615385);
  cursor: pointer;
}
.wpcf7 .wpcf7-list-item input {
  display: none;
}
.wpcf7 .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  background-color: #289BBA;
  color: #fff;
}
.wpcf7 input[type=checkbox] {
  accent-color: #289BBA;
  border-radius: 0;
}
.wpcf7 input[type=submit] {
  width: auto;
  margin-top: 30px;
  background-color: #CB062C;
  color: #fff;
  border: none;
  padding: 5px 15px;
}
.wpcf7 input[type=submit]:hover {
  background-color: rgb(153.4641148325, 4.5358851675, 33.2631578947);
  color: #fff;
}

.top-title-section {
  overflow: hidden;
  position: relative;
  background-color: #157987;
  color: #fff;
}
.top-title-section .container {
  padding: 50px 15px 80px;
}
.top-title-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33.33%;
  height: 100%;
  background-color: #157987;
}
.top-title-section::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 131px 500px 0;
  border-color: transparent #157987 transparent transparent;
  transform: rotate(0deg);
  right: 33.33%;
  top: 0;
}
.top-title-section .btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-title-section.single-page-top-title {
  background-color: transparent;
}
.top-title-section.single-page-top-title::after {
  content: none;
}
.top-title-section.single-page-top-title .container {
  background-color: #157987;
}
.top-title-section.single-page-top-title .container::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 131px 500px 0;
  border-color: transparent #157987 transparent transparent;
  transform: rotate(0deg);
  right: 100%;
  top: 0;
}

.bids-filters {
  display: flex;
  flex-wrap: wrap;
  background: #F3F1F1;
  padding: 1rem 2rem;
  gap: 20px;
  margin-top: -30px;
}
.bids-filters h3, .bids-filters h4 {
  font-size: 1em;
  display: flex;
  align-items: center;
  margin: 0;
}
.bids-filters h3 {
  font-weight: 700;
}
.bids-filters .btn {
  background: transparent;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s;
}
.bids-filters .btn:hover {
  background: #e5e5e5;
}
.bids-filters .btn.btn-primary {
  background: #00544B;
  color: #fff;
}
.bids-filters .btn.active {
  background: #5CB797;
  color: #fff;
}
.bids-filters input[type=search] {
  border: 0;
  padding: 0.5rem;
  width: 10em;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76768 10.2917C10.2059 10.2917 11.4229 9.79344 12.4188 8.797C13.4148 7.80056 13.913 6.5835 13.9135 5.14583C13.914 3.70817 13.4158 2.49111 12.4188 1.49467C11.4219 0.498222 10.2048 0 8.76768 0C7.33054 0 6.11322 0.498222 5.11572 1.49467C4.11822 2.49111 3.62026 3.70817 3.62185 5.14583C3.62185 5.72639 3.71421 6.27396 3.89893 6.78854C4.08365 7.30312 4.33435 7.75833 4.65101 8.15417L0.217681 12.5875C0.0725422 12.7326 -2.86102e-05 12.9174 -2.86102e-05 13.1417C-2.86102e-05 13.366 0.0725422 13.5507 0.217681 13.6958C0.36282 13.841 0.547542 13.9135 0.771847 13.9135C0.996153 13.9135 1.18087 13.841 1.32601 13.6958L5.75935 9.2625C6.15518 9.57917 6.61039 9.82986 7.12497 10.0146C7.63955 10.1993 8.18712 10.2917 8.76768 10.2917ZM8.76768 8.70833C7.7781 8.70833 6.93682 8.36211 6.24385 7.66967C5.55087 6.97722 5.20465 6.13594 5.20518 5.14583C5.20571 4.15572 5.55193 3.31471 6.24385 2.62279C6.93576 1.93088 7.77704 1.58439 8.76768 1.58333C9.75832 1.58228 10.5993 1.92876 11.2907 2.62279C11.9821 3.31682 12.3286 4.15783 12.3302 5.14583C12.3318 6.13383 11.9853 6.97511 11.2907 7.66967C10.5962 8.36422 9.75515 8.71044 8.76768 8.70833Z" fill="%236E6E6E"/></svg>');
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 14px;
  padding-left: 2.5rem;
}
.bids-filters .filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.bids-filters .filter-title {
  display: flex;
  align-items: center;
}
.bids-filters .single-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.bids-filters .filter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.bids-filters .bids-filters__old_site {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.side-filters {
  background-color: #F3F1F1;
  margin-top: 30px;
  padding: 15px;
}
.side-filters .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(72, 72, 72);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.side-filters h3 {
  font-size: 2.5rem;
  font-weight: 700;
}
.side-filters h4 {
  font-size: 2.2rem;
  font-weight: 700;
}
.side-filters input[type=search] {
  border: 0;
  padding: 0.5rem;
  width: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76768 10.2917C10.2059 10.2917 11.4229 9.79344 12.4188 8.797C13.4148 7.80056 13.913 6.5835 13.9135 5.14583C13.914 3.70817 13.4158 2.49111 12.4188 1.49467C11.4219 0.498222 10.2048 0 8.76768 0C7.33054 0 6.11322 0.498222 5.11572 1.49467C4.11822 2.49111 3.62026 3.70817 3.62185 5.14583C3.62185 5.72639 3.71421 6.27396 3.89893 6.78854C4.08365 7.30312 4.33435 7.75833 4.65101 8.15417L0.217681 12.5875C0.0725422 12.7326 -2.86102e-05 12.9174 -2.86102e-05 13.1417C-2.86102e-05 13.366 0.0725422 13.5507 0.217681 13.6958C0.36282 13.841 0.547542 13.9135 0.771847 13.9135C0.996153 13.9135 1.18087 13.841 1.32601 13.6958L5.75935 9.2625C6.15518 9.57917 6.61039 9.82986 7.12497 10.0146C7.63955 10.1993 8.18712 10.2917 8.76768 10.2917ZM8.76768 8.70833C7.7781 8.70833 6.93682 8.36211 6.24385 7.66967C5.55087 6.97722 5.20465 6.13594 5.20518 5.14583C5.20571 4.15572 5.55193 3.31471 6.24385 2.62279C6.93576 1.93088 7.77704 1.58439 8.76768 1.58333C9.75832 1.58228 10.5993 1.92876 11.2907 2.62279C11.9821 3.31682 12.3286 4.15783 12.3302 5.14583C12.3318 6.13383 11.9853 6.97511 11.2907 7.66967C10.5962 8.36422 9.75515 8.71044 8.76768 8.70833Z" fill="%236E6E6E"/></svg>');
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 14px;
  padding-left: 2.5rem;
  margin-bottom: 30px;
}
.side-filters input[type=checkbox] {
  accent-color: #289BBA;
}
.side-filters .parent-field {
  margin: 5px 0;
}
.side-filters .parent-field span {
  font-weight: 700;
}
.side-filters .child-field input {
  display: none;
}
.side-filters .child-field span {
  font-size: 1.8rem;
  border-radius: 0;
  padding: 0.25em 0.8em;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  background: transparent;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  margin: 0.5rem 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.side-filters .child-field input:checked ~ span {
  background: #5CB797;
  border-color: #5CB797;
  color: #fff;
}
.side-filters .selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 10px;
}
.side-filters .selected-tag .btn {
  font-size: 1.8rem;
  border-radius: 0;
  padding: 0.15em 0.5em;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  background: transparent;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s;
}

.date-filter-wrapper {
  position: relative;
  display: inline-block;
}
.date-filter-wrapper .custom-date-popup {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  z-index: 20;
  min-width: 240px;
  direction: rtl;
}
.date-filter-wrapper .custom-date-popup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.6rem;
  color: #444;
}
.date-filter-wrapper .custom-date-popup label input {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 0;
}
.date-filter-wrapper .custom-date-popup .popup-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  gap: 5px;
}
.date-filter-wrapper .custom-date-popup .popup-actions .btn {
  flex: 1;
  margin: 0;
  font-size: 1.6rem;
  background: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 0px;
  transition: all 0.2s ease;
}
.date-filter-wrapper .custom-date-popup .popup-actions .btn:hover {
  background: #00544B;
  color: #fff;
}
.date-filter-wrapper .custom-date.active {
  background: #5CB797;
  color: #fff;
  border-color: #5CB797;
}

.bids-section .top-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.bids-section .bids-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.bids-section .bids-table__head, .bids-section .bids-table__row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  gap: 25px;
}
.bids-section .bids-table__head {
  background: rgb(64, 37, 60);
  color: #fff;
  font-weight: 600;
}
.bids-section .bids-table__head div {
  text-align: right;
}
.bids-section .bids-table__head .sortable {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  transition: color 0.2s ease;
  user-select: none;
}
.bids-section .bids-table__head .sortable:hover {
  color: #ffebee;
}
.bids-section .bids-table__head .sortable.asc .arrow, .bids-section .bids-table__head .sortable.desc .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: 1px;
  opacity: 0.6;
  transition: all 0.2s ease;
}
.bids-section .bids-table__head .sortable.asc .arrow {
  transform: rotate(-135deg);
  opacity: 1;
}
.bids-section .bids-table__head .sortable.asc .arrow svg {
  display: none;
}
.bids-section .bids-table__head .sortable.desc .arrow {
  transform: rotate(45deg);
  opacity: 1;
}
.bids-section .bids-table__head .sortable.desc .arrow svg {
  display: none;
}
.bids-section .bids-table__head .sortable.asc, .bids-section .bids-table__head .sortable.desc {
  font-weight: 700;
  color: #ffffff;
}
.bids-section .bids-table .bids-table__no-results {
  text-align: center;
  padding: 2rem;
  color: #666;
}
.bids-section .bids-table__row {
  margin-top: 15px;
  background: #fff;
  border: 1px solid #E8E3E3;
}
.bids-section .bids-table__row .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  /* adjust as needed */
  vertical-align: bottom;
}
.bids-section .bids-table__row .status.פתוח {
  color: #1fa67a;
}
.bids-section .bids-table__row .status.סגור {
  color: #CB062C;
}
.bids-section .bids-table__row a {
  color: inherit;
}
.bids-section .bids-table__row a:hover {
  text-decoration: underline;
}
.bids-section .bids-table__row a.details-link {
  color: #CB062C;
  font-weight: 500;
  text-decoration: none;
}
.bids-section .bids-table__row a.details-link:hover {
  text-decoration: underline;
}
.bids-section .bids-table__row .closing-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 16.5em;
}
.bids-section .bids-table__no-results {
  padding: 2rem;
  text-align: center;
  color: #666;
}
.bids-section.bids .bids-table__head, .bids-section.bids .bids-table__row {
  grid-template-columns: 0.6fr 0.6fr 1.5fr 0.6fr 0.4fr 0.6fr 0.6fr 0.6fr 0.6fr;
}
.bids-section.exemptions .bids-table__head, .bids-section.exemptions .bids-table__row {
  grid-template-columns: 10em 1fr 1fr 5em;
}
.bids-section.single-suppliers .bids-table__head, .bids-section.single-suppliers .bids-table__row {
  grid-template-columns: 10em 1.2fr 0.5fr 0.8fr 5em;
}
.bids-section.framework-suppliers .bids-table__head, .bids-section.framework-suppliers .bids-table__row {
  grid-template-columns: 1fr 1fr 1fr 0.8fr 1.4fr 0.8fr;
}

#bids-subscribe-modal form {
  margin-top: 20px;
}
#bids-subscribe-modal .title-bg {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #157987;
  margin-bottom: 15px;
  max-width: calc(100% - 100px);
}
#bids-subscribe-modal .title-bg::before {
  content: "";
  top: -20px;
  right: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  position: absolute;
  background-color: #157987;
}
#bids-subscribe-modal .title-bg svg {
  position: absolute;
  bottom: 0;
  right: calc(100% + 19px);
  width: auto;
  height: calc(100% + 20px);
}

#bids-enter-modal form {
  margin-top: 20px;
}
#bids-enter-modal .title-bg {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #157987;
  margin-bottom: 15px;
  max-width: calc(100% - 100px);
}
#bids-enter-modal .title-bg::before {
  content: "";
  top: -20px;
  right: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  position: absolute;
  background-color: #157987;
}
#bids-enter-modal .title-bg svg {
  position: absolute;
  bottom: 0;
  right: calc(100% + 19px);
  width: auto;
  height: calc(100% + 20px);
}

.single-bid-data {
  margin-top: -30px;
}

.single-data-box {
  border: 1px solid #F3F1F1;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 100px;
}
.single-data-box h2 {
  margin-top: -60px;
  margin-bottom: 30px;
  display: block;
  position: relative;
  color: #fff;
}
.single-data-box h2 span {
  line-height: 1;
  min-width: 10em;
  background-color: #157987;
  display: inline-block;
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 2.2rem;
  font-weight: 700;
}
.single-data-box h2 span::before {
  content: "";
  position: absolute;
  background-color: #157987;
  height: 100%;
  width: 50px;
  top: 0;
  left: 100%;
}
.single-data-box h2 span svg {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: calc(100% - 2px);
}

.top-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.single-info {
  padding-right: 15px;
  position: relative;
}
.single-info::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  right: 0;
  background-color: #5CB797;
}
.single-info .bold {
  display: flex;
  align-items: center;
}
.single-info svg {
  margin-inline-start: 10px;
}

.message-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.message-gallery img {
  display: inline-block;
  height: 235px;
  width: auto;
}

.newsletter-section .full-container {
  padding: 50px 0;
}

.contact-section {
  padding-top: 50px;
}
.contact-section .contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.contact-section .contact-table__head, .contact-section .contact-table__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}
.contact-section .contact-table__head {
  background: rgb(64, 37, 60);
  color: #fff;
  font-weight: 600;
}
.contact-section .contact-table__head div {
  text-align: right;
}
.contact-section .contact-table__row {
  margin-top: 15px;
  background: #fff;
  border: 1px solid #E8E3E3;
}
.contact-section .contact-table__row .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  /* adjust as needed */
  vertical-align: bottom;
}
.contact-section .image-wrapper {
  position: relative;
  margin-top: -130px;
  z-index: -1;
  width: 43vw;
  display: flex;
}
.contact-section .image-wrapper img {
  width: 100%;
  height: auto;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 40px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}
.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #5CB797;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}
.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}
.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}
.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #fff;
  top: 0;
  width: 250px;
  height: 100%;
  overflow-y: auto;
}
.off-canvas.is-open {
  z-index: 9999;
  background: #fff;
  transform: translate(0);
}

.position-left {
  transform: translateX(-250px);
  left: 0;
}

.position-right {
  transform: translateX(250px);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #5CB797;
  border-bottom: 1px solid #5CB797;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
}
ul#mobile-menu li {
  position: relative;
  display: block;
}
ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 10px 15px;
  color: #000;
}
ul#mobile-menu > li {
  border-bottom: 1px solid #5CB797;
}
ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin-left: 15px;
}
ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 1.6rem;
}
ul#mobile-menu ul.sub-menu li a:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0px;
  content: ">>";
  font-size: 0.7rem;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #5CB797;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1200px) {
  .bids-section.single-suppliers .bids-table__head, .bids-section.single-suppliers .bids-table__row {
    grid-template-columns: 8em 1fr 0.7fr 0.8fr 4em;
    padding: 0.5rem 1rem;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1024px) {
  .bids-filters .filter-title {
    width: 100%;
  }
  .bids-filters .filter-title::after {
    content: "+";
    font-weight: 800;
    margin-inline-start: 10px;
  }
  .bids-filters .filter-title.active::after {
    content: "-";
  }
  .bids-filters .filters {
    display: none;
  }
}
/* end of (max-width: 1024px) */
/****************************************************************************************************************/
/* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .top-title-section::before, .top-title-section::after {
    content: none;
  }
  .top-title-section h1 {
    background-color: #157987;
    margin-right: -15px;
    padding-right: 15px;
    padding-left: 30px;
    padding-bottom: 10px;
    display: inline-block;
  }
  .top-title-section .container {
    padding-top: 30px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .top-title-section .btn {
    top: auto;
    bottom: 30px;
  }
  .bids-table {
    overflow-x: auto;
    display: block;
  }
  .bids-table__head, .bids-table__row {
    display: grid;
    min-width: 1200px;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
/* end of (max-width: 576px) */
/****************************************************************************************************************/
/* end of (max-width: 480px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */