@charset "UTF-8";



/*============================================================================
        BODY, CONTAINER ADJUSTMENTS
==============================================================================*/

body {
  font-family: var(--text-font-family), sans-serif;
  font-weight: var(--text-font-weight);
  color: var(--color-1);
  line-height: var(--text-line-height) !important;
  background-color: #fff;
  padding-right: 0 !important;
}

@media (min-width: 1400px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    max-width: 1350px;
  }
}

@media (max-width: 1024px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    width: 100% !important;
    max-width: none;
  }
}

a {
  text-decoration: none;
}

iframe {
  width: 100%;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

img {
  max-width: 100%;
}

.content-absolute {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
}

.height-inherit {
  height: inherit;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

button:hover {
  cursor: pointer;
}

div,
button,
a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

button.no-styling {
  background: none !important;
  border: none !important;
  padding: 0px !important;
}

p {
  margin-bottom: 0px;
}

.icon-dropdown {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media (min-width: 992px) {
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }  
}

.hide {
  display: none !important;
}

.alert {
  border-color: transparent !important;
  font-size: 14px !important;
}

.strikethrough {
  text-decoration: line-through;
}

.grecaptcha-badge {
  display: none !important;
}

.invert-color {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.icon-sm {
  width: 20px;
  min-width: 20px;
  max-width: 20px;
}

.icon-md {
  width: 25px;
  min-width: 25px;
  max-width: 25px;
}

.icon-lg {
  width: 35px;
  min-width: 35px;
  max-width: 35px;
}

.icon-xl {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
}

.justify-content-responsive {
  justify-content: start;
}

@media (max-width: 768px) {
  .justify-content-responsive {
    justify-content: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}





/*============================================================================
        BACKGROUNDS & COLORS
==============================================================================*/

.color-1 {
  color: var(--color-1) !important;
}

.color-2 {
  color: var(--color-2) !important;
}

.color-3 {
  color: var(--color-3) !important;
}

.color-4 {
  color: var(--color-4) !important;
}

.color-5 {
  color: var(--color-5) !important;
}

.bg-1 {
  background: var(--color-1) !important;
}

.bg-2 {
  background: var(--color-2) !important;
}

.bg-3 {
  background: var(--color-3) !important;
}

.bg-4 {
  background: var(--color-4) !important;
}

.bg-5 {
  background: var(--color-5) !important;
}

.bg-split {
  background: linear-gradient(
    to top,
    var(--color-1) 0%,
    var(--color-1) 50%,
    #fff 50%,
    #fff 100%
  );
} 

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

.color-light-gray {
  color: #f6f6f7 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-light-gray {
  background-color: #f6f6f7 !important;
}





/*============================================================================
        BUTTONS
==============================================================================*/


/* General Button Template Styling */

.btn:disabled,
.btn.disabled {
  background-color: var(--bs-btn-bg) !important; /* Force same background color */
  border-color: var(--bs-btn-border-color) !important; /* Force same border color */
  opacity: 1 !important; /* Remove opacity change */
}

/* Keep the same hover styling even when button is being submitted */
.btn:disabled:hover,
.btn.disabled:hover {
  background-color: var(--bs-btn-hover-bg) !important;
  border-color: var(--bs-btn-hover-border-color) !important;
}

.btn-template-1,
.btn-template-2,
.btn-template-3,
.btn-template-4,
.btn-template-5 {
  border-radius: var(--button-border-radius) !important;
  text-align: center;
  font-size: 17px;
  line-height: var(--button-line-height);
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  transition: 0.8s;
  cursor: pointer;
  box-sizing: border-box;
  -ms-display: inline-flex;
  -webkit-display: inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
}

.btn-template-1:focus,
.btn-template-2:focus,
.btn-template-3:focus,
.btn-template-4:focus,
.btn-template-5:focus {
  border: none;
  box-shadow: none;
}

.btn-template-1.disabled,
.btn-template-1:disabled,
.btn-template-2.disabled,
.btn-template-2:disabled,
.btn-template-3.disabled,
.btn-template-3:disabled,
.btn-template-4.disabled,
.btn-template-4:disabled,
.btn-template-5.disabled,
.btn-template-5:disabled,
.btn-template-1.disabled:hover,
.btn-template-1:disabled:hover,
.btn-template-2.disabled:hover,
.btn-template-2:disabled:hover,
.btn-template-3.disabled:hover,
.btn-template-3:disabled:hover,
.btn-template-4.disabled:hover,
.btn-template-4:disabled:hover,
.btn-template-5.disabled:hover,
.btn-template-5:disabled:hover {
  border-color: inherit !important;
  color: inherit !important;
}

@media (max-width: 991.8px) {
  .btn-template-1,
  .btn-template-2,
  .btn-template-3,
  .btn-template-4,
  .btn-template-5 {
    font-size: 16px;
  }
}


/* Button styles 1, 2, 4 (Regular Size, Desktop) */

.btn-template-1,
.btn-template-2,
.btn-template-4,
.btn-template-5 {
  padding-left: 25px !important;
  padding-right: 25px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-template-1 {
  background: var(--color-2);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--color-6);
  font-weight: 500;
}

.btn-template-1:hover,
.btn-template-1:focus {
  color: #fff;
  background: var(--color-3);
  border: 1px solid var(--color-7);
}

.btn-template-2 {
  background: none;
  color: var(--color-2);
  text-decoration: none;
  border: 1px solid var(--color-2);
  font-weight: 500;
}

.btn-template-2:hover,
.btn-template-2:focus {
  color: #fff;
  background: var(--color-4);
  border: 1px solid var(--color-4);
}

.btn-template-4 {
  background: #086608;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--color-6);
  font-weight: 500;
}

.btn-template-4:hover,
.btn-template-4:focus {
  color: #fff;
  background: #055a05;
  border: 1px solid var(--color-6);
}

.btn-template-5 {
  background: var(--color-3);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--color-3);
  font-weight: 500;
}

.btn-template-5:hover,
.btn-template-5:focus {
  color: #fff;
  background: var(--color-2);
  border: 1px solid var(--color-2);
}

/* Button styles 1 and 2 (Regular Size, Mobile) */

@media (max-width: 991.8px) {
  .btn-template-1,
  .btn-template-2,
  .btn-template-4 {
    font-size: 16px;
  }
}


/* Button styles 1 and 2 (Small Size, Desktop) */

.btn-sm {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  font-size: 16px;
  line-height: 1.5;
}

.btn-template-1.btn-sm,
.btn-template-2.btn-sm,
.btn-template-4.btn-sm {
  font-size: 14px;
  padding-left: 30px !important;
  padding-right: 30px !important;
}


/* Button styles 1 and 2 (Large Size, Desktop) */

.btn-lg {
  font-size: 24px;
  padding-left: 40px !important;
  padding-right: 40px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}



/* Button styles 1 and 2 (Small Size, Desktop) */

@media (max-width: 991.8px) {
  .btn-sm {
    font-size: 14px;
  }
}


/* Button styles 1 and 2 (Extra Small Size, Desktop) */

.btn-xs {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 12px;
}


/* Button styles 1 and 2 (Extra Small Size, Desktop) */

@media (max-width: 991.8px) {
  .btn-xs {
    font-size: 13px;
  }
}


/* Button styles 3 */

.btn-template-3 {
  border: none;
  color: var(--color-8) !important;
  text-decoration: none;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  letter-spacing: 0px;
}

.btn-template-3::before {
  background: var(--color-8) !important;
  content: "";
  height: 2px;
  width: 0px;
  top: 90%;
  transform: translateX(-50%);
  left: 50%;
  transform-origin: center center;
  position: absolute;
  transition: all 0.3s ease-in-out 0s;
}

.btn-template-3:hover::before {
  width: 100%;
}

@media (min-width: 1200px) {
  .btn-template-3::before {
    right: -30px;
  }
}

@media (min-width: 992px) {
  .btn-template-3::before {
    right: -21px;
  }
}

@media (min-width: 768px) {
  .btn-template-3::before {
    right: -13px;
  }
}





/*============================================================================
        LOADING WHEEL
==============================================================================*/

.loading-wheel-container {
  position: relative;
  width: 100%;
  height: 100px;
  z-index: 100;
}

.loading-wheel-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
}

.loading-wheel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 901;
}

.loading-wheel .spinner-border,
.loading-wheel .spinner-grow {
  width: 100px;
  height: 100px;
}

#articles-list.loading {
  opacity: 0.5;
  position: relative;
  pointer-events: none;
}





