* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "foco";
  font-style: normal;
  font-weight: normal;
  src: local("foco"), url("../foco/foco.woff") format("woff");
}

@font-face {
  font-family: "foco Bold";
  font-style: normal;
  font-weight: normal;
  src: local("foco Bold"), url("../foco/focobold.woff") format("woff");
}

:root {
  --font-family: "foco", sans-serif;
  --dark-text: #fff;
  --dark-bg: linear-gradient(to right, #000, #333);
  --primary-text: #222122;
  --primary-bg: #fff;
  --secondary-text: #fff;
  --secondary-bg: #d2162e;
  --tertiary-text: #222;
  --tertiary-bg: #ff9c70;
  --anchor-default: #fff;
  --grey-color: #f3f3f3;
  --grey-text: #222;
  --grey-bg: #e6e6e6;
  --white-text: #222;
  --white-bg: #fff;
  --off-white-bg: linear-gradient(to right, #f8f8f6, #f7f7f7);
  --substitute-bg: #690000;
  --substitute-text: #fff;
  --accent-bg: #d2162e;
  --accent-text: #2e0725;
  --off-accent-bg: #dadada;
  --off-accent-text: #344;
  --btn-action: #2a5af2;
  --btn-action-color: #fff;
  --trans-white-bg: linear-gradient(to right,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.61));
  --trans-dark-bg: linear-gradient(to right,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.61));
  --trans-dark-text: #fff;
  --fade-out-top-bg: linear-gradient(rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15) 36.97%,
      rgba(0, 0, 0, 0) 61.18%);
  --gradient-dark-trans-bg: linear-gradient(to top,
      rgb(0, 0, 0) 0.6%,
      rgb(0, 0, 0) 0.6%,
      rgba(0, 0, 0, 0));
  --gradient-dark-trans-text: #fff;
  --green-trans-gradient-bg: linear-gradient(75deg,
      #132103 12.61%,
      rgba(7, 12, 2, 0.28) 27.73%,
      rgba(0, 0, 0, 0) 42.86%);
  --green-trans-gradient-text: #fff;
  --green-trans-faded-top: linear-gradient(151deg,
      #0a3802 15.97%,
      rgba(7, 145, 9, 0) 63.45%);

  --green-trans-faded-top-text: #fff;
  --radius: 45rem;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white-bg);
  font-family: var(--font-family);
  color: var(--white-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  width: 100%;
  font-weight: 300;
  line-height: 1.2;
  overflow-x: hidden;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.primary,
div.primary,
section.primary,
a.primary,
span.primary {
  background: var(--primary-bg);
  color: var(--primary-text);
}

.primary a:hover {
  color: var(--primary-text);
}

.secondary,
div.secondary,
section.secondary,
a.secondary,
span.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
}

.secondary a:hover {
  color: var(--secondary-text);
  font-weight: bold;
}

.secondary-color,
p.secondary-color,
div.secondary-color,
section.secondary-color,
a.secondary-color,
span.secondary-color {
  color: var(--secondary-bg);
}

.tertiary,
div.tertiary,
section.tertiary,
a.tertiary,
span.tertiary {
  background: var(--tertiary-bg);
  color: var(--tertiary-text);
}

.tertiary-color,
p.tertiary-color,
div.tertiary-color,
section.tertiary-color,
a.tertiary-color,
span.tertiary-color {
  color: var(--tertiary-bg);
}

.substitute,
div.substitute,
section.substitute,
a.substitute,
span.substitute {
  background: var(--substitute-bg);
  color: var(--substitute-text);
}

.substitute-color,
p.substitute-color,
div.substitute-color,
section.substitute-color,
a.substitute-color,
span.substitute-color {
  color: var(--substitute-bg);
}

.accent,
div.accent,
section.accent,
a.accent,
span.accent {
  background: var(--accent-bg);
  color: var(--accent-text);
}

.accent-color,
p.accent-color,
div.accent-color,
section.accent-color,
a.accent-color,
span.accent-color {
  color: var(--accent-bg);
}

.off-accent,
div.off-accent,
section.off-accent,
a.off-accent,
span.off-accent {
  background: var(--off-accent-bg);
  color: var(--off-accent-text);
}

.off-white,
div.off-white,
section.off-white,
a.off-white,
span.off-white {
  background: var(--off-white-bg);
  color: var(--off-white-text);
}

.off-accent-color,
p.off-accent-color,
div.off-accent-color,
section.off-accent-color,
a.off-accent-color,
span.off-accent-color {
  color: var(--off-accent-bg);
}

