.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid #110505;
  position: relative;
  overflow: hidden;
  color: #110505;
}
@media screen and (min-width: 1025px) {
  .selectric {
    max-width: 150px;
  }
}
.selectric:active {
  background-color: #110505;
}
.selectric:active .label {
  color: #fff;
}
.selectric:active .select_arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M4.99512 8.35352L4.99463 5.12939M4.99463 5.12475L4.99463 1.62474' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 5.12485L5.46404 8.16082C5.20776 8.4171 4.79224 8.4171 4.53596 8.16082L1.5 5.12485' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media screen and (min-width: 1025px) {
  .selectric:hover {
    background-color: #110505;
  }
  .selectric:hover .label {
    color: #fff;
  }
  .selectric:hover .select_arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M4.99512 8.35352L4.99463 5.12939M4.99463 5.12475L4.99463 1.62474' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 5.12485L5.46404 8.16082C5.20776 8.4171 4.79224 8.4171 4.53596 8.16082L1.5 5.12485' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.selectric .label {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 30px 0 10px;
  font: 600 16px "Mundial", sans-serif;
  height: 32px;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.selectric .select_arrow {
  position: absolute;
  top: auto;
  bottom: 9px;
  right: 10px;
  width: 10px;
  height: 10px;
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M4.99512 8.35352L4.99463 5.12939M4.99463 5.12475L4.99463 1.62474' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 5.12485L5.46404 8.16082C5.20776 8.4171 4.79224 8.4171 4.53596 8.16082L1.5 5.12485' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.selectric-open {
  z-index: 4;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  border: 1px solid #110505;
  border-top: none;
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  .selectric-items {
    width: auto !important;
  }
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
}
.selectric-items .selectric-scroll::-webkit-scrollbar {
  width: 0;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
  border-top: none;
}
.selectric-items ul, .selectric-items li {
  font-size: 14px;
}
.selectric-items li {
  transition: all 0.3s ease;
  display: block;
  padding: 10px;
  line-height: normal;
  color: #110505;
  background-color: #fff;
  cursor: pointer;
}
.selectric-items li:not(:last-child) {
  border-bottom: 1px solid #110505;
}
.selectric-items li.selected, .selectric-items li.highlighted, .selectric-items li:hover {
  color: #fff;
  background: #110505;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}

.selectric-is_multiple .selectric-items li {
  position: relative;
}
.selectric-is_multiple .selectric-items li[data-index="0"] {
  padding: 0;
  min-height: 0;
  line-height: 0;
  font-size: 0;
  border-top: none;
}
.selectric-is_multiple .selectric-items li[data-index="0"]:after {
  content: none;
}
.selectric-is_multiple .selectric-items li[data-index="1"] {
  border-top: none;
}

div.wpcf7 {
  position: relative;
}
div.wpcf7 .form-group {
  display: flex;
  width: 100%;
}
div.wpcf7 .hidden-fields-container {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  div.wpcf7 .inputs_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  div.wpcf7 .inputs_wrap > * {
    width: 48%;
  }
}
div.wpcf7 .wpcf7-form.sent .wpcf7-response-output, div.wpcf7 .wpcf7-form.failed .wpcf7-response-output, div.wpcf7 .wpcf7-form.invalid .wpcf7-response-output, div.wpcf7 .wpcf7-form.unaccepted .wpcf7-response-output {
  margin-top: 10px;
}
div.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  background-color: #22b86c;
}
div.wpcf7 .wpcf7-form.unaccepted .wpcf7-response-output {
  background-color: #1091ae;
}
div.wpcf7 .wpcf7-form.failed .wpcf7-response-output, div.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  background-color: #ef3f3f;
}
div.wpcf7 .wpcf7-form.failed .wpcf7-response-output.is_temp_hidden, div.wpcf7 .wpcf7-form.invalid .wpcf7-response-output.is_temp_hidden {
  display: none;
}
div.wpcf7 .wpcf7-form.submitting .wpcf7-spinner {
  opacity: 1;
  visibility: visible;
}
div.wpcf7 .wpcf7-form.submitting .button {
  opacity: 0.5;
  pointer-events: none;
}
div.wpcf7 .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  line-height: 11px;
}
div.wpcf7 .wpcf7-form-control-wrap[data-name*=acceptance] {
  min-height: 40px;
}
div.wpcf7 .wpcf7-not-valid-tip {
  font: 400 14px/1.1 "Mundial", sans-serif;
  color: #ef3f3f;
}
div.wpcf7 .wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  font: 400 16px/1.2 "Mundial", sans-serif;
  color: #fff;
  padding: 12px;
  border-radius: 0;
  text-align: center;
}
div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]), div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
  display: block;
  height: 40px;
  font: 400 14px "Mundial", sans-serif;
  line-height: 100%;
  color: #110505;
  padding: 10px;
  border: 1px solid rgba(18, 5, 5, 0.5);
  background-color: #fff;
}
div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-webkit-input-placeholder, div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-webkit-input-placeholder {
  color: #110505;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
}
div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):-moz-placeholder, div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):-moz-placeholder {
  color: #110505;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
}
div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-moz-placeholder, div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-moz-placeholder {
  color: #110505;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
}
div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):-ms-input-placeholder, div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):-ms-input-placeholder {
  color: #110505;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
}
div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus, div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus-visible, div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus, div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus-visible {
  outline: 0 none;
  border-color: #22b86c;
}
.is_using_mouse div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus, .is_using_mouse div.wpcf7 input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus-visible, .is_using_mouse div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus, .is_using_mouse div.wpcf7 textarea:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus-visible {
  border-color: #22b86c;
}
div.wpcf7 input[type=radio], div.wpcf7 textarea[type=radio] {
  all: unset;
  display: inline-block;
  cursor: pointer;
}
div.wpcf7 input[type=checkbox], div.wpcf7 input[type=radio], div.wpcf7 textarea[type=checkbox], div.wpcf7 textarea[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
div.wpcf7 input[type=checkbox] + span, div.wpcf7 input[type=radio] + span, div.wpcf7 textarea[type=checkbox] + span, div.wpcf7 textarea[type=radio] + span {
  display: inline-block;
  font: 400 14px "Mundial", sans-serif;
  line-height: 21px;
  padding-left: 40px;
  cursor: pointer;
  position: relative;
  width: 100%;
}
div.wpcf7 input[type=checkbox] + span:before, div.wpcf7 input[type=checkbox] + span:after, div.wpcf7 input[type=radio] + span:before, div.wpcf7 input[type=radio] + span:after, div.wpcf7 textarea[type=checkbox] + span:before, div.wpcf7 textarea[type=checkbox] + span:after, div.wpcf7 textarea[type=radio] + span:before, div.wpcf7 textarea[type=radio] + span:after {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
}
div.wpcf7 input[type=checkbox] + span:before, div.wpcf7 input[type=radio] + span:before, div.wpcf7 textarea[type=checkbox] + span:before, div.wpcf7 textarea[type=radio] + span:before {
  content: "";
  height: 20px;
  width: 20px;
  border: 1px solid #110505;
}
div.wpcf7 input[type=checkbox] + span:after, div.wpcf7 input[type=radio] + span:after, div.wpcf7 textarea[type=checkbox] + span:after, div.wpcf7 textarea[type=radio] + span:after {
  content: "\e907";
  font: 400 20px/19px "icons";
  color: #110505;
  text-align: center;
  opacity: 0;
}
div.wpcf7 input[type=checkbox]:checked + span:after, div.wpcf7 input[type=radio]:checked + span:after, div.wpcf7 textarea[type=checkbox]:checked + span:after, div.wpcf7 textarea[type=radio]:checked + span:after {
  opacity: 1;
}
div.wpcf7 input[type=checkbox]:focus + span:before, div.wpcf7 input[type=checkbox]:focus-visible + span:before, div.wpcf7 input[type=radio]:focus + span:before, div.wpcf7 input[type=radio]:focus-visible + span:before, div.wpcf7 textarea[type=checkbox]:focus + span:before, div.wpcf7 textarea[type=checkbox]:focus-visible + span:before, div.wpcf7 textarea[type=radio]:focus + span:before, div.wpcf7 textarea[type=radio]:focus-visible + span:before {
  transition: none;
  outline: 2px dashed #110505;
}
.is_using_mouse div.wpcf7 input[type=checkbox]:focus + span:before, .is_using_mouse div.wpcf7 input[type=checkbox]:focus-visible + span:before, .is_using_mouse div.wpcf7 input[type=radio]:focus + span:before, .is_using_mouse div.wpcf7 input[type=radio]:focus-visible + span:before, .is_using_mouse div.wpcf7 textarea[type=checkbox]:focus + span:before, .is_using_mouse div.wpcf7 textarea[type=checkbox]:focus-visible + span:before, .is_using_mouse div.wpcf7 textarea[type=radio]:focus + span:before, .is_using_mouse div.wpcf7 textarea[type=radio]:focus-visible + span:before {
  outline: 0 none;
}
div.wpcf7 textarea {
  height: 142px !important;
  padding: 10px !important;
  resize: none;
  overflow: auto;
}
div.wpcf7 button.button + input {
  display: none;
}
div.wpcf7 .wpcf7-spinner {
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 100%;
  right: 0;
  border-radius: 100%;
  border: 2px solid #f1f1f1;
  border-top: 3px solid #A699FF;
  opacity: 0;
  visibility: hidden;
  animation: loading-spinner 1s infinite linear;
}
div.wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .contact-form__title {
    display: flex;
    gap: 30px;
  }
}
.contact-form__title p {
  font-family: "Superior-Title", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  width: 210px;
}
.contact-form__title input[type=radio] + span {
  font-size: 16px !important;
  padding-left: 30px !important;
}
@media screen and (min-width: 768px) {
  .contact-form__title .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
    display: flex;
    gap: 30px;
  }
}
.contact-form__title .wpcf7-form-control.wpcf7-radio {
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact-form__title .wpcf7-form-control.wpcf7-radio {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__title .wpcf7-form-control.wpcf7-radio {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-form__title input[type=checkbox] + span, .contact-form__title textarea[type=checkbox] + span {
  font-size: 16px !important;
  padding-left: 30px !important;
}
.contact-form__title .wpcf7-form-control-wrap {
  margin-bottom: 10px !important;
}
.contact-form__title .wpcf7-form-control .wpcf7-submit .has-spinner {
  background: transparent;
  color: #110505 !important;
}
.contact-form input[type=submit] {
  background: transparent;
  color: #110505;
  font: 600 14px "Mundial", sans-serif;
}
.contact-form input[type=submit]:hover {
  color: #FFFEF7;
}
.contact-form .button {
  margin-top: 10px;
}
.contact-form__flex {
  gap: 20px;
}

@keyframes loading-spinner {
  100% {
    transform: rotate(360deg);
  }
}
footer .subscribe-form .form-group {
  display: flex;
  max-width: 332px;
  margin-bottom: 10px;
}
footer .subscribe-form .form-group input[type=email] {
  border: 1px solid #FFF !important;
  background-color: transparent !important;
  color: #FFFEF7 !important;
  height: 33px !important;
  padding: 5px 10px !important;
}
footer .subscribe-form .form-group input[type=email]::placeholder {
  color: #FFFEF7 !important;
  font-size: 12px !important;
}
footer .subscribe-form .form-group .submit {
  background: #110505;
  color: #fff;
  border: 1px solid #FFFEF7;
  border-left: none;
  font: 600 14px "Mundial", sans-serif;
  padding: 0 10px;
  cursor: pointer;
  height: 33px;
  display: inline-flex;
  align-items: center;
  user-select: none;
  transition: color 0.5s ease, border 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .subscribe-form .form-group .submit:active {
  background: #A699FF;
  border: 0.5px solid #A699FF;
  border-left: none;
  color: #110505;
}
@media screen and (min-width: 1025px) {
  footer .subscribe-form .form-group .submit:hover {
    background: #A699FF;
    border: 0.5px solid #A699FF;
    border-left: none;
    color: #110505;
  }
}
footer .subscribe-form .submit input[type=submit] {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  text-align: center;
  line-height: 100%;
}
footer .subscribe-form input[type=checkbox] + span:before, footer .subscribe-form textarea[type=checkbox] + span:before {
  border: 1px solid #FFFEF7 !important;
}
footer .subscribe-form input[type=checkbox] + span:after, footer .subscribe-form textarea[type=checkbox] + span:after {
  color: #FFFEF7;
}
footer .subscribe-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font: 400 12px/1.2 "Work Sans", sans-serif !important;
}
footer .subscribe-form .wpcf7-form-control-wrap {
  margin-bottom: 0 !important;
  flex: 1;
  line-height: 11px;
  display: flex;
  flex-direction: column;
}
footer .subscribe-form [type=checkbox] + span {
  font: 300 12px "Mundial", sans-serif !important;
  line-height: 10px !important;
  padding-left: 16px !important;
}
@media screen and (max-width: 1024px) {
  footer .subscribe-form [type=checkbox] + span {
    line-height: 150% !important;
  }
}
footer .subscribe-form [type=checkbox] + span:before {
  top: 1px !important;
  height: 10px !important;
  width: 10px !important;
}
@media screen and (max-width: 1024px) {
  footer .subscribe-form [type=checkbox] + span:before {
    top: 5px !important;
  }
}
footer .subscribe-form [type=checkbox] + span:after {
  font: 400 10px/10px "icons" !important;
}
footer .wpcf7-response-output {
  font: 400 14px/1.2 "Work Sans", sans-serif !important;
}

.secondary-hero__form .subscribe-form {
  margin-top: 40px;
}
.secondary-hero__form input[type=submit] {
  background: transparent;
  color: #110505;
  font: 600 14px "Mundial", sans-serif;
  padding: 5px 10px;
}
.secondary-hero__form input[type=submit]:hover {
  color: #FFFEF7;
}
.secondary-hero__form .submit {
  background: #FFFEF7;
  color: #110505;
  border: 1px solid #110505;
  border-left: none;
  font: 600 14px "Mundial", sans-serif;
  padding: 5px 10px 5px 0;
  cursor: pointer;
  height: 28px;
  display: inline-flex;
  align-items: center;
  user-select: none;
  transition: color 0.5s ease, border 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.secondary-hero__form .submit:before, .secondary-hero__form .submit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  display: block;
  z-index: -1;
  transition: top 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), background-color 0.8s ease;
}
.secondary-hero__form .submit:before {
  left: 50%;
  top: 100%;
  width: 140%;
  height: 180%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  background-color: rgba(0, 0, 0, 0.05);
}
.secondary-hero__form .submit:after {
  left: 55%;
  top: 180%;
  width: 160%;
  height: 190%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  background-color: #110505;
}
.secondary-hero__form .submit:active {
  border: 1px solid #110505;
  border-left: none;
  color: #FFFEF7;
}
.secondary-hero__form .submit:active:before {
  top: -35%;
  background-color: #110505;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.secondary-hero__form .submit:active:after {
  top: -45%;
  background-color: #110505;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
@media screen and (min-width: 1025px) {
  .secondary-hero__form .submit:hover {
    border: 1px solid #110505;
    border-left: none;
    color: #FFFEF7;
  }
  .secondary-hero__form .submit:hover:before {
    top: -35%;
    background-color: #110505;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  .secondary-hero__form .submit:hover:after {
    top: -45%;
    background-color: #110505;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
}
.secondary-hero__form input[type=email] {
  height: 28px !important;
  max-width: 100% !important;
  padding: 5px 10px !important;
}
.secondary-hero__form input[type=email]::placeholder {
  font-size: 12px !important;
}
.secondary-hero__form [type=checkbox] + span {
  font: 300 10px "Mundial", sans-serif !important;
  line-height: 10px !important;
  padding-left: 20px !important;
}
.secondary-hero__form [type=checkbox] + span:before {
  height: 10px !important;
  width: 10px !important;
}
.secondary-hero__form [type=checkbox] + span:after {
  font: 400 10px/10px "icons" !important;
}
.secondary-hero__form .wpcf7-not-valid-tip {
  font: 400 12px/11px "Work Sans", sans-serif !important;
}
.secondary-hero__form .wpcf7-form-control-wrap {
  width: 100%;
  margin-bottom: 5px !important;
  line-height: 11px;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
}

/*# sourceMappingURL=cf7.css.map */
