@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("/static/css/fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("/static/css/fonts/Poppins-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("/static/css/fonts/Poppins-Bold.ttf") format("truetype");
}
.text-red {
  color: #DB376E;
}
.text-black {
  color: #133239;
}
.text-grey, .text-gray {
  color: #9FAFB2 !important;
}
.text-grey-light, .text-gray-light {
  color: #CFD6D7 !important;
}
.text-grey-dark, .text-gray-dark {
  color: #6D7E80 !important;
}
.text-blue {
  color: blue;
}
.text-blue-light {
  color: #38BDFC;
}
.text-blue-gray, .text-blue-grey {
  color: #E1F1F2 !important;
}
.text-underline {
  text-decoration: underline;
}

.site-header {
  z-index: 10;
}
@media screen and (max-width: 500px) {
  .site-header {
    position: sticky;
  }
}
@media screen and (min-width: 992px) {
  .site-header {
    border: none !important;
  }
}

.navbar .menu-links a {
  z-index: 1;
}
.navbar #logo, .navbar form {
  z-index: 1;
  position: relative;
}

.megamenu {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  background: white;
  border: none;
  padding: 8rem 1rem 3rem 3rem;
  box-shadow: 0 3rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.5s 1s;
  list-style: none;
}
@media screen and (max-height: 1200px) {
  .megamenu {
    padding: 8rem 0 2rem 0;
    height: 100vh;
    width: 100vw !important;
    overflow-y: auto;
  }
}
.megamenu:hover {
  opacity: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}
.megamenu > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 1920px;
}
@media screen and (max-height: 1200px) {
  .megamenu > div {
    overflow-y: auto;
    max-width: 100%;
    padding: 0 1rem 0 1rem;
    height: 100%;
  }
}
.megamenu li {
  width: 13rem;
  height: 13rem;
}
@media screen and (max-width: 1200px) {
  .megamenu li {
    width: 10rem;
    height: 10rem;
  }
}
.megamenu li > a {
  float: left;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem !important;
  color: white !important;
  box-shadow: 0 0 20px -11px rgba(0, 0, 0, 0.1);
  text-transform: uppercase !important;
  letter-spacing: 3px;
  background-size: cover !important;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .megamenu li > a {
    font-size: 9pt;
  }
}
.megamenu li > a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#categoriesDropdown {
  gap: 0.5rem;
}
#categoriesDropdown li {
  width: 31%;
  aspect-ratio: 1;
}
#categoriesDropdown li > a {
  float: left;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0.5rem !important;
  color: white !important;
  font-size: 11px;
  box-shadow: 0 0 20px -11px rgba(0, 0, 0, 0.3);
  text-transform: uppercase !important;
  letter-spacing: 3px;
  background-size: cover !important;
  display: flex;
  position: relative;
}
#categoriesDropdown li > a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#categoriesDropdown li > a span {
  z-index: 1;
}

nav {
  background: #F7FDFD;
}
@media (min-width: 992px) {
  nav {
    padding-left: 3rem !important;
  }
}
nav.open {
  background: white;
}
nav > .container-fluid {
  padding: 0;
}
@media (min-width: 0) {
  nav > .container-fluid {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 992px) {
  nav > .container-fluid {
    justify-content: space-between !important;
  }
}

#navbarCollapse {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  position: unset;
}
#navbarCollapse .menu-links {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-size: 18px;
  font-weight: 700;
}
#navbarCollapse .menu-links .dropdown {
  position: unset;
}
#navbarCollapse .menu-links .dropdown.active.manual {
  position: relative;
}
#navbarCollapse .menu-links .dropdown.active.manual .dropdown-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  align-content: flex-start;
  top: 3rem;
  right: 0;
  width: 100%;
  border: none;
  z-index: 0;
  position: absolute;
  max-width: 180px;
}
#navbarCollapse .menu-links .dropdown.active.manual .dropdown-menu li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0.7rem;
  font-size: 14pt;
  width: auto;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
#navbarCollapse .menu-links .dropdown.active.manual .dropdown-menu li a {
  padding: 0;
}
#navbarCollapse .menu-links .dropdown.active.manual .dropdown-menu li.top-border {
  border-top: 1px solid #9FAFB2;
  padding-top: 1rem;
}
#navbarCollapse .menu-links .dropdown.active.manual .dropdown-menu li:first-of-type {
  padding-top: 0.7rem;
}
#navbarCollapse .menu-links .dropdown.active.manual .dropdown-menu li:hover a {
  color: #133239;
}
#navbarCollapse .menu-links > li {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-content: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  #navbarCollapse .menu-links > li {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  #navbarCollapse .menu-links > li {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  #navbarCollapse .menu-links > li {
    font-size: 18px;
  }
}
#navbarCollapse .menu-links a {
  color: #9FAFB2;
  text-transform: none;
  text-decoration: none;
}
@media (min-width: 0) {
  #navbarCollapse .menu-links a {
    display: none;
  }
}
@media (min-width: 992px) {
  #navbarCollapse .menu-links a {
    display: block;
    padding: 0 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  #navbarCollapse .menu-links a {
    padding: 0 0 0 3rem;
  }
}
@media (min-width: 1400px) {
  #navbarCollapse .menu-links a {
    padding: 0 0 0 4rem;
  }
}
#navbarCollapse .menu-links a.active {
  color: #133239;
}
#navbarCollapse .menu-links a.ask-expert {
  background-color: #133239;
  padding: 2rem 6rem 2rem 3rem;
  margin-left: 4rem;
  border-radius: 50px 0 0 50px;
  color: #fff;
  position: relative !important;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 16px;
}
#navbarCollapse .menu-links a.ask-expert:after {
  right: 13px;
  top: 13px;
  background: url("../images/timo_expert.png") no-repeat center center;
  background-size: contain;
  width: 60px;
  height: 60px;
  content: "";
  position: absolute;
  border: 2px solid white;
  border-radius: 100%;
}
#navbarCollapse .menu-links a:hover ~ .megamenu {
  opacity: 1;
  transition: opacity 0.1s;
  display: flex;
  justify-content: center;
}

#logo {
  position: absolute;
  z-index: 200;
  height: 50px;
}
@media (min-width: 992px) {
  #logo {
    height: 68px;
  }
}

#logo-mobile {
  z-index: 200;
  height: 50px;
}
@media (min-width: 992px) {
  #logo-mobile {
    height: 68px;
  }
}

#logo img {
  max-width: 300px;
  max-height: 120px;
}

.search-box {
  position: relative;
}
.search-box .text.search-input {
  width: 100%;
  float: left;
  border-radius: 5rem;
  border: 2px solid #9FAFB2;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  color: #133239;
  position: relative;
  font-size: 14px;
  background: transparent;
  min-width: 200px;
}
.search-box .text.search-input:focus::selection {
  background: #133239;
  color: white;
}
.search-box .text.search-input::placeholder {
  color: #9FAFB2;
}
.search-box .text.search-input::selection {
  color: #133239;
}
.search-box:after {
  position: absolute;
  right: 10px;
  content: "";
  background: url("../images/search_icon.svg") no-repeat;
  height: 30px;
  width: 30px;
  top: 10px;
}

/* Chevron icon styles */
.chevron-icon {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 8px;
  margin-bottom: 5px;
  transform: rotate(45deg); /* Chevron down */
  transition: transform 0.15s;
}

.chevron-icon.rotate-up {
  transform: rotate(-135deg); /* Chevron up */
}

/* Styles for the overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(247, 253, 253);
  z-index: 1000;
  overflow: hidden;
  flex-direction: column;
}

.mobile-menu-overlay.open {
  display: flex;
}

/* Close button style */
.close-button {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%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-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 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%);
  color: black;
  background: transparent var(--bs-btn-close-bg) center/cover no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
  --bs-btn-close-opacity: 1 !important;
  border: none;
  cursor: pointer;
  height: 52px;
  width: 52px;
  background-size: 26px 26px !important;
}

/* Mobile menu items style */
.mobile-menu-items {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: auto;
}
.mobile-menu-items li {
  margin: 15px 0;
}
.mobile-menu-items a {
  font-size: 24px;
  color: black;
  text-decoration: none;
  font-weight: bolder;
}

.mobile-menu-button {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }
}

/* Dropdown styles */
.dropdown-content {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
  /* Open dropdown class */
}
@media (max-width: 768px) {
  .dropdown-content {
    padding-left: 0;
  }
}
.dropdown-content li {
  margin: 5px 0;
  transform: rotate(0); /* No rotation needed for dropdown items */
}
@media (max-width: 768px) {
  .dropdown-content li {
    margin: 0;
  }
}
.dropdown-content a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  transform: none; /* No rotation needed for dropdown text */
}
.dropdown-content.open {
  display: flex;
  flex-wrap: wrap;
}