/*============================================================================
        FORM INPUTS
==============================================================================*/

form {
  position: relative;
}

.form-loading {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  z-index: 100;
}

label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 3px;
  color: var(--color-2);
}

.form-input-1 {
  position: relative;
}

.form-input-1 input, 
.form-input-1 textarea {
  width: 100%;
  padding-left: 16px;
  padding-top: 12px;
  padding-bottom: 10px;
  font-size: 16px;
  background: #fff;
  color: var(--color-1);
  -webkit-border-radius: var(--input-border-radius);
  -moz-border-radius: var(--input-border-radius);
  border-radius: var(--input-border-radius);
  border: 1px solid var(--color-4);
}

.form-input-1 input::placeholder, 
.form-input-1 textarea::placeholder {
  color: #888;
}

.form-input-1 input:focus, 
.form-input-1 textarea:focus {
  outline: none;
  border-color: var(--color-1);
}

.form-input-1 img.input-icon {
  position: absolute;
  top: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  width: 20px;
  opacity: 0.6;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.form-input-1 textarea {
  padding: 16px;
  height: 150px;
  resize: none;
  line-height: 1;
}

.form-input-1.textarea i {
  top: 37px;
  left: 25px;
}

#reset-password {
  color: var(--color-3);
}

#reset-password:hover {
  text-decoration: underline;
}

.form-input-1 select {
  width: 100%;
  padding-left: 16px;
  padding-top: 12px;
  padding-bottom: 10px;
  font-size: 16px;
  background: #fff;
  color: var(--color-1);
  -webkit-border-radius: var(--input-border-radius);
  -moz-border-radius: var(--input-border-radius);
  border-radius: var(--input-border-radius);
  border: 1px solid var(--color-4);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* Remove default dropdown arrow */
  cursor: pointer;
}

.form-input-1 select:focus {
  outline: none;
  border-color: var(--color-1);
}

.form-input-1.select-wrapper {
  position: relative;
}

.form-input-1.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  opacity: 0.6;
  pointer-events: none; /* Ensures click goes through to select */
}

.form-input-1 select option {
  background-color: #fff;
  color: var(--color-2);
  padding: 10px;
  padding-left: 15px;
}

.form-input-1 select + img.input-icon {
  position: absolute;
  top: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  width: 20px;
  opacity: 0.6;
  -webkit-filter: invert(1);
  filter: invert(1);
}

/* Override default styles in some browsers */
.form-input-1 select::-ms-expand {
  display: none; /* Hide the default dropdown arrow in IE/Edge */
}
@-moz-document url-prefix() {
  .form-input-1 select {
    padding-right: 25px; /* Allow space for the custom arrow */
  }
}

/* Mobile */
@media (max-width: 991.8px) {
  .form-input-1 input, 
  .form-input-1 textarea,
  .form-input-1 select {
    padding-left: 12px;
    padding-top: 9px;
    padding-bottom: 7px;
  }
}

.form-check-input {
  border: var(--bs-border-width) solid var(--color-2);
}

.form-check-input:checked {
  background-color: var(--color-4);
  border-color: var(--color-4);
}

.form-check-input:focus {
  box-shadow: none;
}





/*============================================================================
        COOKIE BANNER
==============================================================================*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}








/*============================================================================
        TABS (HORIZONTAL)
==============================================================================*/

.custom-horizontal-tabs .nav-tabs {
  border-bottom: none;
}

.custom-horizontal-tabs .nav-tabs .nav-link {
  position: relative;
  border: none;
  padding: 0;
  font-size: 18px;
  color: var(--color-8);
  padding: 10px 0px;
  margin: 0px 20px;
  background: transparent;
}

.custom-horizontal-tabs .nav-tabs .nav-item:first-child .nav-link {
  margin-left: 0px;
}

.custom-horizontal-tabs .nav-tabs .nav-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background: var(--color-5);
}

.custom-horizontal-tabs .nav-tabs .nav-link:hover {
  color: var(--color-8);
}

.custom-horizontal-tabs .nav-tabs .nav-link.active {
  background-color: inherit;
  color: var(--color-5);
}

.custom-horizontal-tabs .nav-tabs .nav-link.active::after {
  width: 100%;
}


@media (max-width: 991.8px) {
  .custom-horizontal-tabs .nav-tabs .nav-link {
    font-size: 16px;
  }
}



/*============================================================================
        TABS (VERTICAL)
==============================================================================*/

.custom-vertical-tabs .nav-link {
  display: block;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  margin-bottom: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 10px 0;
  padding-right: 30px;
  position: relative;
}

