/* Colors */ /*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
  background-color: transparent;
}
.hamburger.is-active:hover {
  opacity: 1;
  background-color: transparent;
}
.hamburger.is-active .hamburger-inner {
  background-color: #333333;
}
.hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color: #333333;
}

.hamburger-box {
  width: 24px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  box-shadow: none;
}
.hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  box-shadow: none;
}

.pin .hamburger-inner {
  background-color: #333333;
}
.pin .hamburger-inner::before, .pin .hamburger-inner::after {
  background-color: #333333;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6.5px;
}
.hamburger-inner::after {
  bottom: -4px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner {
  transition-property: none;
}
.hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/** =============================================================== **/
/** HTML Main CSS **/
/** =============================================================== **/
html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 156%;
  color: #595959;
  position: relative;
  overflow-x: hidden !important;
  background-color: #fafafa;
  letter-spacing: 0rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.using-mouse :focus {
  outline: none !important;
}
body::-webkit-scrollbar {
  width: 0.6rem;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  background-color: #a6ce39;
  outline: none;
}

.modal::-webkit-scrollbar {
  width: 0.4rem;
}
.modal::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.modal::-webkit-scrollbar-thumb {
  background-color: #dc3545;
  outline: none;
}

.modal-open header {
  /*padding-right: 0.4rem;*/
  transition: none !important;
}

:focus {
  /*outline: 1px dotted $color-red !important;
  outline-offset: 2px;*/
}

.container {
  width: 1170px;
}
@media (max-width: 1339.98px) {
  .container {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/** =============================================================== **/
/** Standard Bootstrap CSS **/
/** =============================================================== **/
a {
  transition: all 300ms ease-out;
  text-decoration: none;
  color: #a6ce39;
}
a:hover {
  text-decoration: underline;
  color: #98be2f;
}

.bg-body {
  background-color: #fafafa !important;
}

.bg-grey {
  background-color: #f3f3f3 !important;
}

.bg-copy {
  background-color: #2e2e2e !important;
}

.bg-footer {
  background-color: #454545 !important;
}

.color-footer-light {
  color: #d8d8d8 !important;
}

.color-footer {
  color: #8c8c8c !important;
}

.color-grey-hover {
  color: #dedede !important;
}

.color-grey {
  color: #333333 !important;
}

.color-blue-hover {
  color: #009bd6 !important;
}

.color-blue {
  color: #00adef !important;
}

.color-green-hover {
  color: #98be2f !important;
}

.color-green {
  color: #a6ce39 !important;
}

.color-inputs {
  color: #555555 !important;
}

.color-border {
  color: #ebebeb !important;
}

.color-black {
  color: #000000 !important;
}

.color-white {
  color: #FFFFFF !important;
}

.color-main {
  color: #595959 !important;
}

.color-red {
  color: #dc3545 !important;
}

.overflow-hidden {
  overflow-x: hidden !important;
}

button {
  border: none;
}

.image-auto {
  width: auto;
  max-width: 100%;
}

.image-full {
  width: 100%;
  max-width: 100%;
}

.font-normal {
  font-weight: 400 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-bold,
strong,
b {
  font-weight: 600 !important;
}

h1,
.h1 {
  font-size: 32px;
  line-height: 120%;
  color: #000000;
}

h2,
.h2 {
  font-size: 24px;
  line-height: 120%;
  color: #000000;
}

h3,
.h3 {
  font-size: 20px;
  line-height: 120%;
  color: #000000;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 120%;
  color: #000000;
}

h5,
.h5 {
  font-size: 16px;
  line-height: 120%;
  color: #000000;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 120%;
  color: #000000;
}

.label {
  font-size: 0.778rem; /* 14px */
  line-height: 125%;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .label {
    font-size: 1rem;
  }
}

.body {
  font-size: 0.889rem; /* 16px */
  line-height: 150%;
}
@media (max-width: 575.98px) {
  .body {
    font-size: 1rem;
  }
}

.caption {
  font-size: 0.778rem; /* 14px */
  line-height: 150%;
}
@media (max-width: 575.98px) {
  .caption {
    font-size: 1rem;
  }
}

.tiny {
  font-size: 0.667rem; /* 12px */
  line-height: 150%;
}
@media (max-width: 575.98px) {
  .tiny {
    font-size: 1rem;
  }
}

.bigger-z-index {
  position: relative;
  z-index: 50;
}

.form-check {
  font-size: 14px;
  line-height: 125%;
  font-weight: 500;
  min-height: 18px;
  padding-left: 25px;
}
.form-check .form-check-input {
  margin-left: -25px;
  margin-top: 1px;
}
.form-check .form-check-input:focus {
  margin-left: -25px;
  margin-top: 1px;
}
.form-check:hover {
  cursor: pointer;
}
.form-check:hover .form-check-input {
  background-color: #FFFFFF;
  cursor: pointer;
}

.form-check-input {
  border: 1px solid #ebebeb;
  background-color: #FFFFFF;
  margin-top: 0.05em;
  width: 18px;
  height: 18px;
  box-shadow: none;
}
.form-check-input:focus {
  border: 1px solid #ebebeb;
  background-color: #FFFFFF;
  margin-top: 0.05em;
  width: 18px;
  height: 18px;
  cursor: pointer;
  box-shadow: none;
}

.form-check-input:active {
  filter: none;
}

.form-check-label {
  font-size: 14px;
  line-height: 120%;
  color: #595959;
  margin-top: 0.05em;
}
.form-check-label:hover {
  cursor: pointer;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9902 1.99999L11.5802 0.579986L4.99023 7.16999L2.41023 4.59999L0.990234 6.00999L4.99023 9.99999L12.9902 1.99999Z' fill='%23a6ce39'/%3E%3C/svg%3E%0A");
  background-size: 12px auto;
  background-color: #FFFFFF;
  border: 1px solid #ebebeb;
}

.form-check-input:checked {
  background-color: #FFFFFF;
  border-color: #ebebeb;
}

.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23a6ce39'/%3E%3C/svg%3E");
  border: 1px solid #ebebeb;
}

.form-label {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: #454545;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .form-label {
    font-size: 14px;
  }
}

.form-text {
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
  color: #dc3545;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  height: 46px;
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control.is-valid,
.form-select.is-valid {
  border-color: #a6ce39 !important;
  padding-right: 2.5rem;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2316C767' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
  padding-right: 2.5rem;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66683 1.27334L8.72683 0.333344L5.00016 4.06001L1.2735 0.333344L0.333496 1.27334L4.06016 5.00001L0.333496 8.72668L1.2735 9.66668L5.00016 5.94001L8.72683 9.66668L9.66683 8.72668L5.94016 5.00001L9.66683 1.27334Z' fill='%23F7371B'/%3E%3C/svg%3E%0A");
  background-size: 10px auto;
  background-position: center right 12px;
}
.form-control:focus,
.form-select:focus {
  display: block;
  width: 100%;
  height: 46px;
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid #a6ce39;
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:focus.is-valid,
.form-select:focus.is-valid {
  border-color: #a6ce39 !important;
  padding-right: 2.5rem;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2316C767' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}
.form-control:focus.is-invalid,
.form-select:focus.is-invalid {
  border-color: #dc3545 !important;
  padding-right: 2.5rem;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66683 1.27334L8.72683 0.333344L5.00016 4.06001L1.2735 0.333344L0.333496 1.27334L4.06016 5.00001L0.333496 8.72668L1.2735 9.66668L5.00016 5.94001L8.72683 9.66668L9.66683 8.72668L5.94016 5.00001L9.66683 1.27334Z' fill='%23F7371B'/%3E%3C/svg%3E%0A");
  background-size: 10px auto;
  background-position: center right 12px;
}
.form-control:disabled,
.form-select:disabled {
  background-color: #333333;
  border-color: #333333;
  color: #333333;
}
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
  color: rgba(89, 89, 89, 0.3);
}
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  color: rgba(89, 89, 89, 0.3);
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: rgba(89, 89, 89, 0.3);
}
.form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder {
  color: rgba(89, 89, 89, 0.3);
}
.form-control::placeholder,
.form-select::placeholder {
  color: rgba(89, 89, 89, 0.3);
}

.form-select {
  /*color: rgba($color-main, .3);*/
  padding-right: 2.2rem;
  max-width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: right 15px center;
  /*option:first-of-type {
      display: none;
  }

  option {
      color: $color-inputs;
  }

  &.selected  {
      color: $color-inputs;
  }*/
}
.form-select:focus {
  padding-right: 2.2rem;
  max-width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: right 15px center;
}

.error-message {
  font-size: 0.85rem;
  line-height: 120%;
  color: red;
  font-weight: 400;
  margin-top: 0rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background-color: transparent !important;
}

textarea.form-control,
textarea.form-control:focus {
  height: 13rem;
}

.btn {
  padding: 12px 24px;
  font-size: 14px;
  display: inline-block;
  min-height: 46px;
  font-weight: 400;
  height: auto;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 1.42857143;
  border-color: transparent;
  border: 1px solid transparent;
  background-color: #a6ce39;
  position: relative;
  border-radius: 6px;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.06), 2px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-out;
  text-align: center;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #FFFFFF;
  background-color: #98be2f;
  border-color: transparent;
  transition: all 300ms ease-out;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.06), 2px 3px 0 rgba(0, 0, 0, 0.05);
  outline-offset: -2px;
  text-decoration: none;
}
.btn:focus {
  outline: none;
}
.btn:active, .btn.active, .btn.show {
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.12) !important;
  border-color: transparent;
  background-color: #98be2f;
  outline-offset: 0px;
  color: #FFFFFF;
}
.btn.blue {
  background-color: #00adef;
  color: #FFFFFF;
}
.btn.blue:hover, .btn.blue:focus, .btn.blue.focus {
  background-color: #009bd6;
  border-color: transparent;
}
.btn.blue:active, .btn.blue.active, .btn.blue.show {
  background-color: #009bd6;
}
.btn.grey {
  background-color: #ebebeb;
  color: #333333;
}
.btn.grey:hover, .btn.grey.focus, .btn.grey:focus {
  background-color: #dedede;
}
.btn.grey:active, .btn.grey.active, .btn.grey.show {
  background-color: #a6ce39;
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.12);
}
.btn.btn-sm {
  padding: 5px 12px;
  min-height: auto;
}
.btn.btn-sm:active, .btn.btn-sm.active, .btn.btn-sm.show {
  background-color: #a6ce39;
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.12);
}
.btn.w100 {
  width: 100px;
  max-width: 100%;
  text-align: center;
}