footer {
  background: #133239;
  color: #E1F1F2;
}
footer ul li a {
  color: #E1F1F2;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.3px;
  font-weight: 700;
  font-size: 9pt;
}
footer h1 {
  font-size: 27pt;
  font-weight: 700;
  color: #E1F1F2;
}
footer h2 {
  font-size: 17pt;
  font-weight: 700;
  color: #E1F1F2;
}
footer form input, footer form textarea {
  background: white !important;
}
footer form input::placeholder, footer form textarea::placeholder {
  color: #9FAFB2;
}

.portal-page .main-heading {
  font-size: 28px;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
  color: #133239;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .portal-page .main-heading {
    font-size: 36px;
  }
}
@media screen and (min-width: 992px) {
  .portal-page .main-heading {
    font-size: 44px;
  }
}
.portal-page .main-subheading {
  font-weight: 300;
  font-family: "Poppins";
}

.customer-logo-image {
  width: 140px;
}
@media (min-width: 992px) {
  .customer-logo-image {
    width: 160px;
  }
}

.customer-logo-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .customer-logo-container {
    width: 70%;
    height: auto;
    overflow: auto;
  }
}

.trusted-by-buyers-label {
  margin-top: 40px;
  margin-left: 60px;
  font-weight: bold;
}

.popular-categories .wrapper {
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 500px) {
  .popular-categories .wrapper {
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
}
.popular-categories .popular-category {
  background: #133239;
  width: 12rem;
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
  align-content: space-between;
  padding: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .popular-categories .popular-category {
    width: 45%;
    height: 8rem;
  }
}
.popular-categories .popular-category > * {
  font-size: 14px;
  letter-spacing: 1.26px;
  color: #E1F1F2;
}
.popular-categories .popular-category h3 {
  width: 100%;
  text-align: left;
}
.popular-categories .popular-category .image {
  margin-top: 1rem;
}
@media screen and (max-width: 500px) {
  .popular-categories .popular-category .image {
    display: none;
  }
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(2, 0fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: start;
  justify-items: center;
  align-content: stretch;
}
@media (min-width: 0) {
  .how-it-works {
    grid-template-columns: repeat(2, 0fr);
  }
}
@media (min-width: 992px) {
  .how-it-works {
    grid-template-columns: repeat(4, 0fr);
  }
}

.reviews .review-box .product-name {
  color: #9FAFB2;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hp-resources {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: flex-start;
}
@media screen and (max-width: 500px) {
  .hp-resources {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    gap: 1rem;
  }
}
.hp-resources > div {
  background: #E1F1F2;
  width: 50%;
}
@media screen and (max-width: 992px) {
  .hp-resources > div picture img {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .hp-resources > div {
    width: 100%;
    padding: 1rem !important;
  }
}
.hp-resources > div .texts {
  display: flex;
  flex-direction: column;
  align-content: stretch;
  align-items: stretch;
  justify-content: space-evenly;
}

.customer-logo-wrapper {
  max-height: 300px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .customer-logo-wrapper {
    max-height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  .e-book-paragraph {
    background-color: rgba(225, 241, 242, 0.9);
    border-radius: 50px;
  }
}
@media (min-width: 1400px) {
  .e-book-paragraph {
    margin-left: 45px;
  }
}

@media screen and (min-width: 0) and (max-width: 992px) {
  .main-heading-wrapper {
    z-index: 9;
  }
}

.popular-categories-wrapper {
  padding-bottom: 0.5rem !important;
}

@media (max-width: 768px) {
  .banner-button-main > a {
    margin-top: 1rem !important;
  }
}

.horizontal-scroll::-webkit-scrollbar {
  height: 2px;
}
.horizontal-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
  background-color: #133239;
  border-radius: 2px;
  border: 1px solid #ddd;
}
.horizontal-scroll::-webkit-scrollbar-thumb:hover {
  scrollbar-width: thin;
  background-color: #133239;
}
.horizontal-scroll::-webkit-scrollbar-button:single-button {
  background-color: #F7FDFD;
  height: 2px;
  width: 2px;
}

.sub-heading {
  color: #133239 !important;
}

.button-group-1 .btn,
.button-group-2 .btn {
  min-width: 200px;
  max-width: 200px;
}

.product-card {
  background: #fff;
  height: 31.25rem;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .product-card {
    height: 26rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .product-card {
    height: 30rem;
  }
}
.product-card .product-link {
  height: 2.9rem;
  overflow: hidden;
  float: left;
}
.product-card .image {
  max-width: 100%;
  width: 100%;
  float: left;
}
@media (max-width: 576px) {
  .product-card .image {
    position: static;
    left: 0px;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .product-card .image {
    position: relative;
    left: -20px;
  }
  .product-card .image *, .product-card .image ::after, .product-card .image ::before {
    box-sizing: content-box;
  }
}
.product-card .description {
  height: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .categories {
  height: 3.5rem;
  overflow: hidden;
}
.product-card .languages {
  height: 3rem;
  overflow: hidden;
}
.product-card .reviews {
  right: 0;
}

.categories span {
  color: #E1F1F2;
  background: #9FAFB2;
  padding: 0.5em;
  text-transform: uppercase;
  border-radius: 1px;
  display: inline-flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  font-size: 10px;
  letter-spacing: 1px;
  margin: 0 5px 5px 0;
}

.image-gallery-scrollable {
  max-height: 35rem;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  align-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}
.image-gallery-scrollable::-webkit-scrollbar {
  width: 2px;
}
.image-gallery-scrollable::-webkit-scrollbar-track {
  background: #D8EEF2;
}
.image-gallery-scrollable::-webkit-scrollbar-thumb {
  background: #DB376E;
}

.review {
  border-bottom: 1px solid #9FAFB2;
}
.review:last-of-type {
  border-bottom: none;
}

.vendor-reply {
  background: #9FADAF;
  border-radius: 15px;
  color: white;
  position: relative;
  padding: 1rem 2rem;
  min-height: 95px;
  width: 80%;
  font-weight: lighter;
}
.vendor-reply:before {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='23.99988' height='95.000038' viewBox='0 0 23.999881 95.000039' version='1.1' id='svg3' sodipodi:docname='Union 10.svg' inkscape:version='1.1.1 (3bf5ae0d25, 2021-09-20)' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs7' /%3E%3Csodipodi:namedview id='namedview5' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' showgrid='false' inkscape:zoom='9.08373' inkscape:cx='51.740859' inkscape:cy='12.935215' inkscape:window-width='3840' inkscape:window-height='2071' inkscape:window-x='7191' inkscape:window-y='-9' inkscape:window-maximized='1' inkscape:current-layer='svg3' fit-margin-top='0' fit-margin-left='0' fit-margin-right='0' fit-margin-bottom='0' /%3E%3Cpath id='path1726' style='fill:%239fadaf;fill-opacity:1' d='m 23.99881,95.00004 h -0.0469 v 0 a 16,16 0 0 1 -15.9999998,-16 v -65.427 L 0.90591018,7.1250403 A 4.438,4.438 0 0 1 4.4569102,4.0288116e-5 H 23.99988' /%3E%3Cpath id='path1750' style='fill:none' d='M 923.25069,90.59656 H 189.56956' /%3E%3Cpath id='path1746' style='fill:none' d='M 189.57066,-4.4034397 H 923.25069' /%3E%3C/svg%3E%0A");
  position: absolute;
  content: "";
  left: -7px;
  width: 24px;
  height: 95px;
  top: 0;
  z-index: 0;
}
.vendor-reply p {
  padding: 0;
  margin: 0;
}

a.thumbnail {
  display: flex;
}
a.thumbnail picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 576px) {
  a.image-container-fluid {
    display: flex;
  }
  a.image-container-fluid picture img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.category-left-menu .card {
  background: transparent;
  border: none;
}
.category-left-menu .card .card-header {
  background: transparent;
  border: none;
}

.banner.sticky {
  position: sticky;
  top: 5rem;
}

@media (min-width: 768px) and (max-width: 992px) {
  .card-body {
    padding-right: 0 !important;
  }
}

#filter-container-content.open {
  display: block !important;
}

#listingChevron {
  margin-top: 10px;
}

.btn {
  text-transform: uppercase;
  padding: 1rem;
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 0.875rem;
  position: relative;
  border: none;
  border-radius: 30px;
  letter-spacing: 2px;
  background: #DB376E;
  min-width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  height: 3.5rem;
}
.btn.loading:after {
  content: "\f110";
  font-family: "Font Awesome 6 Free", sans-serif;
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
  animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear);
  display: inline-block;
  font-weight: 900;
}
.btn:hover:before {
  transition: 0.5s;
  width: 100%;
}
.btn-small {
  border-radius: 23px;
}
.btn.btn-red, .btn.btn-primary {
  background: #DB376E;
  color: #fff;
}
.btn.btn-red-small, .btn.btn-primary-small {
  font-size: 0.625rem;
}
.btn.btn-red-small:hover, .btn.btn-primary-small:hover {
  background: #FC4080;
}
.btn.btn-red:hover, .btn.btn-primary:hover {
  background: #FC4080;
}
.btn.btn-secondary {
  background: #133239;
  color: #fff;
  border-color: transparent;
}
.btn.btn-tertiary {
  background: #D8EEF2;
  color: #133239;
}
.btn.btn-tertiary:hover {
  background: #fff;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.0588235294);
}
.btn.btn-tertiary-small {
  font-size: 1.125rem;
  font-family: "Poppins-SemiBold", sans-serif;
  color: #32A6E1;
  text-decoration: underline;
  padding: 0;
  margin: 0;
}
.btn.btn-tertiary-small:hover {
  color: #6bceff;
}
.btn.btn-download {
  display: inline-flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}
.btn.btn-outline-secondary {
  background: transparent;
  border-radius: initial;
  border: 1px solid #DB376E;
}
.btn .icon {
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
}
.btn .icon.icon-download {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!-- Created with Inkscape (http://www.inkscape.org/) --%3E%3Csvg width='6.0414958mm' height='6.0501714mm' viewBox='0 0 6.0414958 6.0501714' version='1.1' id='svg854' inkscape:version='1.1.1 (3bf5ae0d25, 2021-09-20)' sodipodi:docname='download.svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Csodipodi:namedview id='namedview856' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' inkscape:document-units='mm' showgrid='false' fit-margin-top='0' fit-margin-left='0' fit-margin-right='0' fit-margin-bottom='0' inkscape:zoom='35.195347' inkscape:cx='16.536277' inkscape:cy='13.908088' inkscape:window-width='3840' inkscape:window-height='2071' inkscape:window-x='2391' inkscape:window-y='7' inkscape:window-maximized='1' inkscape:current-layer='layer1' /%3E%3Cdefs id='defs851' /%3E%3Cg inkscape:label='Vrstva 1' inkscape:groupmode='layer' id='layer1' transform='translate(-42.566881,-97.675946)'%3E%3Cg id='Download' transform='matrix(0.26458333,0,0,0.26458333,42.567146,97.684886)'%3E%3Cpath id='Path_1283' data-name='Path 1283' d='m 21.691,33 a 1.142,1.142 0 0 0 -1.142,1.142 v 3.539 a 0.8,0.8 0 0 1 -0.8,0.8 H 3.082 a 0.8,0.8 0 0 1 -0.8,-0.8 v -3.539 a 1.142,1.142 0 0 0 -2.283,0 v 3.539 a 3.082,3.082 0 0 0 3.082,3.082 h 16.67 a 3.082,3.082 0 0 0 3.082,-3.082 V 34.142 A 1.142,1.142 0 0 0 21.691,33 Z' transform='translate(0,-17.93)' fill='%23133239' /%3E%3Cpath id='Path_1284' data-name='Path 1284' d='m 23.05,17.444 0.037,0.119 0.059,0.105 a 0.849,0.849 0 0 0 0.046,0.091 1.151,1.151 0 0 0 0.315,0.315 l 0.091,0.046 0.105,0.059 0.119,0.037 0.091,0.05 a 1.228,1.228 0 0 0 0.457,0 l 0.1,-0.027 0.119,-0.037 0.105,-0.059 0.091,-0.046 a 1.68,1.68 0 0 0 0.174,-0.142 l 4.2,-4.2 a 1.1433917,1.1433917 0 0 0 -1.617,-1.617 l -2.251,2.224 V 1.142 a 1.142,1.142 0 1 0 -2.283,0 v 15.983 a 1.242,1.242 0 0 0 0.023,0.224 0.758,0.758 0 0 0 0.019,0.095 z' transform='translate(-12.497)' fill='%2325bce9' /%3E%3Crect id='Rectangle_928' data-name='Rectangle 928' width='2.283' height='5.1009998' rx='1.142' transform='rotate(-45,17.928908,0.58160318)' fill='%23133239' x='0' y='0' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.btn .icon.icon-download-white {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!-- Created with Inkscape (http://www.inkscape.org/) --%3E%3Csvg width='3.6573353mm' height='3.6573353mm' viewBox='0 0 3.6573353 3.6573353' version='1.1' id='svg939' inkscape:version='1.1.1 (3bf5ae0d25, 2021-09-20)' sodipodi:docname='download_white.svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Csodipodi:namedview id='namedview941' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' inkscape:document-units='mm' showgrid='false' borderlayer='false' fit-margin-top='0' fit-margin-left='0' fit-margin-right='0' fit-margin-bottom='0' inkscape:zoom='5.8725028' inkscape:cx='17.283942' inkscape:cy='24.606204' inkscape:window-width='1920' inkscape:window-height='1009' inkscape:window-x='-8' inkscape:window-y='-8' inkscape:window-maximized='1' inkscape:current-layer='layer1' /%3E%3Cdefs id='defs936' /%3E%3Cg inkscape:label='Vrstva 1' inkscape:groupmode='layer' id='layer1' transform='translate(-108.82546,-119.27812)'%3E%3Cg id='Layer_2' data-name='Layer 2' transform='matrix(0.26458333,0,0,0.26458333,111.20671,119.27812)'%3E%3Cg id='Download' transform='translate(-9)'%3E%3Cpath id='Path_1283' data-name='Path 1283' d='m 13.132,33 a 0.691,0.691 0 0 0 -0.691,0.691 v 2.143 a 0.487,0.487 0 0 1 -0.484,0.484 H 1.866 A 0.487,0.487 0 0 1 1.382,35.834 v -2.143 a 0.691,0.691 0 0 0 -1.382,0 v 2.143 A 1.866,1.866 0 0 0 1.866,37.7 h 10.091 a 1.866,1.866 0 0 0 1.866,-1.866 V 33.691 A 0.691,0.691 0 0 0 13.132,33 Z' transform='translate(0,-23.877)' fill='%23ffffff' /%3E%3Cpath id='Path_1284' data-name='Path 1284' d='m 23.03,10.561 0.022,0.072 0.036,0.064 a 0.514,0.514 0 0 0 0.028,0.055 0.7,0.7 0 0 0 0.191,0.191 l 0.055,0.028 0.064,0.036 0.072,0.022 0.055,0.03 a 0.744,0.744 0 0 0 0.276,0 l 0.058,-0.017 0.072,-0.022 0.064,-0.036 0.055,-0.028 A 1.017,1.017 0 0 0 24.183,10.87 L 26.724,8.33 A 0.69225754,0.69225754 0 0 0 25.745,7.351 L 24.382,8.7 V 0.691 a 0.691,0.691 0 1 0 -1.382,0 v 9.676 a 0.752,0.752 0 0 0 0.014,0.135 0.459,0.459 0 0 0 0.016,0.059 z' transform='translate(-16.641)' fill='%23ffffff' /%3E%3Crect id='Rectangle_928' data-name='Rectangle 928' width='1.382' height='3.0880001' rx='0.69099998' transform='rotate(-45,10.853877,0.35217713)' fill='%23ffffff' x='0' y='0' /%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.btn .icon.icon-upload {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!-- Created with Inkscape (http://www.inkscape.org/) --%3E%3Csvg width='4.2333331mm' height='3.7041667mm' viewBox='0 0 4.2333331 3.7041667' version='1.1' id='svg872' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs869' /%3E%3Cg id='layer1' transform='translate(-121.37817,-155.32318)'%3E%3Cg id='Group_2094' data-name='Group 2094' transform='matrix(0.26458333,0,0,0.26458333,-98.358281,-61.767447)'%3E%3Crect id='Rectangle_1508' data-name='Rectangle 1508' width='5' height='2' rx='1' transform='translate(841.5,832.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1560' data-name='Rectangle 1560' width='5' height='2' rx='1' transform='translate(834.5,832.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1559' data-name='Rectangle 1559' width='5' height='2' rx='1' transform='translate(841.5,824.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1562' data-name='Rectangle 1562' width='5' height='2' rx='1' transform='translate(834.5,824.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1557' data-name='Rectangle 1557' width='5' height='2' rx='1' transform='translate(841.5,828.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1561' data-name='Rectangle 1561' width='5' height='2' rx='1' transform='translate(834.5,828.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1558' data-name='Rectangle 1558' width='5' height='2' rx='1' transform='translate(841.5,820.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1563' data-name='Rectangle 1563' width='5' height='2' rx='1' transform='translate(834.5,820.5)' fill='%2332a6e1' x='0' y='0' /%3E%3Crect id='Rectangle_1509' data-name='Rectangle 1509' width='14' height='2' rx='1' transform='rotate(-90,832.5,2)' fill='%2332a6e1' x='0' y='0' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.form-control {
  border: 2px solid #9FADAF;
  border-radius: 2px;
  padding: 0.75rem;
  height: calc(1.5em + 1.75rem + 2px);
  font-size: 12pt;
  color: #133239;
  background: transparent;
}
.form-control:hover, .form-control:focus {
  border-color: #162D8E !important;
  box-shadow: none !important;
  background: transparent;
}
.form-control .error {
  border-color: #DB376E !important;
}
.form-control ::placeholder {
  color: #9FADAF;
}
.form-control.ss-main {
  min-height: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  padding: 0.6rem;
  height: auto;
}
.form-control.ss-main .ss-content.ss-open {
  top: calc(100% + 2px);
  left: 0;
}
.form-control.ss-main .ss-multi-selected {
  border: none;
}
.form-control.ss-main .ss-multi-selected .ss-values .ss-value {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  background: #9FAFB2;
  border-radius: 0;
  padding: 3px;
}
.form-control.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
  margin: 0 5px 0 0;
  width: 17px;
  height: 17px;
  background: white;
  content: "✓" !important;
  color: #162D8E;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  line-height: 2px;
}
.form-control.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-text {
  font-weight: lighter;
  font-size: 10px;
  padding: 0 3px 0 3px;
}

.form-inline select {
  margin-right: 1rem;
}
.form-inline select:last-of-type {
  margin-right: 0;
}

.select-wrapper {
  position: relative;
}
.select-wrapper select {
  background: #fff;
}
.select-wrapper:after {
  content: "\f078";
  font-weight: 900;
  position: absolute;
  font-family: "Font Awesome 6 Free", sans-serif;
  width: 15px;
  height: 15px;
  right: 1rem;
  top: 1rem;
}

label {
  position: relative;
}
label.required:after, label.semi-required:after {
  position: relative;
  content: "*";
  right: 0;
  display: inline;
  top: 30%;
  margin-left: 5px;
}
label.error {
  color: red;
}

form[name=bid_request_response_form] .fa.fa-question-circle.absolute {
  position: absolute;
  left: -10px;
  top: 33%;
}
form[name=bid_request_response_form] label.required:after, form[name=bid_request_response_form] label.semi-required:after {
  display: none;
}
form[name=bid_request_response_form] div.required:after {
  position: absolute;
  content: "*";
  right: 4px;
  display: block;
  top: 30%;
}

input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  margin: 0 1rem 0 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: 2px solid #DB376E;
  border-radius: 1px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
input[type=checkbox].secondary {
  border: 2px solid #133239;
}
input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}
input[type=checkbox]:hover {
  filter: blur(1px);
  box-shadow: none;
  border: 2px solid #DB376E;
}
input[type=checkbox].secondary:focus, input[type=checkbox].secondary:hover {
  border: 2px solid #133239;
}
input[type=checkbox]:checked {
  background-color: white;
  border-color: #DB376E;
  color: #162D8E;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
  content: "\f00c";
  color: #162D8E;
  font-family: "Font Awesome 6 Free", sans-serif;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 900;
}
input[type=checkbox].secondary:checked {
  border-color: #133239;
}
input[type=checkbox].black-checkbox {
  border-color: #133239;
}
input[type=checkbox].black-checkbox:hover {
  filter: none;
}
input[type=checkbox].black-checkbox:checked {
  border-color: #133239;
}

.inline input[type=checkbox] {
  display: inline-grid;
}

.compare-checkbox {
  color: #DB376E;
  font-size: 10px;
  letter-spacing: 1.2px;
  font-family: "Poppins-SemiBold";
}

input.error {
  border-color: #DB376E;
}

.file-uploader {
  float: left;
  width: 100%;
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.4rem;
  font-family: "Poppins-Bold", sans-serif;
}
.stars label, .stars span.star {
  display: inline-block;
  width: auto;
  color: transparent;
  transform: rotate(-45deg);
  margin-right: -10px;
  font-size: 1.125rem;
}
.stars label:before, .stars span.star:before {
  color: #FDBC6F;
  margin: 5px;
  font-size: 1.25em;
  font-family: "Font Awesome 6 Free", sans-serif;
  display: inline-block;
  content: "\f005";
  font-weight: 400;
}
.stars input {
  display: none;
}
.stars input:checked ~ label:before,
.stars span.star.active:before, .stars:not(:checked) > label:hover:before, .stars:not(:checked) > label:hover ~ label:before {
  font-weight: 900;
  color: #FDBC6F;
}
.stars > input:checked + label:hover:before, .stars > input:checked ~ label:hover:before, .stars > label:hover ~ input:checked ~ label:before, .stars > input:checked ~ label:hover ~ label:before {
  font-weight: 900;
  color: #FDBC6F;
}

#bid_request_form_installment label.error,
#bid_request_form_currency label.error,
#bid_request_form_incoterms label.error,
#bid_request_form_fundingAssigned label.error {
  position: absolute;
  top: 3rem;
}

.form-with-popovers span.fa-question-circle {
  cursor: pointer;
}
.form-with-popovers label {
  position: relative;
  width: 92%;
  margin-left: 10px;
  float: right;
}

.form-background {
  background-image: url("/static/images/form-background.png") !important;
  background-repeat: no-repeat !important;
  background-position: bottom right !important;
}

.file-uploader {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3rem;
}
@media (max-width: 992px) {
  .file-uploader {
    gap: 1rem !important;
  }
}
.file-uploader .droparea {
  border: 2px solid #9FAFB2;
  color: #9FAFB2;
  width: 260px;
  height: 260px;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 3px;
  gap: 3rem;
  cursor: pointer;
}
.file-uploader .droparea .icon {
  width: 5rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='72.453' height='72.453' viewBox='0 0 72.453 72.453'%3E%3Cg id='Download' transform='translate(0 0)'%3E%3Cpath id='Path_1283' data-name='Path 1283' d='M68.831,33a3.623,3.623,0,0,0-3.623,3.623v11.23a2.55,2.55,0,0,1-2.536,2.536H9.781a2.55,2.55,0,0,1-2.536-2.536V36.623a3.623,3.623,0,0,0-7.245,0v11.23a9.781,9.781,0,0,0,9.781,9.781H62.672a9.781,9.781,0,0,0,9.781-9.781V36.623A3.623,3.623,0,0,0,68.831,33Z' transform='translate(0 14.819)' fill='%239fadaf'/%3E%3Cpath id='Path_1284' data-name='Path 1284' d='M.159,55.354l.116.377.188.333a2.7,2.7,0,0,0,.145.29,3.652,3.652,0,0,0,1,1l.29.145.333.188.377.116.29.159a3.9,3.9,0,0,0,1.449,0l.3-.087.377-.116.333-.188.29-.145a5.332,5.332,0,0,0,.551-.449L19.519,43.66a3.627,3.627,0,0,0-5.13-5.13L7.245,45.588V3.623A3.623,3.623,0,1,0,0,3.623V54.34a3.942,3.942,0,0,0,.072.71A2.407,2.407,0,0,0,.159,55.354Z' transform='translate(35.938 58.031) rotate(180)' fill='%239fadaf'/%3E%3Crect id='Rectangle_928' data-name='Rectangle 928' width='7.245' height='16.186' rx='2.5' transform='translate(53.915 17.261) rotate(135)' fill='%239fadaf'/%3E%3C/g%3E%3C/svg%3E%0A");
}

#current-images-wrapper {
  display: none;
}