@media (min-width: 992px) {
  .custom-vertical-tabs {
    border: none;
    position: relative;
    padding-top: 15px;
  }
  .custom-vertical-tabs::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 2px;
    height: calc(100% + 50px);
    background: var(--color-6);
    z-index: 1;
  }
  .custom-vertical-tabs .nav-link {
    text-align: right;
    display: block;
  }
  .custom-vertical-tabs .nav-link.active {
    background-color: transparent;
    border-color: none;
    color: var(--color-5);
  }
  .custom-vertical-tabs .nav-link.active::after,
  .custom-vertical-tabs .nav-link.active:focus::after {
    position: absolute;
    top: 0;
    bottom: auto;
    height: 100%;
    content: "";
    right: 0;
    width: 2px;
    background: var(--color-5);
    z-index: 100;
  }
}

@media (max-width: 991.8px) {
  .custom-vertical-tabs {
    margin-bottom: 25px;
    padding: 20px 10px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    scroll-behavior: smooth;

  }
  
  .custom-vertical-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .custom-vertical-tabs .nav-link {
    text-align: center;
    display: inline-block;
    font-size: 16px;
    padding: 10px 0px;
    margin: 0px 20px;
    margin-right: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
    position: relative;
  }

  .custom-vertical-tabs .nav-link:first-child {
    margin-left: 0px;
  }
  
  .custom-vertical-tabs .nav-link.active {
    background: none;
    color: var(--color-5);
  }

  .custom-vertical-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--color-5);
    margin: 0;
  }
}






/*============================================================================
        PILLS (HORIZONTAL)
==============================================================================*/

.horizontal-pills-outer-container {
  position: relative;
  width: 100%;
}

.horizontal-pills-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
}

.horizontal-pills-container::-webkit-scrollbar {
  display: none;
}

.horizontal-pills-wrapper {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 10px 0;
  justify-content: flex-start;
  min-width: min-content;
}

.horizontal-pills-wrapper button {
  border-radius: 20px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--color-6);
  color: #fff;
  border: 1px solid var(--color-6);
  outline: 0;
  padding: 5px 25px;
  margin: 0 10px;
  margin-left: 0px;
  line-height: 24px;
  margin-bottom: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.horizontal-pills-wrapper button:not(.active):hover {
  background-color: var(--color-7);
}

.horizontal-pills-wrapper button.active {
  background-color: var(--color-4);
  color: #fff;
  border-color: var(--color-4);
}

@media screen and (max-width: 992px) {
  .horizontal-pills-outer-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
  }
  .horizontal-pills-wrapper button {
    border-radius: 20px;
    font-size: 13px;
    padding: 6px 15px;
    line-height: 18px;
    margin: 0 5px;
    margin-left: 0px;
    margin-bottom: 2px;
  }
}

@media screen and (min-width: 993px) {
  .horizontal-pills-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .horizontal-pills-wrapper button {
    margin-bottom: 8px;
  }
  
  .horizontal-pills-wrapper button:not(.active):hover {
    background-color: #ebebeb;
  }
}




/*============================================================================
        CUSTOM PAGINATION
==============================================================================*/

.custom-pagination .page-link {
  border: none;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-pagination .page-item {
  border-radius: var(--input-border-radius);
}

.custom-pagination .page-item:not(.active):not(.disabled):hover {
  background: #dedede;
}

.custom-pagination .page-link:not(.category-tag), 
.custom-pagination .page-link:not(.category-tag):focus, 
.custom-pagination .page-link:not(.category-tag):hover {
  border: none;
  box-shadow: none;
  background: none;
}

.custom-pagination .page-item.disabled .page-link {
  background: none;
  color: #b8b8b8;
  cursor: default;
}

.custom-pagination .page-item.active {
  background: var(--color-3);
}

.custom-pagination .page-item.active .page-link {
  color: #fff;
}





/*============================================================================
        TOOLTIPS
==============================================================================*/

.tooltip .tooltip-inner {
  background-color: #212529 !important;
  color: white !important;
}

.tooltip .tooltip-arrow::before {
  border-top-color: #212529 !important;
  border-bottom-color: #212529 !important;
  border-left-color: #212529 !important;
  border-right-color: #212529 !important;
}

@media (max-width: 991.98px) {
  .tooltip {
    display: none !important;
  }
}





/*============================================================================
        SOCIAL ICONS
==============================================================================*/

.social-icons {
  list-style: none;
}

.social-icons button {
  background: none;
  border: none;
}

@media (min-width: 992px) {
  .social-icons li {
    display: inline-block;
  }
  .social-icons .tooltip {
    display: none !important;
  }
  .social-icons button {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    padding: 0px;
  }
  .social-icons button img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .social-icons {
    text-align: left;
    padding: 0px;
    padding-top: 20px;
  }
  .social-icons li {
    padding: 10px;
  }
  .social-icons li:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
  }
  .social-icons button {
    margin-right: 5px;
  }
  .social-icons button img {
    width: 30px;
    height: 30px;
  }
}




/*============================================================================
        OVERLAY
==============================================================================*/

.overlay {
  position: relative;
}

.overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.offcanvas {
  background: var(--color-2);
  color: #fff;
  -ms-border: none !important;
  -webkit-border: none !important;
  border: none !important;
  -ms-outline: none !important;
  -webkit-outline: none !important;
  outline: none !important;
  -ms-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

@media (max-width: 400px) {
  .offcanvas {
    max-width: 100vw;
  }
}

@media (max-width: 991px) {
  .offcanvas-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
}

.offcanvas-header {
  position: relative;
  text-align: center;
  justify-content: center;
}

.offcanvas-header button{
  position: absolute;
  top: 15px;
  right: 15px;
}




/*============================================================================
        HEADINGS & TEXT
==============================================================================*/


/* Desktop & General */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--heading-line-height);
}

h1,
.h1 {
  font-size: 48px !important;
  text-bold: 
}

h2,
.h2 {
  font-size: 46px !important;
  font-family: var(--heading-font-family), sans-serif;
  text-transform: uppercase;
}

h3,
.h3 {
  font-size: 36px !important;
}

h4,
.h4 {
  font-size: 28px !important;
}

h5,
.h5 {
  font-size: 20px !important;
}

.text-extra-large {
  font-size: 24px !important;
}

.text-large {
  font-size: 20px !important;
} 

.text-medium {
  font-size: 18px !important;
}

.text-regular {
    font-size: 16px !important;
}