.grey,
div.grey,
section.grey,
a.grey,
span.grey {
  background: var(--grey-bg);
  color: var(--grey-text);
}

.grey-color,
p.grey-color,
div.grey-color,
section.grey-color,
a.grey-color,
span.grey-color {
  color: var(--grey-bg);
}

.accent-color,
p.accent-color,
div.accent-color,
section.accent-color,
a.accent-color,
span.accent-color {
  color: var(--accent-bg);
}

.dark,
div.dark,
section.dark,
a.dark,
span.dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.dark-color,
p.dark-color,
div.dark-color,
section.dark-color,
a.dark-color,
span.dark-color {
  color: var(--dark-bg);
}

.trans-bg,
div.trans-bg,
section.trans-bg,
a.trans-bg,
span.trans-bg {
  background: var(--trans-dark-bg);
  color: var(--trans-dark-text);
}

.hoverDark {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.hoverDark:hover,
div.hoverDark:hover,
a.hoverDark:hover,
div a.hoverDark:hover {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.hoverDark:hover a,
div.hoverDark:hover a {
  color: var(--dark-text);
}

.trans-blur,
div.trans-blur,
section.trans-blur,
a.trans-blur,
span.trans-blur {
  background: var(--trans-dark-bg);
  color: var(--trans-dark-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gradient-dark-trans,
div.gradient-dark-trans,
section.gradient-dark-trans,
a.gradient-dark-trans,
span.gradient-dark-trans {
  background: var(--gradient-dark-trans-bg);
  color: var(--gradient-dark-trans-text);
}

.radius {
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.actionBtn,
.link,
.toggleUI {
  cursor: pointer;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

img.logoBrand {
  width: auto;
  height: 100px;
  display: flex;
  flex: 0 0 auto;
  max-width: none;
  margin: 0 auto;
}

img.thumbnail {
  height: 230px;
  width: auto;
  display: flex;
  flex: 0 0 auto;
}

p {
  font-weight: normal;
  line-height: 1.5;
}

section {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}

section.page-content {
  position: relative;
  margin-top: 10vh;
}

.primary a.cta.btn,
section.primary a.cta.btn,
div.primary a.cta.btn {
  color: var(--primary-text);
}

.primary a.cta.btn i.bi,
section.primary a.cta.btn i.bi,
div.primary a.cta.btn i.bi {
  color: var(--primary-text);
  background: var(--accent-bg);
}

.off-accent a.cta.btn,
section.off-accent a.cta.btn,
div.off-accent a.cta.btn {
  color: var(--off-accent-text);
}

.off-accent a.cta.btn i.bi,
section.off-accent a.cta.btn i.bi,
div.off-accent a.cta.btn i.bi {
  color: var(--dark-text);
  background: var(--dark-bg);
}

a.cta.btn.border,
.primary a.cta.btn.border {
  padding: 7px 22px;
  border-radius: var(--radius);
  color: inherit;
}

a.cta.btn.secondary,
section a.cta.btn.secondary,
div a.cta.btn.secondary,
.primary a.cta.btn.secondary,
section.primary a.cta.btn.secondary,
div.primary a.cta.btn.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
  padding: 5px 20px;
  line-height: 3;
  font-weight: 600;
  border-radius: var(--radius);
}

a.cta.btn.grey,
section a.cta.btn.grey,
div a.cta.btn.grey,
.primary a.cta.btn.grey,
section.primary a.cta.btn.grey,
div.primary a.cta.btn.grey {
  background: var(--grey-bg);
  color: var(--grey-text);
  padding: 5px 20px;
  line-height: 3;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid #ccc;
}

.row,
div.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--tertiary-bg);
}

.rounded,
div.rounded {
  border-radius: var(--radius);
}

.container,
div.container,
section .container,
footer .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: none;
  flex-direction: column;
  padding: 0;
}

.fit-content,
div.fit-content,
section.fit-content {
  height: fit-content;
  height: -webkit-fit-content;
}

.accordion-button:not(.collapsed) {
  color: var(--tertiary-bg);
  background-color: transparent;
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 1.25rem;
  padding-bottom: 30px;
  font-size: 1rem;
  line-height: 1.4;
}

.accordion-button {
  padding: 0%;
  height: 4rem;
}

.accordion-button::after {
  background-color: none;
  padding: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
  background-position: center;
  border-radius: var(--radius);
}

.accordion-button:not(.collapsed)::after {
  background-color: #eee;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  background: var(--fade-out-top-bg);
  z-index: 9999;
  position: fixed;
  box-shadow: 0px 4px 15px 6px rgba(0, 0, 0, 0.125);
}

header div.logo_app {
  width: 120px;
  height: 120px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--white-bg);
  margin: 0;
  position: relative;
  margin-left: 5%;
}

header img.logo_app,
header div.logo_app img.logo_app {
  width: 50px;
  height: auto;
  display: flex;
  flex: 0 0 auto;
  margin: 0.5rem 0;
}

header nav ul,
header nav ul li {
  display: flex;
  flex: 0 0 auto;
}

header nav ul li {
  padding: 10px 20px;
  color: var(--white-bg);
}

header nav ul li i.menu,
header nav ul li i.menuMbl {
  font-size: 45px;
  color: inherit;
  cursor: pointer;
}

header nav ul li:last-child {
  padding: 0;
  margin-left: 30px;
  margin-right: 50px;
}

header nav li a {
  color: var(--white-bg);
  line-height: 2.3;
  font-weight: 600;
  font-size: 18px;
}

header nav li a:hover {
  color: var(--accent-bg);
}

.carousel-indicators {
  margin-bottom: -50px;
}

span.guinea-ui__customControl {
  background: var(--accent-bg);
  color: var(--primary-text);
  line-height: 32px;
  border-radius: var(--radius);
  opacity: 1 !important;
}

button.guinea-ui__customControl {
  opacity: 1;
}

section.hero-banner {
  margin: 0;
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  height: 680px;
  overflow: hidden;
  z-index: 0;
  position: relative;
}

section.hero-banner .carousel,
section.hero-banner .carousel .carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
}