.logo-wrappper:has(.image-frame-wrapper) .droparea {
  display: none;
}

.uploader-wrapper, #current-images-wrapper:has(.image-frame-wrapper) {
  flex-wrap: wrap;
  display: flex;
  gap: 3rem;
}
@media (max-width: 992px) {
  .uploader-wrapper, #current-images-wrapper:has(.image-frame-wrapper) {
    gap: 1rem !important;
  }
}
.uploader-wrapper .image-frame-wrapper, #current-images-wrapper:has(.image-frame-wrapper) .image-frame-wrapper {
  width: 260px;
  height: 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0 0 4rem 1rem #CFD6D7;
  padding: 1rem;
  background: white;
  position: relative;
  justify-content: space-between;
}
.uploader-wrapper .image-frame-wrapper.main, #current-images-wrapper:has(.image-frame-wrapper) .image-frame-wrapper.main {
  border: 2px solid #DB376E;
}
.uploader-wrapper .image-frame-wrapper img, #current-images-wrapper:has(.image-frame-wrapper) .image-frame-wrapper img {
  width: 100%;
  height: auto;
}
.uploader-wrapper .image-frame-wrapper .close, #current-images-wrapper:has(.image-frame-wrapper) .image-frame-wrapper .close {
  color: #DB376E;
  border: 2px solid #DB376E;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}