.text-small {
  font-size: 14px !important;
}



/* Tablet */

@media (max-width: 1024.1px) {
  h1,
  .h1 {
    font-size: 42px !important;
  }
  h2,
  .h2 {
    font-size: 36px !important;
  }
  h3,
  .h3 {
    font-size: 32px !important;
  }
  h4,
  .h4 {
    font-size: 24px !important;
  }
  h5,
  .h5 {
    font-size: 20px !important;
  }
  .text-extra-large {
    font-size: 20px !important;
  }
  .text-large {
    font-size: 18px !important;
  }
  .text-medium {
    font-size: 16px !important;
  }
  .text-regular {
    font-size: 15px !important;
  }
  .text-small {
    font-size: 14px !important;
  }
}


/* Mobile */

@media (max-width: 426px) {
  h1,
  .h1 {
    font-size: 36px !important;
  }
  h2,
  .h2 {
    font-size: 32px !important;
  }
  h3,
  .h3 {
    font-size: 24px !important;
  }
  h4,
  .h4 {
    font-size: 20px !important;
  }
  h5,
  .h5 {
    font-size: 18px !important;
  }
  .text-extra-large {
    font-size: 18px !important;
  }
  .text-large {
    font-size: 16px !important;
  }
  .text-medium {
    font-size: 16px !important;
  }
  .text-regular {
    font-size: 14px !important;
  }
  .text-small {
    font-size: 13px !important;
  }
}

.text-bold {
  font-weight: 600 !important;
}

.text-extra-bold {
  font-weight: 800 !important;
}

.text-underline {
  text-decoration: underline !important;
}




/*============================================================================
        ANIMATIONS
==============================================================================*/

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}




/*============================================================================
        SCROLL BAR
==============================================================================*/

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #888;
}





/*============================================================================
        MODALS
==============================================================================*/


@media (min-width: 1200px) {
  .modal-xxl {
    max-width: 70% !important;
  }
}

@media (min-width: 992px) {
  .modal-xxl {
    max-width: 80% !important;
  }
}

.modal-header {
  border-bottom: none;
  position: relative;
}

.modal-header h1 {
  text-align: center;
  width: 100%;
}

.modal-header button {
  width: 30px;
  position: absolute;
  top: 20px;
  right: 15px;
}

.modal-header button:focus,
.modal-header button:active {
  border: 0px !important;
  box-shadow: none !important;

}

.modal-footer {
  border-top: none;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .modal-dialog {
    max-width: 80%;
  }
}

.btn-close {
  z-index: 1000;
}





/*============================================================================
        ANNOUNCEMENT BAR
==============================================================================*/

.announcement-bar {
  background: var(--color-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-8);
  padding-top: 10px;
}

.announcement-bar a img {
  width: 25px;
  margin-right: 5px;
}

@media (max-width: 991px) {
  .announcement-bar {
    font-size: 12px;
    text-align: center;
  }
}





/*============================================================================
        HEADER
==============================================================================*/
  
/* Sticky header default: visible, absolute, transparent */
.sticky-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent !important;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    position 0s,
    top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* When scrolled: fixed, white, shadow, fade in */
.sticky-header.scrolled {
  position: fixed;
  background: #fff !important;
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Fade effect: only opacity/visibility changes */
.sticky-header.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sticky-header:not(.visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sticky-header.scrolled .main-menu .nav-link,
.sticky-header.scrolled .header-action-item div {
  color: var(--color-1);
}

.sticky-header.scrolled .logo-main img {
  filter: none;
}

.logo-main {
  -ms-display: flex;
  -webkit-display: flex;
  display: flex;
}

.logo-main img {
  max-width: 185px;
}

.header-action-item {
  cursor: pointer;
  text-align: center;
}

.header-action-item img {
  width: 35px !important;
}

.header-action-item div {
  font-size: 11px;
  color: black;
  font-weight: 400;
}

.header-cart {
  position: relative;
}

.forgot-password-button a {
  color: blue;
}

.main-menu .nav-link {
  padding: 0;
  padding-top: 5px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.5px;
  text-align: center;
}

.main-menu .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-4);
  transition: width 0.3s ease;
  margin: auto;
  margin-top: 5px;
}

.main-menu .nav-item:hover .nav-link::after,
.main-menu .nav-item.active .nav-link::after {
  width: 100%;
}