section.hero-banner .carousel .carousel-item {
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
}

section.hero-banner .carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--green-trans-gradient-bg);
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: left;
  font-style: italic;
  font-size: 20px;
}

section.hero-banner .carousel .carousel-caption h1,
section.hero-banner .carousel .carousel-caption h3,
section.hero-banner .carousel .carousel-caption h3,
section.hero-banner .carousel .carousel-caption h4,
section.hero-banner .carousel .carousel-caption h5,
section.hero-banner .carousel .carousel-caption h6 {
  font-weight: 800;
  text-transform: capitalize;
  font-style: italic;
  line-height: 1;
}

section.hero-banner .carousel .carousel-caption h1 span,
section.hero-banner .carousel .carousel-caption h2 span,
section.hero-banner .carousel .carousel-caption h3 span,
section.hero-banner .carousel .carousel-caption h4 span,
section.hero-banner .carousel .carousel-caption h5 span,
section.hero-banner .carousel .carousel-caption h6 span {
  color: var(--accent-bg);
}

section.hero-banner .carousel .carousel-caption h1 {
  font-size: 6rem;
}

section.hero-banner .carousel .carousel-caption h2 {
  font-size: 5rem;
}

section.hero-banner .carousel .carousel-caption h3 {
  font-size: 4rem;
}

section.hero-banner .carousel .carousel-caption h4 {
  font-size: 3rem;
}

section.hero-banner .carousel .carousel-caption h5 {
  font-size: 2rem;
}

section.hero-banner .carousel .carousel-caption h6 {
  font-size: 1rem;
}

a.cta.btn,
section.hero-banner .carousel .carousel-caption a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-bg);
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  width: fit-content;
  margin: 0;
  align-items: center;
  padding: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.cta.btn i.bi,
section.hero-banner .carousel .carousel-caption a i.bi {
  color: var(--primary-text);
  background: var(--white-bg);
  border-radius: var(--radius);
  width: 42px;
  line-height: 42px;
  margin-left: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.cta.btn:hover i.bi,
section.hero-banner .carousel .carousel-caption a:hover i.bi {
  background: var(--accent-bg);
}

section.hero-banner .carousel-indicators {
  justify-content: flex-start;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 120px;
}

section.hero-banner .carousel-indicators [data-bs-target] {
  width: 25px;
  height: 25px;
  border-radius: var(--radius);
  background-color: #ffffff;
}

section.hero-banner .carousel-indicators .active {
  background-color: #ff1;
}

section.hero-banner .carousel-indicators .active::after {
  width: 30px;
  height: 30px;
  content: "";
  background: transparent;
  border: 3px solid;
}

.carousel-control-next,
.carousel-control-prev {
  width: 5%;
  z-index: 100;
}

section.hero-banner .carousel-control-next-icon,
section.hero-banner .carousel-control-prev-icon {
  width: 5rem;
  height: 5rem;
}

section.hero-banner div.cta-hero-box {
  position: absolute;
  justify-self: flex-end;
  align-self: flex-end;
  left: auto;
  right: 0;
  z-index: 1;
}

.hoverScale:hover img.hoverScale,
div.hoverScale:hover img.hoverScale {
  transform: scale(1.12, 1.12);
  -webkit-transform: scale(1.12, 1.12);
  -o-transform: scale(1.12, 1.12);
  -ms-transform: scale(1.12, 1.12);
}

footer,
footer p {
  font-size: 15px;
  line-height: 1.2;
  margin: 0;
}

.alt-content {
  position: absolute;
}

.alt-base {
  position: relative;
}

.alt-base img {
  width: 100%;
}

.form-login-icon,
i.bi.form-login-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  font-size: 100px;
  padding: 10px;
}

