/*
 * This controls theme colors
 * Bootstrap will generate classes like btn-color-1, btn-black, text-color-1, bg-color-1, etc.
 * The classes can then be used across the site without repeating code
 */
/*
 * Do a sitewide search (CTRL + SHIFT + F if you're using Sublime Text or whatever your coding GUI has for a search in all files)
 * to see where these variables are used in the SASS code. They're all Bootstrap variables that control certain aspects of elements
 */
/**
 * Bootstrap removes the margin-left/right over the sm breakpoint and if we set it customly afterwards, it breaks the centered modal since it's no longer margin: auto.
 * We also can't remove this one because the value is used in a min-height calculation and removing causes the modal to go haywire on mobile
 * So set it at 15px and then after the sm breakpoint when it gets set to auto, add extra padding as need on .modal-dialog
 *
 * LE: messing with custom margins / paddings and modal-dialog is too much fuss. Simply ignore
 */
.block-nav {
  padding-top: clamp(1.25rem, 2.8169014085vw + 0.5897887324rem, 3.125rem);
  padding-bottom: clamp(1.25rem, 2.8169014085vw + 0.5897887324rem, 3.125rem);
}
.block-nav .nav-desktop {
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: clamp(1.5625rem, 2.3474178404vw + 1.0123239437rem, 3.125rem);
  padding-right: clamp(1.5625rem, 2.3474178404vw + 1.0123239437rem, 3.125rem);
  border-radius: 60px;
}
.block-nav .nav-desktop .nav-links {
  flex: 1;
  gap: 15px;
}
.block-nav .nav-desktop .nav-links li {
  flex: 1 0 auto;
}
.block-nav .nav-mobile {
  max-width: 250px;
  margin: 0 auto;
}
.block-nav .nav-mobile .btn {
  position: relative;
  z-index: 9;
  padding: 10px 15px;
  border-radius: 60px;
  font-size: 13px;
}
.block-nav .nav-mobile .btn[aria-expanded=true] .icon:after {
  transform: rotate(45deg);
  left: 4px;
  top: 2px;
}
.block-nav .nav-mobile .test {
  margin-top: -20px;
}
.block-nav .nav-mobile .nav-links {
  padding: 35px 0 25px;
  border: 1px solid #d9d9d9;
  border-radius: 0 0 6px 6px;
}
.block-nav .nav-mobile .nav-links a {
  padding: 5px 15px;
}