@media (min-width: 1024px) {
  .main-menu .nav-item.active .icon,
  .main-menu .nav-item:hover .icon {
    stroke: var(--color-5);
  }
  .header-bottom {
    position: relative;
  }
  .nav-item-sub {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
  }

  .main-menu {
    margin-left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
    margin-bottom: 0;
    list-style: none;
  }
  
  .submenu {
    padding: 15px;
    margin-bottom: 0px;
    background: white;
    border-radius: var(--card-border-radius);
    -webkit-box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
    -moz-box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
    box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
  }
  
  .submenu .nav-text-sub {
    font-size: 16px;
    text-decoration: none;
    color: var(--color-2);
    display: block;
    font-weight: 400;
  }
  
  .submenu .nav-text-sub:hover {
    color: var(--color-4);
  }

  .main-menu > .nav-item {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    cursor: pointer;
  }

  .has-dropdown {
    position: relative;
  }

  .open-submenu {
    padding-left: 5px;
    color: #fff;
  }

  .submenu-transform {
    position: absolute;
    z-index: 99;
    top: 120%;
    right: -50px;
    width: auto;
    min-width: 250px;
  }
  
  .has-megamenu .submenu-transform {
    width: 100%;
  }

  .has-megamenu .submenu-transform .megadropdown-wrapper {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
    -moz-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
    box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  }
  .has-megamenu .megamenu-transform {
    position: relative;
    top: 0;
    left: 0;
    border: none;
  }
  .has-megamenu .megamenu-transform .nav-item-sub {
    padding: 20px 0 0;
  }
  .submenu-transform a.submenu-option {
    font-size: 16px;
    color: #000;
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .submenu-transform a.submenu-option:hover {
    color: var(--color-3);
    padding-left: 10px;
  }
  .submenu-transform-desktop {
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0s;
    -webkit-transition: all 0s;
    transition: all 0s;
    z-index: 9999;
  }
  .has-megamenu .submenu-transform-desktop.active,
  .has-dropdown .submenu-transform-desktop.active {
    opacity: 1;
    visibility: visible;
    top: 100%;
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media (max-width: 1024px) {
  .main-menu > .nav-item {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-menu .nav-link {
    font-size: 16px;
  }
  .header-top,
  .header-bottom {
    position: relative;
  }
  .icon-menu-back {
    margin-left: -0.7rem;
    margin-right: 7px;
  }
}

@media (max-width: 767px) {
  .logo-main img {
    max-width: 150px;
  }
  .header-top,
  .header-bottom {
    position: relative;
  }
}

@media (max-width: 375px) {
  .header-action-item img {
    width: 30px !important;
  }
}




/*============================================================================
        MOBILE MENU
==============================================================================*/

@media (max-width: 991px) {

  .mobile-nav-logo {
    width: 200px;
  }

  .mobile-nav-widget {
    -ms-border-bottom: 1px solid #888;
    -webkit-border-bottom: 1px solid #888;
    border-bottom: 1px solid #888;
    padding-top: 10px;
  }

  .mobile-nav-widget a p,
  .mobile-nav-widget p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .mobile-nav-heading {
    cursor: pointer;
    margin: 0 0 15px;
    padding-left: 5px;
  }

  .mobile-nav-inner-menu {
    display: none;
    padding-bottom: 25px;
    padding-left: 5px;
  }

  .mobile-nav-inner-menu-item a {
    font-size: 16px;
    color: fff !important;
    text-decoration: none;
    margin-bottom: 5px;
  }

  .mobile-nav-inner-menu-item:hover a {
    text-decoration: underline;
  }

  .mobile-nav-action-item {
    cursor: pointer;
  }
  
  .mobile-nav-action-item img {
    width: 35px !important;
  }
  
  .mobile-nav-action-item div {
    font-size: 13px;
    color: black;
    font-weight: 400;
  }

}

.mobile-nav-inner-menu-item {
  margin-bottom: 5px;
  color: var(--color-8);
}




/*============================================================================
        FOOTER
==============================================================================*/

footer {
  padding-top: 60px;
  padding-bottom: 50px;
  overflow: hidden;
  background: radial-gradient(29.06% 100% at 50% 125%, var(--color-2) 0%, var(--color-1) 100%);
  color: #fff;
}

.footer-logo a img {
  max-width: 200px;
}

.footer-social-intro {
  text-align: left;
}

.footer-social a {
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 5px;
}

.footer-social a img {
  width: 100%;
  height: 100%;
}

.footer-heading {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FEFEFE;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-menu-item a {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #FEFEFE;
  opacity: 1;
  text-decoration: none;
  display: block;
  padding-bottom: 10px;
}

.footer-menu-item a:hover {
  padding-left: 10px;
}

@media (max-width: 768px) {
  footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    width: 200px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-social-intro {
    text-align: center;
  }
  .footer-heading {
    cursor: pointer;
    margin: 0 0 15px;
  }
  .footer-menu {
    padding-bottom: 10px;
  }
}

@media (max-width: 426px) {
  .footer-widget-inner {
    padding-top: 16px;
  }
}





/*============================================================================
        BREADCRUMBS
==============================================================================*/

.icon-breadcrumb {
  width: 16px;
  height: 16px;
  margin: 0 7px;
}

.breadcrumb {
  margin-bottom: 0;
  color: var(--color-7);
}

.breadcrumb li,
.breadcrumb li a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-7);
}

.breadcrumb li.active {
  color: var(--color-8);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--color-7);
}

@media (max-width: 991px) {
  .breadcrumb li,
  .breadcrumb li a {
    font-size: 13px;
  }
}





/*============================================================================
        SECTION
==============================================================================*/

section {
  padding-top: 100px;
  padding-bottom: 35px;
}

@media (max-width: 1024.1px) {
  section {
    padding-top: 75px;
  }
}

.badge-section {
  border: none;
  background: none;
  color: var(--color-3);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0;
}

.badge-section-2 {
  border: 1px solid var(--color-4);
  background: rgba(236, 237, 249, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  letter-spacing: 2px;
}

.section-image {
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
  -moz-box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
  box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
}





/*============================================================================
        HERO BANNER
==============================================================================*/

.hero-banner,
.hero-banner-2 {
  position: relative;
  padding-top: 175px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner {
  background-image: url('https://keenlift-media.s3.us-east-1.amazonaws.com/media/banners/keenlift-homepage-hero-desktop.webp');
}

.hero-banner-2 {
  background: linear-gradient(180deg, var(--color-2) 0%, var(--color-3) 100%);
}

.hero-banner h1 {
  font-size: 55px !important;
  margin-bottom: 15px;
}

@media (max-width: 1024.1px) {
  .hero-banner {
    padding-top: 125px;
    padding-bottom: 75px;
  }
  .hero-banner h1 {
    font-size: 50px !important;
  }
}

@media (max-width: 426px) {
  .hero-banner {
    background-image: url('https://keenlift-media.s3.us-east-1.amazonaws.com/media/banners/keenlift-homepage-hero-mobile.webp');
  }
  .hero-banner h1 {
    font-size: 36px !important;
  }
}

.hero-search {
  background-color: #ffffff;
  border-radius: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 20px;
  padding-right: 7px;
}

.hero-search input {
  width: calc(100% - 200px);
  background: none;
  border: none;
  padding: 0px;
  font-size: 18px;
  color: var(--color-1);
}

@media (max-width: 575px) {
  .hero-search input {
    width: calc(100% - 50px);
  }
}

.hero-search input:focus {
  outline: none;
}

.hero-search button {
  background: green;
  border: none;
  border-radius: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 8px;
}

.hero-search button img {
  filter: invert(1);
}

.hero-search-input input::placeholder {
  color: #92909d;
}

.hero-search-input input:focus {
  border-color: var(--color-3);
  outline: none;
  -webkit-box-shadow: 0px 14px 20px 0px rgba(37, 17, 124, 0.16);
  -moz-box-shadow: 0px 14px 20px 0px rgba(37, 17, 124, 0.16);
  box-shadow: 0px 14px 20px 0px rgba(37, 17, 124, 0.16);
}


/* Hero Banner Thumb */

.hero-thumb-wrapper {
  position: relative;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-thumb {
  position: absolute;
}

.hero-thumb img {
  box-shadow: 0 40px 70px 0 rgba(8, 0, 42, 0.14);
}

.hero-thumb.one img {
  width: 370px;
  height: 400px;
  border-radius: 15px;
}

.hero-thumb.two {
  left: 400px;
  top: -65px;
}

.hero-thumb.two img {
  width: 260px;
  height: 300px;
  border-radius: 15px;
}

.hero-thumb.three {
  left: 400px;
  top: 310px;
}

.hero-thumb.three img {
  width: 220px;
  height: 140px;
  border-radius: 15px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-thumb-wrapper {
    margin-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-thumb-wrapper {
    margin-left: 40px;
  }
  
  .hero-thumb.two,
  .hero-thumb.three {
    left: 250px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-thumb-wrapper {
    margin-left: 40px;
  }
  
  .hero-thumb.two {
    left: 150px;
    top: -120px;
  }
  
  .hero-thumb.three {
    left: -55px;
    top: 360px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-thumb-wrapper {
    margin-left: 55px;
  }
  
  .hero-thumb.two {
    left: 400px;
    top: -400px;
  }
  
  .hero-thumb.three {
    left: 380px;
    top: -130px;
  }
}

@media (max-width: 575px) {
  .hero-thumb-wrapper {
    display: none;
  }
}





/*============================================================================
        CARDS
==============================================================================*/

.card-thumbnail-1 {
  position: relative;
  color: var(--color-1);
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  padding: 40px 30px 30px 30px;
  height: 100%;
  box-shadow: 0 .3613123810646357px 1.8065619053231785px -.16666666666666666px #e2eafa26, 0 1.3731199819460742px 6.8655999097303715px -.3333333333333333px #e2eafa48, 0 6px 30px -.5px #e2eafae6;
}

@media (min-width: 426px) {
  .card-thumbnail-1 img {
    max-width: 100px;
  }
}

@media (min-width: 426px) {
  .card-thumbnail-1:hover,
  .card-thumbnail-4:hover {
    transform: translateY(-20px);
    box-shadow: 0 .3613123810646357px 1.8065619053231785px -.16666666666666666px #e2eafa26, 0 1.3731199819460742px 6.8655999097303715px -.3333333333333333px #e2eafa48, 0 6px 30px -.5px #e2eafae6;
  }
}

.card-thumbnail-2 {
  position: relative;
  color: var(--color-1);
  border: none;
  background: var(--color-5);
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.card-thumbnail-3 {
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  border: 1px solid #dedede;
  border-radius: var(--card-border-radius);
  background: none;
  margin-bottom: 20px;
  padding: 40px 30px 20px 30px;
  color: #fff;
}

@media (min-width: 426px) {
  .card-thumbnail-3 {
    padding: 20px 30px;
  }
}

.card-thumbnail-4 {
  border: 1px solid #dedede;
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  border-radius: var(--card-border-radius);
  background: none;
  margin-bottom: 20px;
  padding: 40px 30px 20px 30px;
}

.card-thumbnail-4 img {
  filter: invert(1);
}

.label-with-icon {
  position: relative;
  text-align: left;
}

.label-with-icon:not(:last-child) {
  margin-right: 10px;
}

.label-with-icon img {
  position: absolute;
  top: 2px;
  left: 0px;
  width: 25px;
}

.label-with-icon div {
  display: flex;
  align-items: center;
  min-height: 30px;
  margin-left: 32px;
}






/*============================================================================
        CLASS LIST
==============================================================================*/

/* SORTING */

.sorting-icon .icon {
  width: 20px;
  margin-left: 10px;
}

#sorting-header {
  cursor: pointer;
}


/* FILTERS */

.product-filters {
  padding-bottom: 200px;
}

.filter-header {
  padding-bottom: 5px;
  cursor: pointer;
  font-weight: 600;
  color: #888;
}

.filter-input {
  background-color: #fff;
  width: 100%;
  padding: 10px 15px;
  position: relative;
  border: 1px solid #dee2e6;
  -webkit-border-radius: var(--input-border-radius);
  -moz-border-radius: var(--input-border-radius);
  border-radius: var(--input-border-radius);
}

.filter-input input {
  padding: 0px !important;
  width: calc(100% - 30px);
  border: none;
}

.filter-input input:focus {
  outline: 0;
  box-shadow: none;
}

.filter-input a {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 12px;
  padding-right: 12px;
}

.filter-input a:hover,
.filter-input a:focus, 
.filter-input a:active {
  background-color: transparent !important;
}

.filter-item {
  margin-top: 5px;
  margin-bottom: 5px;
}

.filter-item input[type=checkbox] {
  display: none;
}

.filter-item .filter-label {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  word-break: break-word;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.25px;
  color: #000000;
}

.filter-item:hover .filter-label {
  color: var(--color-3);
}

.filter-item:last-child .filter-label {
  padding-bottom: 0;
}

.filter-item:first-child .filter-label {
  padding-top: 0;
}

.filter-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-3);
}

.filter-checkbox {
  position: relative;
}

.filter-label input:checked + .filter-checkbox {
  background-color: var(--color-3);
}

.filter-label input:checked + .filter-checkbox:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  left: 4px;
  top: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 1;
  -ms-transform: rotate(-45deg) translateY(-50%);
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

.filter-widget:not(:last-child) {
  margin-bottom: 40px;
}

#articles-list-wrapper {
  position: relative;
}

#articles-list-spinner {
  position: absolute;
  background: none;
  top: -5px;
  left: -5px;
  height: 100%;
  opacity: 0.5;
  background-color: #fff;
  z-index: 100;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}





/*============================================================================
        CLASS PAGE
==============================================================================*/

#class-details-wrapper {
  position: relative;
}

#add-to-wishlist-button-wrapper {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1000;
  width: 45px;
  height: 40px;
}

#add-to-wishlist-button-wrapper button,
#add-to-wishlist-button-wrapper img {
  width: 100%;
  height: 100%;
}

#add-to-wishlist-button-wrapper button {
  -webkit-filter: invert(0.75);
  filter: invert(0.75);
}