.form-control,
form .form-control {
  background: transparent;
  background-color: transparent;
  height: 45px;
  margin: 0.25rem 0;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid;
  border-radius: var(--radius);
  color: inherit;
}

form input.form-control::placeholder {
  color: inherit;
  opacity: 0.75;
  font-weight: 300;
}

form .tab-page input.form-control {
  color: inherit;
}

form .tab-page input.form-control::placeholder {
  color: inherit;
}

.form-control:focus,
form .form-control:focus {
  color: inherit;
  background-color: transparent;
  border-color: var(--dark-bg);
  outline: 0;
  box-shadow: none;
}

.form-control.prodQty {
  width: 60px;
  background: var(--primary-bg);
  margin-right: 10px;
}

/* height controls for containers */

.h-1,
div.h-1,
section.h-1,
span.h-1,
img.h-1 {
  height: 100px;
}

.h-15,
div.h-15,
section.h-15,
span.h-15,
img.h-15 {
  height: 150px;
}

.h-2,
div.h-2,
section.h-2,
span.h-2,
img.h-2 {
  height: 200px;
}

.h-25,
div.h-25,
section.h-25,
span.h-25,
img.h-25 {
  height: 250px;
}

.h-3,
div.h-3,
section.h-3,
span.h-3,
img.h-3 {
  height: 300px;
}

.h-35,
div.h-35,
section.h-35,
span.h-35,
img.h-35 {
  height: 350px;
}

.h-4,
div.h-4,
section.h-4,
span.h-4,
img.h-4 {
  height: 400px;
}

.h-45,
div.h-45,
section.h-45,
span.h-45,
img.h-45 {
  height: 450px;
}

.h-5,
div.h-5,
section.h-5,
span.h-5,
img.h-5 {
  height: 500px;
}

.h-55,
div.h-55,
section.h-55,
span.h-55,
img.h-55 {
  height: 550px;
}

.h-6,
div.h-6,
section.h-6,
span.h-6,
img.h-6 {
  height: 600px;
}

.h-65,
div.h-65,
section.h-65,
span.h-65,
img.h-65 {
  height: 650px;
}

.h-7,
div.h-7,
section.h-7,
span.h-7,
img.h-7 {
  height: 700px;
}

.job_details *,
div.job_details * {
  text-decoration: none;
}

.job_details h1,
.job_details h2,
.job_details h3,
.job_details h4,
.job_details h5,
.job_details h6,
.job_details .h1,
.job_details .h2,
.job_details .h3,
.job_details .h4,
.job_details .h5,
.job_details .h6,
div.job_details h1,
div.job_details h2,
div.job_details h3,
div.job_details h4,
div.job_details h5,
div.job_details h6,
div.job_details .h1,
div.job_details .h2,
div.job_details .h3,
div.job_details .h4,
div.job_details .h5,
div.job_details .h6 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.job_details ul,
div.job_details ul,
.job_details ul li,
div.job_details ul li {
  list-style: lower-roman;
  margin-left: 15px;
}

.job_details ul,
div.job_details ul {
  margin-bottom: 1rem;
}

.showMobile {
  display: none;
}

.social_corner,
div.social_corner,
span.social_corner {
  position: fixed;
  padding: 2.3rem;
  z-index: 9999;
  background: transparent;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  right: 0;
  bottom: 0;
}

.social_corner a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-bg);
  color: var(--accent-text);
  border-radius: 120px;
  margin-bottom: 10px;
}

.social_corner a i.bi {
  color: inherit;
}

.menuMbl {
  display: none !important;
}

.menu {
  display: flex !important;
}

#mainframe,
section#mainframe {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex: 0 0 auto;
  padding: 0;
  padding-top: 30px;
}

.leftBar,
#mainframe .leftBar,
section#mainframe .leftBar {
  width: 18%;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0.5rem;
  font-size: 1rem;
  margin: 0;
  padding-top: 1rem;
  min-height: 600px;
}

