@charset "UTF-8";





  

/* alert-block css */
.alert-block {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.alert-block.hidden {
	display: none;
}
.alert-block .alert-block-bkgd {
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.7);
}
.alert-block .alert-block-content {
	max-width: 720px;
	min-width: 720px;
	padding: 30px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border: .5px solid #F19C75;
	position: fixed;
	top: 10%;
	left: calc(50% - (720px / 2));
	z-index: 1000;
  border-radius: 15px;
}
.alert-block .alert-block-content p {
	margin-bottom: 10px;
	font-size: 16px;
}
.alert-block .alert-block-content ol {
	margin-bottom: 10px;
	padding: 0 0 0 35px;
}
.alert-block .alert-block-content .close {
	position: absolute;
  width: 20px;
  height: 20px;
	top: 15px;
	right: 15px;
  background-image: url(../images/close.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .alert-block .alert-block-content {
    width: calc(100% - 60px);
    min-width: unset;
    max-height: calc(100% - 25px);
    top: 15px;
    left: 30px;
    overflow: scroll;
  }
}

@media only screen and (max-width: 450px) {
  .alert-block .alert-block-content {
    width: calc(100% - 20px);
    height: calc(100% - 25px);
    max-height: none;
    padding: 35px 20px 15px 15px;
    top: 15px;
    left: 10px;
    overflow: scroll;
  }
  .alert-block .alert-block-content p {
    font-size: 14px;
  }
  .alert-block .alert-block-content ol li {
    font-size: 13px;
  }
}
/* end alert-block css */

/* start byte_content types css */
.byte_content_embargo {
  background-color: #FF8800 !important;
  box-shadow: 0 0 3px #ccc !important;
}
.byte_content_postpone {
  display: none !important;
}
/* .byte_content_review {} */
img.byte_img_embargo {
  box-shadow: 5px 5px 1px 2px #FF8800, 5px 5px 3px 2px #ccc !important;
}
/* img.byte_img_postpone {} */
img.byte_img_review {
  display: none !important;
}
/* end byte_content types css */

/* COMMON ELEMENTS */
.mobile-view {
  display: none;
}
body {
  overflow-x: hidden;
  --primary-red: #994338;
  --background-gray: #F3F3F3;
  --highlight-links: #FFFF00;
  margin: 0;
  padding: 0;
  background-color: #FCFCFC;
  font-family: 'Plus Jakarta Sans';
}
a {
  transition: color .3s;
  /* color: var(--primary-red); */
}
h1 {
  font-family: 'Museo', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 49px;
  color: var(--primary-red);
  margin: 15px 0;
}
h2 {
  font-family: 'Museo', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 52px;
  margin: 0 0 8px 0;
}
h2.secondary {
  font-size: 28px;
  line-height: 32px;
}
h3 {
  font-family: 'Museo', sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: var(--primary-red);
  margin: 0 0 12px 0;
}
h3.secondary {
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}
h4 {
  font-family: 'Museo', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-red);
  margin: 0 0 10px 0;
}
p {
  font-family: 'Plus Jakarta Sans';
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #222222;
  margin: 0 0 15px 0;
}
ul.bullet-list {
  list-style: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #787878;
  margin: 0;
  padding: 0;
}
ul.bullet-list li {
  color: #6F6F6F;
  position: relative;
  padding-left: 23px;
  line-height: 26px;
}
ul.bullet-list li::before {
  content: "\2022  ";
  position: absolute;
  top: -1px;
  left: 0;
  font-size: 28px;
  line-height: 22px;
  color: var(--primary-red);
}
button, a.button-like {
  font-family: 'Plus Jakarta Sans';
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  padding: 9.5px 16px;
  box-sizing: border-box;
  display: block;
  width: fit-content;
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: background-color .3s;
  cursor: pointer;
}
button:hover, a.button-like:hover {
  background-color: #6A2219;
}
a.button-like.secondary, button.secondary {
 background-color: unset;
 color: var(--primary-red);
}
a.button-like.secondary:hover, button.secondary:hover {
 border: 1px solid #6A2219;
 color: #6A2219;
}
a {
  color: #000000;
}
a.arrow-button {
  text-decoration: none;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--primary-red);
  padding: 9px 43px 9px 0px;
  box-sizing: border-box;
  display: block;
  width: fit-content;
}
a.arrow-button::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: var(--primary-red);
  background-image: url(../images/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  right: 0;
  top: 0;
}
a.arrow-button:hover {
  color: #6A2219;
}
a.arrow-button:hover::after {
  background-color: #6A2219;
}
a.blog-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  color: var(--primary-red);
  text-transform: uppercase;
  border: .5px solid var(--primary-red);
  border-radius: 25px;
  padding: 7px 12px;
  display: inline-block;
}
a.blog-tag:hover {
  background-color: #EADDD4;
  border: .5px solid #EADDD4;
}
a.blog-tag.active {
  color: #FFFFFF;
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
}
button.add {
  display: block;
  position: relative;
  background-color: unset;
  border: unset;
  color: var(--primary-red);
  padding: 0;
}
button.add::before {
  content: '';
  position: absolute;
  height: 11px;
  width: 11px;
  top: 3px;
  right: -19px;
  background-color: #FFFFFF;
  clip-path: polygon(calc(50% - 1px) 0%, calc(50% + 1px) 0%, calc(50% + 1px) calc(50% - 1px), 100% calc(50% - 1px), 100% calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% + 1px) 100%, calc(50% - 1px) 100%, calc(50% - 1px) calc(50% + 1px), 0% calc(50% + 1px), 0% calc(50% - 1px), calc(50% - 1px) calc(50% - 1px));
  z-index: 1;
}
button.remove::before {
  height: 2px;
  top: 7.5px;
  clip-path: none;
}
button.add::after {
  content: '';
  position: absolute;
  height: 17px;
  width: 17px;
  top: 0;
  right: -22px;
  border-radius: 9px;
  background-color: #B9584B;
}
button.remove::before {
  content: '';
  position: absolute;
  width: calc(100% - 10px);
  height: 3px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #FFFFFF;
}

hr {
  border: .5px solid var(--primary-red);
}
img {
  object-fit: cover;
}
img.placeholder {
  object-fit: scale-down;
  object-position: center;
}
label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
label.payment-now {
  margin-bottom: 10px;
}
input, select {
  background-color: #FFFFFF;
  border: .5px solid #979797;
  height: 35px;
  padding: 0 9px;
  font-family: 'Plus Jakarta Sans';
  font-size: 13px;
  font-weight: 300;
  /* flex: 1; */
  width: calc(100% - 20px);
}
input::placeholder {
  color: #7D7D7D50;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
input[type="checkbox"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  margin: 0;
  font: inherit;
  min-width: 15px;
  max-width: 15px;
  width: 15px;
  height: 15px;
  border: .5px solid #979797;
  padding: 0;
}
input[type="radio"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  border-radius: 8px;
  margin: 0;
  min-width: 15px;
  width: 15px;
  height: 15px;
  padding: 0;
}
input[type="checkbox"]::before, input[type="radio"]::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .25s;
  transition-timing-function: ease-in;
  left: 50%;
  top: 50%;
  background-color: var(--primary-red);
}
input[type="radio"]::before {
  border-radius: 6px;
}
input[type="checkbox"]:checked::before, input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
#contact_form fieldset {
  border: 0;
  padding: 0;
}

/* ACCESSIBILITY OPTIONS */
header .header-notices .notice-section .access-options .access-section .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
  display: inline-block;
}

body.desaturate {
  filter: grayscale(1);
}

body.bigger-text .main-nav ul.nav-list li a {
  font-size: 17px;
}
body.bigger-text a.button-like {
  font-size: 16px;
}
body.bigger-text .divider-section .lib-tools-list li {
  font-size: 18px;
}
body.bigger-text .features-title ul.features-tags a {
  font-size: 15px;
}
body.bigger-text .features-content-bullets p {
  font-size: 15px;
  line-height: 30px;
}
body.bigger-text .features-content-bullets ul {
  font-size: 17px;
}
body.bigger-text .features-content-bullets ul li {
  line-height: 24px;
}
body.bigger-text a.arrow-button {
  font-size: 16px;
}
body.bigger-text ul.bullet-list li {
  font-size: 17px;
}
body.bigger-text p.caption {
  font-size: 16px;
}
body.bigger-text .two-col ul.col-two li p {
  font-size: 17px;
  line-height: 24px;
}
body.bigger-text a.blog-tag {
  font-size: 15px;
}

body.high-contrast {
  /* filter: contrast(1.15); */
}
body.high-contrast header .header-notices .notice-accessibility .access-options .access-section .option-heading, 
body.high-contrast header ul.nav-list li .list-dropdown ul.list li a, 
body.high-contrast header .header-notices .notice-accessibility .access-options .access-section .option p, 
body.high-contrast header .header-notices .notice-section .close-popup, 
body.high-contrast .main-nav ul.nav-list li a, 
body.high-contrast p.intro, 
body.high-contrast p, 
body.high-contrast a.arrow-button, 
body.high-contrast button, 
body.high-contrast a.button-like, 
body.high-contrast a.button-like.secondary, 
body.high-contrast .divider-section .lib-tools-list li, 
body.high-contrast .features-title ul.features-tags a, 
body.high-contrast .features-content-bullets, 
body.high-contrast .features-content-bullets ul, 
body.high-contrast .two-col div.col-two .slider .range-list .range-choice, 
body.high-contrast .two-col div.col-two p.includes, 
body.high-contrast .signup-progress, 
body.high-contrast .form-panel, 
body.high-contrast form p, 
body.high-contrast form label, 
body.high-contrast form input, 
body.high-contrast form select, 
body.high-contrast form .form-list span, 
body.high-contrast form .field-row .field-container input[type="text"], 
body.high-contrast form .field-row .field-container input[type="email"], 
body.high-contrast form .field-row .field-container textarea {
  font-weight: 600;
}
body.high-contrast.dark-mode .two-col div.col-two .slider .range-list .range-choice, 
body.high-contrast.dark-mode ul.bullet-list li, 
body.high-contrast.dark-mode .three-col .blog p {
  color: #FFFFFF;
  font-weight: 500;
}
body.high-contrast .campaign-image, 
body.high-contrast .features-image, 
body.high-contrast .features-bullets-image, 
body.high-contrast .explore-blog .latest-posts > div .blog-image {
  opacity: .8;
}