article {
  padding-bottom: 100px;
  position: relative;
}

@media (min-width: 992px) {
  article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .article-buttons {
    display: flex;
    align-items: center;
    justify-content:  start;
    flex-wrap: wrap;
  }
}

@media (max-width: 991.98px) {
  .article-buttons {
    justify-content:  center;
  }
}

/* Navigation container */
.article-nav {
  position: relative;
  padding-right: 15px;
}

.article-nav > ol {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-7) #f1f1f1;
  padding-right: 25px;
  margin: 0;
  list-style: none;
}

.article-nav > ol::-webkit-scrollbar {
  width: 6px;
}

.article-nav > ol::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.article-nav > ol::-webkit-scrollbar-thumb {
  background: var(--color-7);
  border-radius: 3px;
}

@media (max-width: 991.8px) {
  .article-nav {
    display: none;
  }
}

.article-nav ol,
.article-nav ul {
  list-style: none;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--color-6);
  border-radius: 20px;
}

.article-nav li {
  margin: 8px 0;
}

.article-nav a {
  text-decoration: none;
  display: block;
  padding: 2px 0;
  color: var(--color-8);
  transition: all 50ms ease-in-out;
  font-size: 18px;
}

.article-nav a:hover,
.article-nav a:focus {
  color: white;
}

