/*
Theme Name: Salsa
Theme URI: https://sed.pe/
Author: Various - Joseph Flores
Author URI: https://sed.pe/
Description: Template Salsa
Version: 1.0
Requires PHP: 8.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
body {
  background-color: black;
}

[x-cloak] {
  display: none !important;
}

.padding-left .splide__track {
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .padding-left .splide__track {
    padding-left: 1rem !important;
  }
}
@media (min-width: 998px) {
  .padding-left .splide__track {
    padding-left: calc((100% - 976px) / 2) !important;
  }
}
@media (min-width: 1110px) {
  .padding-left .splide__track {
    padding-left: calc((100% - 1084px) / 2) !important;
  }
}
@media (min-width: 1380px) {
  .padding-left .splide__track {
    padding-left: calc((100% - 1380px) / 2) !important;
  }
}
@media (min-width: 1520px) {
  .padding-left .splide__track {
    padding-left: calc((100% - 1488px) / 2) !important;
  }
}
@media (min-width: 1670px) {
  .padding-left .splide__track {
    padding-left: calc((100% - 1634px) / 2) !important;
  }
}

.text-shadow {
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5019607843);
}

.form .fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .form .fields {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.form .fields textarea,
.form .fields input:not([type=submit]) {
  width: 100%;
  display: block;
  padding: 10px 0;
  height: 54px;
  background: transparent;
  border-bottom: 1px solid #000000;
  font-size: 18px;
  color: #000000;
  outline: none;
}
@media (max-width: 768px) {
  .form .fields textarea,
  .form .fields input:not([type=submit]) {
    padding: 6px 0;
    height: 42px;
    font-size: 14px;
  }
}
.form .fields textarea::-webkit-input-placeholder, .form .fields input:not([type=submit])::-webkit-input-placeholder {
  color: #000000;
}
.form .fields textarea::-moz-placeholder, .form .fields input:not([type=submit])::-moz-placeholder {
  color: #000000;
}
.form .fields textarea:-ms-input-placeholder, .form .fields input:not([type=submit]):-ms-input-placeholder {
  color: #000000;
}
.form .fields textarea::-ms-input-placeholder, .form .fields input:not([type=submit])::-ms-input-placeholder {
  color: #000000;
}
.form .fields textarea::placeholder,
.form .fields input:not([type=submit])::placeholder {
  color: #000000;
}
.form .fields textarea {
  height: auto;
}
@media (max-width: 768px) {
  .form .politics {
    margin-bottom: 1rem;
  }
}
.form .politics .wpcf7-list-item {
  margin-bottom: 10px;
}
.form .politics .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
@media (max-width: 768px) {
  .form .politics .wpcf7-list-item label {
    font-size: 14px;
  }
}
.form .politics .wpcf7-list-item label input {
  margin-top: 2px;
}
.form .politics .wpcf7-list-item a {
  color: #000000;
  text-decoration: underline;
}
.form .button p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .form .button p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form .button input.wpcf7-submit:disabled {
  opacity: 0.5;
}
.form .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .form .footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .form .footer-contact .button {
    width: 100%;
  }
}
.form .footer-contact .button input {
  width: 100%;
}

[type=checkbox] {
  width: 1rem;
  height: 1rem;
  color: #000000;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  -webkit-transition: background 300ms;
  transition: background 300ms;
  cursor: pointer;
}

/* Pseudo element for check styling */
[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  -webkit-box-shadow: inset 0 0 0 1px #CCD3D8;
          box-shadow: inset 0 0 0 1px #CCD3D8;
}

/* Checked */
[type=checkbox]:checked {
  background-color: currentcolor;
}

[type=checkbox]:checked::before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

/* Disabled */
[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}

/* IE */
[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

.wpcf7-not-valid-tip {
  padding-top: 8px;
}

.prose :where(a):not(:where([class~=not-prose],
[class~=not-prose] *)) {
  text-decoration: none;
}

.modal-team-action {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-team-action.show {
  opacity: 1;
  visibility: visible;
}

.prose blockquote {
  max-width: 20rem;
}
.prose h2 {
  font-weight: 400;
}
.prose p {
  color: var(--tw-prose-body);
}
.prose p strong {
  color: var(--tw-prose-headings);
}

.splide__pagination__page {
  border: 1px solid white !important;
  background: transparent !important;
  opacity: 1 !important;
}
.splide__pagination__page.is-active {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  background: #fff !important;
}

.splide__pagination.black .splide__pagination__page {
  border-color: #000 !important;
}
.splide__pagination.black .splide__pagination__page.is-active {
  background: #000 !important;
}

.circle {
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  left: 50%;
  width: var(--w, 280px);
  height: var(--hc, 460px);
  margin-left: var(--ml);
}
.circle .progress-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: var(--w, 280px);
  height: var(--w, 280px);
  border-radius: 50%;
  background: conic-gradient(from 0deg at center, var(--color) 0deg, var(--color) var(--radial), transparent 0deg, transparent 360deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle, transparent calc(var(--w) / 2 - 2px), black calc(var(--h) / 2 - 1px));
          mask: radial-gradient(circle, transparent calc(var(--w) / 2 - 2px), black calc(var(--h) / 2 - 1px));
}
.circle .flow-name {
  position: absolute;
  left: 50%;
  text-align: center;
  translate: -50% 55%;
  font-size: 21px;
  line-height: 25px;
  text-wrap: balance;
  max-width: 144px;
  display: block;
  top: 50%;
  color: var(--color);
}
.circle .separator-f {
  width: 1px;
  position: absolute;
  background: white;
  height: var(--size, 30px);
  top: 50%;
  left: 50%;
  translate: -50% var(--tl, -50%);
}
.circle .arrow-circle {
  position: absolute;
  top: 50%;
  height: calc(var(--h) / 2);
  left: calc(50% - 9.5px);
  z-index: 10;
  color: var(--color);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: translateY(calc(var(--w) / -2 - 8px)) rotate(var(--radial));
          transform: translateY(calc(var(--w) / -2 - 8px)) rotate(var(--radial));
}
.circle .connect-line {
  --hclc: 40px;
  position: absolute;
  height: var(--hcl);
  background-color: var(--color);
  width: 1px;
  left: 50%;
  translate: -50%;
  top: calc(310px + var(--adittop));
}

@media (max-width: 768px) {
  .target-info-icon {
    max-width: 24px;
    max-height: 24px;
  }
}

.count-contain {
  position: absolute;
  left: 50%;
  text-align: center;
  translate: -50% -150%;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 65px;
  color: var(--color);
  gap: 4px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.count-contain .count {
  font-size: 21px;
}
.count-contain .detail {
  font-size: 14px;
}

.box-items {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  top: 105%;
}
.box-items ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 7px;
}
.box-items ul li {
  background-color: var(--color);
  color: black;
  padding: 5px 10px;
  border-radius: 999px;
}

#graph-salsa-system-mobile .circle {
  margin-top: var(--mt, 4rem);
}
#graph-salsa-system-mobile .circle .connect-line {
  --hclc: 40px;
  position: absolute;
  height: 1px;
  background-color: var(--color);
  width: 150px;
  left: 100%;
  translate: 0 -50%;
  top: 50%;
}
#graph-salsa-system-mobile .count-contain {
  gap: 0;
  translate: -50% -100%;
  height: auto;
}
#graph-salsa-system-mobile .count-contain .detail {
  font-size: 14px;
  line-height: 15px;
  white-space: nowrap;
}
#graph-salsa-system-mobile .flow-name {
  translate: -50% 10%;
  font-size: 17px;
  line-height: 18px;
}