/* body.highlight-links a:not(.button-like):not(.tag):not(.blog-tag) { */
body.highlight-links a, body.dark-mode.highlight-links a, 
body.highlight-links a.button-like, body.dark-mode.highlight-links a.button-like, body.highlight-links a.button-like:hover, body.dark-mode.highlight-links a.button-like:hover, 
body.highlight-links a.button-like.secondary, body.dark-mode.highlight-links a.button-like.secondary, body.highlight-links a.button-like.secondary:hover, body.dark-mode.highlight-links a.button-like.secondary:hover, 
body.highlight-links button.secondary, body.dark-mode.highlight-links button.secondary, body.highlight-links button.secondary:hover, body.dark-mode.highlight-links button.secondary:hover, 
body.highlight-links a.arrow-button, body.dark-mode.highlight-links a.arrow-button, 
body.highlight-links button, body.dark-mode.highlight-links button, 
body.highlight-links .main-nav ul.nav-list li a, body.dark-mode.highlight-links .main-nav ul.nav-list li a, 
body.highlight-links header .header-notices .notice-section .access-options a p, body.dark-mode.highlight-links header .header-notices .notice-section .access-options a p, 
body.highlight-links a.blog-tag, body.dark-mode.highlight-links a.blog-tag, body.highlight-links a.blog-tag:hover, body.dark-mode.highlight-links a.blog-tag:hover, 
body.highlight-links .features-title ul.features-tags a, body.dark-mode.highlight-links .features-title ul.features-tags a, 
body.highlight-links .features-title ul.features-tags a.active, body.dark-mode.highlight-links .features-title ul.features-tags a.active, 
body.highlight-links .button-dropdown, body.dark-mode.highlight-links .button-dropdown {
  background-color: var(--highlight-links);
  color: #000000;
}
body.highlight-links .placeholder-logo img, body.dark-mode.highlight-links .placeholder-logo img {
  content: url(/assets/images/collata-logo-colored.svg);
}
body.dark-mode.highlight-links header .header-notices .notice-section .close-popup::after {
  background-color: #000000;
}
/* DIVIDERS BETWEEN SECTIONS */
.divider {
  position: relative;
  width: 100%;
  height: 55px;
  margin: 15px auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.divider::before {
  content: '';
  position: absolute;
  height: 1px;
  width: calc(50% - 51px);
  background: var(--primary-red);
  left: 0;
  transform: translateY(-50%);
  top: 50%;
}
.divider::after {
  content: '';
  position: absolute;
  height: 1px;
  width: calc(50% - 51px);
  background: var(--primary-red);
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}
.tablet, .mobile {
  display: none;
}
/* COMMON SECTIONS/BACKGROUNDS */
.gradient-bg {
  background: linear-gradient(180deg, #CBDFBD30 0%, #FCFCFC30 100%);
}
.colored-bg {
  margin: 100px 0;
  padding: 40px 40px 30px 40px;
  background-color: #F5F6EE;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
.colored-bg.green {
  background-color: #EAF0E6;
}
.two-col {
  margin: 65px 0;
  padding: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.two-col.colored-bg {
  margin: 65px 0;
}
.two-col .col-one {
  width: 291px;
}
.two-col .col-two {
  flex: 1;
}

.placeholder-logo {
  width: 118px;
  height: 58px;
  display: block;
  transition: background-color .3s ease-out, filter .3s ease-out;
}
.placeholder-logo:hover {
  filter: drop-shadow(0 0 10px #CBDFBD);
}

.main-content {
  /* width: 100%; */
  max-width: 1440px;
  min-height: 68vh;
  /* margin: 0 auto; */
  margin: 0 40px;
  display: flex;
}
.page-content {
  width: 100%;
}
.page-content bs_editable {
  position: relative;
  /* background: #121212; */
}
.page-content bs_editable h2 {
  color: var(--primary-red);
  margin: 15px 0;
}
.page-content bs_editable h3 {
  font-size: 23px;
  margin: 12px 0;
}
.page-content bs_editable h4 {
  margin: 10px 0;
}
.page-content bs_editable p {
  margin: 15px 0;
}
.page-content bs_editable a {
  color: var(--primary-red);
}
.page-content bs_editable a.button-like {
  line-height: normal;
  color: #FFFFFF;
  margin: 10px 0;
}
.page-content bs_editable ul {
  margin: 15px 0;
}
.page-content bs_editable img {
  max-width: 100%;
  height: auto;
  margin: 25px;
}
.page-content .lineage-container {
  display: none;
}


/* MAIN NAV */
header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
header .header-notices .notice-section {
  display: none;
}
header .header-notices.show, 
header .header-notices .notice-section.show {
  display: block;
}
header .header-notices {
  border-bottom: .5px solid var(--primary-red);
}
header .header-notices .notice-section {
  margin: 33px 40px;
  position: relative;
}
header .header-notices .notice-section .notice-heading {
  font-family: 'Museo', sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  color: var(--primary-red);
  margin: 0 0 20px 0;
}
header .header-notices .notice-section .close-popup {
  position: absolute;
  top: 4px;
  right: 0;
  padding-right: 22px;
  text-decoration: none;
}
header .header-notices .notice-section .close-popup::after {
  position: absolute;
  content: '';
  width: 17px;
  height: 17px;
  top: 2px;
  right: 0;
  background-color: black;
  clip-path: polygon(1px 0%, 50% calc(50% - 1px), calc(100% - 1px) 0%, 100% 1px, calc(50% + 1px) 50%, 100% calc(100% - 1px), calc(100% - 1px) 100%, 50% calc(50% + 1px), 1px 100%, 0% calc(100% - 1px), calc(50% - 1px) 50%, 0% 1px);
}
header .header-notices .notice-section .access-options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: flex-start;
}
header .header-notices .notice-section .access-options .access-section {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
header .header-notices .notice-section .access-options .access-section .option-heading {
  font-family: 'Museo', sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}
header .header-notices .notice-section .access-options .access-section a {
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
header .header-notices .notice-section .access-options .access-section a::after {
  content: '';
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(0,0,0,0.1);
  border-radius: 5px;
  display: none;
}
header .header-notices .notice-section .access-options .access-section a:hover::after, 
header .header-notices .notice-section .access-options .access-section a.active::after {
  display: initial;
}
header .header-notices .notice-section .access-options .access-section a.active .icon {
  filter: brightness(0.7) contrast(2);
}
header .header-notices .notice-section .access-options .access-section a:last-of-type {
  margin-right: 0;
}
header .header-notices .notice-section .access-options .access-section a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-red);
  border-radius: 4px;
  height: 23px;
  width: 23px;
  font-weight: 600;
  color: #FFFFFF;
}
header .header-notices .notice-section .access-options .access-section a.active .icon::before {
  /* content: ''; */
}
header .header-notices .notice-section .access-options a p {
  display: inline-block;
  font-size: 15px;
  margin: 0;
}

header .header-wrapper {
  margin: 33px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.site-navigations {
  padding-left: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}
.main-nav ul.nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}
.main-nav ul.nav-list li {
  text-align: center;
}
.main-nav ul.nav-list li.active a::before {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-red);
}
.main-nav ul.nav-list li a {
  position: relative;
  text-decoration: none;
  color: #000000;
  font-family: 'Plus Jakarta Sans';
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .5px;
}
.main-nav ul.nav-list li a::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 0%;
  bottom: -6px;
  left: unset;
  right: 0;
  background-color: var(--primary-red);
  transition: width .5s;
}
.main-nav ul.nav-list li a:hover::after {
  left: 0;
  right: unset;
  width: 100%;
}
.main-nav .nav-pulldowns {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.main-nav .nav-pulldowns .pulldown {
  width: 30px;
  height: 30px;
  overflow: hidden;
}
.main-nav .nav-pulldowns .pulldown:hover {
  filter: drop-shadow(0 0 5px #00000050);
}
.main-nav .nav-pulldowns .pulldown.accessibility {
  /* background-image: url(../images/pulldown-accessibility.svg); */
}
.main-nav .ham-menu {
  width: 30px;
  display: none;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 100;
}
.main-nav .ham-menu .line {
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: var(--primary-red);
  opacity: 1;
  display: inline-block;
  transition: background-color .3s ease-out, opacity .2s ease-out, transform .3s ease-out;
}
header .mobile-container {
  display: none;
  position: absolute;
}

/* START CAMPAIGN */
.campaign {
  display: flex;
  gap: 125px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 70px 80px 50px 100px;
}
.campaign p {
  font-weight: 500;
}
.campaign .campaign-image {
  position: relative;
  width: 489px;
  height: 489px;
  overflow: hidden;
  border-radius: 250px;
}
.campaign .campaign-image * {
  position: absolute;
  transform: translateY(0px);
}
.campaign .campaign-image .floaty {
  filter: drop-shadow(0px 2px 8px #000000);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 8s;
}
.campaign .campaign-image .frame {
  z-index: 9;
  width: 100%;
  top: 0%;
  left: 0%;
}
@keyframes float-popup-blue {
  /* 0% {top: 31.8%;}  50% {top: 29.8%;}  100% {top: 31.8%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(-10px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .popup-blue {
  z-index: 8;
  width: 14.33%;
  top: 31.8%;
  left: 32.39%;
  animation-name: float-popup-blue;
  animation-delay: 0s;
}
@keyframes float-popup-green {
  /* 0% {top: 33.85%;}  50% {top: 34.85%;}  100% {top: 33.85%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(5px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .popup-green {
  z-index: 7;
  width: 13.59%;
  /* top: 34.85%; */
  top: 33.85%;
  left: 52.22%;
  animation-name: float-popup-green;
  animation-delay: 0s;
}
@keyframes float-calendar {
  /* 0% {top: 32.37%;}  50% {top: 31.37%;}  100% {top: 32.37%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(-5px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .calendar {
  z-index: 6;
  width: 13.66%;
  top: 32.37%;
  left: 16.71%;
  animation-name: float-calendar;
  animation-delay: -4s;
}
@keyframes float-phone {
  /* 0% {top: 67.22%;}  50% {top: 66.22%;}  100% {top: 67.22%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(-5px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .phone {
  z-index: 5;
  width: 26.2%;
  top: 67.22%;
  left: 28.28%;
  animation-name: float-phone;
  animation-delay: -4s;
}
@keyframes float-computer {
  /* 0% {top: 24.97%;}  50% {top: 23.97%;}  100% {top: 24.97%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(-5px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .computer {
  z-index: 4;
  width: 39.14%;
  top: 24.97%;
  left: 23.31%;
  /* animation-name: float-computer; */
}
@keyframes float-clouds {
  /* 0% {left: 44.37%;}  50% {left: 45.37%;}  100% {left: 44.37%;} */
  0% {transform: translateX(0);}  50% {transform: translateX(5px);}  100% {transform: translateX(0);}
}
.campaign .campaign-image .clouds {
  z-index: 3;
  width: 38.73%;
  top: 20.88%;
  left: 44.37%;
  animation-name: float-clouds;
  animation-delay: 0s;
}
@keyframes float-clock {
  /* 0% {top: 20.88%;}  50% {top: 18.88%;}  100% {top: 20.88%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(-10px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .clock {
  z-index: 2;
  width: 14.47%;
  top: 20.88%;
  left: 56.42%;
  /* animation-name: float-clock; */
}
@keyframes float-books {
  /* 0% {top: 39.64%;}  50% {top: 41.64%;}  100% {top: 39.64%;} */
  0% {transform: translateY(0);}  50% {transform: translateY(10px);}  100% {transform: translateY(0);}
}
.campaign .campaign-image .books {
  z-index: 1;
  width: 19.32%;
  top: 39.64%;
  left: 63.95%;
  animation-name: float-books;
  animation-delay: -4s;
}
.campaign .campaign-image .background {
  z-index: 0;
  width: 100%;
  top: 0%;
  left: 0%;
}
/* DIVIDER SECTIONS */
.divider-section {
  margin: 130px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.divider-section h2, .body-bucket h2 {
  font-size: 28px;
  line-height: 35px;
  text-align: center;
}
.divider-section .lib-tools-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  gap: 23px;
}
.divider-section .lib-tools-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #D6D6D622;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
}
.divider-section .lib-tools-list li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}
/* shouldn't act like it's a link if it's not:
.divider-section .lib-tools-list li::after {
  content: '';
  position: absolute;
  background-color: #D8A09D75;
  width: 0%;
  height: calc(100% + 30px);
  left: unset;
  right: -15px;
  top: -15px;
  z-index: -1;
  filter: blur(15px);
  transition: width .5s;
  box-shadow: 0px 0px 50px 50px #FCFCFC;
}
.divider-section .lib-tools-list li:hover::after {
  left: -15px;
  right: unset;
  width: calc(100% + 30px);
}
*/
/* .divider-section .lib-tools-list li.tools-events::before {
  background-image: url(../images/lib_tools-events.svg)
}
.divider-section .lib-tools-list li.tools-spaces::before {
  background-image: url(../images/lib_tools-spaces.svg)
}
.divider-section .lib-tools-list li.tools-blogs::before {
  background-image: url(../images/lib_tools-blogs.svg)
}
.divider-section .lib-tools-list li.tools-search::before {
  background-image: url(../images/lib_tools-search.svg)
}
.divider-section .lib-tools-list li.tools-accessibility::before {
  background-image: url(../images/lib_tools-accessibility.svg)
}
.divider-section .lib-tools-list li.tools-tagging::before {
  background-image: url(../images/lib_tools-tagging.svg)
}
.divider-section .lib-tools-list li.tools-databases::before {
  background-image: url(../images/lib_tools-databases.svg)
} */
/* LIBRARY TOOLS */
.library-tools {
  margin-top: 50px;
}
.library-tools h2 {
  font-size: 24px;
  line-height: 35px;
}
/* FEATURES SECTIONS */
.features-title {
  display: flex;
  gap: 50px;
  align-items: center;
  width: 100%;
}
/* Features Parallaxing */
.features-image {
  position: relative;
  overflow: hidden;
  width: 276px;
  height: 276px;
  border-radius: 140px;
}
.features-image * {
  position: absolute;
}
.features-image .circle-frame {
  width: 100%;
  top: 0%;
  left: 0%;
  z-index: 2;
}
.features-image .circle-content {
  z-index: 1;
  transform: translateY(0px);
  /* filter: drop-shadow(0px 2px 8px #00000065); */
}
.features-image .circle-content.library {
  width: 50.98%;
  top: 17.02%;
  left: 24.5%;
}
.features-image .circle-content.design {
  width: 57.57%;
  top: 18.84%;
  left: 20.12%;
}
.features-image .circle-content.page {
  width: 56.35%;
  top: 21.73%;
  left: 21.82%;
}
.features-image .circle-content.administration {
  width: 67.03%;
  top: 27.89%;
  left: 15.39%;
}
.features-image .circle-bg {
  width: 100%;
  top: 0%;
  left: 0%;
  z-index: 0;
}
.title-tags {
  flex: 1;
}
.features-title p {
  font-style: italic;
  margin: 0 0 20px 0;
}
.features-title .mobile-case::-webkit-scrollbar {
  display: none;
}
.features-title .mobile-case {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.features-title ul.features-tags {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.features-title ul.features-tags a {
  padding: 8px 10px 7px 10px;
  border: 1px solid var(--primary-red);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-red);
  letter-spacing: .5px;
  text-decoration: none;
}
.features-title ul.features-tags a.active,
.features-title ul.features-tags a:hover {
  /* font-weight: 600; */
  text-shadow: 0.2px 0px 0px #85342A, -0.2px 0px 0px #85342A, 0px 0.2px 0px #85342A, 0px -0.2px 0px #85342A;
  color: #85342A;
  background-color: #EADDD4;
  border: 1px solid #EADDD4;
}
.features-info {
  position: relative;
  width: calc(100% - 100px);
  z-index: 1;
  padding: 50px;
}
.features-info::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ECEDE3;
  z-index: -1;
  clip-path: polygon(50% 20px, calc(50% + 35px) 0, 100% 0, 100% 100%, calc(50% + 35px) 100%, 50% calc(100% - 20px), calc(50% - 35px) 100%, 0 100%, 0 0, calc(50% - 35px) 0);
}
.single-tag-info {
  position: relative;
  /* flex-direction: column; */
  width: 100%;
  gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  display: none;
}
.single-tag-info.active {
  display: flex;
}
.features-content {
	display: flex;
  flex-direction: column;
	gap: 10px;
	width: 100%;
  flex: 1;
}
.features-content > p {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: normal;
}
.features-content-bullets {
  flex-basis: 50%;
}
.features-content-bullets p {
  margin: 10px 0 0 0;
  font-size: .7rem;
  text-transform: uppercase;
}
.features-content-bullets p:first-child {
  margin: 0;
}
.features-content-bullets ul, bs_editable ul {
	list-style: none;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	color: #5A5A5A;
	margin: 0;
	padding: 0;
  }
.features-content-bullets ul li, bs_editable ul li {
	position: relative;
	padding-left: 23px;
	line-height: 22px;
  margin-bottom: 5px;
}
.features-content-bullets li::before, bs_editable ul li::before {
	content: "\2022  ";
	position: absolute;
	top: -3px;
	left: 0;
	font-size: 28px;
	line-height: 22px;
	color: var(--primary-red);
}
  
.feature-bullets-image {
  width: calc((100% / 2) - 50px);
  max-width: 430px;
  align-self: baseline;
  border-radius: 12px;
  box-shadow: 2px 2px 5px #0006;
  margin: auto;
}
.single-tag-info h3 {
  width: 100%;
  margin: 0;
}

.features-info .feature-bullets-image ul {
  flex: 1;
}
.colored-bg.green .features-info::after {
  background-color: #DCE5D6;
}
/* CONNECT WITH PATRONS */
.connect-patrons div {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* LAUNCH YOUR DIGITAL BRANCH */
.launch-options {
  display: flex;
  gap: 23px;
}
.launch-options > div {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 0.5px solid #F19C75;
  padding: 30px;
  flex: 1 1 0px;
  min-width: calc((100% - 230px) / 3);
}
.launch-options p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #00000080;
}
.launch-options a.button-like {
  margin: 25px 0 10px 0;
}
.launch-options .comm-edition > div {
  display: flex;
  gap: 20px;
  align-items: baseline;
  flex-wrap: wrap;
}
/* UNPARALLELED SUPPORT */
.body-bucket {
  margin: 120px 40px;
  padding: 60px;
  border-radius: 15px;
  align-items: center;
  gap: 0;
}
.body-bucket p {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 16px 0;
}
/* EXPLORE BLOG */
.explore-blog .latest-posts {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.explore-blog .latest-posts > div {
  flex: 1 1 0px;
}
.explore-blog .latest-posts > div .blog-image {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  border-radius: 15px;
  background-image: url(../images/image-placeholder.svg); /* PLACEHOLDER IMAGE */
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #D8A09D;
}
.explore-blog a {
  text-decoration: none;
}
.explore-blog h3 {
  font-size: 23px;
  margin-bottom: 8px;
}
.explore-blog p {
  font-size: 16px;
  line-height: 22px;
  margin: 5px 0 16px 0;
}
p.caption {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: #000000;
  margin: 5px 0;
}
.explore-blog a.button-like {
  margin-top: 40px;
}

/* SECONDARIES */
.page-header {
  height: 270px;
  margin: 0 0 -10px 0;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-header * {
  margin: 0;
}
.page-header p {
  max-width: 736px;
  text-align: center;
}
/* features page */
.two-col .col-one p {
  font-size: 16px;
  font-style: italic;
}
.two-col div.col-two .slider {
  background-color: var(--background-gray);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 15px;
}
.two-col div.col-two .slider label {
  margin: 0 0 15px 0;
}
.two-col div.col-two .slider input {
  position: relative;
  z-index: 10;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: calc(100% - 69px);
  height: 7px;
  padding: 0 32.5px;
  border-radius: 4px;
  /* background: #CCCCCC; */
  background: transparent;
  outline: none;
  border: none;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: calc(100% - 12px);
}
input[type="range"]::-webkit-slider-runnable-track {
  /* background: #CCCCCC; */
  background: transparent;
  height: 7px;
  width: calc(100% - 12px);
  border-radius: 4px;
  outline: none;
}
input[type="range"]::-moz-range-track {
  /* background: #CCCCCC; */
  background: transparent;
  height: 7px;
  width: calc(100% - 12px);
  border-radius: 4px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 21px;
  height: 21px;
  margin-top: -7px;
  border-radius: 11px;
  background: var(--primary-red);
  /* opacity: .5; */
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  border: none;
  width: 21px;
  height: 21px;
  margin-top: -7px;
  border-radius: 11px;
  background: var(--primary-red);
  cursor: pointer;
}
.two-col div.col-two .slider .range-list {
  position: relative;
  z-index: 5;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.two-col div.col-two .slider .range-list::after {
  content: '';
  position: absolute;
  background-color: #CCCCCC;
  width: calc(100% - 3px);
  height: 7px;
  border-radius: 4px;
  top: -21px;
  left: 2px;
  z-index: -1;
}
.two-col div.col-two .slider .range-list .range-choice {
  position: relative;
  padding: 0;
  margin: 0;
  width: 92px;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #676767;
}
.two-col div.col-two .slider .range-list .range-choice::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  left: 50%;
  top: -22px;
  background: #FFFFFF;
  border: 1px solid #979797;
  border-radius: 4px;
}
.two-col div.col-two .slider-result {
  display: flex;
  gap: 30px;
}
.two-col div.col-two .slider-result p {
  font-size: 16px;
  font-weight: 500;
}
.two-col div.col-two .slider-result p span {
  color: var(--primary-red);
  font-weight: 400;
}
.two-col div.col-two p.includes {
  font-size: 16px;
  font-weight: 300;
}
.two-col div.col-two p.includes span {
  color: #787878;
}
.two-col ul.col-two {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}
.two-col ul.col-two li {
  padding: 25px;
  width: calc((100% - 194px) / 3);
  background-color: var(--background-gray);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  overflow: hidden;
}
.two-col ul.col-two li:hover {
  box-shadow: 0px 0px 20px -10px #00000025;
}
.two-col ul.col-two li::before {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 15px;
  background-color: #E8D3D350;
  transition: width .3s, height .5s;
}
.two-col ul.col-two li::before {
  background-color: #F3F3F3;
}
.yellow.two-col ul.col-two li::before {
  background-color: #ECEDE3;
}
.green.two-col ul.col-two li::before {
  background-color: #DCE5D6;
}
.two-col ul.col-two li:hover::before {
  /* width: calc(100% + 10px);
  height: calc(100% + 10px); */
}
.two-col.colored-bg.yellow ul.col-two li {
  background-color: #ECEDE3;
}
.two-col.colored-bg.green ul.col-two li {
  background-color: #DCE5D6;
}
.two-col ul.col-two li p {
  font-size: 15px;
  line-height: 22px;
  color: #3B3B3B;
  margin: 0;
  z-index: 2;
}
.two-col ul.col-two li p.title {
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}
.two-col ul.col-two li p.price {
  color: var(--primary-red);
  margin-top: 3px;
}
/* blog page */
.filters {
  margin: 0 40px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: .5px solid var(--primary-red);
}
.filters h2.secondary {
  font-size: 22px;
  line-height: 32px;
  margin: 0;
}
.filters .filter-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.main-blog {
  margin: 50px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-blog .blog-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.main-blog .blog-info h2 {
  line-height: 32px;
  margin: 0;
}
.main-blog .blog-info p {
  margin: 0;
}
.main-blog .blog-image {
  width: 560px;
  height: 290px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}
.three-col {
  margin: 50px 40px 140px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.three-col .blog {
  width: calc((100% - 100px) / 3);
}
.main-blog.hidden, .three-col .blog.hidden {
  display: none;
}
.three-col .blog .blog-image {
  min-width: 100%;
  height: 190px;
  max-height: 190px;
  border-radius: 15px;
  margin-bottom: 15px;
  background-color: #D8A09D;
}
.three-col .blog p.caption {
  margin: 5px 0;
}
.three-col .blog h3 {
  line-height: 28px;
  margin: 5px 0;
}
.three-col .blog h3 a {
  text-decoration: none;
}
.three-col .blog p {
  margin: 5px 0 10px 0;
  font-size: 16px;
  line-height: 22px;
  color: #6E6B6B;
}
.post-image {
  margin: 0 140px;
  height: 480px;
  background-size: cover;
  background-position: center;
}
.post-info {
  margin: 60px 140px 20px 140px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.post-text {
  flex: 1;
}
.post-buttons {
  margin: 0 140px;
  display: flex;
  gap: 20px;
}
.post-info .about-post {
  width: 220px;
  padding: 20px;
  background-color: var(--background-gray);
}
.post-info .about-post h2 {
  font-size: 20px;
  line-height: normal;
  color: var(--primary-red);
  margin: 0 0 10px 0;
}
.tagged-with, .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* signup page */
#signup-app {
  position: relative;
  z-index: 2;
}
.signup-form, .payment-result {
  margin: 0 40px;
  background-color: var(--background-gray);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.payment-result {
	display: block;
}
.signup-form .signup-progress {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.signup-form .signup-progress #progress_bar_bg {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  border: .5px solid #979797;
  overflow: hidden;
}
.signup-form .signup-progress #progress_bar_bg #progress {
  position: absolute;
  width: calc(100% / 6);
  height: 100%;
  background-color: #B9584B;
  border-radius: 5px;
  transition: width ease-in-out .5s;
}
.signup-form .signup-progress p {
  margin: 0;
}
.form-panel-group {
  width: 100%;
}
.form-panel {
  display: none;
  position: relative;
}
.form-panel.active {
  display: block;
}
#signup-form .form-panel-group .form-panel > p:first-of-type {
  font-size: 16px;
  position: absolute;
  right: 0px;
  top: 0px;
}
label {
flex: 1;
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
font-weight: 400;
margin-bottom: 15px;
}
.error span {
  /* color: var(--primary-red); */
  color: red;
  display: contents;
}
.error span.ignore-errors {
  color: black;
}
.error input, .error select {
  border: 1px solid var(--primary-red);
}
#signup-form .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-content: stretch;
}
label .flex {
  width: 100%;
}
#signup-form .flex.error {
  margin-bottom: 15px;
}
#signup-form .flex.error label {
  /* margin-bottom: 0; */
}
label .flex input {
  flex: 1;
}
button[type="button"], button[type="submit"] {
  display: inline-block;
  margin: 25px 10px 0 0;
}
button:disabled, button:hover:disabled {
  opacity: .5;
  pointer-events: none;
}
#signup-form .add-on-list, #signup-form .theme-list {
  display: flex;
  flex-wrap: wrap;
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "a b"; */
  gap: 20px;
}
.form-list {
  display: block;
  margin-left: 20px;
  /* width: calc(100% - 20px); */
  min-width: calc((100% - 140px) / 4);
  max-width: calc((100% - 140px) / 4);
}
.add-on-list .form-list.disabled{
  cursor: not-allowed;
  opacity: .5;
}
.form-list input[type="checkbox"], 
.form-list input[type="radio"] {
  margin-left: -20px;
  margin-right: 4px;
}
.form-list b {
  font-weight: 500;
}
.form-list span {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.signup-form fieldset {
  border: unset;
  margin: 0;
  padding: 0;
  width: 100%;
}
.signup-form fieldset.step {
  display: none;
}
.signup-form fieldset.step.current-step {
  display: block;
}
.signup-form legend {
  font-family: 'Museo', sans-serif;
  font-size: 25px;
  line-height: normal;
  color: var(--primary-red);
  padding: 0;
  margin: 0 0 25px 0;
}
.signup-form fieldset .field-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.signup-form fieldset .field-row .field-container {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.signup-form fieldset .field-row .field-container label {
  width: 100%;
  font-weight: 400;
}
.signup-form fieldset .field-row .field-container input {
  width: calc(100% - 19px);
}

.signup-form fieldset .field-row .field-container.check-list {
  gap: 20px;
  align-items: flex-start;
}
.signup-form fieldset .field-row .field-container.check-list label, .signup-form fieldset .field-row .field-container.radio-list label {
  width: calc((100% - 60px) / 4);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  display: flex;
  cursor: pointer;
}
.signup-form label .title {
  font-size: 16px;
  font-weight: 500;
}
.signup-form label img {
  margin: 5px 0;
}
.signup-form label .price {
  font-size: 16px;
  font-style: italic;
}
.signup-form label input[type="checkbox"], .signup-form label input[type="radio"] {
  /* margin-right: 8px; */
  cursor: pointer;
}
.signup-form fieldset .field-row .field-container.radio-list label {
  width: calc((100% - 40px) / 3);
}
.signup-form fieldset .field-row .field-container.radio-list label span img {
  width: 100%;
  height: auto;
  margin: 5px 0;
}

#signup-form .social-list.flex .socials-dropdown {
  width: 175px;
}
#signup-form .social-list.flex:not(:first-of-type) label span {
  display: none;
}
#signup-form .social-list.error.flex:not(:first-of-type) label span {
  display: initial;
}

/* STEP 3, branches */
/* accordions */
.signup-form .form-panel .accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup-form .form-panel .accordion .branch {
  background-color: #FAFAFA;
  border: 1px solid #979797;
  padding: 15px;
  position: relative;
}
.signup-form .form-panel .accordion .branch button:has(.delete-branch) {
  position: absolute;
  right: 0px;
  top: -7px;
  background-color: transparent;
  border: unset;
}
.signup-form .form-panel .accordion .branch .delete-branch {
  /* position: absolute;
  right: 20px;
  top: 17px;
  cursor: pointer; */
  z-index: 1;
}
.signup-form .form-panel .accordion .title {
  width: calc(100% - 30px);
  max-height: 21px;
  padding-right: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.signup-form .form-panel .accordion .title .dropdown-icon {
  display: inline-block;
  width: 17px;
  height: 10px;
  margin-right: 13px;
  transition: transform .25s;
  pointer-events: none;
}
.signup-form .form-panel .accordion .title .delete-branch {
  position: absolute;
  right: 0;
}
.signup-form .form-panel .accordion .content {
  opacity: 0;
  height: 0;
  pointer-events: none;
}
.signup-form .form-panel .accordion .title.active {
  margin-bottom: 25px;
}
.signup-form .form-panel .accordion .active .dropdown-icon {
  transform: rotate(180deg);
}
.signup-form .form-panel .accordion .content.active {
  opacity: 1;
  height: auto;
  pointer-events: all;
}

/* hours */
.branch-hours {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin: 35px 0;
}
.branch-hours .flex {
  align-items: center;
}
.branch-hours .flex * {
  margin: 0;
}
.branch-hours .flex p {
  width: 100px;
  text-transform: capitalize;
  font-size: 16px;
}
.branch-hours .flex .switch {
  position: relative;
  display: inline-block;
  max-width: 80px;
  min-width: 80px;
  height: 26px;
}
.branch-hours .flex .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.branch-hours .flex .slider {
  position: absolute;
  cursor: pointer;
  width: 80px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 3px;
  border: .5px solid #979797;
  display: block;
}
.branch-hours .flex .slider:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 20px;
  border-radius: 3px;
  left: -.5px;
  top: -.5px;
  background-color: #BDBDBD;
  border: .5px solid #979797;
  -webkit-transition: .4s;
  transition: .4s;
}
.branch-hours .flex .slider:after {
  position: absolute;
  content: 'closed';
  width: 46px;
  right: 9px;
  top: 3px;
  color: #BDBDBD;
  font-size: 14px;
  -webkit-transition: .4s;
  transition: .4s;
}
.branch-hours .flex .switch input:checked + .slider:before {
  background-color: var(--primary-red);
  left: 59.5px;
}
.branch-hours .flex .switch input:checked + .slider:after {
  content: 'open';
  right: 26px;
  color: #000000;
}
.branch-hours .flex .day-hours {
  flex-direction: column;
  flex: 0;
  align-items: flex-start;
  min-width: 150px;
  position: relative;
}
.branch-hours .flex .day-hours {
  pointer-events: none;
}
.branch-hours .flex .day-hours input {
  opacity: .5;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .5s;
}
.branch-hours .flex.open .day-hours, 
.branch-hours .flex.open .day-hours input {
  opacity: 1;
  pointer-events: all;
}
.branch-hours .flex:not(:first-child) .day-hours {
  gap: 0;
}
.branch-hours .flex .day-hours span {
  position: absolute;
  top: -28px;
  left: 0;
}
.branch-hours .flex:not(:first-child) .day-hours span {
  width: 0;
  height: 0;
  opacity: 0;
}

.signup-form .step-5 p {
  font-size: 16px;
  line-height: normal;
  font-weight: 300;
  color: #4E4D4D;
  margin: 0;
  width: 100%;
}
.signup-form .step-5 p.title {
  color: #000000;
  font-weight: 400;
}

.signup-form a.button-like {
  margin-top: 25px;
}
.signup-form input[type="submit"] {
  font-family: 'Plus Jakarta Sans';
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  padding: 9.5px 16px;
  box-sizing: border-box;
  display: block;
  width: fit-content;
  height: 37.5px;
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
  border-radius: 5px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color .3s;
  flex: 0;
  margin: 25px 0 0 0;
  cursor: pointer;
}
.signup-form .password-reveal label {
  position: relative;
  /* align-content: flex-end; */
  align-content: space-between;
}
.signup-form .password-reveal input ~ img.show-hide {
  position: absolute;
  right: 10px;
  bottom: 5px;
  cursor: pointer;
}
.signup-form input.finish, form.step-1 a.previous, form.step-6 a.next {
  display: none;
}
.signup-form.step-6 input.finish {
  display: block;
}
.signup-form .signup-social-icon {
  color: #00000080;
}
body.dark-mode .error span.ignore-errors {
  color: #FFFFFF;
}
body.dark-mode .signup-form .signup-social-icon {
  color: #FFFFFF80;
}
body.dark-mode .signup-form .form-panel .accordion .branch {
  background-color: #323333;
}
body.dark-mode .signup-form .password-reveal input ~ img.show-hide, 
body.dark-mode .signup-form .form-panel .accordion .title .dropdown-icon {
  filter: invert(1);
}
body.dark-mode .branch-hours .flex .slider {
  background-color: #000000;
}
body.dark-mode .branch-hours .flex .switch input:checked + .slider:after {
  color: #FFFFFF;
}
body.dark-mode input[type="time" i]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.signup-form .social-list.flex .flex:last-of-type {
  flex: 1;
}
.signup-form .social-list.flex .flex:last-of-type span {
  /* padding: 35px 0 0 0; */
}
#signup-form .form-panel-group .form-panel .social-list .flex .socials-dropdown select {
  max-width: 250px;
}
#signup-form .form-panel-group .form-panel .social-list .flex .signup-social-icon {
  margin: auto 0px 21px -19px;
  font-size: 30px;
  height: 27px;
  width: 27px;
}
#signup-form button.remove {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #B9584B;
  border: unset;
  position: relative;
  padding: 0px;
  margin: auto 0px 24px 0px;
}
/* step global site tags */
.global-tags-container {
  display: flex;
}
.global-tags-container .tags-container {
  flex: 1;
  padding: 20px;
  background-color: #FFFFFF;
  border: 1px solid #8C8C8C;
}
.global-tags-container .tags-container.subjects-tags {
  border-left: none;
}
.global-tags-container .tags-container span {
  font-size: 14px;
  font-weight: 300;
}
.global-tags-container .tags-container span.title {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}
.global-tags-container .tags-container ul.tags-list {
  margin: 10px 0 0 0;
  padding: 0;
}
.global-tags-container .tags-container ul.tags-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 18px;
  gap: 25px;
}
.global-tags-container .tags-container ul.tags-list li:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  left: 0px;
  top: 6px;
}
.global-tags-container .tags-container ul.tags-list li span {
  flex: 1;
  min-height: 21px;
  padding-bottom: 2px;
}
.global-tags-container .tags-container ul.tags-list li span.suggest-edit {
  border-bottom: 2px dotted #979797;
  position: relative;
  cursor: pointer;
  padding-bottom: 0;
}
.global-tags-container .tags-container ul.tags-list li span.suggest-edit:before {
  position: absolute;
  content: '';
  right: 0;
  width: 17px;
  height: 17px;
  background-image: url("/assets/images/black-pencil.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.global-tags-container .tags-container ul.tags-list li.editing {
  gap: 5px;
}
.global-tags-container .tags-container ul.tags-list li img.cancel {
  background-color: var(--primary-red);
  border-radius: 10px;
  padding: 3px;
  cursor: pointer;
}
.global-tags-container .tags-container ul.tags-list li input.edit-section {
  background-color: transparent;
  border: none;
  border-bottom: 2px dotted #979797;
  padding: 0;
  height: 21px;
  font-weight: 400;
  outline: none;
}
.global-tags-container .tags-container ul.tags-list li img.save {
  background-color: var(--primary-red);
  border-radius: 10px;
  padding: 5.5px 4px;
  cursor: pointer;
}
.global-tags-container .tags-container ul.tags-list li img.save.disabled {
  pointer-events: none;
  opacity: .5;
}





.global-tags-container .tags-container ul.tags-list li img.minus {
  margin: 0 0 0 auto;
  cursor: pointer;
}

/* site map themes step */
.signup-form h4 .thin {
  font-family: 'Plus Jakarta Sans';
  font-size: 18px;
  font-weight: 100;
}
.signup-form .sitemap-theme {
  margin: 30px auto 42px auto;
}
.signup-form .sitemap-theme ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.signup-form .sitemap-theme ul li {
  flex: 1;
  border-top: .5px solid #979797;
  border-left: .5px solid #979797;
  border-bottom: 8px solid #DFDFDF;
  background-color: #FFFFFF;
  padding: 20px;
  position: relative;
}
.signup-form .sitemap-theme ul li:last-child {
  border-right: .5px solid #979797;
}
/* .signup-form .sitemap-theme ul li:has(input[type="radio"]:checked) {
  border-bottom: 8px solid var(--primary-red);
} */
.signup-form .sitemap-theme ul li:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 8px;
  background-color: var(--primary-red);
  right: 0;
  left: unset;
  bottom: -8px;
  transition: width .25s;
}
.signup-form .sitemap-theme ul li:has(input[type="radio"]:checked):before {
  width: 100%;
  left: 0;
  right: unset;
}
.signup-form .sitemap-theme ul li:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 0px;
  left: calc(50% - 12px);
  bottom: -8px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  transition: bottom .25s, height .25s;
}
.signup-form .sitemap-theme ul li:has(input[type="radio"]:checked):after {
  background-color: var(--primary-red);
  height: 12px;
  bottom: -20px;
}