.article-nav li.active > a {
  color: var(--color-4);
  font-weight: 600;
}

/* Nested navigation indentation */
.article-nav li li {
  margin-left: 10px;
}

/* Custom styles for heading levels in navigation */
.article-nav .h3-link { padding-left: 15px; }
.article-nav .h4-link { padding-left: 30px; }
.article-nav .h5-link { padding-left: 45px; }

/* Article content */
@media (min-width: 992px) {
  .article-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.article-content h2 {
  margin-bottom: 15px;
  scroll-margin-top: 120px;
  color: var(--color-5);
  font-weight: 600;
  opacity: 0.8;
}

.article-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.article-content li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.article-content > ul > li,
.article-content > ol > li {
  margin-top: 15px;
  margin-bottom: 5px;
}

@media (max-width: 991.8px) {
  .article-content li {
    font-size: 16px;
  }
}

.add-to-wishlist-button {
  border: none;
  background: none;
  color: white;
}

.instructor-bio-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}

@media (max-width: 767px) {
  .instructor-bio-wrapper {
    display: block;
    justify-content: center;
  }
}





/*============================================================================
        CHECKOUT
==============================================================================*/

#checkout-promo-code .accordion-button::after {
  margin-left: 10px !important;
}

#checkout-promo-code .accordion-button:focus,
#checkout-promo-code .accordion-button:not(.collapsed) {
  background-color: white !important;
  border: 0px !important;
  box-shadow: none !important;
}

#checkout-payment .card {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 6px;
  margin-bottom: 10px;
  border: none;
  background-color: #f1f1f1;
}

#checkout-payment .card-body {
  padding: 15px 30px;
  position: relative;
}

#checkout-payment .card-title {
  position: relative;
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
  cursor: pointer;
}

#checkout-payment .card-title::before {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 16px;
  height: 16px;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #333;
  border-radius: 50%;
}

#checkout-payment .card-title::after {
  position: absolute;
  top: 50%;
  left: 28px;
  width: 9px;
  height: 9px;
  content: "";
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #333;
}

#checkout-payment .card-title img {
  height: 45px;
  margin-left: 10px;
}

#checkout-payment .card-title[aria-expanded="true"]::after {
  opacity: 1;
}

.promo-code-badge {
  padding: 10px;
  background-color: var(--color-6);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}





/*============================================================================
        STRIPE
==============================================================================*/

#stripe-payment-form {
  align-self: center;
  border-radius:  var(--card-border-radius);
}

@media (min-width: 992px) {
  #stripe-payment-form {
    min-width: 500px;
  }
}

#stripe-payment-form .hidden {
  display: none;
}

#stripe-payment-form #payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#stripe-payment-form #payment-element {
  margin-bottom: 10px;
}





/*============================================================================
        PAYPAL
==============================================================================*/

.paypal-button-row {
  background: var(--color-1);
}

.paypal-button {
  border-radius: 50px;
}





/*============================================================================
        SLIDESHOW
==============================================================================*/

.slide-text {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.25px;
  margin-bottom: 0;
}
.slide-content-1 .slide-text {
  color: #00234D;
}

.slide-heading {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
.slide-content-1 .slide-heading {
  color: #00234D;
}

.slide-subheading {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 5px;
}
.slide-content-1 .slide-subheading {
  color: #00234D;
}

.slide-btn {
  margin-top: 24px;
}

.slide-img {
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.arrow-slider {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.arrow-slider.arrow-next {
  left: auto;
  right: 0;
}

.arrows-white svg {
  stroke: #fff;
}

.slideshow-section:hover .arrow-slider {
  opacity: 1;
  visibility: visible;
}

.dots-white .slick-dots li {
  background-color: #fff;
}

.slick-dots li.slick-active {
  background-color: var(--color-5);
}

[data-animation] {
  opacity: 0;
}

.animate__animated[data-animation] {
  opacity: 1;
}

.slide-content [data-animation]:first-child {
  animation-delay: 0s;
}
.slide-content [data-animation]:nth-child(2) {
  animation-delay: 0.2s;
}
.slide-content [data-animation]:nth-child(3) {
  animation-delay: 0.35s;
}
.slide-content [data-animation]:last-child {
  animation-delay: 0.45s;
}

.slide-content {
  max-width: 655px;
}

@media (max-width: 991px) {
  .slide-text {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .slide-img {
    height: 460px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}





/*============================================================================
        ERROR MESSAGE
==============================================================================*/

.error-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
}

.error-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 48px;
}




/*============================================================================
        FAQ
==============================================================================*/

.faq-inner {
  margin-top: -17px;
}

.faq-container {
  margin-top: 24px;
}

.faq-heading {
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 0;
}

.faq-item {
  background: radial-gradient(56.00000000000001% 127% at 6% -53.1%, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {"name":"Dark/300"} */ 0%, var(--token-4d67072c-df86-41a3-8260-1a48b41c6ca7, rgb(17, 17, 17)) /* {"name":"Dark/400"} */ 100%);
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
  -moz-box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
  box-shadow: 0px 30px 70px 0px rgba(8, 0, 42, 0.1);
  border: 1px solid #292929;
  border-radius: var(--card-border-radius);
  padding: 30px 24px;
  margin-top: 24px;
}

.faq-body {
  margin-bottom: 0;
  color: #000000;
  padding-top: 20px;
}

.faq-heading-icon {
  transition: all 0.3s ease;
  -webkit-filter: invert(1);
  filter: invert(1);
  transform: rotate(-180deg);
}

.collapsed .faq-heading-icon {
  transform: rotate(0deg);
}

#faqTabContent .accordion {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 25px;
  padding-left: 25px;
  margin-top: 0px;
  margin-bottom: 15px;
}





/*============================================================================
        MY ACCOUNT
==============================================================================*/

.profile-usermenu ul {
	list-style: none;
	padding-left: 0px;
}

.profile-usermenu ul li {
  width: 100%;
}

.profile-usermenu ul li:last-child {
	border-bottom: none;
}

.profile-usermenu ul li a {
  display: block;
  width: 100%;
	font-size: 16px;
	font-weight: 400;
	padding-top: 10px;
	padding-bottom: 10px;
	color: var(--color-8);
  border-radius: var(--input-border-radius);
  -webkit-border-radius: var(--input-border-radius);
  -moz-border-radius: var(--input-border-radius);
}

@media (max-width: 991.8px) {
  .profile-usermenu ul li a {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

.profile-usermenu ul li a img {
	display: inline-block;
	margin-left: 15px;
	margin-right: 5px;
	width: 25px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.profile-usermenu ul li a:hover {
	color: #fff;
	-webkit-transition: all 0.3s !important;
	transition: all 0.3s !important;
	padding-left: 15px;
	display: inline-block;
	text-decoration: none;
}

.profile-usermenu ul li.active a:hover {
	padding-left: 0px;
}

.profile-usermenu ul li.active a {
	color: #fff;
	font-size: 18px;
	margin-left: 0px;
	font-weight: 600;
	background: var(--color-2);
}

#show-left-menu-button {
  display: block;
  width: 90%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid var(--color-6);
  border-radius: 12px;
  position: relative;
}

#show-left-menu-button img {
  width: 30px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.my-account-class-wrapper {
  display: block;
  text-align: right;
}

@media (max-width: 769px) {
  .my-account-class-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
  }
  .my-account-class-footer {
    display: flex;
  }
}

@media (max-width: 376px) {
  .my-account-class-footer {
    display: block;
    padding-top: 10px;
    text-align: left;
  }
}




/*============================================================================
        MY ACCOUNT > CALENDAR
==============================================================================*/

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .calendar-header {
    display: block;
  }
}

.calendar-table th, .calendar-table td {
  width: 14.28% !important;
  position: relative;
  padding: 7px;
  border: 1px solid #292929;
}

.calendar-table td {
  height: 180px;
  overflow-y: auto;
  background: none;
}

.day-classes {
  max-height: 80px;
  overflow-y: auto;
}

.class-item {
  position: relative;
  background: var(--color-6);
  border: 1px solid rgba(0,0,0,0.1);
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

@media (max-width: 768px) {
  .calendar-table tr td {
      min-width: 150px !important;
  }
}





/*============================================================================
        CLASS EXPERIENCE
==============================================================================*/

#class-experience-wrapper {
  position: relative;
  background: radial-gradient(56.00000000000001% 127% at 6% -53.1%, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {"name":"Dark/300"} */ 0%, var(--token-4d67072c-df86-41a3-8260-1a48b41c6ca7, rgb(17, 17, 17)) /* {"name":"Dark/400"} */ 100%);
  color: white;
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  border: 1px solid #292929;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 500px;
}

#class-experience-wrapper .dropdown ul.dropdown-menu li {
  margin-left: 20px;
  padding-bottom: 10px;
  padding-top: 14px;
  margin-right: 20px;
}

#class-experience-wrapper .dropdown ul.dropdown-menu li:not(:last-child) {
  border-bottom: 0.5px solid var(--color-6);
}

