/* =========================================================
   DECETI HEADER + FOOTER
   CLEAN FINAL CSS
   ========================================================= */

/* =========================================================
   GLOBAL SAFETY
   ========================================================= */

#deceti-header,
#deceti-header *,
#deceti-footer,
#deceti-footer * {
  box-sizing: border-box;
}

/* =========================================================
   DECETI HEADER
   ========================================================= */

#deceti-header {
  width: 100%;
  position: relative;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    #0f7dc0 0,
    #0f7dc0 78px,
    #13d1ff 78px,
    #13d1ff 138px
  );
}

/* Sticky option: add class deceti-header--sticky */
#deceti-header.deceti-header--sticky {
  position: sticky;
  top: 0;
  z-index: 9999;
}

#deceti-header #top,
#deceti-header .background,
#deceti-header .background-top,
#deceti-header .pattern,
#deceti-header .shadow {
  background: transparent !important;
}

#deceti-header #top {
  margin: 0;
  padding: 0;
  border: 0;
}

#deceti-header #top .pattern > .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================================================
   HEADER LAYOUT
   ========================================================= */

#deceti-header #header-left,
#deceti-header #header-center,
#deceti-header #header-right {
  position: relative;
}

#deceti-header #header-center {
  z-index: 10;
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#deceti-header #header-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
}

/* =========================================================
   LOGO
   ========================================================= */

#deceti-header .logo {
  position: relative;
}

#deceti-header .logo img {
  display: block;
  max-width: 380px;
  height: auto;
}

/* =========================================================
   MENU SHELL
   ========================================================= */

#deceti-header .megamenu-background {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: visible;
}

#deceti-header .deceti-menu-shell {
  width: 100%;
  position: relative;
  overflow: visible;
}

/* hide mobile toggle on desktop */
#deceti-header .megaMenuToggle,
#deceti-header .deceti-mobile-toggle {
  display: none !important;
}

/* =========================================================
   DESKTOP MENU
   ========================================================= */

#deceti-header .deceti-megamenu {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow: visible;
}

#deceti-header .deceti-megamenu > li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

#deceti-header .deceti-megamenu > li > a {
  display: inline-block;
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

#deceti-header .deceti-megamenu > li > a:hover,
#deceti-header .deceti-megamenu > li > a:focus {
  color: #f0b400;
  text-decoration: none;
}

#deceti-header .deceti-megamenu > li > a span,
#deceti-header .deceti-megamenu > li > a span strong {
  display: inline;
  color: inherit;
  font-weight: 700;
}

#deceti-header .deceti-megamenu > li.with-sub-menu > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 8px;
  color: #f0b400;
  position: relative;
  top: -1px;
}

/* =========================================================
   DESKTOP DROPDOWN
   ========================================================= */

#deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  display: none;
  z-index: 9999;
  padding-top: 10px; /* bridge so hover doesn't break */
}

#deceti-header .deceti-megamenu > li.with-sub-menu:hover > .sub-menu,
#deceti-header .deceti-megamenu > li.with-sub-menu:focus-within > .sub-menu {
  display: block;
}

#deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  overflow: hidden;
}

#deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li > a {
  display: block;
  padding: 8px 18px;
  color: #222222;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

#deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li > a:hover,
#deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li > a:focus {
  color: #19bfe6;
  text-decoration: none;
}

/* =========================================================
   RIGHT TOOLS
   ========================================================= */

#deceti-header .deceti-right-tools {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 14px;
}

#deceti-header .deceti-cart-wrap,
#deceti-header .deceti-search-wrap {
  display: inline-flex;
  align-items: center;
}

.deceti-cart-wrap .btn-dark {
    background-color: #212529;
    border-color: #212529;
    color: #fff;
    transition: all .25s ease;
}

/* hover */
.deceti-cart-wrap .btn-dark:hover {
    background-color: #13d1ff;
    border-color: #13d1ff;
    color: #fff;
}

/* mouse out / focus reset */
.deceti-cart-wrap .btn-dark:not(:hover) {
    background-color: #212529;
    border-color: #212529;
}
/* =========================================================
   ACCOUNT
   ========================================================= */

#deceti-header .my-account {
  width: 45px;
  height: 45px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 50%;
  text-decoration: none;
  flex: 0 0 auto;
}

#deceti-header .my-account:hover,
#deceti-header .my-account:focus {
  color: #ffffff;
  background: #d9121f;
  border-color: #d9121f;
  text-decoration: none;
}

/* =========================================================
   SEARCH
   ========================================================= */

#deceti-header .deceti-search-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#deceti-header .deceti-search-wrap form {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0 !important;
}

#deceti-header .deceti-search-wrap .input-group {
  margin-bottom: 0 !important;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
}