.leftBar i.actionBtn {
  font-size: 18px;
  font-weight: 600;
}

.rigthBar,
#mainframe .rigthBar,
section#mainframe .rigthBar {
  width: 35%;
  border-radius: 3rem;
  height: 80vh;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0.5rem;
}

.ui-basket,
#mainframe .ui-basket,
section#mainframe .ui-basket {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: wrap;
  flex: 0 0 auto !important;
  justify-content: start !important;
  margin: 0;
  min-height: 600px;
  overflow: auto;
  padding: 1.8rem;
  color: inherit;
}

.ui-basket,
.ui-basket.maxRange {
  width: 82%;
}

.ui-basket.minRange {
  width: 50%;
  margin-right: 2%;
}

.ui-basket div.tab-page {
  display: none;
  flex: 0 0 auto;
  flex-wrap: wrap;
  padding: 2.3rem 2rem;
  background: var(--primary-bg);
  border-radius: var(--radius);
  color: var(--primary-text);
  margin: 1rem 0;
}

.ui-basket div.tab-page.active {
  display: flex;
}

.ui-basket button {
  height: 45px;
  padding: 0 1rem;
  margin: 0.45rem 0.1rem;
  border-radius: var(--radius);
  background: var(--tertiary-bg);
  color: var(--tertiary-text);
  font-weight: 500;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  font-size: 1rem;
  border: none;
  font-family: "foco bold";
}

.btn-danger,
.ui-basket button.btn-danger {
  color: #fff;
  background-color: var(--accent-bg);
  border-color: var(--accent-bg);
}

.btn-primary:hover,
.ui-basket .btn-primary:hover,
.ui-basket button:hover {
  color: var(--dark-text);
  background-color: var(--dark-bg);
  background: var(--dark-bg);
  border-color: none;
}

.ui-basket button i.bi {
  display: flex;
  flex: 0 0 auto;
  line-height: 2rem;
  margin: 0 auto;
  position: relative;
}

.ui-basket div.form-group {
  padding: 0.5rem;
  position: relative;
}

.ui-basket table form div.form-group {
  padding: 0;
}

.ui-basket form label {
  color: inherit;
  font-weight: 500;
  font-size: 14px;
}

.ui-basket .tooltip {
  display: flex;
  z-index: 9999;
  color: red;
  position: absolute;
  right: 0;
  font-size: 13px;
  opacity: 1;
  margin: 0 0.5rem;
}

.ui-basket li a.tabin {
  margin-right: 1rem;
  font-weight: 600;
}