#class-experience-wrapper .dropdown ul.dropdown-menu li .dropdown-item {
  padding: 0px;
}

#timeline .timeline-item {
  position: relative;
  min-height: 80px;
  margin-left: 10px;
  padding-bottom: 15px;
  padding-left: 22px;
  padding-right: 20px;
  border-left: 2px solid var(--color-6);
}

#timeline .timeline-item[data-activity-status="completed"] h2 {
  color: green;
}

@media (max-width: 768px) {
  #timeline .timeline-item {
    padding-right: 5px;
  }
}

#timeline .timeline-item[data-activity-status="completed"] {
  border-left: 2px solid #0d5d13;
}

#timeline .timeline-dot {
  position: absolute;
  text-align: center;
  top: 14px;
  border-radius: 50%;
  color: var(--color-6);
  width: 15px;
  height: 15px;
  left: -9px;
}

#timeline .timeline-item[data-activity-status="completed"] .timeline-dot {
  color: #0d5d13;
}

#timeline  .timeline-item[data-activity-status="current"] .blinker {
  border: 6px solid #292929;
  animation: blink 1s infinite;
}

@keyframes blink { 
  50% { border-color: #888; }
}

#timeline .timeline-icon img {
  width: 35px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

@media (min-width: 992px) {
  #timeline .timeline-icon {
    position: absolute;
    left: -55px;
    top: 10px;
  }
}

#timeline .timeline-content .accordion {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #292929;
  background: #000;
  border-radius: 12px;
}

#timeline .timeline-content .accordion-item,
#timeline .timeline-content .accordion-header,
#timeline .timeline-content .accordion-collapse,
#timeline .timeline-content .accordion-body,
#timeline .timeline-content .accordion-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0px;
  box-shadow: none;
}

#timeline .timeline-content .accordion-button {
  font-size: 18px;
}

#timeline .timeline-content .accordion-item:focus,
#timeline .timeline-content .accordion-header:focus,
#timeline .timeline-content .accordion-collapse:focus,
#timeline .timeline-content .accordion-body:focus,
#timeline .timeline-content .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

#timeline .timeline-content .accordion-body {
  padding-top: 15px;
  padding-bottom: 15px;
}

#class-schedule-list .class-lesson {
  padding-left: 15px;
  padding-bottom: 10px;
  padding-top: 12px;
  padding-right: 40px;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

#class-schedule-list .class-lesson.active {
  border: 1px solid var(--color-6);
}

#class-schedule-list .class-lesson img {
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  width: 25px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

#class-schedule-list .class-lesson[data-class-status="past"] {
  background: var(--color-1);
  color: var(--color-7);
}

#class-schedule-list .class-lesson[data-class-status="current"] {
  color: white;
}

#class-schedule-list .class-lesson[data-class-status="future"] {
  color: var(--color-7);
}

.notification-title {
    font-weight: normal;
    margin: 0;
}

.notification-item[data-notification-status="false"] .notification-title {
    font-weight: 600;
}



/*============================================================================
        WIZARD
==============================================================================*/

.radio-toggle-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.radio-toggle {
  border: 3px solid var(--color-6);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 10px;
}

.radio-toggle:hover {
  border-color: var(--color-7);
}

.radio-toggle.active {
  border-color: var(--color-5);
  background-color: var(--color-2);
}

.radio-toggle-text {
  color: var(--color-8);
  font-weight: 500;
  font-size: 20px;
}

.action-button {
  min-width: 100px;
}

@media (max-width: 768px) {
  .radio-toggle {
      flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .calendar-table th, .calendar-table td {
    width: 14.28% !important;
  }
}