#deceti-header .deceti-search-wrap input[type="text"],
#deceti-header .deceti-search-wrap .form-control {
  position: absolute;
  right: 45px;
  width: 0;
  max-width: 0;
  min-width: 0;
  height: 45px;
  padding: 0;
  border: 1px solid transparent;
  background: #fff;
  opacity: 0;
  overflow: hidden;
  transition:
    width .25s ease,
    padding .25s ease,
    opacity .2s ease,
    border-color .2s ease;
  z-index: 1;
}

#deceti-header .deceti-search-wrap:hover input[type="text"],
#deceti-header .deceti-search-wrap:focus-within input[type="text"],
#deceti-header .deceti-search-wrap:hover .form-control,
#deceti-header .deceti-search-wrap:focus-within .form-control {
  width: 180px;
  max-width: 180px;
  padding: 0 14px;
  border-color: #ffbe0b;
  opacity: 1;
}

#deceti-header .deceti-search-wrap .btn,
#deceti-header .deceti-search-wrap button {
  width: 45px !important;
  min-width: 45px !important;
  height: 45px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  background: #ffffff !important;
  border: 1px solid #cccccc !important;
  border-radius: 50% !important;
  color: #000000 !important;
  position: relative;
  z-index: 2;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease;
}

#deceti-header .deceti-search-wrap .btn i,
#deceti-header .deceti-search-wrap button i,
#deceti-header .deceti-search-wrap .btn .fa-solid,
#deceti-header .deceti-search-wrap button .fa-solid {
  color: #000000 !important;
  transition: color .2s ease;
}

#deceti-header .deceti-search-wrap:hover .btn,
#deceti-header .deceti-search-wrap:focus-within .btn,
#deceti-header .deceti-search-wrap:hover button,
#deceti-header .deceti-search-wrap:focus-within button {
  background: #ffbe0b !important;
  border-color: #ffbe0b !important;
  color: #ffffff !important;
}

#deceti-header .deceti-search-wrap:hover .btn i,
#deceti-header .deceti-search-wrap:focus-within .btn i,
#deceti-header .deceti-search-wrap:hover button i,
#deceti-header .deceti-search-wrap:focus-within button i,
#deceti-header .deceti-search-wrap:hover .btn .fa-solid,
#deceti-header .deceti-search-wrap:focus-within .btn .fa-solid,
#deceti-header .deceti-search-wrap:hover button .fa-solid,
#deceti-header .deceti-search-wrap:focus-within button .fa-solid {
  color: #ffffff !important;
}

/* =========================================================
   CART
   ========================================================= */

#deceti-header #cart,
#deceti-header #mini-cart,
#deceti-header .deceti-cart-wrap .dropdown {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* =========================================================
   MOBILE HEADER / ACCORDION MENU
   ========================================================= */

@media (max-width: 991px) {
  #deceti-header {
    background: #0f7dc0 !important;
    padding-bottom: 20px;
  }

  #deceti-header #top,
  #deceti-header .background,
  #deceti-header .pattern,
  #deceti-header .container {
    width: 100%;
  }

  #deceti-header .row {
    flex-direction: column;
  }

  #deceti-header #header-left,
  #deceti-header #header-center,
  #deceti-header #header-right {
    width: 100%;
    text-align: center;
  }

  #deceti-header .logo {
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
  }

  #deceti-header .logo img {
    margin: 0 auto;
    display: block;
    max-width: 260px;
  }

  #deceti-header #header-center {
    padding-top: 15px;
    display: block;
  }

  #deceti-header #header-right {
    margin-top: 10px;
    display: block;
    text-align: center;
  }

  #deceti-header .deceti-right-tools {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  /* show mobile toggle */
  #deceti-header .megaMenuToggle {
    display: block !important;
    margin-bottom: 12px;
  }

  #deceti-header .deceti-mobile-toggle {
    display: block !important;
    width: 100%;
    background: #0a67a0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
  }

  #deceti-header .deceti-mobile-toggle span {
    float: right;
    font-size: 22px;
    line-height: 1;
  }

  #deceti-header .megamenu-background {
    display: block;
    min-height: auto;
    padding: 0;
    background: transparent;
  }

  /* accordion menu */
  #deceti-header .deceti-megamenu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    margin-top: 10px;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    overflow: hidden;
  }

  #deceti-header .deceti-megamenu.open {
    display: flex;
  }

  #deceti-header .deceti-megamenu > li > a {
    display: block;
    padding: 14px 18px;
    color: #ffffff;
    background: rgba(255,255,255,.08);
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  #deceti-header .deceti-megamenu > li.with-sub-menu > a::after {
    content: "▾";
    float: right;
    color: #ffffff;
    margin-left: 0;
    top: 0;
    transition: transform .2s ease;
  }

  #deceti-header .deceti-megamenu > li.open > a::after {
    transform: rotate(180deg);
  }

  #deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu {
    position: static;
    width: 100%;
    display: none;
    padding-top: 0;
  }

  #deceti-header .deceti-megamenu > li.open > .sub-menu {
    display: block;
  }

  #deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul {
    box-shadow: none;
    border-radius: 0 0 10px 10px;
    background: #ffffff;
    padding: 0;
  }

  #deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li > a {
    color: #222222;
    text-align: left;
    padding: 12px 24px;
    border-bottom: 1px solid #eeeeee;
  }

  #deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li > a:hover,
  #deceti-header .deceti-megamenu > li.with-sub-menu > .sub-menu > ul > li > a:focus {
    color: #19bfe6;
    background: #f8f8f8;
  }

  /* mobile search hidden by default */
  #deceti-header .deceti-search-wrap {
    width: auto;
    min-width: 45px;
  }

  #deceti-header .deceti-search-wrap input[type="text"],
  #deceti-header .deceti-search-wrap .form-control {
    width: 0 !important;
    max-width: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    border-color: transparent !important;
    overflow: hidden !important;
    position: absolute !important;
    right: 45px !important;
    z-index: 1 !important;
  }

  #deceti-header .deceti-search-wrap .btn,
  #deceti-header .deceti-search-wrap button {
    width: 45px !important;
    min-width: 45px !important;
    height: 45px !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 2 !important;
  }

  #deceti-header .deceti-search-wrap:focus-within input[type="text"],
  #deceti-header .deceti-search-wrap:focus-within .form-control {
    width: 140px !important;
    max-width: 140px !important;
    padding: 0 12px !important;
    opacity: 1 !important;
    border-color: #ffbe0b !important;
    background: #fff !important;
  }
}