.signup-form .sitemap-theme ul li label {
  align-items: flex-start;
  cursor: pointer;
}
.signup-form .sitemap-theme ul li label input {
  margin-top: 3px;
}
.signup-form .sitemap-theme ul li label span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  flex: 1;
}
.signup-form .sitemap-theme ul li span .title {
  display: inline-block;
  width: calc(100% - 25px);
  font-size: 16px;
  font-weight: 500;
}
.signup-form .edit-pages h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 6px 0;
}
.signup-form .edit-pages p {
  font-size: 16px;
}
.signup-form .edit-pages .pages-buttons {
  border: .5px solid #979797;
  background-color: #FFFFFF;
  padding: 25px;
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
}
.signup-form .edit-pages .navs-container {
  width: 100%;
  display: flex;
  gap: 35px;
}
.signup-form .edit-pages .navs-container > * {
  flex: 1;
}
.signup-form .edit-pages .navs-container h4 {
  font-size: 18px;
}
.signup-form .edit-pages .navs-container p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.signup-form .edit-pages .navs-container .footer-container ul {
  margin-top: 0;
}

.tree-node {
  width: 100%;
}
.tree-node:has(> .tree-node-inner-back > .tree-node-inner > .hide-page) {
  display: none;
}
.tree-node-children {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin-left: auto;
}
.tree-node-children .tree-node-inner-back {
  width: 100%;
  width: calc(100% - 21px);
  background-color: #FAFAFA;
  border: .5px solid #979797;
  padding: 6.5px 10px;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  /* cursor: grab; */
}
.tree-node-children .tree-node-inner-back:active {
  cursor: grabbing;
}
.tree-node-inner-back .tree-node-inner {
  width: 100%;
}
.tree-node-inner-back .tree-node-inner > div {
  display: flex;
  gap: 10px;
  position: relative;
  margin: 0px 0px 0px -10px;
}
.tree-node-inner-back .tree-node-inner > div img {
  object-fit: contain;
}
.tree-node-inner-back .tree-node-inner > div .grab {
  height: 21px;
  width: 6px;
  background-image: url("/assets/images/grip.svg");
  background-size: 6px 12px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: grab;
  padding: 10px 10px 10px 10px;
  margin: -10px -10px -10px 0px;
}
.tree-node-inner-back .tree-node-inner > div img.minus {
  cursor: pointer;
  height: 21px;
  width: 21px;
}
.tree-node-inner-back .tree-node-inner > div img.minus.half {
  opacity: .25;
  pointer-events: none;
}