.uploader-wrapper .image-frame-wrapper .set-image-as-main, #current-images-wrapper:has(.image-frame-wrapper) .image-frame-wrapper .set-image-as-main {
  position: absolute;
  top: 0;
  background: white;
  width: 100%;
  text-align: center;
  height: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 7px 0 0 0;
  cursor: pointer;
}

.radio-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: flex-start;
  justify-content: space-between;
}
.radio-list .form-check {
  width: auto;
  min-width: 7rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ccc;
}

input:focus + .slider {
  box-shadow: 0 0 1px #ccc;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.nav-tabs {
  border: none;
}
@media (max-width: 992px) {
  .nav-tabs {
    gap: 3px !important;
  }
}
.nav-tabs .nav-item {
  margin: 0 3rem 0 0;
  line-height: 15pt;
}
.nav-tabs .nav-item a {
  text-decoration: none;
  border: none;
  color: #CFD6D7;
  font-weight: 900;
  font-size: 23px;
  position: relative;
  padding: 0;
}
.nav-tabs .nav-item a h2 {
  color: #CFD6D7;
}
.nav-tabs .nav-item a:after {
  content: "";
  height: 2px;
  bottom: -10px;
  left: 0;
  background: #CFD6D7;
  width: 100%;
  position: absolute;
}
@media (max-width: 992px) {
  .nav-tabs .nav-item a:after {
    display: none;
  }
}
.nav-tabs .nav-item a.active, .nav-tabs .nav-item a.active h2 {
  background: none;
  color: #133239;
  border-bottom: none;
}
.nav-tabs .nav-item a.active:after, .nav-tabs .nav-item a.active h2:after {
  display: none;
}
.nav-tabs .nav-item.tab-shadow {
  box-shadow: 0 5px 0 #fff, 0 0 13px rgba(0, 0, 0, 0.0588235294);
}
.nav-tabs .nav-item.tab-underline a {
  text-decoration: underline;
}
.nav-tabs .nav-item.tab-underline .active {
  text-decoration: none;
}
.nav-tabs .nav-item.tab-underline a:after {
  display: none;
}
.nav-tabs.dark {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  align-items: flex-end;
}
.nav-tabs.dark a {
  font-size: 16px;
}
.nav-tabs.dark .nav-item {
  margin: 0 5px 0 0;
}
.nav-tabs.dark .nav-item .nav-link {
  color: #9FADAF;
  background-color: #133239;
  padding: 1rem;
}
.nav-tabs.dark .nav-item .nav-link.active {
  color: #133239;
  background-color: white;
  padding: 1.3rem 1rem 1.3rem 1rem;
}
.nav-tabs.dark .nav-item a:after {
  display: none;
}
.nav-tabs.minimal .nav-item {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  gap: 4px;
  margin: 0 1rem 0.5rem 0;
}
.nav-tabs.minimal .nav-item a {
  text-decoration: underline;
}
.nav-tabs.minimal .nav-item a:after {
  height: 12px;
  width: 8px;
  background-repeat: no-repeat;
  top: 20%;
  right: -11px;
  left: auto !important;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.718' height='9.933' viewBox='0 0 5.718 9.933'%3E%3Cpath id='Path_1440' data-name='Path 1440' d='M-1301.888-1413.361l3.714,3,3.4-3' transform='translate(1414.772 -1293.361) rotate(-90)' fill='none' stroke='%23162d8e' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.nav-tabs.minimal .nav-item a.active {
  text-decoration: none;
}
.nav-tabs.minimal .nav-item a.active:after {
  display: block;
}
.nav-tabs.minimal .nav-item:last-of-type a:after {
  display: none;
}