/* =========================================================
   DECETI FOOTER
   ========================================================= */

#deceti-footer {
  clear: both;
  position: relative;
  width: 100%;
  z-index: 1;
  background-color: #0083d8;
  color: #ffffff !important;
  font-size: 18px;
  margin-top:70px;
}

#deceti-footer .deceti-footer-main {
  padding: 20px 0 40px;

}

#deceti-footer .row {
  row-gap: 30px;
}

#deceti-footer .footer-title {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 12px;
  line-height: 1.2;
}

#deceti-footer .footer-line {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 3px;
  background: #ffffff;
  margin: 0 0 20px;
}

#deceti-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#deceti-footer .footer-links li {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  line-height: 1.4;
}

#deceti-footer .footer-links li:last-child {
  margin-bottom: 0;
}

#deceti-footer a {
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none !important;
  transition: color .2s ease;
}

#deceti-footer a:hover,
#deceti-footer a:focus {
  color: #ffbe0b !important;
  text-decoration: none !important;
}

#deceti-footer .footer-about img {
  display: block;
  max-width: 200px;
  margin: 0 0 15px;
}

#deceti-footer .footer-address,
#deceti-footer .footer-email {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #ffffff;
}

#deceti-footer .footer-email:last-child,
#deceti-footer .footer-address:last-child {
  margin-bottom: 0;
}

#deceti-footer .deceti-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.25);
  padding: 20px 0;
  text-align: center;
}

#deceti-footer .footer-copyright {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

/* footer mobile */
@media (max-width: 991px) {
  #deceti-footer {
    text-align: center;
  }

  #deceti-footer .footer-line {
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
  }

  #deceti-footer .footer-about img {
    margin: 0 auto 15px;
  }
}



.image-wrapper.custom-signs-banner {
  width: 100%;
  background: #13d1ff;
}

.image-wrapper.custom-signs-banner .image-container {
  max-width: 1360px;
  min-height: 492px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 40px;
  box-sizing: border-box;
}

.image-wrapper.custom-signs-banner .banner-left {
  flex: 1 1 60%;
  display: flex;
  justify-content: center;
}

.image-wrapper.custom-signs-banner .banner-content {
  text-align: center;
  max-width: 760px;
}

.image-wrapper.custom-signs-banner .banner-title {
  margin: 0 0 20px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 60px;
  line-height: 1.08;
  font-weight: 700;
  color: #253a70 !important;
  text-transform: uppercase;
}

.image-wrapper.custom-signs-banner .banner-red-line {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: #f00c18;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.image-wrapper.custom-signs-banner .banner-red-line.second {
  margin-bottom: 22px;
}

.image-wrapper.custom-signs-banner .banner-text {
  margin: 0 0 14px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 1.4;
  font-weight: 400;
  color: #253a70;
}

.image-wrapper.custom-signs-banner .banner-text-bottom {
  margin-bottom: 0;
}

.image-wrapper.custom-signs-banner .banner-right {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
}