.page-wrapper {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  display: block;
}

/* slick slider/s */
.slick-prev {
  width: 3rem;
  height: 3rem;
  border: 1px solid #333333;
  border-radius: 50%;
  left: 0.833rem;
  transition: all 300ms ease-out;
  background-repeat: no-repeat;
  background-size: 0.667rem auto;
  background-position: center center;
  z-index: 10;
  box-shadow: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='18' viewBox='0 0 12 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.115 2.115L9 0L0 9L9 18L11.115 15.885L4.245 9L11.115 2.115Z' fill='%23BFC5D1'/%3E%3C/svg%3E%0A");
}
@media (max-width: 991.98px) {
  .slick-prev {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 0.55rem auto;
  }
}
@media (max-width: 767px) {
  .slick-prev {
    width: 1.8rem;
    height: 1.8rem;
    background-size: 0.35rem auto;
  }
}
.slick-prev::before {
  display: none;
}
.slick-prev:hover, .slick-prev:focus {
  width: 3rem;
  height: 3rem;
  border: 1px solid #333333;
  border-radius: 50%;
  left: 0.833rem;
  transition: all 300ms ease-out;
  background-repeat: no-repeat;
  background-size: 0.667rem auto;
  background-position: center center;
  z-index: 10;
  box-shadow: none;
  background-color: #333333;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='18' viewBox='0 0 12 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.115 2.115L9 0L0 9L9 18L11.115 15.885L4.245 9L11.115 2.115Z' fill='white'/%3E%3C/svg%3E%0A");
}
@media (max-width: 991.98px) {
  .slick-prev:hover, .slick-prev:focus {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 0.55rem auto;
  }
}
@media (max-width: 767px) {
  .slick-prev:hover, .slick-prev:focus {
    width: 1.8rem;
    height: 1.8rem;
    background-size: 0.35rem auto;
  }
}

.slick-next {
  width: 3rem;
  height: 3rem;
  border: 1px solid #333333;
  border-radius: 50%;
  right: 0.833rem;
  transition: all 300ms ease-out;
  background-repeat: no-repeat;
  background-size: 0.667rem auto;
  background-position: center center;
  z-index: 10;
  box-shadow: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='18' viewBox='0 0 12 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.00001 0L0.88501 2.115L7.75501 9L0.88501 15.885L3.00001 18L12 9L3.00001 0Z' fill='%23BFC5D1'/%3E%3C/svg%3E%0A");
}
@media (max-width: 991.98px) {
  .slick-next {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 0.55rem auto;
  }
}
@media (max-width: 767px) {
  .slick-next {
    width: 1.8rem;
    height: 1.8rem;
    background-size: 0.35rem auto;
  }
}
.slick-next::before {
  display: none;
}
.slick-next:hover, .slick-next:focus {
  width: 3rem;
  height: 3rem;
  border: 1px solid #333333;
  border-radius: 50%;
  right: 0.833rem;
  transition: all 300ms ease-out;
  background-repeat: no-repeat;
  background-size: 0.667rem auto;
  background-position: center center;
  z-index: 10;
  box-shadow: none;
  background-color: #333333;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='18' viewBox='0 0 12 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.885 2.115L3 0L12 9L3 18L0.885 15.885L7.755 9L0.885 2.115Z' fill='white'/%3E%3C/svg%3E%0A");
}
@media (max-width: 991.98px) {
  .slick-next:hover, .slick-next:focus {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 0.55rem auto;
  }
}
@media (max-width: 767px) {
  .slick-next:hover, .slick-next:focus {
    width: 1.8rem;
    height: 1.8rem;
    background-size: 0.35rem auto;
  }
}

.slick-slide {
  height: auto;
}

.slick-track {
  margin-left: unset;
}

.slick-dots {
  left: 0;
}
.slick-dots li {
  width: 16px;
  height: 16px;
}
.slick-dots li button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  opacity: 1;
  transition: all 300ms ease-out;
}
@media (max-width: 991.98px) {
  .slick-dots li button {
    width: 0.333rem;
    height: 0.333rem;
  }
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  border-color: #a6ce39;
  background-color: #a6ce39;
  opacity: 1;
  transition: all 300ms ease-out;
}
.slick-dots li.slick-active button {
  border-color: #a6ce39;
  background-color: #a6ce39;
  opacity: 1;
  transition: all 300ms ease-out;
}

.slick-slider.slick-dotted {
  margin-bottom: 3rem;
}
.slick-slider .slick-dots {
  bottom: -2rem;
}

.border-top {
  border-color: #ebebeb !important;
}