@media (max-width: 992px) {
  #productDetailsTabs {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
  }
}

.vendor-name, .customer-name {
  cursor: pointer;
}

.no-border {
  border: none !important;
}

.account-menu {
  padding-top: 1rem;
  border-top: 1px solid #9FAFB2;
  margin-top: 1rem;
  margin-left: 1rem;
}

#event-entries .date {
  padding: 2rem;
  border-radius: 5px;
  border: 2px solid #162D8E;
}
@media screen and (max-width: 500px) {
  #event-entries .date {
    padding: 1rem;
  }
}
#event-entries .date-red {
  border: none;
  background: #DB376E;
  color: white;
}

.compared-product {
  float: left;
  display: flex;
  white-space: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
  position: relative;
}
.compared-product .button-wrapper {
  top: 17rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.fixed-column .filter {
  margin-top: -4rem;
}

.compare-column {
  position: relative;
  float: left;
  flex: 0 0 auto;
  max-width: 16rem;
}
@media (max-width: 992px) {
  .compare-column:not(.compare-column-image) {
    max-width: 100% !important;
  }
}
.compare-column .name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 80%;
}
.compare-column .image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: nowrap;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
  height: 15rem;
}
.compare-column .image > a.text-red {
  right: 0;
}
.compare-column .image .squared-icon {
  position: absolute;
  right: 1.5rem;
}
.compare-column .image picture {
  overflow: hidden;
}
.compare-column.dummy {
  height: 100%;
}
.compare-column.dummy .grey-placeholder {
  padding: 0 5rem 0 5rem;
  background: #9FAFB2;
}
.compare-column.dummy .square-220 {
  background-color: #9FAFB2;
}
.compare-column.dummy .btn-minor {
  color: darkgrey;
}
.compare-column .bb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.compare-column .h-3h5, .attribute-labels .h-3h5 {
  height: 100%;
  min-height: 4rem;
}

.attribute-labels {
  margin-top: 1rem;
}

.square-220 .btn {
  width: auto !important;
}
.square-220.centered {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.compare-flyout {
  position: fixed;
  bottom: 0;
  right: 0;
  background: white;
  padding: 2rem 1rem 2rem 1rem;
  display: none;
  box-shadow: 0 0 21rem -2rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .compare-flyout {
    padding: 1em 1rem 1rem 1rem;
  }
}
@media (max-width: 992px) {
  .compare-flyout {
    width: 100vw;
  }
}
.compare-flyout .fa {
  font-size: 2rem;
  color: #9FAFB2;
  cursor: pointer;
}
.compare-flyout .fa.fa-close {
  top: 1rem;
  right: 1rem;
  font-size: 10pt;
  color: #DB376E;
}
.compare-flyout .message {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.compare-flyout.active {
  display: block;
}
.compare-flyout.closed {
  bottom: -19.5rem;
}
@media (min-width: 768px) {
  .compare-flyout.closed {
    bottom: -17rem;
  }
}
.compare-flyout .items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 992px) {
  .compare-flyout .items {
    overflow-x: auto !important;
  }
}
.compare-flyout .items .item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  height: 15rem;
  width: 13rem;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 992px) {
  .compare-flyout .items .item {
    min-width: 30vw !important;
  }
}
.compare-flyout .items .item .image {
  width: 100%;
  overflow: hidden;
}
.compare-flyout .items .item .name {
  width: 100%;
}
@media (max-width: 992px) {
  .compare-flyout .items .item .name {
    margin-top: 10px;
  }
}
.compare-flyout .items .item.empty {
  color: #FC4080;
  border: 2px solid #FC4080;
  text-transform: uppercase;
}
.compare-flyout .items .item.empty .plus {
  font-size: 5rem;
}

.comparison-page .btn-filter,
.compare-flyout .btn-filter,
#js_filterfield .btn-filter {
  border-radius: 0;
  text-transform: none;
  font-weight: 700;
  font-size: 10pt !important;
}
.comparison-page .btn-filter.btn-primary,
.compare-flyout .btn-filter.btn-primary,
#js_filterfield .btn-filter.btn-primary {
  background: #38BDFC;
  color: white;
}
.comparison-page .btn-filter.btn-secondary,
.compare-flyout .btn-filter.btn-secondary,
#js_filterfield .btn-filter.btn-secondary {
  border: 2px solid #CFD6D7;
  color: #CFD6D7;
  background: none;
}
@media (min-width: 992px) {
  .comparison-page .btn-filter,
  .compare-flyout .btn-filter,
  #js_filterfield .btn-filter {
    font-size: 12pt !important;
  }
}

@media (min-width: 992px) {
  .button-wrapper-absolute {
    position: absolute !important;
  }
}

.faq-line .faq.collapse:not(.show) {
  height: 4rem;
  overflow: hidden;
  display: block;
  margin-bottom: 1rem;
}

.lead {
  font-size: 18px;
  font-weight: 300;
  color: #9FAFB2;
}
.lead p {
  margin-bottom: 0;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-arrow:hover {
  opacity: 1;
  background-color: #F7FDFD;
}
.scroll-arrow.left {
  left: -10px;
}
@media (min-width: 1200px) {
  .scroll-arrow.left {
    left: -65px;
  }
}
.scroll-arrow.right {
  right: -10px;
}
@media (min-width: 1200px) {
  .scroll-arrow.right {
    right: -65px;
  }
}

.customer-logo-wrapper {
  position: relative;
  overflow: visible;
}

.learn-more .left-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
}
.learn-more .left-menu .card {
  border: none;
}
.learn-more .left-menu .link a {
  color: #9FAFB2;
  text-transform: none;
  font-size: 23px;
}
.learn-more .left-menu .link a:hover, .learn-more .left-menu .link a:active, .learn-more .left-menu .link a[tabindex]:focus, .learn-more .left-menu .link a.active {
  color: #235E6B;
  border-radius: 4px;
  outline: none;
  text-decoration: none;
}

.modal-dialog.wide {
  max-width: 75% !important;
}
@media screen and (max-width: 500px) {
  .modal-dialog.wide {
    max-width: 100% !important;
  }
}

.search-results .categories .category {
  background: #D8EEF2;
  text-align: center;
  float: left;
  text-decoration: none;
  height: 12rem;
  width: 12rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 16pt;
}
.search-results .categories .category span {
  background: none;
  color: #fff;
  font-size: 13pt;
  text-align: left;
  display: block;
  font-weight: bold;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}