.dataTables_wrapper,
div.dataTables_wrapper {
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.dataTables_wrapper .dataTables_filter {
  margin-right: 1px;
}

.dataTables_wrapper .dataTables_filter label {
  font-weight: 500;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: center;
}

.dataTables_wrapper .dataTables_filter label input[type="search"] {
  margin-left: 10px;
  border: none;
  background: var(--dark-bg);
  display: flex;
  flex: 0 0 auto;
  height: 40px;
  border-radius: 2rem;
  color: var(--dark-text);
  justify-content: center;
  padding: 0px 10px;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_info {
  font-weight: 500;
}

.dataTables_wrapper .dataTables_info {
  font-weight: 500;
  align-self: flex-start;
  align-content: flex-start;
  width: 50%;
}

table.dataTable {
  font-weight: normal;
  color: inherit;
  font-size: 14px;
  width: 100% !important;
  margin: 1rem 0;
  background: var(--primary-bg);
}

table.dataTable tbody tr {
  border-bottom: 1px solid var(--off-accent-bg);
}

table.dataTable tbody tr:last-child {
  border: none;
}

.dataTables_wrapper .dataTables_paginate {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.dataTables_wrapper .dataTables_paginate a {
  padding: 0px 10px;
  font-weight: 500;
}

table.dataTable>tbody>tr.child ul.dtr-details {
  width: 100%;
}

table.dataTable>tbody>tr.child ul.dtr-details li {
  display: grid;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  line-height: 1;
  padding: 0 0.8rem;
  height: 3rem;
}

thead {
  border-bottom: 2px solid rgba(254, 224, 255, 0.08);
}

th,
thead {
  height: 3.5rem;
  background: var(--off-accent-bg);
  font-family: "foco bold";
}

table tr td div form {
  width: auto;
  margin: 0;
}

div.loading,
body#app div.loading {
  display: none;
  position: absolute;
  bottom: 15px;
  height: auto;
  min-width: 250px;
  background: #121212;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 35px;
  font-size: 13px;
  text-transform: capitalize;
  box-shadow: 0 0 83px 33px rgba(0, 0, 0, 0.09);
  z-index: 999999999;
  flex: 0 0 auto;
  width: auto;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin: 0;
}

div.site-notify {
  position: fixed;
  bottom: 50px;
  background: #111;
  border-radius: 400px;
  display: none;
  flex: 0 0 auto;
  justify-self: center;
  align-self: center;
  margin: 0 auto;
  z-index: 99999999;
  justify-content: space-between;
  align-items: center;
  float: none;
  flex-direction: row;
  padding: 15px 30px;
  width: 30%;
  left: 35%;
  cursor: pointer;
}

div.site-notify .alertIcon {
  display: flex;
  flex: 0 0 auto;
  background: #333;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

div.site-notify .alertIcon i {
  color: #fff;
  font-size: 12px;
}

div.site-notify .alertUser {
  font-size: 12px;
  color: #fff;
  justify-content: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  font-weight: 600;
  align-items: center;
  text-align: left;
  padding: 0px 10px;
  width: 80%;
}

div.site-notify .alertUser p {
  margin: 0 auto;
  font-weight: 400;
}

div.site-inprogress {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  display: flex;
}

.dt-buttons,
div.dt-buttons {
  width: fit-content;
  display: flex;
}

.tox .tox-statusbar a {
  display: none;
}

/* form assets */
form.spForm input,
form.spForm select,
form.spForm textarea,
form.spForm radio {
  display: none;
}

.placeholder,
span.placeholder,
form.spForm .placeholder {
  display: flex;
  flex: 0 0 auto;
  font-weight: 500;
  color: inherit;
  background: rgba(0, 0, 0, 0.1);
  line-height: 3rem;
  padding: 0 1.2rem;
  width: 100%;
  border-radius: var(--radius);
  justify-content: space-between;
  align-items: center;
  opacity: 0.75;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  word-spacing: -2px;
  font-size: 0.85rem;
}

.placeholder i,
span.placeholder i,
form.spForm .placeholder i {
  display: flex;
  flex: 0 0 auto;
}

.placeholder:hover,
span.placeholder:hover,
form.spForm .placeholder:hover {
  opacity: 1;
}

.placeholder:hover i,
span.placeholder:hover i,
form.spForm .placeholder:hover i {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-radius: var(--radius);
}

.form-input-option,
div.form-input-option {
  width: 100%;
  line-height: 1.2rem;
  display: flex;
  background: inherit;
  color: inherit;
  border: none;
  position: relative;
}

.input-boxes,
.options,
div.options,
div.input-boxes {
  width: 300px;
  padding: 1.2rem;
  background: var(--primary-bg);
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
  margin-top: 7rem;
  border-radius: 1.2rem;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  position: absolute;
  box-shadow: 0px 2px 15px 10px rgba(0, 0, 0, 0.12);
  max-height: 45vh;
  overflow: auto;
}

.input-boxes.active,
div.input-boxes.active,
.options.active,
div.options.active {
  display: flex;
  margin-top: 3.2rem;
}

.option,
div.option,
div.options .option {
  display: flex;
  margin: 0.5rem 0;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.2rem;
  font-weight: 500;
  color: inherit;
  padding: 0;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.option:hover,
div.option:hover,
div.options .option:hover {
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  background: var(--off-white-bg);
  border-radius: var(--radius);
}

.select-options .placeholder {
  cursor: pointer;
}

form button {
  border: none;
}

/* .input-boxes.active,
div.input-boxes.active {
  margin-top: 0px;
} */

.input-boxes.active input,
div.input-boxes.active input,
form.spForm div.input-boxes.active input,
form div.input-boxes.active input {
  display: flex;
  box-shadow: none;
  border: 1px solid var(--grey-bg);
  line-height: 2.2rem;
  border-radius: var(--radius);
  padding: 0px 5px;
  font-size: 1rem;
  font-weight: 300;
}

.input-boxes.active input:focus,
.input-boxes.active input:focus-visible {
  outline-color: none;
  outline-style: auto;
  outline-width: 0px;
}

.job-box {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--primary-bg);
  color: var(--primary-text);
  width: 100%;
  border-radius: 2rem;
  padding: 0%;
  position: relative;
  margin: 0;
  min-height: 100px;
  overflow: hidden;
}

.job-box p,
div.job-box p {
  height: 10vh;
  max-height: 10vh;
  overflow: hidden;
  background: inherit;
  font-size: 0.9rem;
  line-height: 18px;
}

.job-box h6,
div.job-box h6,
.job-box span,
div.job-box span {
  font-size: 0.785rem;
}

.sml-component {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--primary-bg);
  color: var(--primary-text);
  width: 100%;
  border-radius: 2rem;
  padding: 0%;
  position: relative;
  margin: 0;
  height: 50vh;
  overflow: hidden;
}

.sml-component form {
  justify-content: end;
  align-self: end;
  display: flex;
  flex: 0 0 auto;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

hr,
.primary hr {
  display: flex;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid;
  border-radius: 3rem;
  line-height: 2.5;
  padding: 0 1.2rem;
}

.btn:hover,
a.btn:hover,
button.btn:hover {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.btn.btn-action {
  background: var(--btn-action);
  color: var(--btn-action-color);
  border: none;
}

.fixed-bottom,
span.fixed-bottom,
div.fixed-bottom,
a.fixed-bottom,
button.fixed-bottom {
  position: absolute;
  bottom: 5%;
  width: 90% !important;
  margin: 0 5%;
  left: 0;
}

.background-clipart,
section.background-clipart {
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-blend-mode: overlay;
  background-position-y: 40%;
}

.ribbon::after {
  display: flex;
  content: "";
  border: 1.25rem solid var(--accent-bg);
  border-bottom: 1.52rem solid transparent;
  position: absolute;
  top: 0;
  left: 1.25rem;
  z-index: 0;
}

.category-box {
  display: flex;
  flex: 0 0 auto;
  border-radius: 1.2rem !important;
  width: auto;
  margin: 0.5rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: row !important;
  flex-wrap: wrap;
  padding: 1rem !important;
  border: 1px solid;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  cursor: pointer;
}

.category-box i.bi {
  background: var(--accent-bg);
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  display: flex;
  flex: 0 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--primary-bg);
  margin-right: 2rem;
}

.category-box:hover {
  background: var(--accent-bg);
  border: none;
  color: var(--primary-bg);
}

.spButton,
form .spButton,
.btn.spButton,
button.spButton {
  width: 4.2rem;
  height: 4.2rem;
  font-size: 1.25rem;
}

.search-box {
  z-index: 999;
  position: fixed;
}

.search-list-container {
  margin-top: 25vh;
  position: relative;
}

.search-list-container .main-list {
  display: flex;
  flex: 0 0 auto;
  width: 75%;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.search-list-container .data-feed {
  display: flex;
  width: 40%;
  flex: 0 0 auto;
  margin: 0;
  padding: 2rem;
  position: fixed;
  height: 75vh;
  overflow: auto;
  flex-direction: column;
  right: -40%;
  border-left: 1px solid var(--grey-bg);
  background: var(--primary-bg);
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  top: 25%;
}

.search-list-container.feed-active .main-list {
  width: 60%;
}

.search-list-container.feed-active .data-feed {
  right: 0%;
}

.rounded {
  border-radius: 2.25rem !important;
}

.clsBtn,
i.clsBtn,
a.clsBtn,
button.clsBtn {
  display: flex;
  flex: 0 0 auto;
  position: fixed;
  margin: 0;
  margin-top: -25px;
  background: var(--primary-bg);
  z-index: 9999;
  right: 2%;
  font-size: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.125);
  padding: 0.45rem;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.clsBtn:hover {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.revealPassCont,
span.revealPassCont {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  width: 15%;
  padding-top: 3vh;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  display: none;
  margin: 0;
  flex: 0 0 auto;
  justify-content: center;
  align-items: start;
  padding: 0;
}

.modalBackground {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 0;
  background: var(--trans-dark-bg);
  display: flex;
  flex: 0 0 auto;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.modalContainer {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: flex-start;
  z-index: 100;
}

.modalContainer div:first-child {
  display: flex;
  flex-direction: column;
  background: var(--primary-bg);
  color: var(--primary-text);
  border-radius: 2rem;
  padding: 2rem;
  margin: 0;
}

.modal.active {
  display: flex;
}

.modal.active .modalBackground {
  opacity: 1;
}

.pricingBox {
  min-height: 65vh;
}

.menu-box,
div.menu-box {
  top: 0;
  right: -100%;
  background: var(--trans-dark-bg);
  color: var(--primary-text);
  z-index: 9999;
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
  overflow: auto;
  padding: 0;
  margin: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.menu-box .menu-container,
div.menu-box div.menu-container {
  height: 100vh !important;
  position: fixed;
  overflow: auto;
}

.menu-box.active,
div.menu-box.active {
  right: 0;
}

.blogThumbnails,
div.blogThumbnails {
  height: 70vh;
  overflow: hidden;
  flex-direction: column;
}

.blogThumbnails .thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blogThumbnails .thumbnail img {
  display: flex !important;
  flex: 0 0 auto;
  height: 100%;
  margin: auto;
  width: auto;
}

/* responsive style */

@media (max-width: 1160px) {
  section.hero-banner .carousel .carousel-caption h3 {
    font-size: 3.2rem;
  }
}

@media (max-width: 1080px) {
  section.hero-banner div.cta-hero-box {
    display: none !important;
  }

  section.hero-banner {
    height: auto;
  }

  section.hero-banner .carousel .carousel-item img {
    position: relative;
    z-index: 0;
  }

  section.hero-banner .carousel .carousel-caption {
    background: var(--secondary-bg);
    position: relative;
    height: -webkit-fit-content;
    padding: 3rem;
    z-index: 999;
  }

  section.hero-banner .carousel .carousel-caption h3 {
    font-size: 2rem;
  }

  .guinea-ui__overflowKit {
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .guinea-ui__overflowKit img {
    position: relative;
  }

  .guinea-ui__KitElems {
    margin-right: 0%;
  }

  header div.logo {
    margin-left: 5%;
  }

  .hideMobile {
    display: none;
  }

  .showMobile {
    display: flex;
  }

  div.site-notify {
    width: 60%;
    left: 20%;
  }

  .search-list-container .main-list {
    width: 100%;
  }

  /* .search-list-container {
    margin-top: 32vh;
  } */
}

@media (max-width: 680px) {
  :root {
    --radius: 2rem;
  }

  section.hero-banner .carousel-indicators {
    justify-content: center;
    margin: 0 auto;
  }

  .social_corner,
  div.social_corner,
  span.social_corner {
    padding: 0.3rem;
  }

  section.hero-banner .carousel .carousel-item {
    justify-content: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-content: center;
  }

  section.hero-banner .carousel .carousel-item img {
    display: flex !important;
    width: auto !important;
    height: 360px;
    position: relative;
    justify-self: flex-start;
    align-self: center;
    flex: 0 0 auto;
  }

  .p-5 {
    padding: 1.125rem !important;
  }

  header div.logo {
    width: 80px;
    height: 80px;
  }

  header div.logo img.logo {
    width: 70px;
  }

  header nav ul li:last-child {
    margin-right: 25px;
  }

  .carousel .carousel-caption h3 {
    font-size: 1.5rem;
  }

  .h4,
  h4 {
    font-size: calc(1rem + 0.3vw);
  }

  .h5,
  h5 {
    font-size: 1.12rem;
  }

  section.hero-banner .carousel .carousel-caption {
    font-size: 16px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    display: none;
  }

  .h-xs-auto {
    height: auto !important;
  }

  .alt-base {
    position: absolute !important;
    height: 100%;
    justify-content: center;
  }

  .alt-base img {
    width: auto !important;
    height: 100%;
    display: flex;
    flex: 1 1;
    align-self: center;
    margin: 0 auto;
  }

  .alt-content {
    position: relative !important;
  }

  .menuMbl {
    display: flex !important;
  }

  .menu {
    display: none !important;
  }

  .leftBar a.actionBtn {
    display: none !important;
  }

  .leftBar a.actionBtn {
    margin: auto;
  }

  .leftBar div.rounded.actionBtn {
    padding: 8px !important;
  }

  .search-list-container.feed-active .main-list {
    width: 100%;
  }

  .search-list-container.feed-active .data-feed {
    right: 0%;
    width: 100%;
  }

  .spButton,
  form .spButton,
  .btn.spButton,
  button.spButton {
    position: relative;
    right: auto;
    height: 3rem;
    width: 3rem;
    font-size: 1rem;
  }

  .input-boxes,
  .options,
  div.options,
  div.input-boxes {
    width: 98%;
  }

  form.spForm button {
    position: absolute;
    right: 6%;
  }

  .background-clipart,
  section.background-clipart {
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-size: 200%;
    background-blend-mode: overlay;
    background-position-y: 100%;
    background-position-x: 50%;
  }
}

@media (max-width: 380px) {
  .search-list-container .data-feed {
    top: 32%;
  }

  .job-box span.justify-content-end {
    justify-content: flex-start !important;
  }

  .job-box form {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .job-box form button {
    width: 100% !important;
  }
}

@media print {
  iframe {
    display: block !important;
  }

  header {
    display: none !important;
  }

  .leftBar,
  .no-print {
    display: none !important;
  }
}