.tree-node-inner-back .tree-node-inner > div .cant-delete {
  display: none;
}
.tree-node-inner-back .tree-node-inner > div img.minus.half:hover + .cant-delete {
  display: block;
  position: absolute;
  right: -75px;
  top: 25px;
  width: 150px;
  background-color: var(--background-gray);
  padding: 7px 10px 10px 10px;
  border: 0.5px solid #979797;
  z-index: 1;
  text-align: center;
  font-size: 14px;
  font-style: italic;
}
.tree-node-inner-back .tree-node-inner > div img.minus.half:hover + .cant-delete:before {
  position: absolute;
  content: '';
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--background-gray);
  border-left: 0.5px solid #979797;
  border-top: 0.5px solid #979797;
  left: calc(50% - 6px);
  top: -6px;
}

.tree-node-inner-back .tree-node-inner .cancel-edit {
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  color: #B9584B;
  align-self: center;
  position: relative;
}
.tree-node-inner-back .tree-node-inner .cancel-edit:before {
  position: absolute;
  content: '';
  background-image: url("/assets/images/white-cancel-edit.svg");
  width: 10px;
  height: 10px;
  left: calc(50% - 5px);
  top: calc(50% - 5px);
}

.tree-node-inner-back .tree-node-inner input.edit-section {
  background-color: transparent;
  border: none;
  border-bottom: 2px dotted #979797;
  padding: 0;
  height: 21px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.tree-node-inner-back .tree-node-inner button.save {
  min-width: 21px;
  max-width: 21px;
  height: 21px;
  margin: 0;
  padding: 0;
  border-radius: 21px;
  overflow: hidden;
  color: #B9584B;
  position: relative;
}
.tree-node-inner-back .tree-node-inner button.save:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  background-image: url(/assets/images/white-check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.tree-node-inner span {
  flex: 1;
}
.tree-node-children .tree-node .tree-node-children {
  width: calc(100% - 20px);
}
.tree-node-children .tree-node .tree-node-children .tree-node-inner-back {
  background-color: #EAEAEA;
}
/* add another section */
.navs-container button.add {
  display: block;
}
.navs-container button.add.cancel {
  margin-top: 5px;
}
.navs-container button.add.cancel:before {
  transform: rotate(45deg);
}
.navs-container .save-page {
  background-color: #FAFAFA;
  border: .5px solid #97979750;
  gap: 5px;
  align-items: center;
  padding: 6.5px 10px 6.5px 5px;
  /* width: calc(100% - 21px); */
  width: calc(100% - 16px);
  /* display: none; */
  display: flex;
}
.navs-container .save-page.show {
  display: flex;
}
.navs-container .save-page input {
  flex: 1;
  background-color: transparent;
  border: none;
  border-bottom: 2px dotted #979797;
  padding: 0;
  height: 21px;
  font-size: 16px;
  font-weight: 400;
}
.navs-container .save-page input::placeholder {
  color: #7D7D7D;
}
.navs-container .save-page input:focus-visible {
  outline: none;
  border-bottom: 2px dotted #979797;
}
.navs-container .page-title {
  margin-top: 1px;
  border-bottom: 2px dotted transparent;
}
.navs-container .page-title.suggest-edit {
  border-bottom: 2px dotted #979797;
  position: relative;
  cursor: pointer;
}
.navs-container .page-title.suggest-edit:before {
  position: absolute;
  content: '';
  right: 0;
  width: 17px;
  height: 17px;
  background-image: url("/assets/images/black-pencil.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.navs-container .save-page button {
  margin: 0;
  padding: 0;
  width: 21px;
  height: 21px;
  border-radius: 21px;
  overflow: hidden;
  color: #B9584B;
  transition: background-color .3s, color .3s, border-color .3s;
  position: relative;
}
.navs-container .save-page button:hover {
  color: #6A2219;
  border-color: #6A2219;
}

/* TODO: probably remove the opacity here */
.navs-container .save-page input:has([value="Add Page"]) {
  opacity: .25;
}
.navs-container .save-page button:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  background-image: url("/assets/images/white-check.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.navs-container .save-page button.cancel {
  width: 16px;
  height: 16px;
}
.navs-container .save-page button.cancel:before {
  background-image: url("/assets/images/white-x.svg");
  transform: rotate(0deg);
  width: 9px;
  height: 9px;
  left: calc(50% - 4.5px);
  top: calc(50% - 4.5px);
}

.signup-form .theme-list p.total-price {
  width: 100%;
  grid-area: b;
}





#byte-ui-modal {
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 10;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 3px 10px 0px #00000050;
}

#byte-ui-modal::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vw;
  background-color: #FFFFFF70;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 50%;
  z-index: -1;
}

#byte-ui-modal .notification_area {
  margin: 25px;
}
#byte-ui-modal .notification_area .icon_area {
  position: absolute;
  /* left: 165px; */
  right: 25px;
  top: 24px;
}
#byte-ui-modal .notification_area .text_area strong {
  display: block;
  margin-bottom: 5px;
}
#byte-ui-modal .notification_area .choices_area {
  margin-top: 15px;
  display: flex;
  gap: 25px;
}