@media screen and (max-width: 500px) {
  .search-results .categories .category {
    width: 49% !important;
    margin: 0 1px 4px 0;
  }
}
.search-results .categories .category:hover {
  color: #fff;
  background: #162D8E;
  text-decoration: none;
}
.search-results .categories .category.color-red {
  background: #DB376E;
  color: white;
}

.project-card {
  cursor: pointer;
}
.project-card .impacts {
  color: #9FAFB2;
}
.project-card .impacts .impact-head {
  color: #38BDFC;
}

.ask-expert.popup {
  position: fixed;
  top: 1rem;
  right: 0;
  z-index: 10000;
  background: white;
  width: 380px;
  display: none;
}
.ask-expert.popup.active {
  display: block;
}
.ask-expert.popup .fa-close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9FAFB2;
}
.ask-expert.popup .form-wrapper {
  display: block;
}
.ask-expert.popup .form-wrapper form {
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
}
.ask-expert.popup .form-wrapper form textarea {
  min-height: 10rem;
}
.ask-expert.popup .form-wrapper .loading, .ask-expert.popup .form-wrapper .response {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  align-content: center;
  justify-content: center;
  align-items: center;
}
.ask-expert.popup .form-wrapper .loading.active, .ask-expert.popup .form-wrapper .response.active {
  z-index: 1;
  display: flex;
}
.ask-expert.popup .form-wrapper .response {
  font-size: 1.438rem;
  text-align: center;
}
.ask-expert.popup .form-wrapper .response.error {
  color: #FC4080;
}

.dark-box {
  background-color: #133239;
  color: white;
  border-radius: 2px;
  width: 15rem;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  align-content: stretch;
  padding: 1rem;
}
.dark-box .number {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 800;
  text-align: right;
  color: #E1F1F2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 500px) {
  .dark-box .number {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.dark-box .header {
  color: white;
}
.dark-box.extended {
  background: #E1F1F2;
  width: 17rem;
  padding: 2rem;
}
@media screen and (max-width: 500px) {
  .dark-box.extended {
    padding: 1rem;
    width: 100%;
  }
}
.dark-box.extended .header, .dark-box.extended .text, .dark-box.extended .number {
  color: #133239;
}
.dark-box.extended .number {
  opacity: 0.11;
}
.dark-box.extended:hover {
  background: #133239;
}
.dark-box.extended:hover .header, .dark-box.extended:hover .text {
  color: #E1F1F2;
}
.dark-box.extended:hover .number {
  color: #E1F1F2;
  opacity: 1;
}
.dark-box.extended:hover .btn {
  background: #DB376E;
  color: white;
}

.breadcrumbs {
  color: #133239;
  font-size: 18px;
}
.breadcrumbs a {
  color: #9FAFB2;
  margin: 0 1rem 0 1rem;
}
.breadcrumbs a:first-of-type {
  margin-left: 0;
}

@media (min-width: 992px) {
  .bid-request-form {
    padding: 3rem 8rem 3rem 8rem !important;
  }
}
.bid-request-form label {
  width: 100%;
}
.bid-request-form label.error {
  display: block;
}
.bid-request-form .form-check label {
  display: block;
}

table.pipeline .sort, .table.pipeline .sort {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}
table.pipeline .sort *, .table.pipeline .sort * {
  margin-left: 0.5rem;
  border: solid 1px #CFD6D7;
  color: #CFD6D7;
  width: 15px;
  height: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}
table.pipeline .sort *.active, .table.pipeline .sort *.active {
  color: #133239;
  border: solid 1px #133239;
}
table.pipeline thead th, .table.pipeline thead th {
  padding-bottom: 2rem;
}
table.pipeline tbody tr, .table.pipeline tbody tr {
  border: none;
  border-color: transparent;
}
table.pipeline tbody tr:nth-of-type(odd) > *, .table.pipeline tbody tr:nth-of-type(odd) > * {
  background-color: #F7FDFD;
}
table.pipeline tbody tr:nth-of-type(even) > *, .table.pipeline tbody tr:nth-of-type(even) > * {
  background-color: rgba(159, 173, 175, 0.0784313725);
}
table.pipeline tbody tr td, .table.pipeline tbody tr td {
  padding: 1rem 0.5rem 1rem 0.5rem;
}

.pagination {
  display: inline-block;
  font-size: 15px;
}
.pagination li {
  float: left;
}
.pagination li .page-link {
  background: transparent;
  color: #9FADAF;
  border: none;
  text-decoration: underline;
}
.pagination li .page-link.next:after, .pagination li .page-link.prev:after {
  content: "";
  margin-left: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.069' height='15.513' viewBox='0 0 8.069 15.513'%3E%3Cpath id='Path_1461' data-name='Path 1461' d='M-1301.888-1413.361l6.627,5.35,6.068-5.35' transform='translate(1414.772 -1287.781) rotate(-90)' fill='none' stroke='%239fadaf' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 3px;
}
.pagination li .page-link.prev:after {
  transform: rotate(180deg);
  margin-top: 0;
}
.pagination li.active {
  font-weight: bold;
}
.pagination li.active .page-link {
  text-decoration: none;
}

.chat-messages {
  min-height: 50rem;
  max-height: 50rem;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column-reverse;
}
.chat-messages.empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.chat-messages .chat-message {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.chat-messages .chat-message.right {
  flex-direction: row-reverse;
}
.chat-messages .chat-message.right .content {
  background: #9FADAF;
}
.chat-messages .chat-message.right .content:before {
  right: -7px;
  left: auto;
  transform: scaleX(-1);
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='23.99988' height='95.000038' viewBox='0 0 23.999881 95.000039' version='1.1' id='svg3' sodipodi:docname='Union 10.svg' inkscape:version='1.1.1 (3bf5ae0d25, 2021-09-20)' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs7' /%3E%3Csodipodi:namedview id='namedview5' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' showgrid='false' inkscape:zoom='9.08373' inkscape:cx='51.740859' inkscape:cy='12.935215' inkscape:window-width='3840' inkscape:window-height='2071' inkscape:window-x='7191' inkscape:window-y='-9' inkscape:window-maximized='1' inkscape:current-layer='svg3' fit-margin-top='0' fit-margin-left='0' fit-margin-right='0' fit-margin-bottom='0' /%3E%3Cpath id='path1726' style='fill:%239FADAF;fill-opacity:1' d='m 23.99881,95.00004 h -0.0469 v 0 a 16,16 0 0 1 -15.9999998,-16 v -65.427 L 0.90591018,7.1250403 A 4.438,4.438 0 0 1 4.4569102,4.0288116e-5 H 23.99988' /%3E%3Cpath id='path1750' style='fill:none' d='M 923.25069,90.59656 H 189.56956' /%3E%3Cpath id='path1746' style='fill:none' d='M 189.57066,-4.4034397 H 923.25069' /%3E%3C/svg%3E%0A");
}
.chat-messages .chat-message.admin .content {
  background: #DB376E;
  width: 100%;
}
.chat-messages .chat-message.admin .content:before {
  display: none;
}
.chat-messages .chat-message .sender {
  max-width: 4rem;
}
.chat-messages .chat-message .sender .name {
  font-size: 9pt;
}
.chat-messages .chat-message .sender .time {
  color: #CFD6D7;
  font-size: 8pt;
  display: flex;
  flex-direction: column;
}
.chat-messages .chat-message .content {
  background: #133239;
  border-radius: 15px;
  color: white;
  position: relative;
  padding: 1rem 2rem;
  min-height: 50px;
  width: auto;
  font-weight: lighter;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}
.chat-messages .chat-message .content:before {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='23.99988' height='95.000038' viewBox='0 0 23.999881 95.000039' version='1.1' id='svg3' sodipodi:docname='Union 10.svg' inkscape:version='1.1.1 (3bf5ae0d25, 2021-09-20)' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs7' /%3E%3Csodipodi:namedview id='namedview5' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' showgrid='false' inkscape:zoom='9.08373' inkscape:cx='51.740859' inkscape:cy='12.935215' inkscape:window-width='3840' inkscape:window-height='2071' inkscape:window-x='7191' inkscape:window-y='-9' inkscape:window-maximized='1' inkscape:current-layer='svg3' fit-margin-top='0' fit-margin-left='0' fit-margin-right='0' fit-margin-bottom='0' /%3E%3Cpath id='path1726' style='fill:%23133239;fill-opacity:1' d='m 23.99881,95.00004 h -0.0469 v 0 a 16,16 0 0 1 -15.9999998,-16 v -65.427 L 0.90591018,7.1250403 A 4.438,4.438 0 0 1 4.4569102,4.0288116e-5 H 23.99988' /%3E%3Cpath id='path1750' style='fill:none' d='M 923.25069,90.59656 H 189.56956' /%3E%3Cpath id='path1746' style='fill:none' d='M 189.57066,-4.4034397 H 923.25069' /%3E%3C/svg%3E%0A");
  position: absolute;
  content: "";
  left: -7px;
  width: 24px;
  height: 20px;
  top: 0;
  z-index: 0;
}
.chat-messages .chat-message .content p {
  padding: 0;
  margin: 0;
}

.chat-input-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  border: 1px solid #9FAFB2;
  border-radius: 33px;
  padding: 10px;
}
.chat-input-wrapper input {
  height: 100%;
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 12pt;
}
.chat-input-wrapper input:focus, .chat-input-wrapper input:focus-visible {
  outline: none;
  border: none;
}

.tag {
  display: inline-flex;
  background: #9FAFB2;
  color: white;
  padding: 0.3rem 0.5rem 0.2rem 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 10px;
  text-decoration: none;
  margin-bottom: 3px;
}
.tag:hover, .tag.selected {
  background: #133239;
}
.tag.disabled {
  background: #CFD6D7;
  color: #E1F1F2;
  cursor: initial;
}

.key-visual-container {
  min-height: 30rem;
  position: relative;
}
.key-visual-container h1 {
  position: absolute;
  bottom: 2rem;
}

.reputation.review-rating {
  background-color: rgba(253, 188, 111, 0.16);
  border-radius: 10px;
  height: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  min-width: 220px;
}
.reputation.review-rating .active {
  border-radius: 10px;
  height: 100%;
  background-color: rgb(253, 188, 111);
}

.side-heading {
  position: relative;
}
.side-heading .arrow {
  position: absolute;
  content: "";
  width: 1px;
  height: 10rem;
  background: #CFD6D7;
  top: 105%;
  left: 50%;
}
.side-heading .arrow:after {
  bottom: -2rem;
  font-family: "Font Awesome 6 Free", sans-serif;
  content: "\f078";
  position: absolute;
  left: -9px;
}

.progress-column {
  padding: 0 1rem 0 0;
}

.milestone-ahead,
.milestone-current,
.milestone-past {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 3rem;
}
.milestone-ahead:before,
.milestone-current:before,
.milestone-past:before {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #CFD6D7;
  margin-top: 5px;
  background: white;
  z-index: 1;
  left: 11px;
}
.milestone-ahead:after,
.milestone-current:after,
.milestone-past:after {
  position: absolute;
  left: 1rem;
  width: 2px;
  content: "";
  background: #CFD6D7;
  height: 100%;
  z-index: 0;
  top: 5px;
}
.milestone-ahead.with-checkbox input,
.milestone-current.with-checkbox input,
.milestone-past.with-checkbox input {
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 1;
}

.milestone-past:before {
  border: 3px solid #133239;
  background: #133239;
}
.milestone-ahead:last-of-type:after {
  display: none;
}
.milestone-current:before {
  background: #CFD6D7;
}

.milestone:last-of-type:after {
  display: none;
}

#chat-send {
  right: 10px !important;
}
@media (min-width: 992px) {
  #chat-send {
    right: 0 !important;
  }
}
@media (max-width: 992px) {
  #chat-send {
    width: 25% !important;
  }
}