.image-wrapper.custom-signs-banner .banner-image-frame {
  padding: 0;
  border: none;
  background: transparent;
}

.image-wrapper.custom-signs-banner .banner-image {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 50px;
  border: 10px solid rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}



/* Адаптив */
@media (max-width: 1199px) {
  .image-wrapper.custom-signs-banner .image-container {
    gap: 24px;
    padding: 30px 24px;
  }

  .image-wrapper.custom-signs-banner .banner-title {
    font-size: 48px;
  }

  .image-wrapper.custom-signs-banner .banner-red-line {
    font-size: 24px;
  }

  .image-wrapper.custom-signs-banner .banner-text {
    font-size: 22px;
  }

  .image-wrapper.custom-signs-banner .banner-right {
    flex-basis: 360px;
  }

  .image-wrapper.custom-signs-banner .banner-image {
    max-width: 340px;
  }
}

@media (max-width: 991px) {
  .image-wrapper.custom-signs-banner .image-container {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .image-wrapper.custom-signs-banner .banner-left,
  .image-wrapper.custom-signs-banner .banner-right {
    flex: 1 1 100%;
  }

  .image-wrapper.custom-signs-banner .banner-title {
    font-size: 42px;
  }

  .image-wrapper.custom-signs-banner .banner-red-line {
    font-size: 22px;
    white-space: normal;
  }

  .image-wrapper.custom-signs-banner .banner-text {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .image-wrapper.custom-signs-banner .image-container {
    padding: 20px 15px;
  }

  .image-wrapper.custom-signs-banner .banner-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .image-wrapper.custom-signs-banner .banner-red-line {
    font-size: 16px;
    padding: 7px 10px;
  }

  .image-wrapper.custom-signs-banner .banner-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .image-wrapper.custom-signs-banner .banner-right {
    flex-basis: auto;
    width: 100%;
  }

  .image-wrapper.custom-signs-banner .banner-image {
    max-width: 100%;
  }

  .image-wrapper.custom-signs-banner .banner-image-frame {
    border-width: 6px;
    border-radius: 20px;
  }
}


/* ========================= PRODUCT LIST GRID ========================= */

.productlist {
    display: flex;
    flex-wrap: wrap;              /* allow items to wrap to next row */
    justify-content: center;      /* center items including last row */
    /*column-gap: 36px; */            /* horizontal spacing between items */
    row-gap: 40px;                /* vertical spacing between rows */
    padding: 0;
    margin: 40px 0;
    list-style: none;
}

.productlist li {
    flex: 0 1 25%;                /* 4 items per row */
    max-width: 340px;             /* limit card width */
    min-width: 260px;             /* prevent breaking on small screens */
    text-align: center;
}

.productlist li img {
    width: 100%;                  /* make image responsive */
    height: auto;                 /* keep aspect ratio */
}
/* ================= LINK ================= */

.productlist li a {
    display: block;
    text-decoration: none;
}

/* ================= TITLE ================= */

.productlist li a h1,
.productlist li a h2,
.productlist li a h3,
.productlist li a h4,
.productlist li a h5,
.productlist li a h6 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d252c !important;
    transition: color 0.25s ease;
}

/* ================= IMAGE ================= */

.productlist li a picture {
    display: block;
}

.productlist li a img {
    display: block;
    width: 100%;
    max-width: 270px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;

    border-radius: 22px;
    border: 6px solid transparent;
    box-sizing: border-box;

    transform: scale(1.06);

    transition:
        transform 0.45s cubic-bezier(.22,.61,.36,1),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* ================= HOVER ================= */

.productlist li a:hover img {
    transform: scale(1);
    border-color: #13D1FF;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.productlist li a:hover h1,
.productlist li a:hover h2,
.productlist li a:hover h3,
.productlist li a:hover h4,
.productlist li a:hover h5,
.productlist li a:hover h6 {
    color: #13D1FF !important;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
    .productlist li {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .productlist li {
        flex: 1 1 100%;
        max-width: 100%;
    }
}



.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #273c71;
    --bs-btn-border-color: #273c71;

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3f5fb5;
    --bs-btn-hover-border-color: #3f5fb5;

    --bs-btn-focus-shadow-rgb: 63, 95, 181;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #233766;
    --bs-btn-active-border-color: #1f315c;

    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #273c71;
    --bs-btn-disabled-border-color: #273c71;
}


.btn-outline-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #273c71;
    --bs-btn-border-color: #273c71;

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3f5fb5;
    --bs-btn-hover-border-color: #3f5fb5;

    --bs-btn-focus-shadow-rgb: 63, 95, 181;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #233766;
    --bs-btn-active-border-color: #1f315c;

    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #273c71;
    --bs-btn-disabled-border-color: #273c71;
}