footer {
  /* width: 100%; */
  margin-top: 50px;
  background-color: #FFFFFF;
  border-top: 0.5px solid var(--primary-red);
  padding: 45px 40px;
}
footer .footer-container {
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

footer .footer-credits {
  width: 100%;
  padding: 6px 0;
  box-sizing: border-box;
  background-color: rgba(6,53,66,0.7);
  display: flex;
  justify-content: center;
}
footer .footer-credits p {
  margin: 0;
  color: #fff;
}
footer .footer-credits a {
  color: #fff;
  text-decoration: none;
}
footer .footer-credits a:hover {
  text-decoration: underline;
}
footer .footer-credits .credit {
  margin: 0 5px 0 0;
  padding: 0 5px 0 0;
  box-sizing: border-box;
  border-right: 1px solid #fff;
}
footer .footer-credits .credit:last-of-type {
  margin: 0;
  padding: 0;
  border-right: none;
}

/* DARK MODE */
body.dark-mode {
  --primary-red: #D8A09D;
  --background-gray: #212222;
  background-color: #121212;
  /* --highlight-links: #FFFF00; */
  color: #E5E7EB;
}
body.dark-mode header .header-notices .notice-section .close-popup::after {
  background-color: #FFFFFF;
}
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3.secondary, body.dark-mode p, body.dark-mode a {
  color: #FFFFFF;
}
body.dark-mode ul {
  color: #E5E7EB;
}
body.dark-mode a.button-like, 
body button {
  background-color: #B9584B;
  border: 1px solid #B9584B;
}
body.dark-mode a.button-like:hover, body.dark-mode button.primary:hover {
  background-color: #D97467;
  border: 1px solid #D97467;
}
body.dark-mode a.button-like.secondary, body.dark-mode button.secondary {
  background-color: unset;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
}
body.dark-mode a.button-like.secondary:hover, body.dark-mode button.secondary:hover {
  border: 1px solid #D97467;
  color: #D97467;
}
body.dark-mode a.arrow-button, body.dark-mode a.blog-tag {
  color: #D8A09D;
}
body.dark-mode a.blog-tag:hover {
  background-color: #D8A09D30;
  border: .5px solid #D8A09D;
}
body.dark-mode a.blog-tag.active {
  color: #000000;
}
body.dark-mode a.blog-tag.active:hover {
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
}
body.dark-mode a.arrow-button::after {
  background-color: #B9584B;
}
body.dark-mode #byte-ui-modal {
  background-color: #000000;
}
body.dark-mode #byte-ui-modal::after {
  background-color: #00000070;
}
body.dark-mode button.add:hover::after, body.dark-mode button.remove:hover {
  background-color: var(--primary-red);
}
body.dark-mode label {
  color: #FFFFFF;
}
body.dark-mode input, body.dark-mode select, body.dark-mode textarea {
  background-color: #121212;
  color: #FFFFFF;
}
body.dark-mode input:-webkit-autofill, 
body.dark-mode input:autofill, 
body.dark-mode input:-webkit-autofill:hover, 
body.dark-mode input:-webkit-autofill:focus, 
body.dark-mode input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #363636 inset;
  -webkit-text-fill-color: #FFFFFF;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
}
body.dark-mode input::placeholder {
  color: #7D7D7D;
}
body.dark-mode .placeholder-logo img {
  content: url("/assets/images/collata-logo-darkmode.svg");
}
body.dark-mode .placeholder-logo:hover {
filter: drop-shadow(0 0 10px #CBDFBD70);
}
body.dark-mode .main-nav ul.nav-list li a {
  color: #FFFFFF;
}
/* body.dark-mode .main-nav .nav-pulldowns .pulldown {
  background-color: #121212;
} */
body.dark-mode .main-nav .nav-pulldowns .pulldown:hover {
  filter: drop-shadow(0 0 5px #FFFFFF90);
}
body.dark-mode .main-nav .nav-pulldowns .pulldown.light-mode img {
  content: url(/assets/images/pulldown-darkmode.svg);
}
body.dark-mode .main-nav .nav-pulldowns .pulldown.accessibility img {
  content: url(/assets/images/pulldown-accessibility-darkmode.svg);
}
body.dark-mode .gradient-bg {
  position: relative;
  background: #121212;
}
body.dark-mode .gradient-bg::after {
  content: '';
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  z-index: -1;
  background: linear-gradient(180deg, #E9FFD6 0%, #121212 100%);
}
body.dark-mode .divider::before {
  background: linear-gradient(270deg, #D8A09D 0%, #121212 100%);
}
body.dark-mode .divider::after {
  background: linear-gradient(90deg, #D8A09D 0%, #121212 100%);
}
body.dark-mode .divider-section .lib-tools-list li::before {
  filter: saturate(0.5) brightness(1.6);
}
body.dark-mode .colored-bg {
  background-color: #212222;
  border: 0.5px solid #CEFFAD;
  position: relative;
  z-index: 0;
}
body.dark-mode .features-info {
  filter: drop-shadow(0px 6px 8px rgba(0,0,0,.25));
}
body.dark-mode .features-info::after, body.dark-mode .colored-bg.green .features-info::after {
  background-color: #2F2F2F;
}
body.dark-mode .divider-section .lib-tools-list li::after {
  box-shadow: 0px 0px 50px 50px #141414;
}
body.dark-mode .features-title ul.features-tags a.active,
body.dark-mode .features-title ul.features-tags a:hover {
  background-color: #D8A09D30;
  border: 1px solid #584746;
  color: #D8A09D;
}
body.dark-mode img.wbl {
  content: url(../images/client-logo-01-darkmode.webp);
}
body.dark-mode img.ccjpl {
  content: url(../images/client-logo-02-darkmode.webp);
}
body.dark-mode img.gwmv {
  content: url(../images/client-logo-03-darkmode.webp);
}
body.dark-mode img.mpl {
  content: url(../images/client-logo-04-darkmode.webp);
}
body.dark-mode img.cpl {
  content: url(../images/client-logo-05-darkmode.webp);
}
body.dark-mode img.wfbpl {
  content: url(../images/client-logo-06-darkmode.webp);
}
body.dark-mode img.swpl {
  content: url(../images/client-logo-07-darkmode.webp);
}
body.dark-mode img.gfpl {
  content: url(../images/client-logo-08-darkmode.webp);
}
body.dark-mode .launch-options > div {
  background-color: #212222;
  border: .5px solid #CEFFAD;
}
body.dark-mode .full-service img {
  content: url(../images/byte-logo-darkmode.png);
}
body.dark-mode .colored-bg.body-bucket {
  border: none;
}
body.dark-mode .explore-blog p {
  color: #E2E2E2;
}
body.dark-mode footer {
  background-color: unset;
}
/* dark secondaries */
body.dark-mode .two-col div.col-two .slider .range-list::after {
  background-color: #555555;
}
body.dark-mode .two-col ul.col-two li, 
body.dark-mode .two-col.colored-bg.yellow ul.col-two li,
body.dark-mode .two-col.colored-bg.green ul.col-two li {
  background-color: unset;
}
body.dark-mode .two-col ul.col-two li::before {
  background-color: rgba(0,0,0,.88);
}
body.dark-mode .two-col ul.col-two li::after {
  content: '';
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  min-width: 200%;
  min-height: 200%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: linear-gradient(135deg, #CFFFB2 0%, #CFFFB2 40%, #FFFFFF 50%, #CFFFB2 60%, #CFFFB2 100%);
  z-index: -1;
  transition: transform .5s;
}
body.dark-mode .two-col ul.col-two li:hover {
  box-shadow: 0px 0px 0px 1px #CFFFB2;
}
body.dark-mode .two-col ul.col-two li:hover::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
body.dark-mode .two-col div.col-two p.includes span {
  color: #E5E7EB90;
}
body.dark-mode .two-col ul.col-two li p:nth-of-type(2) {
  color: #E5E7EB;
}
body.dark-mode .two-col ul.col-two li p.title{
  color: #FFFFFF;
}
body.dark-mode .three-col .blog p {
  color: #FFFFFF90;
}
body.dark-mode .signup-form .step-5 p {
  color: #FFFFFF80;
}
body.dark-mode .signup-form .step-5 p.title {
  color: #FFFFFF;
}
body.dark-mode .signup-form .sitemap-theme ul li, 
body.dark-mode .signup-form .edit-pages .pages-buttons {
  background-color: #000000;
}
body.dark-mode .tree-node-children .tree-node-inner-back, 
body.dark-mode .navs-container .save-page {
  background-color: var(--background-gray);
}
body.dark-mode .tree-node-children .tree-node .tree-node-children .tree-node-inner-back {
  background-color: color-mix(in srgb, var(--background-gray) 85%, #FFFFFF);
}
body.dark-mode .signup-form .sitemap-theme ul li, 
body.dark-mode .signup-form .edit-pages .pages-buttons, 
body.dark-mode .tree-node-children .tree-node-inner-back {
  border-color: color-mix(in srgb, var(--background-gray) 75%, #FFFFFF);
}
body.dark-mode #card-container {
  filter: brightness(0.8) contrast(1) saturate(1);
  /* filter: invert(1); */
}
/* step global site tags */
body.dark-mode .global-tags-container .tags-container {
  background-color: #121212;
}
body.dark-mode .global-tags-container .tags-container ul.tags-list li img.cancel, 
body.dark-mode .global-tags-container .tags-container ul.tags-list li img.save {
  background-color: #B9584B;
}
/* body.dark-mode .sq-card-wrapper.sq-focus .sq-card-iframe-container::before {
  border: inset 2px #FF9500;
}
body.dark-mode .sq-card-wrapper.sq-error .sq-card-iframe-container::before {
  border: inset 2px #00CFDF;
}
body.dark-mode iframe #card-number-wrapper #giftCardNumber, 
body.dark-mode iframe #card-number-wrapper #cardNumber {
  color: #00CFDF;
}
body.dark-mode .sq-error {
  color: #00CFDF;
} */
body.dark-mode .sq-card-wrapper .sq-card-message-no-error {
  color: rgba(255,255,255,.85);
}
body.dark-mode .sq-card-wrapper .sq-card-message-no-error::before {
  background-color: rgba(255,255,255,.85);
}
body.dark-mode .sq-card-wrapper .sq-card-message-error {
  color: #FF0000;
}
body.dark-mode .sq-card-wrapper .sq-card-message-error::before {
  background-color: #FF0000;
}


body.dark-mode .page-content bs_editable {
  /* background-color: lightblue; */
}
body.dark-mode .page-content bs_editable h2 {
  color: var(--primary-red);
  /* margin: 15px 0; */
}
body.dark-mode .page-content bs_editable h3 {
  /* font-size: 23px; */
  /* margin: 12px 0; */
}
body.dark-mode .page-content bs_editable h4 {
  /* margin: 10px 0; */
}
body.dark-mode .page-content bs_editable p {
  /* margin: 15px 0; */
}
body.dark-mode .page-content bs_editable a {
  color: var(--primary-red);
}
body.dark-mode .page-content bs_editable ul {
  color: #E5E7EB;
}
body.dark-mode .page-content bs_editable img {
  max-width: 100%;
  height: auto;
  margin: 25px;
}

@media only screen and (min-width: 1440px) {
  header .header-notices .notice-section {
    margin: 33px 40px;
  }
  .main-content {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1072px) {
  .main-nav ul.nav-list li a {
    font-size: 13px;
  }
  /* ACCESSIBILITY OPTIONS */
  body.bigger-text .main-nav ul.nav-list li a {
    font-size: 15px;
  }
}

/* START 1030 */
@media only screen and (max-width: 1030px) {
  header .header-notices .notice-section, 
  header .header-wrapper {
    margin: 25px;
  }
  .main-nav {
    gap: 15px;
  }
  .main-nav ul.nav-list {
    gap: 15px;
  }
  .main-nav .nav-pulldowns {
    gap: 10px;
  }
  .main-content {
    margin: 0 25px;
  }
  .campaign {
    padding: 50px;
  }
  .campaign .campaign-image {
    width: 300px;
    height: 300px;
  }
  .divider-section {
    margin: 100px 25px;
  }
  .divider-section .lib-tools-list li {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .divider-section .lib-tools-list li::before {
    left: 15px;
    top: 15px;
  }
  
  /* 1030 FEATURES SECTIONS */
  .colored-bg {
    margin: 100px 0;
    gap: 20px;
  }
  .colored-bg .features-title {
    gap: 40px;
  }
  .colored-bg .features-title .features-image {
    width: 200px;
    height: 200px;
  }
  .features-info {
    gap: 0px 50px;
    width: calc(100% - 50px);
    padding: 25px;
  }
  /* LAUNCH YOUR BRANCH */
  .launch-options > div {
    padding: 25px;
    min-width: calc((100% - 200px) / 3);
  }
  /* UNPARALLELED SUPPORT */
  .body-bucket {
    padding: 50px 25px;
  }
  footer {
    padding: 45px 25px;
  }

  /* SECONDARIES */
  .two-col, .two-col.colored-bg {
    padding: 30px;
  }
  .two-col .col-one {
    width: 250px;
  }
  .two-col ul.col-two li {
    width: calc((100% - 122px) / 2);
  }
  .filters {
    margin: 0 25px;
  }
  .main-blog {
    margin: 25px;
  }
  .three-col {
    margin: 50px 25px 140px 25px;
  }
  .post-image {
    margin: 0 75px;
  }
  .post-info {
    margin: 60px 75px 20px 75px;
  }
  .post-buttons {
    margin: 0 75px;
  }
  /* secondary signup */
  .signup-form  {
    margin: 0 25px;
  }
  .signup-form .input.checklist label {
    width: calc((100% - 40px) / 3);
  }
  .signup-form .input.radio label {
    width: calc((100% - 20px) / 2);
  }
  .signup-form .sitemap-theme ul li {
    padding: 15px 15px 10px 10px;
  }

  .form-list {
    min-width: calc((100% - 100px) / 3);
    max-width: calc((100% - 100px) / 3);
  }
}

@media only screen and (max-width: 912px) {
  .placeholder-logo {
    width: 100px;
    height: 50px;
  }
  .placeholder-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .site-navigations {
    padding-left: 20px;
  }
}

/* START 900 */
@media only screen and (max-width: 900px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: initial;
  }
  /* MOBILE NAV */
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #FCFCFC;
  }
  body.open-notice {
    overflow: hidden;
  }
  header .header-notices .notice-section.show {
    height: calc(100vh - 138px);
  }
  header .header-notices .notice-section .access-options {
    flex-direction: column;
  }
  header .header-wrapper {
    position: relative;
    margin: 15px;
  }
  .placeholder-logo {
    width: 118px;
    height: 58px;
  }
  .placeholder-logo img {
    width: 118px;
  }
  header .main-nav {
    gap: 25px;
  }
  header .main-nav .placeholder-logo {
    width: 100px;
    height: 50px;
  }
  header .main-nav .nav-pulldowns {
    gap: 15px;
  }
  header .main-nav ul.nav-list, header a.button-like {
    opacity: 0;
    display: none;
  }
  header .main-nav .ham-menu {
    display: flex;
  }
  header .mobile-container {
    position: absolute;
    left: 0;
    top: 80px;
    width: calc(100vw - 30px);
    height: calc(100vh - 88px);
    background-color: #CBDFBD30;
    padding: 15px;
    overflow-y: scroll;
    opacity: 0;
    display: none;
  }
  header .mobile-nav {
  }
  header .mobile-nav .nav-element {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: .5px solid var(--primary-red);
  }
  header .mobile-nav a {
    display: block;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: normal;
    color: #000000;
    width: 100%;
  }
  header .mobile-nav .nav-element a::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 15px;
    right: 3px;
    top: 2px;
    background-image: url(../images/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  header .mobile-nav .nav-element a::after {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    top: 0;
    right: 0;
    background-color: var(--primary-red);
    border-radius: 20px;
  }
  header .mobile-nav a {
    font-size: 18px;
  }
  header .mobile-nav p {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #00000060;
    margin: 5px 0;
    width: calc(100% - 29px);
  }
  header .mobile-nav p.opening-p {
    font-size: 14px;
    line-height: 20px;
    color: #5E5C5C;
  }
  header .mobile-nav > div:last-of-type {
    position: relative;
  }
  header .mobile-nav a.button-like {
    display: block;
    opacity: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 13px;
    color: #FFFFFF;
    width: fit-content;
  }
  /* opened nav */
   body.open-menu {
    overflow: hidden;
   }
  body.open-menu header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: -1;
  }
  body.open-menu header .main-nav .ham-menu {
    gap: 0;
  }
  body.open-menu header .main-nav .ham-menu .line:first-of-type {
    transform: rotate(45deg);
  }
  body.open-menu header .main-nav .ham-menu .line:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  body.open-menu header .main-nav .ham-menu .line:last-of-type {
    opacity: 0;
  }
  body.open-menu header .mobile-container {
    opacity: 1;
    display: block;
    left: -15px;
  }
  body.open-menu header .mobile-nav {
    display: block;
    margin-bottom: 30px;
  }
  body.open-menu header .main-nav::before {
    content: '';
    position: absolute;
    clip-path: polygon(50% 0px, 100% 100%, 0% 100%);
    background-color: #CBDFBD30;
    width: 27px;
    height: 14px;
    right: 1px;
    bottom: -22px;
  }

  .main-content {
    margin: 90px 15px 0 15px;
  }
  
  .campaign {
    padding: 70px 50px 50px 70px;
    gap: 100px;
  }
  .campaign .campaign-image .floaty {
    animation-play-state: paused;
    filter: drop-shadow(0px 2px 4px #000000);
  }
  .features-image .circle-content {
    filter: drop-shadow(0px 2px 4px #00000065);
  }
  .feature-bullets-image {
    margin: 0 0 5px 0;
    width: 100%;
  }

  /* secondaries */
  .two-col div.col-two .slider .range-list .range-choice {
    width: 50px;
  }

  .main-blog .blog-image {
    width: 450px;
  }
  .post-image {
    margin: 0 50px;
    height: 400px;
  }
  .post-info {
    margin: 60px 50px 20px 50px;
  }
  .post-buttons {
    margin: 0 50px;
  }
  .signup-form .input.checklist label {
    width: calc((100% - 20px) / 2);
  }

  /* FEATURES & PRICING */
  .two-col {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 50px 0;
  }
  .two-col, .two-col.colored-bg {
    margin: 50px 0;
    padding: 30px 15px;
  }
  .two-col .col-one {
    width: 100%;
    text-align: center;
  }
  .two-col .col-two {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    text-align: center;
    width: 100%;
  }
  .two-col .col-two .slider {
    width: calc(100% - 50px);
  }
  .two-col div.col-two .slider input {
    width: calc(100% - 30px);
    padding: 0 10px 0 10px;
  }
  .two-col div.col-two .slider datalist option {
    width: 50px;
  }

  .two-col ul.col-two {
    gap: 15px;
  }
  .two-col ul.col-two li {
    /* width: calc(100% - 50px); */
    text-align: left;
  }

  /* BLOG */
  .three-col {
    gap: 30px;
  }
  .three-col .blog {
    width: calc((100% - 30px) / 2);
  }

  /* SIGN UP */
  #signup-form .add-on-list, #signup-form .theme-list {
    /* grid-template-columns: 1fr 1fr 1fr; */
  }
  .signup-form .edit-pages .navs-container {
    flex-direction: column;
  }

  /* MOBILE FOOTER */
  footer .footer-container {
    flex-direction: column;
    gap: 35px;
  }
  footer .placeholder-logo {
    width: unset;
    height: unset;
  }
  footer .site-navigations {
    padding: 0;
  }
  footer .main-nav {
    flex-direction: column;
    gap: 20px;
  }
  footer .main-nav ul.nav-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  footer .main-nav ul.nav-list li {
    width: max-content;
  }
  footer .main-nav ul.nav-list li:first-child {
    width: max-content;
  }

  /* ACESSIBILITY OPTIONS */
  body.bigger-text header .mobile-nav p {
    font-size: 15px;
  }
  body.desaturate header {
    top: -90px;
  }

  /* MOBILE DARK MODE */
  body.dark-mode header {
    background-color: #121212;
  }
  body.dark-mode header,
  body.dark-mode header::after {
    background-color: #121212;
  }
  body.dark-mode header .mobile-container,
  body.dark-mode header .main-nav::before {
    background-color: #212222;
  }
  body.dark-mode header .mobile-nav a,
  body.dark-mode header .mobile-nav p {
    color: #FFFFFF;
  }
  body.dark-mode header .mobile-nav .nav-element a::after {
    background-color: #B9584B;
  }
  body.dark-mode header .mobile-nav .nav-element {
    border-bottom: .5px solid #B9584B;
  }
}


@media only screen and (max-width: 768px) {
  .tablet, .mobile {
    display: inline-block;
  }
  .main-content {
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 90px 0 0 0;
  }
  .page-content {
    order: 0;
  }

  /* MOBILE COMMON ELEMENTS */
  h1 {
    font-size: 32px;
    line-height: 36px
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
  
  /* MOBILE CAMPAIGN */
  .campaign {
    margin: 0;
    padding: 25px 25px 40px 25px;
    flex-direction: column-reverse;
    gap: 25px;
    text-align: center;
  }
  .campaign .campaign-image {
    width: 232px;
    height: 232px;
  }
  .campaign a.button-like {
    margin: auto;
  }

  .divider-section {
    margin: 50px 15px;
  }
  .divider {
    margin: 10px auto 25px auto;
  }
  .divider-section .lib-tools-list {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  /* MOBILE FEATURES SECTIONS */
  .colored-bg {
    margin: 0;
    padding: 40px 15px;
    overflow: hidden;
    align-items: center;
  }
  .colored-bg .features-title {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    align-items: center;
  }
  .colored-bg .features-title .features-image {
    width: 140px;
    height: 140px;
  }
  .colored-bg .title-tags {
    width: 100%;
  }
  .colored-bg .title-tags .mobile-case {
    width: calc(100% + 30px);
    margin-left: -15px;
    overflow-y: scroll;
  }
  .colored-bg .title-tags .mobile-case .features-tags {
    flex-wrap: nowrap;
    width: max-content;
  }
  .features-title ul.features-tags a {
    width: max-content;
    margin-bottom: 10px;
  }
  .features-title ul.features-tags a:first-of-type {
    margin-left: 15px;
  }
  .features-title ul.features-tags a:last-of-type {
    margin-right: 15px;
  }
  .features-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 40px 15px;
    width: calc(100% - 30px);
  }
  .features-info h3 {
    width: fit-content;
    margin: 0;
  }
  .features-info ul.bullet-list {
    order: 3;
  }
  .features-content {
    flex-direction: column;
  }
  .features-content .feature-bullets-image {
    order: 2;
  }
  .features-content .features-content-bullets {
    order: 3;
  }

  .connect-patrons {
    margin-bottom: 75px;
  }
  .connect-patrons div {
    gap: 25px 50px;
  }

  .launch-options {
    flex-direction: column;
    gap: 15px;
  }
  .launch-options > div {
    padding: 30px;
  }

  .body-bucket {
    margin: 15px;
    padding: 20px;
    gap: 0;
  }
  .body-bucket h2 {
    font-size: 20px;
    line-height: 24px;
  }

  /* MOBILE EXPLORE BLOG */
  .explore-blog .mobile-case {
    width: calc(100% + 30px);
    height: fit-content;
    overflow-y: hidden;
  }
  .explore-blog .latest-posts {
    overflow-x: visible;
    overflow-y: scroll;
  }
  .explore-blog .latest-posts > div {
    min-width: 265px;
  }
  .explore-blog .latest-posts > div:first-of-type {
    margin-left: 15px;
  }
  .explore-blog .latest-posts > div:last-of-type {
    margin-right: 15px;
  }
  

  /* mobile secondaries */
  .page-header {
    margin: 0 15px -10px 15px;
  }

  .filters {
    margin: 0 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-blog {
    margin: 30px 15px;
    flex-direction: column-reverse;
    gap: 15px;
  }
  .main-blog .blog-image {
    width: 100%;
  }
  .main-blog .blog-info a.arrow-button {
    display: none;
  }
  .three-col {
    margin: 40px 15px 100px 15px;
    /* flex-direction: column; */
    gap: 30px;
  }
  .post-image {
    margin: 0 15px;
  }
  .post-info {
    margin: 25px 15px;
    flex-direction: column;
    gap: 25px;
  }
  .post-info .post-text p:last-of-type {
    margin-bottom: 0;
  }
  .post-info .about-post {
    width: calc(100% - 40px);
  }
  .post-buttons {
    display: none;
  }

  /* SIGN UP PAGE */
  .signup-form {
    margin: 0 15px;
    padding: 20px 15px;
  }
  .signup-form .half {
    width: 100%;
  }
  .signup-form .input.checklist label, .signup-form .input.radio label {
    width: 100%;
  }
  #signup-form .add-on-list, #signup-form .theme-list {
    /* grid-template-columns: 1fr 1fr; */
  }
  .form-list {
    min-width: calc((100% - 60px) / 2);
    max-width: calc((100% - 60px) / 2);
  }
  /* global site tags step */
  .global-tags-container {
	flex-direction: column;
  }
  .global-tags-container .tags-container.subjects-tags {
	border: 1px solid #8C8C8C;
	border-top: none;
  }
}

/* signup page branches section, hours checks */


@media only screen and (max-width: 650px) {
  #signup-form .form-panel-group .form-panel .flex.day {
    justify-content: space-between;
    gap: 10px;
  }
  #signup-form .form-panel-group .form-panel .branch-hours p:first-of-type {
    font-size: 14px;
    width: 80px;
    margin-bottom: 2px;
  }
  #signup-form .branch-hours {
    gap: 25px;
  }
  #signup-form .branch-hours .flex .switch {
    /* margin-left: 90px; */
    margin-left: calc(100% - 320px);
    margin-left: calc(100% - 200px);
  }
  #signup-form .branch-hours .flex .day-hours {
    /* min-width: 120px; */
    min-width: calc(50% - 14px);
  }
  #signup-form .branch-hours .flex.day .day-hours span {
    width: fit-content;
    height: fit-content;
    opacity: 1;
    position: relative;
    top: unset;
    left: unset;
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .two-col ul.col-two li {
    width: calc(100% - 50px);
  }

  /* BLOG */
  .three-col {
    gap: 50px;
  }
  .three-col .blog {
    width: 100%;
  }

  /* SIGN UP */
  #signup-form input:not([type="checkbox"]):not([type="radio"]):not(.time-input), #signup-form select {
    width: 100%;
  }
  #signup-form .form-panel-group .form-panel p:first-of-type {
    position: relative;
    margin-bottom: 25px;
  }
  #signup-form .form-panel-group .form-panel legend:first-of-type {
    margin-bottom: 10px;
  }
  #signup-form .form-panel-group .form-panel .flex {
    flex-wrap: wrap;
    gap: 0;
  }
  #signup-form .form-panel-group .form-panel .flex:not(.day) label {
    min-width: 100%;
  }
  #signup-form .form-panel-group .form-panel .flex #stage_url {
    font-size: 14px;
    margin: 3px 0 0 5px;
  }
  #signup-form .form-panel-group .form-panel .social-list .flex {
    width: 100%;
    /* flex-wrap: nowrap; */
  }
  .signup-form .social-list.flex .flex:last-of-type span {
    order: 1;
    width: 100%;
    padding: 0;
  }
  #signup-form .form-panel-group .form-panel .social-list .flex label {
    width: calc(100% - 30px);
    max-width: unset;
    min-width: unset;
  }
  #signup-form .form-panel-group .form-panel .social-list .flex i {
    margin: auto 0 20px 10px;
  }
  #signup-form .form-panel-group .form-panel .social-list i {
    /* margin-left: 0px; */
  }
  #signup-form .form-panel-group .form-panel .social-list .flex .socials-dropdown select {
    max-width: unset;
    min-width: unset;
    width: calc(100% - 30px);
  }
  #signup-form .form-panel-group .form-panel .social-list .signup-social-url {
    width: calc(100% - 40px);
  }
  #signup-form .form-panel-group .form-panel .social-list .remove {
    margin: auto 0 24px 10px;
  }
  #signup-form .add-on-list, #signup-form .theme-list {
    /* grid-template-columns: 1fr; */
  }
  .form-list {
    min-width: 100%;
    max-width: 100%;
  }
  .signup-form .sitemap-theme ul {
    flex-direction: column;
    margin-left: 16px;
  }
  .signup-form .sitemap-theme ul li {
    border-right: 0.5px solid #979797;
    border-bottom: 0.5px solid #979797;
    border-left: 8px solid #DFDFDF;
    padding: 10px;
  }
  .signup-form .sitemap-theme ul li:has(input[type="radio"]:checked) {
    border-bottom: 0.5px solid #979797;
    /* border-left: 8px solid var(--primary-red); */
  }
  .signup-form .sitemap-theme ul li:before {
    width: 8px;
    height: 0%;
    left: -8px;
    bottom: 0;
    transition: height .25s;
  }
  .signup-form .sitemap-theme ul li:has(input[type="radio"]:checked):before {
    width: 8px;
    height: 100%;
    left: -8px;
    bottom: unset;
    top: 0;
  }
  .signup-form .sitemap-theme ul li:after {
    left: 0px;
    transition: left .25s;
  }
  .signup-form .sitemap-theme ul li:has(input[type="radio"]:checked):after {
    transform: rotate(90deg);
    left: -26px;
    bottom: calc(50% - 6px);
  }
  .signup-form .sitemap-theme ul li label {
    align-items: center;
    margin: 0;
  }
}