@media (max-width: 992px) {
  #chat-message {
    width: 65% !important;
  }
}

.social-media {
  display: flex;
  flex-direction: row-reverse;
}
.social-media ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.social-media .icon {
  display: block;
  width: 44px;
  height: 44px;
  content: "";
  margin: 0 1rem 0 0;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='166.303' height='43.573' viewBox='0 0 166.303 43.573'%3E%3Cg id='Group_1520' data-name='Group 1520' transform='translate(-1057 -4601.435)'%3E%3Cpath id='Path_1227' data-name='Path 1227' d='M42.452,15.033A21.758,21.758,0,1,1,21.759,0,21.759,21.759,0,0,1,42.452,15.033M21.759,1.96A19.8,19.8,0,1,0,40.588,15.64,19.8,19.8,0,0,0,21.759,1.96' transform='translate(1057 4601.436)' fill='%2332a6e1'/%3E%3Cpath id='Path_1228' data-name='Path 1228' d='M17.179,9.986c.59-.022,1.18-.005,1.771-.005h.243V6.91c-.314-.031-.644-.076-.975-.093-.6-.027-1.211-.056-1.817-.044a4.462,4.462,0,0,0-2.566.793A3.843,3.843,0,0,0,12.3,10.129a8.858,8.858,0,0,0-.107,1.318c-.016.688,0,1.376,0,2.065v.26H9.248V17.2h2.92v8.621h3.57V17.215H18.65c.149-1.142.294-2.271.446-3.445-.234,0-.443,0-.653,0-.828,0-2.728,0-2.728,0s.007-1.7.029-2.437c.027-1.009.626-1.318,1.436-1.347' transform='translate(1064.537 4606.954)' fill='%2332a6e1' fill-rule='evenodd'/%3E%3Cpath id='Path_1229' data-name='Path 1229' d='M75.578,15.064A21.758,21.758,0,1,1,54.885.031,21.76,21.76,0,0,1,75.578,15.064M54.885,1.991A19.8,19.8,0,1,0,73.714,15.671,19.8,19.8,0,0,0,54.885,1.991' transform='translate(1083.997 4601.461)' fill='%2332a6e1'/%3E%3Cpath id='Path_1231' data-name='Path 1231' d='M110.1,15.033A21.756,21.756,0,1,1,89.412,0,21.761,21.761,0,0,1,110.1,15.033M89.412,1.96A19.8,19.8,0,1,0,108.238,15.64,19.795,19.795,0,0,0,89.412,1.96' transform='translate(1112.134 4601.436)' fill='%2332a6e1'/%3E%3Cpath id='Path_1232' data-name='Path 1232' d='M76.013,12.727h3.581v11.5H76.013ZM77.8,7.01A2.074,2.074,0,1,1,75.73,9.083,2.077,2.077,0,0,1,77.8,7.01' transform='translate(1117.184 4606.714)' fill='%2332a6e1'/%3E%3Cpath id='Path_1233' data-name='Path 1233' d='M79.1,10.288h3.43V11.86h.045A3.765,3.765,0,0,1,85.958,10c3.619,0,4.289,2.379,4.289,5.478v6.311H86.673V16.2c0-1.336-.027-3.051-1.859-3.051-1.862,0-2.145,1.452-2.145,2.951v5.692H79.1Z' transform='translate(1119.927 4609.153)' fill='%2332a6e1'/%3E%3Crect id='Rectangle_682' data-name='Rectangle 682' width='166.303' height='43.572' transform='translate(1057 4601.435)' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
  color: transparent;
}
.social-media .icon.icon-fb {
  background-position: 0 0;
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%2332a6e1;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M232.8,197.92v29.8H196.65v40.06H232.8v99.16h43V267.78h31.76l6.35-40.06H275.78V197.43c0-11.23,10.75-17.58,21-17.58h18.56V146.63l-33.22-1.47C250.38,143.21,232.8,168.12,232.8,197.92Z'/%3E%3Cpath class='cls-1' d='M256,8C119.22,8,8,119.22,8,256S119.22,504.05,256,504.05,504.05,392.78,504.05,256,392.78,8,256,8Zm0,475.16C130.77,483.11,28.89,381.23,28.89,256S130.77,28.89,256,28.89,483.11,130.77,483.11,256,381.23,483.11,256,483.11Z'/%3E%3C/svg%3E");
}
.social-media .icon.icon-linkedin {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:%2332a6e1;%7D.cls-1%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M176.29,211.66h37.39V337.23H176.29Zm18.47-63.72a22.63,22.63,0,0,1,0,45.25,22.27,22.27,0,0,1-22.16-22.62c0-12.47,9.69-22.63,22.16-22.63Zm41.09,63.72h36.93V229.2a42.74,42.74,0,0,1,35.55-18.93h10.16A42.66,42.66,0,0,1,361,252.74v84.49H324V325.69h0V269.36h0c-.47-14.31-10.16-25.39-24.47-25.39h0c-14.32,0-26.32,11.08-26.78,25.39h0v67.87H235.85Z'/%3E%3Cpath class='cls-2' d='M256,504.16C119.17,504.16,7.84,392.83,7.84,256S119.17,7.84,256,7.84,504.16,119.17,504.16,256,392.83,504.16,256,504.16ZM256,28.8C130.72,28.8,28.8,130.72,28.8,256S130.72,483.2,256,483.2,483.2,381.28,483.2,256,381.28,28.8,256,28.8Z'/%3E%3C/svg%3E");
}
.social-media .icon.icon-twitter {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%2332a6e1;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M256,504.05C119.22,504.05,8,392.78,8,256S119.22,8,256,8,504.05,119.22,504.05,256,392.78,504.05,256,504.05Zm0-475.16C130.77,28.89,28.89,130.77,28.89,256S130.77,483.11,256,483.11,483.11,381.23,483.11,256,381.23,28.89,256,28.89Z'/%3E%3Cpath class='cls-1' d='M348.05,346.87l-70.6-102.35,67.33-79.18,3.61-4.25H325.28l-.77.91-57.46,67.44-46.38-67.23-.76-1.12H161.17l2.75,4L234.23,268l-67,78.68-3.62,4.25H187l.77-.91,56.82-66.84,45.54,66.62.77,1.13h59.92Zm-137-168.93,45.81,66.41,7.38,10.7,54.5,79H299.8l-45-65.82-7.35-10.77-54.37-79.53Z'/%3E%3C/svg%3E");
}
.social-media .icon.icon-youtube {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:%2332a6e1;%7D.cls-1%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M369.33,210c-3.62-26.64-17.16-31.15-43.8-33.41-11.51-.9-23.81-1.58-35.78-2s-23.58-.68-33.75-.68c-20.31,0-46.95.9-69.53,2.71-26.63,2.26-40.64,6.77-44.24,33.41-.68,6.1-1.25,13.32-1.65,21.16S140,247.42,140,256a433.21,433.21,0,0,0,2.27,46.06c3.6,27.08,17.61,31.15,44.24,33.4,11.29,1.14,23.59,1.82,35.62,2.21s23.75.5,33.91.5c20.32,0,46.51-.44,69.53-2.71,26.64-2.25,40.18-6.32,43.8-33.4.89-5.87,1.57-13.1,2-21S372,264.58,372,256C372,238.84,371.13,222.14,369.33,210Zm-136.8,81.27v-70L293,256Z'/%3E%3Cpath class='cls-2' d='M256,504.14C119.17,504.14,7.86,392.83,7.86,256S119.17,7.86,256,7.86,504.14,119.17,504.14,256,392.83,504.14,256,504.14Zm0-475.33C130.73,28.81,28.81,130.73,28.81,256S130.73,483.19,256,483.19,483.19,381.27,483.19,256,381.27,28.81,256,28.81Z'/%3E%3C/svg%3E");
}
.social-media .icon.icon-instagram {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%2332a6e1;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M256.25,198.94h-.5c-30.66,0-56.56,26.13-56.56,57.06,0,31.46,25.37,57.06,56.56,57.06h.5A57.13,57.13,0,0,0,313.31,256C313.31,225.07,287.18,198.94,256.25,198.94Zm-.5,20.81h.5c19.65,0,36.25,16.6,36.25,36.25,0,20.26-16.26,36.75-36.25,36.75h-.5c-20,0-36.25-16.49-36.25-36.75C219.5,236.35,236.1,219.75,255.75,219.75Z'/%3E%3Cpath class='cls-1' d='M303.64,152H208.36a56.63,56.63,0,0,0-56.57,56.56v94.8A56.63,56.63,0,0,0,208.36,360h95.28a56.63,56.63,0,0,0,56.57-56.56V208.6A56.63,56.63,0,0,0,303.64,152Zm37.24,57.06v93.8a37.77,37.77,0,0,1-37.73,37.74h-94.3a37.77,37.77,0,0,1-37.73-37.74V209.1a37.77,37.77,0,0,1,37.73-37.74h94.3A37.77,37.77,0,0,1,340.88,209.1Z'/%3E%3Cpath class='cls-1' d='M311.54,188.08a12.63,12.63,0,0,0,0,25.25,12.63,12.63,0,1,0,0-25.25Z'/%3E%3Cpath class='cls-1' d='M256,504.14C119.17,504.14,7.86,392.83,7.86,256S119.17,7.86,256,7.86,504.14,119.17,504.14,256,392.83,504.14,256,504.14Zm0-475.33C130.73,28.81,28.81,130.73,28.81,256S130.73,483.19,256,483.19,483.19,381.27,483.19,256,381.27,28.81,256,28.81Z'/%3E%3C/svg%3E");
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: #133239;
  text-decoration: none;
}