/** =============================================================== **/
/** Main styles **/
/** =============================================================== **/
header {
  position: relative;
  width: 100%;
}
header .header-top {
  width: 100%;
  display: block;
  position: relative;
  background-color: #2e2e2e;
  border-bottom: 5px solid #a6ce39;
  padding: 15px 0;
  font-size: 10px;
  line-height: 120%;
}
header .header-top ul .list-inline-item:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #FFFFFF;
}
header .header-top ul .list-inline-item.no {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
header .header-top ul .list-inline-item a {
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;
}
header .header-top ul .list-inline-item a.link-register {
  padding-left: 18px;
}
header .header-top ul .list-inline-item a.link-register::before {
  font-size: 13px;
  line-height: 120%;
  font-family: "FontAwesome";
  content: "\f044";
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
header .header-top ul .list-inline-item a.link-login {
  padding-left: 18px;
}
header .header-top ul .list-inline-item a.link-login::before {
  font-size: 13px;
  line-height: 120%;
  font-family: "FontAwesome";
  content: "\f023";
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
header .header-top ul .list-inline-item a.link-login.out::before {
  content: "\f090";
}
header .header-middle {
  width: 100%;
  position: relative;
  padding: 22px 0;
}
@media (max-width: 767.98px) {
  header .header-middle {
    padding: 15px 0;
    min-height: 75px;
  }
}
@media (max-width: 575.98px) {
  header .header-middle {
    min-height: 65px;
  }
}
header .header-middle .logo img {
  max-width: 270px;
  height: auto;
}
@media (max-width: 767.98px) {
  header .header-middle .logo img {
    max-width: none;
    width: auto;
    max-height: 45px;
  }
}
@media (max-width: 575.98px) {
  header .header-middle .logo img {
    max-height: 35px;
  }
}
header .navigation {
  width: 100%;
  border-top: 3px solid #f4f4f4;
}
@media (max-width: 991.98px) {
  header .navigation .container {
    padding-left: 0;
    padding-right: 0;
  }
}
header .navigation .navbar {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  header .navigation .navbar-collapse {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    width: 100%;
    background-color: #454545;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    height: calc(100vh - 125px);
  }
}
@media (max-width: 575.98px) {
  header .navigation .navbar-collapse {
    height: calc(100vh - 115px);
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar {
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
  }
}
header .navigation .navbar .hamburger,
header .navigation .navbar .hamburger:focus,
header .navigation .navbar .hamburger:active {
  position: relative;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  transform: scale(1.25);
}
@media (max-width: 767.98px) {
  header .navigation .navbar .hamburger,
header .navigation .navbar .hamburger:focus,
header .navigation .navbar .hamburger:active {
    position: absolute;
    right: 25px;
    top: -50px;
  }
}
@media (max-width: 575.98px) {
  header .navigation .navbar .hamburger,
header .navigation .navbar .hamburger:focus,
header .navigation .navbar .hamburger:active {
    top: -44px;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav {
    width: 100%;
  }
}
header .navigation .navbar .navbar-nav .nav-item {
  position: relative;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
header .navigation .navbar .navbar-nav .nav-item:first-child .nav-link {
  border-left: 1px solid #f4f4f4;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item:first-child .nav-link {
    border-left: none;
  }
}
header .navigation .navbar .navbar-nav .nav-item:hover .nav-link {
  text-decoration: none;
  color: #a6ce39;
}
header .navigation .navbar .navbar-nav .nav-item:hover .nav-link::before {
  width: 100%;
  transition: ease-out 0.3s;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 60px;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle {
  position: relative;
  padding-right: 1.111rem !important;
}
@media (max-width: 991.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle {
    padding-right: 0.95rem !important;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:focus-visible, header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:visited, header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:focus-within, header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.875 2.70312C17.2656 2.35156 17.2656 1.72656 16.9141 1.375C16.5625 0.984375 15.9375 0.984375 15.5859 1.33594L8.71094 7.89844L1.875 1.33594C1.52344 0.984375 0.898438 0.984375 0.546875 1.375C0.195312 1.72656 0.195312 2.35156 0.585938 2.70312L8.08594 9.89062C8.28125 10.0469 8.51562 10.125 8.71094 10.125C8.94531 10.125 9.17969 10.0469 9.375 9.89062L16.875 2.70312Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  border: none;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%) rotate(0deg);
  content: "";
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 13px;
  height: 9px;
  transition: all 300ms ease-out;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 45px;
    height: 45px;
    z-index: 10;
    background-color: #333333;
  }
}
@media (max-width: 767px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle {
    top: 0;
  }
}
@media (max-width: 575.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 15%;
    display: block;
    font-weight: 600;
    content: "+";
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle::after {
    display: none;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle.show::before {
  width: calc(100% - 1.111rem);
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle.show::before {
    content: "-";
    width: auto;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle.show::after {
  transition: all 300ms ease-out;
  transform: translateY(-50%) rotate(180deg);
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:hover::before {
  width: auto;
}
@media (max-width: 991.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:hover::before {
    width: auto;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-toggle:hover::after {
  transition: all 300ms ease-out;
  transform: translateY(-50%) rotate(180deg);
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu {
  /*opacity: 0;*/
  transition: ease-out 0.3s;
  /*display: block;*/
  /*visibility: hidden;*/
  margin-top: 0rem;
  min-width: 13.056rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 6px 6px;
  padding: 0;
  border: none;
  background-color: #454545;
  /*&.show {
      opacity: 1;
      visibility: visible;
  }*/
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    border-radius: 0;
    padding: 0;
    border: none;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu li {
  display: block;
  width: 100%;
  padding-bottom: 0.278rem;
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
  padding-bottom: 0;
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu li:last-child .dropdown-item {
  border-radius: 0 0 6px 6px;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu li:last-child .dropdown-item {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu li {
    border-top: 1px solid #333333;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu.show {
    display: block;
    position: static;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
  position: relative;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  width: auto;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    background-color: #FFFFFF;
    color: #a6ce39;
    padding: 12px 40px;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 125%;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #555555;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #333333 !important;
    color: #FFFFFF;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item.active {
  background-color: #555555;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item.active {
    background-color: #333333 !important;
    color: #FFFFFF;
  }
}
header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item.active:hover {
  background-color: #555555;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item.active:hover {
    background-color: #333333 !important;
    color: #FFFFFF;
  }
}
header .navigation .navbar .navbar-nav .nav-link {
  color: #454545;
  position: relative;
  padding: 19px 23px;
  border-right: 1px solid #f4f4f4;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
}
header .navigation .navbar .navbar-nav .nav-link div {
  position: absolute;
  left: 65px;
  top: 10px;
  font-size: 10px;
  line-height: 16px;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 30px;
  background-color: #454545;
  opacity: 0.7;
}
@media (max-width: 991.98px) {
  header .navigation .navbar .navbar-nav .nav-link div {
    left: 55px;
    top: 5px;
    min-width: 14px;
    height: 14px;
    font-size: 8px;
    line-height: 13px;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link div {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    left: auto;
    top: auto;
    margin-left: 5px;
    min-width: 18px;
    font-size: 10px;
    line-height: 16px;
    height: 18px;
    background-color: #FFF;
    color: #454545;
  }
}
@media (max-width: 991.98px) {
  header .navigation .navbar .navbar-nav .nav-link {
    padding: 12px 16px;
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link {
    width: 100%;
    padding: 13px 25px;
    min-height: 45px;
    border-right: none;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 120%;
  }
}
@media (max-width: 575.98px) {
  header .navigation .navbar .navbar-nav .nav-link {
    min-height: 42px;
    padding: 11px 20px;
  }
}
header .navigation .navbar .navbar-nav .nav-link::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background-color: #a6ce39;
  width: 0;
  content: "";
  transition: ease-out 0.3s;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link::before {
    display: none;
  }
}
header .navigation .navbar .navbar-nav .nav-link:hover {
  color: #a6ce39;
}
header .navigation .navbar .navbar-nav .nav-link:hover::before {
  width: 100%;
  transition: ease-out 0.3s;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link:hover {
    background-color: #FFFFFF;
    color: #a6ce39;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link:hover div {
    background-color: #454545;
    color: #FFF;
  }
}
header .navigation .navbar .navbar-nav .nav-link.active {
  color: #a6ce39;
}
header .navigation .navbar .navbar-nav .nav-link.active::before {
  width: 100%;
  transition: ease-out 0.3s;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link.active {
    background-color: #FFFFFF;
    color: #a6ce39;
  }
}
header .navigation .navbar .navbar-nav .nav-link.active:hover {
  color: #a6ce39;
}
header .navigation .navbar .navbar-nav .nav-link.active:hover::before {
  width: 100%;
  transition: ease-out 0.3s;
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link.active:hover {
    background-color: #FFFFFF;
    color: #a6ce39;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link.active:hover div {
    background-color: #454545;
    color: #FFF;
  }
}
@media (max-width: 767.98px) {
  header .navigation .navbar .navbar-nav .nav-link.active div {
    background-color: #454545;
    color: #FFF;
  }
}

.dropdown-desktop-only > .nav-link {
  padding-right: 40px !important;
  position: relative;
}

.dropdown-desktop-only > .nav-link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.8742 1.70307C17.2648 1.35151 17.2648 0.726511 16.9133 0.374949C16.5617 -0.0156763 15.9367 -0.0156763 15.5852 0.335886L8.71015 6.89839L1.87422 0.335886C1.52265 -0.0156763 0.897654 -0.0156763 0.546091 0.374949C0.194529 0.726511 0.194529 1.35151 0.585154 1.70307L8.08515 8.89057C8.28047 9.04682 8.51484 9.12495 8.71015 9.12495C8.94453 9.12495 9.1789 9.04682 9.37422 8.89057L16.8742 1.70307Z' fill='%23c1c1c1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  width: 9px;
  height: 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 300ms ease-out;
  content: "";
}

.dropdown-desktop-only:hover > .nav-link::after {
  transform: translateY(-50%) rotate(180deg);
  transition: all 300ms ease-out;
  top: 50%;
}

.dropdown-desktop-only .dropdown-menu {
  transform: translateY(-8px);
  transition: ease-out 0.3s;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 0 !important;
}
@media (max-width: 767.98px) {
  .dropdown-desktop-only .dropdown-menu {
    transform: none;
  }
}

@media (min-width: 991.98px) {
  .dropdown-desktop-only:hover .dropdown-menu {
    margin-top: 0rem !important;
    transform: translateY(0px);
    transition: ease-out 0.3s;
    opacity: 1;
    visibility: visible;
  }
}
.standard-section {
  width: 100%;
  display: block;
  position: relative;
  padding: 70px 0;
}
@media (max-width: 991.98px) {
  .standard-section {
    padding: 50px 0;
  }
}

.home-top-hire-block {
  width: 100%;
  display: block;
  position: relative;
  background: #b4b4b4 url(/images/chefs.jpg?44bfc5f57e88cc85f3a08dcf15618e83) 50% 0 no-repeat fixed;
  background-size: cover;
  position: relative;
  padding: 30px 0;
}
.home-top-hire-block .box {
  width: 100%;
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFFFFF;
  position: relative;
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.03);
}
.home-top-hire-block .box .inside {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 35px 20px;
  border-radius: 6px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .home-top-hire-block .box .inside {
    background-image: none !important;
    padding: 0px;
  }
}
.home-top-hire-block .box .inside .boxed {
  display: inline-block;
  width: 345px;
  max-width: 100%;
  padding: 30px;
  background-color: rgba(69, 69, 69, 0.95);
  border-radius: 5px;
  text-align: left;
  color: #FFFFFF;
  line-height: 155%;
}
@media (max-width: 1199.98px) {
  .home-top-hire-block .box .inside .boxed {
    text-align: center;
    padding: 20px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .home-top-hire-block .box .inside .boxed {
    width: 100%;
  }
}
.home-top-hire-block .box .inside .boxed h2 {
  font-size: 28px;
  line-height: 125%;
  color: #FFFFFF;
}
@media (max-width: 1199.98px) {
  .home-top-hire-block .box .inside .boxed h2 {
    font-size: 22px;
  }
}
.home-top-hire-block .box .inside .image {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.home-top-hire-block .box .inside .image img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.main-title {
  width: 100%;
  display: block;
  position: relative;
  overflow-x: hidden;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .main-title {
    white-space: normal;
  }
}
.main-title > span {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  padding-right: 35px;
}
@media (max-width: 575.98px) {
  .main-title > span {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.main-title > span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e0e0e0;
  content: "";
}
.main-title > span::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e0e0e0;
  content: "";
}
.main-title > span span::before {
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #e0e0e0;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
.main-title > span span::after {
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #e0e0e0;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
}

.client-box {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 5px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.03);
  transform: scale(1);
  transition: all 150ms ease-out;
}
@media (max-width: 575.98px) {
  .client-box {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.client-box:hover {
  transform: scale(1.05);
  transition: all 150ms ease-out;
}
.client-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.banner-with-image {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  position: relative;
  cursor: pointer;
  height: 310px;
}
@media (max-width: 767.98px) {
  .banner-with-image {
    background-image: none !important;
    height: auto;
  }
}

.list-with-icon-bounce {
  width: 100%;
  display: block;
  position: relative;
}
.list-with-icon-bounce .single {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-left: 95px;
  min-height: 70px;
}
.list-with-icon-bounce .single .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
}
.list-with-icon-bounce .single .icon::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.3s;
}
.list-with-icon-bounce .single .icon::after {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  bottom: -3px;
  right: -3px;
  z-index: 1;
  transition: 0.3s;
  border-radius: 50%;
  background: #a6ce39;
  transition: transform 0.2s, opacity 0.3s;
}
.list-with-icon-bounce .single .icon svg {
  width: auto;
  max-height: 30px;
  max-width: 30px;
  height: 30px;
  position: relative;
  z-index: 10;
}
.list-with-icon-bounce .single .icon svg path {
  fill: #a6ce39;
  transition: all 150ms ease-out;
}
.list-with-icon-bounce .single:last-child {
  margin-bottom: 0;
}
.list-with-icon-bounce .single:hover .icon::before {
  background-color: #a6ce39;
}
.list-with-icon-bounce .single:hover .icon::after {
  transform: scale(1.3, 1.3);
  opacity: 0;
  filter: alpha(opacity=0);
}
.list-with-icon-bounce .single:hover .icon svg path {
  fill: #FFFFFF;
}

.single-chef {
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.03);
  padding-bottom: 130px;
  transform: scale(1);
  transition: all 150ms ease-out;
}
.single-chef:hover {
  transform: scale(1.02);
  transition: all 150ms ease-out;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.03);
}
.single-chef .image-wrapper {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 100%;
}
.single-chef .image-wrapper .image {
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/images/noprofilepicture.png?90322b3c8a0b4e0e663ec5e7ba28e4fe);
  background-size: cover;
}
.single-chef .details {
  padding: 10px 5px;
  text-align: center;
  font-size: 13px;
  line-height: 125%;
  background-color: #FFFFFF;
}
.single-chef .details p:last-of-type {
  margin-bottom: 0;
}
.single-chef .bottom {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 130px;
  border-top: 1px dashed #ebebeb;
  background-color: #fafafa;
  padding: 15px;
  border-radius: 0 0 4px 4px;
  font-size: 13px;
  line-height: 125%;
}
.single-chef .bottom ul li {
  position: relative;
  width: 100%;
  display: block;
  padding-left: 20px;
  padding-bottom: 5px;
}
.single-chef .bottom ul li:last-child {
  padding-bottom: 0;
}
.single-chef .bottom ul li .icon {
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: auto;
}

.circle-flipflop {
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  border: 2px solid #a6ce39;
  background-color: #a6ce39;
  border-radius: 50%;
  overflow: hidden;
  transition: all 150ms ease-out;
}
.circle-flipflop:hover {
  background-color: #FFFFFF;
  transition: all 150ms ease-out;
}
.circle-flipflop:hover svg path {
  fill: #a6ce39;
  transition: all 150ms ease-out;
}
.circle-flipflop:hover::before {
  right: -50%;
  transition: all 150ms ease-out;
}
.circle-flipflop::before {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  content: "";
  background-color: rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 150ms ease-out;
}
.circle-flipflop .d-flex {
  position: relative;
  z-index: 10;
}
.circle-flipflop svg {
  width: auto;
  max-height: 42px;
  max-width: 42px;
  height: 42px;
}
.circle-flipflop svg path {
  fill: #FFFFFF;
  transition: all 150ms ease-out;
}

.testimonial {
  position: relative;
  background: #fff;
  border: 2px solid #a6ce39;
  border-radius: 6px;
  margin: 0 0 0 100px;
}
@media (max-width: 1199.98px) {
  .testimonial {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .testimonial {
    margin: 80px 0 0 0;
    height: auto;
  }
}
.testimonial::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: -14px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 14px solid #a6ce39;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .testimonial::before {
    top: -21px;
    left: 22px;
    transform: rotate(90deg);
  }
}
.testimonial::after {
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  left: -11px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 11px solid #fff;
  z-index: 3;
}
@media (max-width: 575.98px) {
  .testimonial::after {
    top: -16px;
    left: 23px;
    transform: rotate(90deg);
  }
}
.testimonial blockquote {
  padding: 26px 26px 26px 70px;
  margin: 0 0 25px 0;
  font-size: 14px;
  border-left: 4px solid #a6ce39;
  background: #f0f0f0;
  font-style: italic;
  position: relative;
  border-radius: 6px;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.08);
  min-height: 200px;
  background: #fff;
  border: none;
  border-radius: 6px 6px 0 0;
  margin: 0;
  box-shadow: none;
}
@media (max-width: 1199.98px) {
  .testimonial blockquote {
    min-height: 10px;
  }
}
.testimonial blockquote::before {
  color: #e0e0e0;
  display: block;
  position: absolute;
  left: 24px;
  top: 14px;
  font-size: 34px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f10e";
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.testimonial blockquote p:last-of-type {
  margin-bottom: 0;
}
.testimonial .bq-author {
  padding: 20px 20px 14px 24px;
  position: relative;
  background: #a6ce39;
  border-radius: 0 0 4px 4px;
  color: #fff;
  font-size: 12px;
  position: static;
}
.testimonial .bq-author .author-img {
  display: block;
  position: absolute;
  left: -100px;
  top: 0;
}
@media (max-width: 575.98px) {
  .testimonial .bq-author .author-img {
    left: 0;
    top: -80px;
  }
}
.testimonial .bq-author .author-img > img {
  border-radius: 50%;
  border: 3px solid #e1e1e1;
  width: 60px;
  height: 60px;
}
.testimonial .bq-author h6 {
  font-size: 13px;
  color: #454545;
  margin-bottom: 0;
}
.testimonial .bq-author .bq-author-info {
  font-size: 12px;
}

footer {
  position: relative;
  width: 100%;
  display: block;
  background-color: #454545;
  border-top: 4px solid #2e2e2e;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 120%;
}
footer .form-control {
  background-color: #2e2e2e;
  border-color: #555555;
  color: #d8d8d8;
}
footer .form-control:focus {
  background-color: #2e2e2e;
  border-color: #a6ce39;
  color: #d8d8d8;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(166, 206, 57, 0.6);
}
footer .form-control:-ms-input-placeholder {
  color: rgba(216, 216, 216, 0.3);
}
footer .form-control::-moz-placeholder {
  color: rgba(216, 216, 216, 0.3);
}
footer .form-control::placeholder {
  color: rgba(216, 216, 216, 0.3);
}
footer a {
  color: #d8d8d8;
  border-bottom: 1px solid transparent;
}
footer a:hover, footer a:focus, footer a.focus {
  color: #a6ce39;
  text-decoration: none;
  transition: all 300ms ease-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
footer h3.title {
  font-size: 16px;
  margin-bottom: 1.6em;
  text-transform: uppercase;
  color: #d8d8d8;
}
footer .footer-content {
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  footer .footer-content {
    padding: 50px 0;
  }
}
footer .footer-content .footer-links ul li {
  position: relative;
  padding: 8px 0 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
footer .footer-content .footer-links ul li::before {
  content: "\f105";
  position: absolute;
  font-family: "FontAwesome";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}
footer .footer-content .footer-links ul li a {
  color: #8c8c8c;
  border: none;
}
footer .footer-content .footer-links ul li a:hover, footer .footer-content .footer-links ul li a:focus, footer .footer-content .footer-links ul li a.focus {
  color: #a6ce39;
  text-decoration: underline;
  transition: all 300ms ease-out;
  border: none;
}
footer .copy {
  padding: 25px 0;
  position: relative;
  z-index: 10;
  width: 100%;
  display: block;
  background-color: #2e2e2e;
  font-size: 13px;
}
@media (max-width: 767.98px) {
  footer .copy {
    padding-top: 30px;
  }
}
footer .copy .social-links a {
  color: #d8d8d8;
}
footer .copy .social-links a:hover {
  color: #FFFFFF;
}
footer .back-to-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  border-radius: 50%;
  background-color: #454545;
  width: 40px;
  height: 40px;
}
footer .back-to-top::before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='14px' height='8.5px' viewBox='0 0 14 8.5' enable-background='new 0 0 14 8.5' xml:space='preserve'%3E%3Cpath d='M7.2,0.2l6.2,6.2c0.3,0.3,0.3,0.8,0,1.1l-0.7,0.7c-0.3,0.3-0.8,0.3-1.1,0l-5-4.9l-5,4.9c-0.3,0.3-0.8,0.3-1.1,0l-0.7-0.7 c-0.3-0.3-0.3-0.8,0-1.1l6.2-6.2C6.4-0.1,6.9-0.1,7.2,0.2L7.2,0.2z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  width: 14px;
  height: 8.5px;
  left: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-out;
}
footer .back-to-top:hover {
  background-color: #f3f3f3;
}
footer .back-to-top:hover::before {
  bottom: auto;
  top: 50%;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='14px' height='8.5px' viewBox='0 0 14 8.5' enable-background='new 0 0 14 8.5' xml:space='preserve'%3E%3Cpath d='M7.2,0.2l6.2,6.2c0.3,0.3,0.3,0.8,0,1.1l-0.7,0.7c-0.3,0.3-0.8,0.3-1.1,0l-5-4.9l-5,4.9c-0.3,0.3-0.8,0.3-1.1,0l-0.7-0.7 c-0.3-0.3-0.3-0.8,0-1.1l6.2-6.2C6.4-0.1,6.9-0.1,7.2,0.2L7.2,0.2z' fill='%23454545'/%3E%3C/svg%3E");
  transition: all 300ms ease-out;
}

.social-links {
  display: inline-block;
  position: relative;
}
.social-links a {
  display: inline-block;
  font-size: 18px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  color: #454545;
  background-color: transparent;
  transition: 0.2s;
}
.social-links a .fa {
  display: inline-block;
  vertical-align: middle;
}
.social-links a .fa::before {
  display: inline-block;
  vertical-align: middle;
  line-height: 28px;
}
.social-links a:hover {
  background-color: #a6ce39;
  color: #FFFFFF;
}

.accordion .accordion-item {
  margin-bottom: 20px;
  border-radius: 0;
  border-color: #ddd;
}
.accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid #ddd;
}
.accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion .accordion-item .accordion-button {
  display: block;
  padding: 14px 20px 14px 70px;
  background: #FFFFFF;
  color: #454545;
  transition: all 300ms ease-out;
  position: relative;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}
.accordion .accordion-item .accordion-button::after {
  display: none;
}
.accordion .accordion-item .accordion-button::before {
  right: auto;
  left: -1px;
  top: -1px;
  width: 48px;
  height: calc(100% + 3px);
  line-height: 48px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #a6ce39;
  content: "\f068";
  font-family: "FontAwesome";
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  display: flex;
  position: absolute;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
}
.accordion .accordion-item .accordion-button.collapsed::before {
  background: #FFFFFF;
  color: #c7c7c7;
  content: "\f067";
  height: calc(100% + 2px);
}
.accordion .accordion-item .inside {
  padding: 20px 30px;
}

.white-box {
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  display: block;
  position: relative;
}
@media (max-width: 575.98px) {
  .white-box {
    padding: 30px 20px;
  }
}

hr {
  border-color: #ebebeb;
  opacity: 1;
}

/* contact page */
.googlemap-wrapper {
  position: relative;
  padding: 6px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}

.contact-link-list {
  display: inline-block;
  position: relative;
}
.contact-link-list li {
  position: relative;
  padding-left: 50px;
  padding-bottom: 20px;
  min-height: 35px;
  padding-top: 5px;
}
.contact-link-list li:last-child {
  padding-bottom: 0;
}
.contact-link-list li .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  background-color: #454545;
  border-radius: 50%;
}

.big-image-slider {
  width: 100%;
  padding-top: 40px;
}
.big-image-slider .slider-wrap {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  position: relative;
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.03);
}
.big-image-slider .slider-wrap .image-wrapper {
  width: 100%;
  padding-top: 43%;
  position: relative;
}
@media (max-width: 767.98px) {
  .big-image-slider .slider-wrap .image-wrapper {
    padding-top: 47%;
  }
}
.big-image-slider .slider-wrap .image-wrapper .image {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.big-image-slider .slick-slider.slick-dotted {
  margin-bottom: 0;
}
.big-image-slider .slick-slider.slick-dotted .slick-dots {
  bottom: 30px;
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767.98px) {
  .big-image-slider .slick-slider.slick-dotted .slick-dots {
    bottom: 2.5vw;
    padding-left: 2vw;
    padding-right: 2wv;
  }
}

.inbox-section .nav {
  border-bottom: none;
}
.inbox-section .nav .nav-item .nav-link {
  background: #f2f2f2;
  border-left: 1px solid #f7f7f7;
  border-right: 1px solid #f7f7f7;
  border-bottom: none !important;
  border-radius: 0;
  padding: 12px 20px;
  color: #6d6d6d;
  position: relative;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
}
.inbox-section .nav .nav-item .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
}
.inbox-section .nav .nav-item .nav-link.active {
  border-left-color: #ebebeb;
  border-right-color: #ebebeb;
  background-color: #FFFFFF;
  color: #a6ce39;
  transition: all 300ms ease-out;
}
.inbox-section .nav .nav-item .nav-link.active::after {
  position: absolute;
  content: "";
  top: 0;
  border: 1px solid #a6ce39;
  display: block;
  width: 100%;
  left: 0;
  transition: all 300ms ease-out;
}
.inbox-section .tab-content {
  padding: 30px 28px;
  border: 1px solid #ebebeb;
  background-color: #FFFFFF;
}

.need-share-button_dropdown {
  background-color: #fff;
}

.country-list-select {
  width: 100%;
  display: block;
  position: relative;
}
.country-list-select .list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #FFF;
  padding: 0;
  border: 1px solid #ebebeb;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  display: none;
  border-radius: 6px;
  z-index: 100;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.country-list-select .list.show-it {
  display: block;
}
.country-list-select .list li {
  border-bottom: 1px solid #ebebeb;
}
.country-list-select .list li:last-child {
  border-bottom: none;
}
.country-list-select .list li a {
  width: 100%;
  display: block;
  position: relative;
  font-size: 14px;
  list-style: 120%;
  font-weight: 500;
  padding: 9px 18px;
  color: #000;
  cursor: pointer;
}
.country-list-select .list li a:hover {
  background-color: #ebebeb;
}

.chat-preview {
  width: 700px;
  max-width: 100%;
  display: block;
  position: relative;
}
.chat-preview .single {
  display: block;
  position: relative;
  padding-right: 80px;
  min-height: 60px;
  padding-bottom: 30px;
}
@media (max-width: 575.98px) {
  .chat-preview .single {
    padding-right: 50px;
  }
}
.chat-preview .single:last-child {
  padding-bottom: 0;
}
.chat-preview .single.right {
  padding-right: 0;
  padding-left: 80px;
}
@media (max-width: 575.98px) {
  .chat-preview .single.right {
    padding-left: 50px;
  }
}
.chat-preview .single.right .avatar {
  right: auto;
  left: 0;
}
.chat-preview .single.right .text {
  text-align: left;
  padding-left: 0px;
  padding-right: 80px;
}
@media (max-width: 575.98px) {
  .chat-preview .single.right .text {
    padding-right: 50px;
  }
}
.chat-preview .single .avatar {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ECECEC;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 575.98px) {
  .chat-preview .single .avatar {
    width: 32px;
    height: 32px;
  }
}
.chat-preview .single .avatar::before {
  width: 64px;
  height: 64px;
  position: absolute;
  left: -4px;
  top: -4px;
  border: 1px solid #CCC;
  content: "";
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .chat-preview .single .avatar::before {
    width: 40px;
    height: 40px;
    left: -4px;
    top: -4px;
  }
}
.chat-preview .single .text {
  padding-right: 0px;
  padding-left: 80px;
  text-align: right;
}
@media (max-width: 575.98px) {
  .chat-preview .single .text {
    padding-left: 50px;
  }
}
.chat-preview .single .single-paragraph {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 5px;
}
.chat-preview .single .single-paragraph:last-child {
  margin-bottom: 0;
}
.chat-preview .single .single-paragraph div {
  width: auto;
  max-width: 100%;
  display: inline-block;
  padding: 6px 13px;
  background-color: #ECECEC;
  border-radius: 14px;
  word-break: break-word;
}

.messages-list {
  display: block;
  width: 100%;
  position: relative;
}
.messages-list .single {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.messages-list .single:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.error-page {
  width: 100%;
  position: relative;
  background-color: transparent;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  height: calc(100vh - 12rem);
  background-image: url("/images/404-error-page-bg.webp");
}
.error-page::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  z-index: 1;
}

.bootstrap-table .fixed-table-container .fixed-table-body {
  height: auto !important;
}

.table.table-striped tr th,
.table.table-striped tr td {
  border-bottom: none;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #333333;
}

.table > :not(caption) > * > * {
  padding: 0.7rem 0.5rem;
}

.home-top-hire-block.top-navigation-title {
  position: relative;
  width: 100%;
  display: block;
  height: 90px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #FFFFFF;
}
@media (max-width: 767.98px) {
  .home-top-hire-block.top-navigation-title {
    height: auto;
    padding: 25px 0;
  }
}
@media (max-width: 767.98px) {
  .home-top-hire-block.top-navigation-title .d-flex {
    height: auto !important;
  }
}
.home-top-hire-block.top-navigation-title .breadcrumb {
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .home-top-hire-block.top-navigation-title .breadcrumb {
    padding-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .home-top-hire-block.top-navigation-title .breadcrumb .breadcrumb-item {
    font-size: 13px;
    line-height: 120%;
  }
}
.home-top-hire-block.top-navigation-title .breadcrumb .breadcrumb-item::before {
  color: #FFFFFF;
}
.home-top-hire-block.top-navigation-title .breadcrumb .breadcrumb-item a {
  color: #FFFFFF;
}
.home-top-hire-block.top-navigation-title .breadcrumb .breadcrumb-item a.active {
  color: #FFFFFF;
}
.home-top-hire-block.top-navigation-title .breadcrumb .breadcrumb-item a:hover {
  color: #FFFFFF;
}
.home-top-hire-block.top-navigation-title .breadcrumb .breadcrumb-item.active {
  color: #FFFFFF;
}

.standard-section.about-text-section h3,
.standard-section.about-text-section p {
  margin: 0 0 1.5em 0;
}
.standard-section.privacy-text-section h2 {
  text-transform: uppercase;
  margin-bottom: 25px;
}
.standard-section.privacy-text-section h3,
.standard-section.privacy-text-section h4,
.standard-section.privacy-text-section h6 {
  margin-bottom: 20px;
}
.standard-section.privacy-text-section .h6 {
  margin-bottom: 20px;
}
.standard-section.privacy-text-section ol {
  margin-bottom: 20px;
}
.standard-section.privacy-text-section ol li {
  margin-bottom: 20px;
}
.standard-section.privacy-text-section ol p {
  margin-bottom: 20px;
}

.title-color-update h1,
.title-color-update .h1,
.title-color-update h2,
.title-color-update .h2,
.title-color-update h3,
.title-color-update .h3,
.title-color-update h4,
.title-color-update .h4,
.title-color-update h5,
.title-color-update .h5,
.title-color-update h6,
.title-color-update .h6 {
  color: #595959;
}

.blog-block {
  width: 100%;
  display: block;
  position: relative;
}
.blog-block .single-blog {
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 991.98px) {
  .blog-block .single-blog {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .blog-block .single-blog {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.blog-block .single-blog p:last-of-type {
  margin-bottom: 0;
}
.blog-block .single-blog .blog-title a {
  color: #595959;
}
.blog-block .single-blog .blog-title a:hover {
  color: #a6ce39;
  text-decoration: none;
}

.blog-category {
  display: inline-block;
  position: relative;
  background-color: #ebebeb;
  padding: 8px 12px;
  border-radius: 2px;
  padding-left: 35px;
  color: #8c8c8c;
  font-size: 12px;
  line-height: 120%;
  min-height: 32px;
}
.blog-category::before {
  font-size: 14px;
  color: #454545;
  margin-right: 6px;
  font-family: "FontAwesome";
  content: "\f07b";
  line-height: 1;
  position: absolute;
  left: 12px;
  top: 8px;
}
.blog-category:hover {
  color: #a6ce39;
  text-decoration: none;
}

.blog-image {
  width: 100%;
  display: block;
  position: relative;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
}
.blog-image .inside {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.blog-image .inside img {
  transform: scale(1);
  position: relative;
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.blog-image .inside .stretched-link::before {
  background-color: #a6ce39;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: 0.3s;
}
.blog-image .inside .stretched-link .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  z-index: 100;
  display: inline-block;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 120%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.blog-image.with-link:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}
.blog-image.with-link:hover .stretched-link::before {
  opacity: 0.9;
}
.blog-image.with-link:hover .stretched-link .fa {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.search-box {
  display: block;
  position: relative;
}
.search-box .form-control {
  padding-right: 56px;
}
.search-box button {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  width: 46px;
  height: 100%;
  line-height: 46px;
  background-color: transparent;
  transition: 0.3s;
}
.search-box button:hover {
  color: #a6ce39;
  transition: 0.3s;
}

.list-link-cat {
  display: inline-block;
  position: relative;
}
.list-link-cat li {
  padding: 6px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
}
.list-link-cat li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  color: #a6ce39;
}
.list-link-cat li a {
  color: #595959;
}
.list-link-cat li a:hover {
  color: #a6ce39;
  text-decoration: underline;
}

.blog-sidebar {
  width: 100%;
  display: block;
  position: relative;
}
.blog-sidebar::before {
  position: absolute;
  right: calc(100% + 70.2px);
  top: 0;
  height: 100%;
  width: 1px;
  background: #eee;
  content: "";
}
@media (max-width: 991.98px) {
  .blog-sidebar::before {
    right: calc(100% + 1.5rem);
  }
}
@media (max-width: 767.98px) {
  .blog-sidebar::before {
    display: none;
  }
}

.blog-inside {
  line-height: 150%;
}
.blog-inside p, .blog-inside h1, .blog-inside h2, .blog-inside h3, .blog-inside h4, .blog-inside h5, .blog-inside h6, .blog-inside blockquote {
  margin-bottom: 1.5em;
}
.blog-inside img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}
.blog-inside blockquote {
  padding: 26px 26px 26px 70px;
  margin: 0 0 25px 0;
  font-size: 14px;
  border-left: 4px solid #a6ce39;
  background: #f0f0f0;
  font-style: italic;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.08);
  overflow-wrap: break-word;
}
.blog-inside blockquote::before {
  display: block;
  position: absolute;
  left: 24px;
  top: 14px;
  font-size: 34px;
  color: #a6ce39;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f10e";
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.blog-inside blockquote p:last-of-type {
  margin-bottom: 0;
}

.blog-share {
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid #ebebeb;
}
@media (max-width: 767.98px) {
  .blog-share {
    margin: 50px 0 10px 0;
    padding: 30px 0;
    border-bottom: 1px solid #ebebeb;
  }
}
.blog-share .block {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 4px;
}

.standard-section.find-chefs-section .chef-finder-checks {
  position: relative;
  width: 100%;
  display: block;
  background: #FFFFFF;
  display: table;
  padding: 40px 30px;
  border: 1px solid #ebebeb;
}
.standard-section.find-chefs-section .chef-finder-checks .btn-sm {
  min-height: auto;
  position: absolute;
  top: 10px;
  right: 10px;
}
.standard-section.find-chefs-section .results {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid #eee;
}
.standard-section.find-chefs-section .results .single-result {
  transition: all 300ms ease-out;
  background-color: #FFFFFF;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.standard-section.find-chefs-section .results .single-result:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.standard-section.find-chefs-section .results .single-result:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.standard-section.find-chefs-section .results .single-result:hover {
  background-color: #fafafa;
  transition: all 300ms ease-out;
}
.standard-section.find-chefs-section .results .single-result:hover.no-hover {
  background-color: #FFFFFF;
}
.standard-section.find-chefs-section .results .single-result .image {
  width: 120px;
}
@media (max-width: 767.98px) {
  .standard-section.find-chefs-section .results .single-result .image {
    width: 100%;
  }
}
.standard-section.find-chefs-section .results .single-result .image .image-wrap {
  border: 1px solid #FFFFFF;
  padding: 2px;
  background: #FFFFFF;
  border-radius: 3px;
  border: 1px solid #ececec;
}
.standard-section.find-chefs-section .results .single-result .image .image-wrap img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
}
@media (max-width: 460px) {
  .standard-section.find-chefs-section .results .single-result .image .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 460px) {
  .standard-section.find-chefs-section .results .single-result .image .d-flex h2 {
    margin-left: 0 !important;
    padding-top: 20px;
    margin-bottom: 0 !important;
  }
}
.standard-section.find-chefs-section .results .single-result .image .d-flex h2 span {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
}
.standard-section.find-chefs-section .results .single-result .details {
  width: calc(100% - 120px);
}
@media (max-width: 767.98px) {
  .standard-section.find-chefs-section .results .single-result .details {
    width: 100%;
  }
}
.standard-section.find-chefs-section .results .single-result .details .description-results {
  font-size: 16px;
  line-height: 120%;
  font-weight: 300;
}
.standard-section.find-chefs-section .results .single-result .details .f-14 {
  font-size: 14px;
  font-weight: 300;
}
.standard-section.find-chefs-section .results .single-result .details .with-icon li {
  position: relative;
  padding-left: 19px;
  padding-bottom: 5px;
  word-break: break-word;
}
.standard-section.find-chefs-section .results .single-result .details .with-icon li:last-child {
  padding-bottom: 0;
}
.standard-section.find-chefs-section .results .single-result .details .with-icon li i {
  position: absolute;
  left: 0;
  top: 3px;
}
@media (max-width: 347.98px) {
  .standard-section.find-chefs-section .results .single-result .details .col-6 {
    width: 100% !important;
  }
}
.standard-section.find-chefs-section .results .single-result.check {
  padding-left: 60px;
  position: relative;
}
.standard-section.find-chefs-section .results .single-result.check .form-check {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .standard-section.find-chefs-section .results .single-result.check .form-check {
    top: 20px;
    transform: none;
  }
}

.pagination .page-link.disabled {
  background-color: #FFFFFF;
}

.search-box-find-chefs {
  position: relative;
}
.search-box-find-chefs .form-control {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 63px;
}
.search-box-find-chefs .search-box-btn {
  position: absolute;
  right: 0;
  top: 0;
}

.dark-box {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 5px;
  padding: 30px;
  background-color: rgba(69, 69, 69, 0.95);
}

.social-share-links .dropdown-toggle::after {
  display: none;
}
.social-share-links .dropdown-menu {
  min-width: 160px;
  padding: 5px;
  text-align: center;
}
.social-share-links .dropdown-menu .dropdown-item {
  padding: 0;
  width: auto;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  background-color: transparent !important;
}
.social-share-links .dropdown-menu .dropdown-item:hover {
  color: #a6ce39;
}
.social-share-links .dropdown-menu .list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

.h1.bigger,
h1.bigger {
  font-size: 48px;
}

.pricing-table {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .pricing-table {
    padding: 20px 15px 20px 15px;
  }
}
.pricing-table .plan {
  border: 1px solid #ebebeb;
  margin: 0 -16px 0 -15px;
  background: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .pricing-table .plan {
    margin-bottom: 0;
  }
}
.pricing-table .plan .pricing-head {
  padding: 0 0 24px 0;
}
.pricing-table .plan .pricing-head h3 {
  background: #454545;
  line-height: 64px;
  margin: 0;
  color: #fff;
  position: relative;
  margin: -1px -1px 24px -1px;
  border: 1px solid #3f3f3f;
}
.pricing-table .plan .pricing-head .price {
  font-size: 60px;
  display: block;
  line-height: 1em;
  color: #454545;
  font-family: "Lato", sans-serif;
  position: relative;
  padding: 0 0 0 20px;
  text-indent: -20px;
}
.pricing-table .plan .pricing-head .price sup {
  font-size: 18px;
  vertical-align: top;
  position: absolute;
  top: 0;
  margin: 14px 0 0 0;
}
.pricing-table .plan .pricing-head small {
  font-size: 14px;
  color: #ebebeb;
}
.pricing-table .plan .pricing-body ul {
  padding-left: 0;
  list-style: none;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 0;
}
.pricing-table .plan .pricing-body ul > li {
  border-top: 1px solid #ebebeb;
  padding: 10px;
}
.pricing-table .plan .pricing-body ul > li:nth-child(odd) {
  background: #f7f7f7;
}
.pricing-table .plan .pricing-footer {
  padding: 30px 10px;
}
.pricing-table .plan.popular {
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}
.pricing-table .plan.popular .pricing-head h3 {
  background: #a6ce39;
  font-size: 24px;
  line-height: 90px;
  border-color: #a6ce39;
}
@media (min-width: 992px) {
  .pricing-table .plan.popular .pricing-head h3 {
    margin: -27px 0 24px 0;
  }
}
@media (min-width: 992px) {
  .pricing-table .plan.popular .pricing-footer {
    padding: 40px 10px;
  }
}

.with-circle-arrow {
  display: inline-block;
  position: relative;
}
.with-circle-arrow li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 20px;
}
.with-circle-arrow li:last-child {
  padding-bottom: 0;
}
.with-circle-arrow li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  content: "\f18e";
  font-family: "FontAwesome";
  font-size: 14px;
  color: #a6ce39;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.card.from-social {
  border-radius: 0;
}
.card.from-social .card-body {
  padding: 20px;
  text-align: center;
  color: #000000;
}
.card.from-social .card-body a {
  color: #000000;
}
.card.from-social .card-body a:hover {
  text-decoration: underline;
}
.card.from-social .card-body .fa {
  font-size: 25px;
}
.card.from-social .card-body .card-text {
  font-size: 14px;
  line-height: 110%;
  color: #707070;
}
.card.from-social .card-bottom {
  width: 100%;
  height: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.175);
  padding-left: 10px;
  padding-right: 10px;
  font-size: 11px;
  line-height: 120%;
  text-transform: uppercase;
}
.card.from-social .card-bottom .logo {
  min-width: 38px;
}
.card.from-social .card-bottom .logo img,
.card.from-social .card-bottom .logo svg {
  border-radius: 50%;
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
}
.card.from-social .card-bottom .channel-date {
  text-align: center;
}
.card.from-social .card-bottom .channel-date .date {
  opacity: 0.5;
}
.card.from-social .card-bottom .share {
  min-width: 38px;
}
.card.from-social .card-bottom .share .list-inline-item:not(:last-child) {
  margin-right: 0.8rem;
}
.card.from-social .card-bottom .share a {
  color: #2B2B2B;
  font-size: 14px;
  opacity: 0.5;
}
.card.from-social .card-bottom .share a:hover {
  opacity: 1;
}

.your-basket-section {
  position: relative;
  width: 100%;
  display: block;
}
.your-basket-section .inside-backet-wrapper {
  padding-bottom: 52px;
}
.your-basket-section .inside-backet-wrapper .icon-basket {
  font-size: 70px;
  color: #A6CE39;
  line-height: 70px;
  vertical-align: middle;
  margin-right: 10px;
}
.your-basket-section .inside-backet-wrapper .icon-basket.active {
  color: #848879;
}
.your-basket-section .inside-backet-wrapper span {
  font-size: 20px;
  font-weight: bold;
}
.your-basket-section .table-bordered {
  border: 1px solid #ebebeb;
}
.your-basket-section .table-bordered.table-striped > tbody > tr:nth-child(odd) > td, .your-basket-section .table-bordered.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f7f7f7;
}
.your-basket-section .table-bordered .table-striped > tbody > tr:nth-child(even) > td,
.your-basket-section .table-bordered .table-striped > tbody > tr:nth-child(even) > th {
  background-color: #f7f7f7;
}
.your-basket-section .table-bordered.table > thead > tr > th {
  padding: 14px;
  color: #454545;
  background: #a6ce39;
  border-bottom: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.your-basket-section .table-bordered.table > tbody > tr > td {
  padding: 14px;
}
.your-basket-section .table-bordered.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: #f7f7f7;
}

.btn.with-icon span {
  display: inline-block;
  vertical-align: baseline;
  padding-left: 1.178rem;
  position: relative;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .btn.with-icon {
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.StripeElement {
  background-color: #fff;
  border: 1px solid #ebebeb;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: none;
  padding: 18px;
  margin-bottom: 20px;
}