h1, .h1 {
  font-size: 2.875rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
}

h2, .h2 {
  font-size: 1.438rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
}

h3, .h3 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
  text-transform: uppercase;
}

h4, .h4 {
  font-size: 1.438rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
}

.caption, caption {
  font-size: 0.813rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
  color: #6A6A6A;
}

.subheader {
  font-size: 1.313rem;
  font-family: "Poppins-SemiBold", sans-serif;
  color: #1A1B1B;
}

.color-white {
  color: white;
}

.text-bold {
  font-weight: bold;
}

body, html {
  color: #133239;
  font-family: "Poppins", sans-serif;
  font-size: 0.938rem;
}

main {
  margin-top: 5.5rem;
}
@media screen and (max-width: 500px) {
  main {
    margin-top: 0;
  }
}

.hidden {
  display: none;
}

a {
  text-decoration: underline;
}
a.btn {
  text-decoration: none;
}

.box-shadow {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.0588235294);
}
.box-shadow-side {
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.0588235294);
}
.box-shadow-top {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.0588235294);
}

.box-rounded {
  border-radius: 6px;
}

.bg-white {
  background: #fff;
}
.bg-bluegrey {
  background: #F7FDFD;
}
.bg-bluegrey-before {
  position: relative;
}
.bg-bluegrey-before:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #F7FDFD;
  z-index: -1;
}
.bg-blue-light {
  background: #38BDFC;
}
.bg-grey {
  background: #9FADAF;
}
.bg-red {
  background: #DB376E;
}

.min-height-7rem {
  min-height: 7rem;
}
.min-height-20rem {
  min-height: 20rem;
}
.min-height-25rem {
  min-height: 25rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.squared-icon {
  width: 30px;
  height: 30px;
  border-radius: 0;
  padding: 5px;
  border: 2px solid #DB376E;
  color: #DB376E;
  font-size: 20px;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  line-height: 19px !important;
}

.loading {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  align-content: center;
  justify-content: center;
  align-items: center;
}
.loading.active {
  z-index: 1000;
  display: flex;
}

.cursor-pointer {
  cursor: pointer;
}

.links-list li a {
  color: #9FAFB2;
  font-size: 23px;
}
.links-list li *, .links-list li *::before, .links-list li *::after {
  box-sizing: content-box !important;
}
@media (min-width: 992px) {
  .links-list li *, .links-list li *::before, .links-list li *::after {
    box-sizing: border-box;
  }
}
.links-list li.active a {
  color: #133239;
  text-decoration: none;
}
.links-list li.active a *, .links-list li.active a *::before, .links-list li.active a *::after {
  box-sizing: content-box !important;
}
@media (min-width: 992px) {
  .links-list li.active a *, .links-list li.active a *::before, .links-list li.active a *::after {
    box-sizing: border-box;
  }
}

.overflow-ellipsis {
  text-overflow: ellipsis;
}

.edquip-background {
  background-image: url("/static/images/form-background.png") !important;
  background-repeat: no-repeat !important;
  background-position: bottom right !important;
}
.edquip-background-dark {
  background-image: url("/static/images/edquip-background-dark.png") !important;
  background-repeat: no-repeat !important;
  background-position: bottom right !important;
  background-size: 35% !important;
}

#vendorCarousel .carousel-item {
  display: none;
  flex-direction: row;
  align-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: center;
}
#vendorCarousel .carousel-item.active {
  display: flex;
}
#vendorCarousel .carousel-item picture {
  width: 33%;
  height: 400px;
}
#vendorCarousel .carousel-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#vendorCarousel .carousel-control-prev-icon,
#vendorCarousel .carousel-control-next-icon {
  background-size: 33% 33%;
  background-color: #fff;
  border-radius: 50%;
  padding: 2rem;
}
#vendorCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='7.6581302' height='14.695' viewBox='0 0 7.6581303 14.695' version='1.1' id='svg832' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs836' /%3E%3Cpath id='Path_1523' data-name='Path 1523' d='m 6.6581302,1 -5.35,6.627 5.35,6.068' fill='none' stroke='%23162d8e' stroke-linecap='round' stroke-width='2' /%3E%3C/svg%3E%0A");
}
#vendorCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='7.6581302' height='14.695' viewBox='0 0 7.6581303 14.695' version='1.1' id='svg832' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs836' /%3E%3Cpath id='Path_1523' data-name='Path 1523' d='M 1,13.695 6.35,7.068 1,1' fill='none' stroke='%23162d8e' stroke-linecap='round' stroke-width='2' /%3E%3C/svg%3E%0A");
}

@media (max-width: 768px) {
  .overflow-scroll-grid {
    overflow-x: scroll !important;
  }
}

@media screen and (min-width: 500px) {
  .top-sm-50 {
    top: 50% !important;
  }
}

@media screen and (min-width: 500px) {
  .start-sm-50 {
    left: 50% !important;
  }
}

@media screen and (min-width: 500px) {
  .translate-sm-middle {
    transform: translate(-50%, -50%);
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.overlay .wide-modal {
  width: auto;
  max-width: 1024px;
  margin: 10rem auto;
}
.overlay .wide-modal .fa-close {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 2rem;
  color: #133239;
  cursor: pointer;
  width: auto;
}
.overlay .wide-modal .fa-close:hover {
  color: #DB376E;
}

.login-form .login-link, .login-form .register-link {
  top: 3.5rem;
  right: 8rem;
}

/*# sourceMappingURL=edquip.css.map */
