/* node_modules/air-datepicker/air-datepicker.css */
.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}
.air-datepicker-cell.-year-.-other-decade-:hover,
.air-datepicker-cell.-day-.-other-month-:hover {
  color: var(--adp-color-other-month-hover);
}
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}
.-selected-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.air-datepicker-cell.-day-.-other-month- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background: var(--adp-background-color-selected-other-month-focused);
}
.-in-range-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range-focused);
}
.air-datepicker-cell.-year-.-other-decade-:empty,
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}
.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}
.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}
.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}
.air-datepicker-cell.-in-range-:hover,
.air-datepicker-cell.-in-range-.-focus- {
  background: var(--adp-cell-background-color-in-range-hover);
}
.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}
.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}
.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}
.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}
.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}
.air-datepicker-body.-hidden- {
  display: none;
}
.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}
.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: .8em;
}
.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}
.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}
.air-datepicker-body--cells {
  display: grid;
}
.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}
.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}
.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}
.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}
.-only-timepicker- .air-datepicker-nav {
  display: none;
}
.air-datepicker-nav--title,
.air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}
.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}
.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}
.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}
.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}
.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: .3em;
}
.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}
.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}
.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}
.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}
.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}
.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}
.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.air-datepicker-time {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}
.-only-timepicker- .air-datepicker-time {
  border-top: none;
}
.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}
.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}
.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family:
    "Century Gothic",
    CenturyGothic,
    AppleGothic,
    sans-serif;
  position: relative;
  z-index: 1;
}
.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}
.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}
.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}
.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background:
    linear-gradient(
      to right,
      var(--adp-time-track-color),
      var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}
.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}
.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}
.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}
.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size)/2*-1);
}
.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: rgba(0, 0, 0, 0);
}
.air-datepicker {
  --adp-font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}
.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}
.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}
.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}
.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}
.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}
.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}
.air-datepicker.-active-.-custom-position- {
  transition: none;
}
.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}
.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}
.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}
.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}
.air-datepicker.-custom-position- {
  transition: none;
}
.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}
.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}
.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}
.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}
.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^=top] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}
.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}
.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=right] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}
.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}
.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^=bottom] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}
.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}
.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=left] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}
.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}
.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}
.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size)/2);
}
.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}
.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}
.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size)/2);
}
.air-datepicker--navigation {
  grid-area: nav;
}
.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}
.-only-timepicker- .air-datepicker--content {
  display: none;
}
.air-datepicker--time {
  grid-area: timepicker;
}
.air-datepicker--buttons {
  grid-area: buttons;
}
.air-datepicker--buttons,
.air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}
.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition:
    opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),
    left 0s,
    height 0s,
    width 0s;
  transition-delay:
    0s,
    var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}
.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition:
    opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),
    height 0s,
    width 0s;
}

/* src/css/header.css */
header {
  height: 95px;
  width: 100%;
  background-color: var(--light-blue);
  position: sticky;
  top: 0;
  z-index: 999;
}
.button-white.button-calendar a {
  background-color: white;
  color: var(--light-blue) !important;
}
.header-wrapper {
  height: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo-header {
  margin-left: unset;
}
.hamburgher-menu {
  margin-left: 48px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.button-wrapper {
  display: none;
}
.button-header-mobile--wrapper {
  gap: 24px;
}
.hamburgher-menu--aside {
  background-color: var(--light-blue);
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0);
  transform: translateX(100%);
  transition: transform 500ms ease-in-out, box-shadow 400ms ease-in;
}
.hamburgher-menu--aside.show {
  box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
  transform: translateX(0);
}
.menu-aside--wrapper {
  padding: 80px 35px;
  flex-direction: column;
  gap: 48px;
}
.menu-aside--wrapper li {
  list-style: none;
  padding-bottom: 20px;
}
.menu-aside--wrapper a {
  text-decoration: none;
  color: var(--black);
}
.menu-aside--wrapper a:hover {
  color: white;
}
.aside-social--wrapper {
  gap: 16px;
}
.close-button--aside {
  position: absolute;
  right: 48px;
  top: 48px;
  cursor: pointer;
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .button-mobile-header {
    display: none;
  }
  .hamburgher-menu--aside {
    width: 55%;
  }
  .button-wrapper {
    display: flex;
    gap: 10px;
  }
  .button-wrapper:nth-child(3) {
    margin-left: auto;
  }
  .logo-header {
    margin-left: auto;
  }
  .menu-aside--wrapper {
    padding: 80px 60px;
  }
  .menu-aside--wrapper li {
    padding-bottom: 12px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/footer.css */
footer {
  background-color: var(--black);
}
.footer-wrapper {
  padding: 25px;
  gap: 24px;
}
.logo-footer {
  width: 152px;
  height: 54px;
}
.logo-footer img {
  width: 100%;
  height: 100%;
}
.footer-wrapper p {
  font-weight: 400;
}
.footer-wrapper p,
.footer-wrapper h4 {
  font-size: 16px;
  color: white;
}
.contatti-footer {
  flex-direction: column;
  gap: 8px;
}
.menu-footer--first,
.menu-footer--last {
  display: none;
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .footer-wrapper {
    padding: 48px;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
  .logo-footer {
    width: 214px;
    height: 76px;
    grid-column: span 2 / span 2;
  }
  .contatti-footer {
    grid-column: 1 / span 4;
    grid-row: 2 / span 4;
    grid-row-start: 2;
  }
  .social-footer {
    grid-column: 1 / span 3;
    grid-row-start: 5;
  }
  .menu-footer--first,
  .menu-footer--last {
    display: block;
  }
  .menu-footer--first ul,
  .menu-footer--last ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .menu-footer--first li,
  .menu-footer--last li {
    list-style: none;
  }
  .menu-footer--first a,
  .menu-footer--last a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
  }
  .menu-footer--first {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 6;
    grid-row-start: 2;
  }
  .menu-footer--last {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 9;
    grid-row-start: 2;
  }
  .formatori-footer {
    grid-column: 6 / span 4;
    grid-row-start: 5;
  }
  .certificazione-footer {
    grid-column: 11 / span 2;
    grid-row-start: 5;
  }
}
@media (min-width: 1280px) {
  .footer-wrapper {
    padding: 48px 170px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/home.css */
.section-hero-home {
  max-width: 1500px;
  margin: 0 auto;
}
.hero-home {
  background-color: var(--light-grey);
}
.hero-home h1 {
  max-width: 15ch;
  margin-bottom: 24px;
}
#main .hero-home.elementor-column > .elementor-widget-wrap {
  padding: 30px 16px;
}
.hero-card-wrapper {
  margin-top: 48px;
  padding: 0 20px;
}
.hero-card-wrapper .elementor-container {
  flex-direction: column;
  gap: 36px;
}
.hero-card {
  border-radius: 36px;
  color: white !important;
  margin: 0 auto;
  min-width: 300px;
  min-height: 300px;
  max-height: 300px;
  max-width: 300px;
  width: 300px;
  height: 300px;
  align-items: center;
  text-align: center;
  transform: scale(1);
  transform-origin: top left;
  transition: transform 500ms ease;
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
}
.hero-card:hover {
  transform: scale(1.1);
}
.hero-card:hover .button-white a {
  background-color: white;
  color: var(--black) !important;
}
.hero-card:nth-child(1) {
  background-color: var(--dark-blue);
}
.hero-card:nth-child(2) {
  background-color: var(--light-blue);
}
.hero-card:nth-child(3) {
  background-color: var(--black);
}
.hero-card .elementor-icon-wrapper {
  margin-bottom: 32px;
}
.hero-card p {
  color: white;
  margin-bottom: 12px;
}
.hero-card h4 {
  color: white;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .hero-home {
    background-color: var(--light-grey);
    border-radius: 36px;
    margin: 64px 43px;
    overflow: hidden;
  }
  #main .hero-home.elementor-column > .elementor-widget-wrap {
    padding: 64px 128px;
  }
  .hero-header {
    border-radius: 48px;
    margin: 64px 96px;
  }
  .hero-card-wrapper {
    margin-top: 64px;
    padding: 0 26px;
  }
  .hero-card-wrapper .elementor-container {
    flex-direction: row;
    gap: 36px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
.text-image-wrapper,
.image-text-wrapper,
.text-image-inverted,
.image-text-inverted {
  padding: 0 25px;
  margin-top: 64px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}
.image-text-inverted .elementor-container {
  flex-direction: column-reverse;
  align-items: center;
}
.text-image-inverted .elementor-container {
  flex-direction: column;
  align-items: center;
}
.image-text-wrapper .elementor-container {
  flex-direction: column;
  align-items: center;
}
.text-image-wrapper .elementor-container {
  flex-direction: column-reverse;
  align-items: center;
}
.text-image-wrapper .elementor-container.elementor-column-gap-default,
.image-text-wrapper .elementor-container.elementor-column-gap-default,
.image-text-inverted .elementor-container.elementor-column-gap-default,
.image-text-inverted .elementor-container.elementor-column-gap-default {
  row-gap: 48px;
}
.box-text {
  align-items: center;
}
.box-text .elementor-widget-container {
  margin-top: 16px;
  margin-bottom: 16px;
}
.box-text ol {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 24px;
}
.box-image .elementor-widget-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 444px;
  max-height: 444px;
  aspect-ratio: 1 / 1;
  border-radius: 48px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .text-image-wrapper .elementor-container,
  .image-text-wrapper .elementor-container,
  .text-image-inverted .elementor-container,
  .image-text-inverted .elementor-container {
    flex-direction: row;
  }
  .box-text .elementor-widget-container {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .box-image .elementor-widget-container img {
    max-width: 444px;
    max-height: 444px;
  }
}
@media (min-width: 1280px) {
  .box-image {
    width: 35% !important;
  }
  .text-image-inverted,
  .image-text-inverted {
    padding: 0 170px;
  }
  .text-image-wrapper,
  .image-text-wrapper {
    padding: 0 170px;
  }
  .text-image-wrapper .elementor-container.elementor-column-gap-default,
  .image-text-wrapper .elementor-container.elementor-column-gap-default,
  .image-text-inverted .elementor-container.elementor-column-gap-default,
  .text-image-inverted .elementor-container.elementor-column-gap-default {
    column-gap: 68px;
    justify-content: space-between;
  }
}
@media (min-width: 1536px) {
}
.corsi-wrapper {
  margin-top: 64px;
}
.box-corsi {
  background-color: var(--light-blue);
  padding-top: 48px;
}
.corsi-text-wrapper {
  padding-left: 25px;
  padding-right: 25px;
}
.box-corsi h2 {
  color: white;
  margin-bottom: 16px;
}
.box-corsi p {
  color: white;
  margin-bottom: 48px;
}
.box-card {
  width: 100%;
  height: 100%;
}
.box-card .box-card-img img {
  border-radius: 36px 36px 0 0;
  object-fit: cover;
  width: 100%;
  height: 250px;
}
.wide-card-wrapper,
.cards-section {
  display: none;
}
.section-card-news {
  display: none;
}
.wide-card-wrapper .box-card .box-card-img img {
  height: auto;
}
.box-card .elementor-element-populated {
  border-radius: 36px;
  padding: 0 !important;
}
.card-wide-text {
  padding: 36px;
}
.card-corsi-text {
  height: 100%;
  padding: 24px;
}
.card-corsi-text h6 {
  margin-bottom: 20px;
  margin-top: 8px;
}
.card-wide-text h3 {
  margin-right: 36px;
  margin-top: 8px;
}
.cards-section {
  margin-top: 80px;
}
.card-corsi .elementor-container {
  height: 100%;
}
.card-wide-text .elementor-widget-wrap .elementor-widget-heading .elementor-widget-container > span,
.card-corsi-text .elementor-widget-wrap .elementor-widget-heading .elementor-widget-container > span {
  color: var(--light-blue);
  font-size: 14px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .wide-card-wrapper,
  .cards-section {
    display: block;
    padding-left: 128px;
    padding-right: 128px;
  }
  .section-card-loop {
    display: none;
  }
  .section-card-news {
    display: block;
  }
  .section-card-news-loop {
    display: none;
  }
  .wide-card-wrapper .elementor-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .corsi-wrapper {
    margin-top: 96px;
    padding-left: 43px;
    padding-right: 43px;
  }
  .box-corsi h2 {
    margin-bottom: 24px;
  }
  .box-corsi p {
    margin-bottom: 64px;
  }
  .box-corsi {
    background-color: var(--light-blue);
    border-radius: 48px;
    padding-top: 64px;
  }
  .corsi-text-wrapper {
    padding-left: 128px;
    padding-right: 128px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
.section-news {
  padding-top: 64px;
  padding-bottom: 64px;
}
.news-title {
  padding-left: 25px;
  padding-right: 25px;
}
.news-title h2 {
  margin-bottom: 24px;
}
.section-card-news-loop .elementor-container.elementor-column-gap-default,
.section-card-loop .elementor-container.elementor-column-gap-default {
  padding-bottom: 30px;
}
.elementor-element .swiper ~ .elementor-swiper-button {
  border-color: var(--black) !important;
}
.elementor-element .swiper ~ .elementor-swiper-button:hover {
  border-color: var(--black) !important;
  background-color: var(--black) !important;
}
.elementor-element .swiper ~ .elementor-swiper-button:hover svg {
  color: white;
}
.elementor-element .swiper ~ .elementor-swiper-button svg {
  fill: none !important;
  width: 100% !important;
  height: 100% !important;
  color: var(--black);
}
.swiper-card .swiper {
  padding: 0 35px 0 25px;
}
.section-newsletter {
  background-color: var(--light-blue);
  padding: 48px 25px;
}
.newsletter-text {
  margin-bottom: 24px;
}
.newsletter-text h3 {
  color: white;
  margin-bottom: 16px;
}
.newsletter-text p {
  color: white;
}
.newsletter-form {
  padding: 24px 24px;
  background-color: white;
  border-radius: 36px;
  margin-left: 0;
}
body #gform_wrapper_18 .gform_footer input[type=submit],
body #gform_wrapper_19 .gform_footer input[type=submit] {
  background-color: transparent;
  border: 2px solid var(--black);
  border-radius: 44px;
  padding: 12px 32px;
  color: var(--black);
  cursor: pointer;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
body #gform_wrapper_18 .gform_footer input[type=submit]:hover,
body #gform_wrapper_19 .gform_footer input[type=submit]:hover {
  background-color: var(--black);
  color: white;
}
.gform_wrapper.gravity-theme .gfield_label {
  font-weight: 400 !important;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
}
.custom-input-form input {
  border: 1px solid var(--black);
  border-radius: 48px;
  padding: 16px 24px !important;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .newsletter-form,
  .newsletter-text {
    width: 100% !important;
  }
}
@media (min-width: 1024px) {
  .section-news {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .news-title {
    padding-left: 180px;
    padding-right: 180px;
  }
  .news-title h2 {
    margin-bottom: 64px;
  }
  .section-news #button-light-blue {
    margin-top: 64px;
  }
  .section-card-news {
    padding-left: 180px;
    padding-right: 180px;
  }
  .newsletter-form,
  .newsletter-text {
    width: 50% !important;
  }
  .section-newsletter {
    padding: 64px 180px;
  }
  .newsletter-text {
    margin-bottom: 0;
    padding-right: 5px;
  }
}
@media (min-width: 1280px) {
  .newsletter-form {
    padding: 24px 32px;
    background-color: white;
    border-radius: 36px;
    margin-left: 130px;
  }
}
@media (min-width: 1536px) {
}
.section-recensioni {
  padding: 48px 34px;
  background-color: var(--black);
  display: flex;
}
.section-recensioni .elementor-container {
  flex-direction: column !important;
  gap: 16px;
}
.section-recensioni .elementor-widget-wrap .arrow-badge {
  padding-top: 5px;
  margin-left: 16px;
}
.arrow-badge .elementor-icon svg {
  width: 100%;
  height: 100%;
  color: var(--black);
}
.text-footer-badge .elementor-widget-container .elementor-heading-title {
  font-weight: 700;
  margin-left: 23px;
}
.section-recensioni .elementor-widget-wrap {
  flex-wrap: nowrap;
  max-width: 307px;
  min-width: 307px;
}
.footer-badge {
  background-color: white;
  border-radius: 16px;
}
.footer-badge .elementor-container .elementor-column {
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
}
.star-footer-badge {
  background-color: var(--light-yellow);
  border-radius: 16px;
}
.quality-footer-badge {
  background-color: var(--light-green);
  border-radius: 16px;
}
.question-footer-badge {
  background-color: var(--light-pink);
  border-radius: 16px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .section-recensioni .elementor-container {
    flex-direction: row !important;
    gap: 50px;
  }
  .section-recensioni {
    padding: 64px 130px;
  }
}
@media (min-width: 1366px) {
  .section-recensioni {
    padding: 64px 180px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/corsi.css */
.intro-title-section {
  padding: 30px 10px 0 10px;
  max-width: 950px;
}
.intro-title-section .title-princ .elementor-widget-container {
  margin-bottom: 24px;
}
.section-percorso-formazione {
  margin: 64px 0;
}
.box-percorso-formazione {
  background-color: var(--light-blue);
  padding: 48px 25px;
}
.box-percorso-formazione h3,
.box-percorso-formazione p {
  color: white;
}
.percorso-formazione-img {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.percorso-formazione-img img {
  border-radius: 36px !important;
  object-fit: cover;
  aspect-ratio: 325 / 232;
}
.percorso-formativo-text {
  margin-bottom: 48px !important;
  color: white !important;
}
.section-tutti-corsi {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 48px;
}
.section-categorie-corsi {
  margin-bottom: 48px;
  padding: 0 15px;
}
.section-loop-tutti-corsi {
  padding: 0 25px;
  margin-bottom: 170px;
}
.section-loop-tutti-corsi .elementor-widget-loop-grid .elementor-grid {
  row-gap: 16px;
}
.section-categorie-corsi .elementor-widget-taxonomy-filter .e-filter {
  gap: 16px;
}
.section-categorie-corsi .elementor-widget-taxonomy-filter .elementor-widget-container .e-filter-item {
  border: 1px solid var(--black);
  border-radius: 44px;
  padding: 8px 20px;
  transition: all 300ms ease;
}
.section-categorie-corsi .elementor-widget-taxonomy-filter .elementor-widget-container .e-filter-item[aria-pressed=true] {
  background-color: var(--black);
  color: white;
}
.section-categorie-corsi .elementor-widget-taxonomy-filter .elementor-widget-container .e-filter-item:hover {
  color: white;
  background-color: var(--black);
}
.card-corsi > div:hover .arrow-button a {
  border-color: var(--black);
  color: white !important;
  background-color: var(--black);
  cursor: pointer;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .intro-title-section {
    padding: 0 43px 0 43px;
  }
}
@media (min-width: 1024px) {
  .box-percorso-formazione {
    padding: 64px 128px;
    border-radius: 48px;
  }
  .section-percorso-formazione {
    margin: 96px 43px;
  }
  .percorso-formazione-img {
    margin-top: 24px !important;
    margin-bottom: 48px !important;
  }
  .percorso-formazione-img img {
    aspect-ratio: unset;
  }
  .section-categorie-corsi {
    margin-bottom: 60px;
  }
  .section-loop-tutti-corsi {
    padding: 0 170px;
    margin-bottom: 128px;
  }
  .section-loop-tutti-corsi .elementor-widget-loop-grid .elementor-grid {
    row-gap: 48px;
    column-gap: 50px;
  }
}
@media (min-width: 1280px) {
  .intro-title-section {
    padding: 0 0 0 170px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/avventura-vincente.css */
.section-corsi-proposti {
  margin-top: 64px;
  margin-bottom: 48px;
  padding: 0 25px;
}
.section-corsi-proposti-loop {
  padding-bottom: 160px;
  overflow: hidden;
}
.section-corsi-proposti-loop .elementor-container.elementor-column-gap-default {
  padding-bottom: 30px;
}
.section-corsi-proposti-loop .elementor-container.elementor-column-gap-default .elementor-widget-wrap {
  padding: 0;
}
.section-corsi-proposti-loop .swiper-card .swiper {
  padding: 0 45px 0 25px;
  overflow: visible;
}
.section-dettaglio {
  padding: 64px 25px 0 25px;
  margin-bottom: 24px;
}
.elementor-accordion .elementor-accordion-item {
  border: 1px solid transparent !important;
  border-radius: 24px;
  background-color: var(--light-grey);
  padding: 24px;
}
.section-accordion .elementor-accordion,
.section-dettaglio .elementor-accordion,
.section-divulgazione .elementor-accordion {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.elementor-accordion .elementor-tab-title {
  border: 1px solid transparent !important;
  font-size: 16px;
  padding: 0 !important;
}
.elementor-accordion .elementor-tab-content {
  border: 1px solid transparent !important;
}
.primi-passi-list .elementor-widget-container ol li {
  margin-bottom: 24px;
}
.primi-passi-title h2 {
  margin-bottom: 24px;
}
.section-informazioni {
  background-color: var(--light-blue);
  margin-bottom: 64px;
  padding: 48px 25px;
}
.button-informazioni {
  margin-bottom: 64px;
}
.custom-input-select {
  border: 1px solid var(--black);
  border-radius: 24px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.text-input {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-dropdown .ginput_container {
  position: absolute;
  opacity: 0;
  transition: all 300ms ease;
  pointer-events: none;
}
.custom-dropdown .ginput_container.show {
  opacity: 1;
  pointer-events: auto;
}
.custom-dropdown .ginput_container > div {
  background-color: var(--light-grey);
  margin-top: 10px;
  font-weight: 700;
}
.custom-dropdown .ginput_container > div .gchoice {
  border-bottom: 1px solid var(--black);
}
.custom-dropdown .ginput_container > div .gchoice label {
  padding: 16px 24px;
}
.custom-dropdown .ginput_container > div .gchoice:hover {
  background-color: var(--light-blue);
}
.custom-dropdown .ginput_container > div .gchoice > input {
  appearance: none;
}
.custom-dropdown .custom-chevron {
  transition: all 300ms ease;
  transform: rotate(0);
}
.custom-dropdown .custom-chevron.rotate {
  transform: rotate(180deg);
}
.section-loop-tutti-corsi .elementor-widget-loop-grid > .elementor-widget-container > .elementor-button-wrapper {
  margin-top: 64px;
}
.section-loop-tutti-corsi .elementor-widget-loop-grid > .elementor-widget-container > .elementor-button-wrapper .elementor-button {
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--light-blue);
  font-weight: 700;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .section-corsi-proposti {
    margin-top: 96px;
    padding: 0 170px;
  }
  .section-corsi-proposti-loop {
    padding: 0 0 60px 140px;
  }
  .section-dettaglio {
    padding: 64px 170px 0 170px;
  }
  .section-accordion .elementor-accordion,
  .section-dettaglio .elementor-accordion,
  .section-divulgazione .elementor-accordion {
    row-gap: 48px;
  }
  .elementor-accordion .elementor-accordion-item {
    padding: 48px 48px 28px 48px;
  }
  .elementor-accordion .elementor-tab-title {
    font-size: 24px;
  }
  .section-informazioni {
    padding: 64px 64px;
    margin-left: 43px;
    margin-right: 43px;
    border-radius: 48px;
  }
}
@media (min-width: 1280px) {
  .section-corsi-proposti-loop .swiper-card .swiper {
    padding: 0 150px 0 25px;
  }
  .section-informazioni {
    padding: 64px 180px;
    margin-left: 43px;
    margin-right: 43px;
    border-radius: 48px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/single-post.css */
.section-recensioni-accordion {
  margin-bottom: 15px;
}
.section-img-post {
  margin-bottom: 48px;
  margin-top: 24px;
}
.section-img-post .img-single-post img {
  aspect-ratio: 17 / 10;
  object-fit: cover;
}
.section-intro-single {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 48px;
}
.title-light-blue {
  color: var(--light-blue);
  padding-bottom: 16px;
}
.section-intro-inner-single .elementor-widget-wrap {
  row-gap: 24px;
}
.section-buttons-calendar {
  padding-left: 70px;
  padding-right: 70px;
  margin-bottom: 48px;
}
.section-buttons-calendar .elementor-container {
  gap: 48px;
  width: auto;
  justify-content: center;
}
.section-buttons-calendar .elementor-container .elementor-column {
  width: auto;
}
.section-calendar {
  background-color: var(--light-blue);
  margin-bottom: 68px;
}
.section-calendar .elementor-column {
  width: auto !important;
}
.section-calendar > .calendar-container {
  display: flex;
  flex-wrap: nowrap !important;
  padding: 16px 25px;
  justify-content: space-around;
}
.section-calendar-inner *:not(.button-white > *, .button-disabled > *) {
  color: white;
}
.button-white:hover a span {
  color: var(--black);
}
.inner-box-title {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.inner-box-title .edition {
  font-weight: bold;
}
.calendar-date {
  background-color: white;
  padding: 12px 25px;
  border-radius: 16px;
}
.box-calendario {
  margin-right: 24px;
}
.box-calendario .date-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box-calendario .date-wrapper p {
  color: var(--light-blue);
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
}
.box-calendario .date-wrapper p:nth-child(2) {
  font-size: 48px;
}
.box-calendario .calendar-date ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box-calendario .calendar-date ul li {
  color: var(--light-blue);
  font-weight: 700;
  font-size: 14px;
}
.box-calendario .calendar-date ul li:nth-child(2) {
  color: var(--light-blue);
  font-weight: 700;
  font-size: 48px;
}
.section-calendar-inner .box-calendario-dettagli {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.inner-box-title span {
  font-size: 14px;
}
.box-posti,
.box-iscriviti {
  align-content: center;
  width: fit-content;
}
.section-calendar-inner .box-posti {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.section-calendar-inner .box-posti p:first-child {
  font-weight: 400;
}
.section-calendar-inner .box-posti p:nth-child(2) {
  font-weight: 700;
}
.box-calendario-dettagli {
  align-content: center;
}
.section-dettaglio-title,
.section-dettaglio {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 48px;
}
.content-video .elementor-heading-title {
  margin-bottom: 48px;
}
.accordion-video-content .elementor-widget-video .elementor-wrapper iframe {
  border-radius: 36px;
}
.theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-header {
  color: var(--black);
  font-weight: 700;
}
.theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-header.active {
  color: var(--black) !important;
}
.elementor-accordion .theplus-accordion-item {
  margin-bottom: 0;
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 24px;
  background-color: var(--light-grey);
}
.section-dettaglio .elementor-accordion .elementor-tab-content,
.section-divulgazione .elementor-accordion .elementor-tab-content,
.section-accordion .elementor-accordion .elementor-tab-content {
  padding: 16px 0 0 0 !important;
}
.section-dettaglio .elementor-accordion #elementor-tab-content-5223 .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul,
.section-dettaglio .elementor-accordion #elementor-tab-content-5993 .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul,
.section-accordion .elementor-accordion .elementor-tab-content .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul {
  display: grid;
  gap: 25px;
  list-style: none;
  counter-reset: num;
  padding-left: 0;
  grid-template-columns: repeat(2, minmax(0, 1Fr));
}
.section-dettaglio .elementor-accordion #elementor-tab-content-5223 .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul li,
.section-dettaglio .elementor-accordion #elementor-tab-content-5993 .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul li,
.section-accordion .elementor-accordion .elementor-tab-content .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul li {
  counter-increment: num;
}
.section-dettaglio .elementor-accordion #elementor-tab-content-5223 .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul li::before,
.section-dettaglio .elementor-accordion #elementor-tab-content-5993 .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul li::before,
.section-accordion .elementor-accordion .elementor-tab-content .plus-content-editor .section-motivazione-scelta .motivazione-scelta ul li::before {
  content: counter(num);
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-right: 15px;
  background-color: var(--light-blue);
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
}
.text-image-inverted .elementor-element .swiper .elementor-swiper-button svg {
  fill: none;
  width: auto;
  height: auto;
  color: var(--black);
}
.text-image-inverted .elementor-element .swiper .elementor-swiper-button {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  top: 100%;
  transform: translateY(48px);
  border: 2px solid var(--black);
  border-radius: 999px;
  transition: all 300ms ease;
}
.text-image-inverted .elementor-element .swiper .elementor-swiper-button:hover {
  background-color: var(--black);
}
.text-image-inverted .elementor-element .swiper .elementor-swiper-button:hover svg {
  color: white;
}
.text-image-inverted .elementor-element .swiper .elementor-swiper-button-next {
  right: 30%;
}
.text-image-inverted .elementor-element .swiper .elementor-swiper-button-prev {
  left: 30%;
}
.section-divulgazione {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 52px;
}
.section-divulgazione-title {
  padding-top: 64px;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 48px;
}
.section-accordion-text-button .divulgazione-text-accordion .elementor-widget-container {
  margin-bottom: 16px;
}
.section-carousel-video-accordion .video-carousel-accordion .elementor-main-swiper .swiper-slide {
  border-radius: 16px;
}
.section-carousel-video-accordion .video-carousel-accordion .elementor-swiper {
  margin-bottom: 24px;
}
.section-recensioni-accordion .cards-recensioni .elementor-widget-container {
  margin-bottom: 24px;
}
.e-icon-wrapper .eicon-star:before {
  content: "\2605";
}
.section-recensioni-accordion .elementor-widget-rating .e-rating .e-icon-wrapper.e-icon-marked {
  --e-rating-icon-color: #e2c63a;
}
.text-clamp div > p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-clamp div > p.show {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.review-username > div,
.review-role > div {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
}
.text-clamp > div {
  padding-top: 15px;
  padding-bottom: 15px;
}
.review-star > div {
  padding-bottom: 15px;
}
.show-more-review a {
  z-index: 999 !important;
  position: relative;
  background-color: transparent;
  border: none;
  padding: 10px;
}
.section-recensioni-accordion .cards-recensioni .elementor-testimonial__cite .elementor-star-rating i:before {
  color: var(--yellow);
}
.section-recensioni-accordion .elementor-widget-reviews .elementor-testimonial__name,
.section-recensioni-accordion .elementor-widget-reviews .elementor-testimonial__title {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 16px;
  order: 2;
}
.section-recensioni-accordion .elementor-widget-reviews .elementor-testimonial__content .elementor-testimonial__text {
  color: var(--black);
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-recensioni-accordion .review-buttons,
.section-carousel-video-accordion .review-buttons {
  margin-bottom: 24px;
}
.section-recensioni-accordion .review-buttons .elementor-container .elementor-column .elementor-widget-wrap,
.section-carousel-video-accordion .review-buttons .elementor-container .elementor-column .elementor-widget-wrap {
  gap: 24px;
}
.button-tutti-corsi-section {
  margin-bottom: 52px;
}
.faq-wrapper > .faq-content {
  height: 100%;
  overflow-y: scroll;
}
.faq-wrapper > .faq-content h3 {
  color: var(--light-blue);
  font-size: 30px;
  margin-bottom: 20px;
}
.faq-wrapper {
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  position: fixed;
  opacity: 0;
  top: 55%;
  left: 50%;
  background: white;
  padding: 40px;
  transform: translate(-50%, -50%);
  display: none;
  transition: opacity 300ms ease;
}
.faq-wrapper .faq-content .no-faq-text {
  margin-bottom: 30px;
}
.faq-wrapper.show {
  display: block;
  opacity: 1;
  z-index: 99999;
  transition: opacity 500ms 0.5s ease;
}
.faq-wrapper .close-popup-faq {
  background-color: var(--light-blue);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.faq-wrapper .close-popup-faq::before {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: 0;
  position: absolute;
  top: 8px;
  left: 10px;
}
.faq-wrapper .close-popup-faq::after {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  background: #fff;
  transform: rotate(-45deg);
  transform-origin: 100% 0;
  position: absolute;
  top: 8px;
  right: 10px;
}
.popup-faq-wrapper::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.popup-faq-wrapper.show::before {
  display: block;
  z-index: 9999;
}
.section-btn-return-to {
  padding-top: 70px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .faq-wrapper {
    padding: 50px;
  }
}
@media (min-width: 1024px) {
  .section-img-post {
    padding-left: 170px;
    padding-right: 170px;
    margin-bottom: 64px;
    margin-top: 0;
  }
  .section-img-post .img-single-post img {
    border-radius: 36px;
    aspect-ratio: 128 / 45;
    object-fit: cover;
    width: 100%;
    height: 360px;
    max-width: 100%;
    max-height: 100%;
  }
  .section-intro-single {
    padding-left: 170px;
    padding-right: 170px;
    margin-bottom: 55px;
  }
  .title-light-blue {
    color: var(--light-blue);
    padding-bottom: 24px;
  }
  .section-buttons-calendar {
    padding-left: 170px;
    padding-right: 170px;
    margin-bottom: 64px;
  }
  .section-buttons-calendar .elementor-container {
    justify-content: start;
  }
  .section-calendar > .calendar-container {
    justify-content: space-between;
    max-width: 1280px;
  }
  .section-calendar {
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    border-radius: 36px;
    box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
  }
  .calendar-single-wrapper .elementor-shortcode {
    max-width: 1536px;
    margin: 0 auto;
  }
  .box-calendario .date-wrapper p {
    font-size: 16px;
  }
  .box-calendario .calendar-date ul li {
    font-size: 16px;
  }
  .section-calendar > .calendar-container {
    padding: 24px 48px;
  }
  .section-calendar-inner .box-calendario-dettagli {
    flex-direction: row;
    height: 100%;
    align-items: center;
  }
  .box-calendario {
    align-content: center;
  }
  .inner-box-title {
    border-right: 1px solid var(--dark-blue);
    padding-right: 35px;
    height: 100%;
    justify-content: center;
  }
  .box-posti {
    border-right: 1px solid var(--dark-blue);
    padding-left: 36px;
    padding-right: 48px;
    height: 100%;
  }
  .box-iscriviti {
    margin-left: 48px;
  }
  .section-dettaglio-title,
  .section-dettaglio {
    padding-left: 170px;
    padding-right: 170px;
  }
  .section-dettaglio {
    margin-bottom: 96px;
  }
  .content-video .elementor-heading-title {
    margin-bottom: 64px;
  }
  .elementor-accordion .theplus-accordion-item {
    padding: 48px 48px 28px 48px;
  }
  .section-dettaglio .elementor-accordion #elementor-tab-content-5223 .plus-content-editor > ol,
  .section-accordion .elementor-accordion #elementor-tab-content-5223 .plus-content-editor > ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1Fr));
    row-gap: 24px;
    column-gap: 96px;
    justify-content: unset;
  }
  .section-dettaglio .elementor-accordion #elementor-tab-content-5223 .plus-content-editor > ol li::before,
  .section-accordion .elementor-accordion #elementor-tab-content-5223 .plus-content-editor > ol li::before {
    content: counter(num);
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-right: 24px;
    background-color: var(--light-blue);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .text-image-inverted .elementor-element .swiper .elementor-swiper-button-next {
    right: 35%;
  }
  .text-image-inverted .elementor-element .swiper .elementor-swiper-button-prev {
    left: 35%;
  }
  .section-divulgazione {
    padding-left: 170px;
    padding-right: 170px;
    margin-bottom: 96px;
  }
  .section-divulgazione-title {
    padding-top: 96px;
    padding-left: 170px;
    padding-right: 170px;
  }
  .section-accordion-text-button .divulgazione-text-accordion .elementor-widget-container {
    margin-bottom: 36px;
  }
  .section-carousel-video-accordion .video-carousel-accordion .elementor-swiper {
    margin-bottom: 96px;
  }
  .review-buttons {
    display: none;
  }
  .button-tutti-corsi-section {
    margin-bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .section-calendar {
  }
  .section-calendar-inner .elementor-container {
    gap: unset;
  }
}
@media (min-width: 1536px) {
}

/* src/css/consulenza-aziendale.css */
.intro-title-consulenza {
  padding: 0 25px 64px 25px;
}
.box-consulenza .elementor-widget-wrap {
  row-gap: 24px;
}
.section-acquista-consulenza {
  padding-bottom: 64px;
}
.box-acquista-consulenza {
  background-color: var(--light-grey);
  padding: 48px 25px;
}
.box-inner-consulenza {
  background-color: white;
  border-radius: 36px;
  padding: 24px;
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
}
.box-inner-consulenza .elementor-heading-title {
  margin-bottom: 16px;
}
.box-inner-consulenza .box-inner-text-counselling .elementor-widget-container {
  margin-bottom: 24px;
}
.section-checkup-aziendale {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 64px;
}
.box-chekup-aziendale .elementor-widget-wrap {
  row-gap: 24px;
}
.section-button-checkup {
  margin-bottom: 96px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .section-acquista-consulenza {
    padding-bottom: 96px;
    padding-left: 170px;
    padding-right: 170px;
  }
  .box-acquista-consulenza {
    border-radius: 36px;
    padding: 48px;
  }
  .box-inner-consulenza {
    padding: 24px 24px 36px 24px;
  }
  .section-checkup-aziendale {
    padding-left: 170px;
    padding-right: 170px;
  }
}
@media (min-width: 1280px) {
  .intro-title-consulenza {
    padding: 0 170px 64px 170px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/counselling.css */
.intro-title-counselling {
  padding: 0 25px 64px 25px;
}
.box-counselling .elementor-widget-wrap {
  row-gap: 24px;
}
.section-acquista-counselling {
  padding-bottom: 64px;
}
.box-acquista-counselling {
  background-color: var(--light-grey);
  padding: 48px 25px;
}
.box-inner-counselling {
  background-color: white;
  border-radius: 36px;
  padding: 24px;
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
}
.box-inner-counselling .elementor-heading-title {
  margin-bottom: 16px;
}
.box-inner-counselling .box-inner-text-counselling .elementor-widget-container {
  margin-bottom: 24px;
}
.box-inner-counselling .intro-paragraf .elementor-widget-container > p {
  font-weight: 700;
  color: var(--dark-blue);
}
.section-inner-consulenza:first-child {
  margin-bottom: 48px;
}
.section-button-counselling {
  margin-bottom: 64px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .section-acquista-counselling {
    padding-bottom: 96px;
    padding-left: 170px;
    padding-right: 170px;
  }
  .box-acquista-counselling {
    border-radius: 36px;
    padding: 48px;
  }
  .box-inner-counselling {
    padding: 24px 24px 36px 24px;
  }
  .section-button-counselling {
    margin-bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .intro-title-counselling {
    padding: 0 170px 64px 170px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/formazione-aziendale.css */
.box-text-approccio .elementor-widget-wrap {
  row-gap: 24px;
}
.box-text-approccio .elementor-widget-wrap .elementor-widget-text-editor ol li:nth-child(-n+3) {
  margin-bottom: 24px;
}
.section-esperienza {
  padding-bottom: 64px;
}
.box-esperienza {
  background-color: var(--light-blue);
  padding: 48px 0;
}
.box-esperienza h2.elementor-heading-title {
  color: white;
  padding-bottom: 48px;
  padding-left: 25px;
  padding-right: 25px;
}
.inner-section-esperienza {
  display: none;
}
.inner-section-esperienza .elementor-container .elementor-column {
  width: auto;
}
.inner-section-esperienza .elementor-container .elementor-column .elementor-widget-wrap {
  flex-direction: column;
  background-color: white;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 24px;
  row-gap: 16px;
  border-radius: 24px;
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
}
.inner-section-esperienza .elementor-container .elementor-column .elementor-widget-wrap .elementor-element {
  width: auto;
  text-align: center;
}
#uc_card_carousel_elementor_2810898 .uc_classic_carousel_container_holder {
  background-color: white;
  padding: 24px;
  border-radius: 24px;
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
}
#uc_card_carousel_elementor_2810898 .uc_classic_carousel_container_holder .ue-carousel-item .card_carousel_title {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
}
#uc_card_carousel_elementor_2810898 .uc_classic_carousel_container_holder .ue-carousel-item .card_carousel_text {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
#uc_card_carousel_elementor_2810898 .uc_classic_carousel_container_holder .ue-carousel-item .uc_classic_carousel_content {
  min-height: 135px;
}
#uc_card_carousel_elementor_2810898 {
  margin-bottom: 18px;
}
#uc_card_carousel_elementor_2810898 .owl-stage-outer {
  padding-left: 20px;
  padding-bottom: 30px;
  padding-top: 20px;
}
.section-tematiche-corsi {
  margin-bottom: 48px;
}
.box-tematiche-corsi {
  padding-left: 25px;
}
.box-tematiche-corsi .elementor-widget-container h2 {
  margin-bottom: 48px;
}
.inner-tematiche-corsi {
  display: none;
}
.tematiche-badge {
  background-color: var(--light-grey);
  border-radius: 24px;
  padding: 24px;
}
.tematiche-badge p {
  font-weight: 700;
}
#uc_card_carousel_elementor_9675a6e-wrapper {
  margin-bottom: 48px;
}
#uc_card_carousel_elementor_9675a6e-wrapper .owl-item .uc_classic_carousel_content {
  background-color: var(--light-grey);
  border-radius: 24px;
  padding: 24px 20px;
  justify-content: center;
}
#uc_card_carousel_elementor_9675a6e-wrapper .owl-item .uc_classic_carousel_content .card_carousel_title {
  font-size: 16px;
  font-weight: 700;
}
.section-servizi-azienda {
  padding-left: 25px;
  padding-bottom: 48px;
}
.section-progetti-evidenza {
  padding: 64px 25px 48px;
}
.section-progetti-cards {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 64px;
}
.section-progetti-cards .progetti-evidenza-loop .elementor-loop-container {
  grid-template-columns: none;
  row-gap: 48px;
}
.section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card .elementor-widget-wrap {
  justify-content: center;
  align-items: center;
}
.section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card .elementor-widget-wrap .titolo-progetto-card {
  margin-right: 24px;
}
.section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card .elementor-widget-wrap .img-progetto-card {
  margin-bottom: 24px;
}
.section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card .elementor-widget-wrap .img-progetto-card img {
  border-radius: 36px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card:hover .arrow-button a {
  border-color: var(--black);
  color: white !important;
  background-color: var(--black);
  cursor: pointer;
}
.section-aziende-partner {
  padding: 64px 25px 48px 25px;
  overflow: hidden;
  background-color: var(--light-grey);
  margin-bottom: 64px;
}
.section-aziende-partner .owl-carousel .owl-stage-outer {
  overflow: visible;
}
#uc_card_carousel_elementor_fb9c8bb .ue-carousel-item {
  border-radius: 24px;
  box-shadow: -7px 9px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  background-color: white;
}
.section-carousel-aziende {
  padding-bottom: 96px;
}
.section-carousel-aziende .carousel-aziende {
  padding-top: 48px;
}
#uc_card_carousel_elementor_fb9c8bb .ue-carousel-item .uc_classic_carousel_placeholder img {
  max-height: 220px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .elementor-element.elementor-element-e80760e.elementor-widget.elementor-widget-ucaddon_arrow_navigation {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .box-text-approccio .elementor-widget-wrap .elementor-widget-text-editor ol li:nth-child(-n+3) {
    margin-bottom: 16px;
  }
  .section-esperienza {
    padding: 32px 43px 96px 43px;
  }
  .box-esperienza {
    border-radius: 48px;
    padding: 64px 128px;
  }
  .inner-section-esperienza .elementor-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
    column-gap: 66px;
  }
  .section-card-carousel-formazione {
    display: none;
  }
  .inner-section-esperienza {
    display: block;
  }
  .inner-tematiche-corsi {
    display: block;
  }
  .section-tematiche-corsi {
    margin-bottom: 96px;
  }
  .box-tematiche-corsi {
    padding-left: 170px;
    padding-right: 170px;
  }
  .box-tematiche-corsi-badge .elementor-widget-wrap {
    gap: 24px;
  }
  .tematiche-corsi-carousel {
    display: none;
  }
  .section-servizi-azienda {
    padding-left: 170px;
  }
  .section-progetti-evidenza {
    padding-left: 170px;
    padding-right: 170px;
    padding-top: 96px;
  }
  .section-progetti-cards .progetti-evidenza-loop .elementor-loop-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 64px;
    column-gap: 96px;
  }
  .section-aziende-partner {
    padding: 64px 170px 48px 170px;
    margin-bottom: 96px;
  }
  #uc_card_carousel_elementor_fb9c8bb .ue-carousel-item {
    border-radius: 36px;
  }
  .section-carousel-aziende {
    padding-bottom: 48px;
  }
}
@media (min-width: 1280px) {
  .inner-section-esperienza .elementor-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 48px;
    column-gap: 66px;
  }
  .section-progetti-cards {
    padding-left: 170px;
    padding-right: 170px;
    padding-bottom: 96px;
  }
  .section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card .elementor-widget-wrap .titolo-progetto-card {
    margin-right: 48px;
  }
  .section-progetti-cards .progetti-evidenza-loop .elementor-loop-container .progetto-loop-card .elementor-widget-wrap .img-progetto-card img {
    border-radius: 48px;
  }
  .section-progetti-cards .progetti-evidenza-loop .elementor-loop-container {
    column-gap: 136px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/calendario.css */
[pagina-calendario] h1 {
  text-align: center;
  margin-top: 40px;
  text-transform: uppercase;
  color: var(--light-blue);
}
[ajax-product-filter] {
  padding: 24px 25px;
  row-gap: 30px;
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
}
[ajax-product-filter] .ajax-content {
  display: grid;
  row-gap: 20px;
  height: fit-content;
}
[ajax-product-filter] .ajax-content.is-loading {
  opacity: 0.2;
  pointer-events: none;
}
[ajax-product-filter] .ajax-content .calendar-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  padding: 20px 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  max-height: fit-content;
  transition: all 300ms ease;
  row-gap: 10px;
}
[ajax-product-filter] .ajax-content .calendar-card:hover {
  filter: brightness(0.9);
}
[ajax-product-filter] .calendar-filter {
  background-color: var(--light-grey);
  padding: 0 20px 15px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
[ajax-product-filter] .filter-title {
  background-color: var(--light-blue);
  text-align: center;
  padding: 10px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
[ajax-product-filter] .filter-title h6 {
  color: white;
}
[ajax-product-filter] .calendar-filter .form-data-wrapper {
  display: flex;
  justify-content: center;
  column-gap: 15px;
}
[ajax-product-filter] .calendar-filter .form-data-wrapper input[type=date] {
  border: none;
}
[ajax-product-filter] .calendar-filter .filter-wrapper {
  padding: 20px 0;
  border-bottom: 1px solid var(--black);
}
[ajax-product-filter] .calendar-filter .filter-wrapper label {
  display: flex;
  color: var(--black);
  margin-bottom: 5px;
}
[ajax-product-filter] .calendar-filter .filter-wrapper label input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin-right: 8px;
  font: inherit;
  color: var(--black);
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--black);
  border-radius: 999px;
  display: inline-grid;
  place-content: center;
}
[ajax-product-filter] .calendar-filter .filter-wrapper label input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--black);
}
[ajax-product-filter] .calendar-filter .filter-wrapper label input[type=checkbox]:checked::before {
  transform: scale(1);
}
[ajax-product-filter] .calendar-filter .form-data-wrapper label {
  display: block;
  background-color: white;
  padding: 5px 5px 0 5px;
  border-radius: 5px;
}
[ajax-product-filter] .calendar-filter .form-data-wrapper label #start_date,
[ajax-product-filter] .calendar-filter .form-data-wrapper label #end_date {
  width: 100%;
  border: none;
}
[ajax-product-filter] .calendar-filter .filter-wrapper h6 {
  font-size: 22px;
  font-weight: 400;
  color: var(--light-blue);
  margin-bottom: 5px;
}
[ajax-product-filter] .ajax-content .calendar-card .date-wrapper {
  max-width: 100px;
  width: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
[ajax-product-filter] .ajax-content .calendar-card .date-wrapper p {
  font-size: 16px;
  color: var(--light-blue);
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
[ajax-product-filter] .ajax-content .calendar-card .title-calendar {
  display: flex;
  align-items: center;
  text-align: left;
  flex: 1;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-blue);
}
[ajax-product-filter] .ajax-content .calendar-card .date-wrapper > p:nth-child(2) {
  font-size: 40px;
  line-height: 40px;
}
[ajax-product-filter] .ajax-content .calendar-card .edizione-calendar {
  display: none;
}
[ajax-product-filter] .ajax-content .calendar-card .edizione-calendar div {
  color: #adadad;
}
[ajax-product-filter] .ajax-content .calendar-card .edizione-calendar div:nth-child(1) {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
[ajax-product-filter] .ajax-content .calendar-card .edizione-calendar div:nth-child(2) {
  font-size: 36px;
  line-height: 36px;
}
[ajax-product-filter] .ajax-content .calendar-card .posti-iscriviti-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
[ajax-product-filter] .ajax-content .calendar-card .posti-uomo-donna {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  column-gap: 10px;
  margin-bottom: 5px;
}
[ajax-product-filter] .ajax-content .calendar-card .posti-uomo-donna > div img {
  width: 40px;
  display: block;
  margin: 0 auto;
}
[ajax-product-filter] .ajax-content .calendar-card .posti-uomo-donna .posti-uomo > p {
  color: var(--light-blue);
}
[ajax-product-filter] .ajax-content .calendar-card .posti-uomo-donna .posti-donna > p {
  color: var(--dark-pink);
}
[ajax-product-filter] .ajax-content .calendar-card .posti-uomo-donna > div p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 5px;
}
[ajax-product-filter] .ajax-content .calendar-card .button-light-blue,
[ajax-product-filter] .ajax-content .calendar-card .button-disabled {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
[ajax-product-filter] .submit-filter {
  margin-top: 20px;
}
.loader-wrapper {
  position: absolute;
  top: 80%;
  left: 45%;
  opacity: 0;
  visibility: hidden;
}
.loader-wrapper.loading {
  opacity: 1;
  visibility: visible;
}
.loader {
  width: 3.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}
.loader circle {
  fill: none;
  stroke: hsl(214, 97%, 59%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}
@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
.calendar-row {
  background-color: var(--light-blue);
  border-radius: 36px;
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: white;
  padding: 20px 40px;
}
.calendar-row:hover {
  opacity: 0.9;
}
.calendar-row .date-wrapper {
  background-color: white;
  color: var(--light-blue);
  font-weight: bold;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  padding: 16px 20px;
}
.calendar-row .date-wrapper .day {
  font-size: 48px;
}
.calendar-row .title-calendar {
  margin: auto 0;
  flex: 1 1 auto;
}
.calendar-row .title-calendar .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  margin: 12px 0;
}
.calendar-row .seatings {
  flex-shrink: 0;
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calendar-row .seatings .total-seatings {
  font-weight: bold;
  margin-top: 10px;
}
.calendar-row .button-calendar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calendar-row .button-calendar .button {
  color: white !important;
  border-color: white;
}
.calendar-filters {
  margin: 30px auto;
  background-color: var(--light-blue);
  color: white;
  max-width: fit-content;
  border-radius: 15px;
  position: relative;
}
.calendar-filters .filter-wrapper {
  display: flex;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
}
.calendar-filters .calendar-list {
  position: absolute;
  width: max-content;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background-color: var(--light-blue);
  padding: 10px 20px;
  border-radius: 15px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.calendar-filters .calendar-list.is-visible {
  display: block;
}
.calendar-filters .calendar-list .title {
  margin: 10px 0;
  font-weight: bold;
}
.calendar-filters .calendar-list .filter label {
  display: block;
}
.calendar-filters .calendar-list .filter label input {
  margin-right: 10px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  [ajax-product-filter] .ajax-content .calendar-card .edizione-calendar {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
    width: 100%;
    border-left: 1px solid;
    border-right: 1px solid;
    margin: 0 20px;
    border-color: #dedede;
  }
  [ajax-product-filter] .ajax-content .calendar-card .date-wrapper p {
    font-size: 18px;
  }
  [ajax-product-filter] .ajax-content .calendar-card .date-wrapper > p:nth-child(2) {
    font-size: 50px;
    line-height: 45px;
  }
  [ajax-product-filter] .ajax-content .calendar-card .title-calendar {
    font-size: 22px;
  }
  [ajax-product-filter] .ajax-content .calendar-card .edizione-calendar div:nth-child(2) {
    font-size: 40px;
    line-height: 40px;
  }
  [ajax-product-filter] .ajax-content .calendar-card .posti-iscriviti-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: unset;
  }
  [ajax-product-filter] .ajax-content .calendar-card .posti-uomo-donna {
    justify-content: center;
  }
  [ajax-product-filter] .ajax-content .calendar-card .button-light-blue,
  [ajax-product-filter] .ajax-content .calendar-card .button-disabled {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  [ajax-product-filter] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 64px 50px;
    column-gap: 30px;
    row-gap: unset;
  }
  [ajax-product-filter] .ajax-content {
    display: grid;
    row-gap: 20px;
    grid-column: span 2;
  }
  .loader-wrapper {
    position: absolute;
    top: 20%;
    left: 60%;
    opacity: 0;
    visibility: hidden;
  }
  [ajax-product-filter] .calendar-filter .form-data-wrapper {
    display: block;
  }
}
@media (min-width: 1280px) {
  [ajax-product-filter] {
    padding: 64px 80px;
  }
  [ajax-product-filter] .calendar-filter .form-data-wrapper {
    display: flex;
    justify-content: center;
    column-gap: 15px;
  }
}
@media (min-width: 1536px) {
}

/* src/css/shop.css */
.shop-intro-section {
  padding-top: 48px;
}
.shop-intro-section .elementor-widget-wrap span {
  border-bottom: 2px solid var(--light-blue);
  color: var(--light-blue);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.shop-intro-section .elementor-widget-wrap h1 {
  color: var(--light-blue);
  text-transform: uppercase;
  margin-top: 15px;
}
.section-shop {
  padding-top: 64px;
  padding-bottom: 96px;
}
.section-shop .box-shop .woocommerce ul.products {
  padding: 0 70px;
  width: fit-content;
  margin: 0 auto;
}
.section-shop .box-shop .woocommerce ul.products li.product {
  background-color: var(--light-blue);
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 3px 7px 1px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 300ms ease;
}
.section-shop .box-shop .woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 7px 1px rgba(0, 0, 0, 0.07);
}
.section-shop .box-shop .woocommerce ul.products li.product a {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.section-shop .box-shop .woocommerce ul.products li.product a img {
  max-height: 120px;
  width: auto;
  margin: 50px;
}
.section-shop .box-shop .woocommerce ul.products li.product a h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding: 20px;
  background-color: white;
  font-size: 30px;
  line-height: 40px;
  color: var(--light-blue);
}
.section-shop .box-shop .woocommerce ul.products li.product a h2 .count {
  font-size: 20px;
  font-weight: 300;
  color: var(--dark-grey);
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .shop-intro-section {
    padding-top: 64px;
  }
  .section-shop .box-shop .woocommerce ul.products {
    padding: 0 140px;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .section-shop .box-shop .woocommerce ul.products {
    padding: 0 250px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/pagina-prodotti.css */
.section-products-shop {
  padding: 48px 40px;
}
.section-products-shop .elementor-widget-wrap {
  align-content: space-between;
}
.column-shop-products {
  box-shadow: 0 3px 7px 1px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 30px;
  transition: all 300ms ease;
}
.column-shop-products:hover {
  box-shadow: 0 8px 7px 1px rgba(0, 0, 0, 0.07);
}
.column-shop-products:hover .button-light-blue a {
  background-color: var(--light-blue) !important;
  color: white !important;
}
.column-shop-products .product-shop-card .elementor-cta__content {
  padding: 30px;
  background-color: white;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-products-shop {
    padding: 64px 100px;
  }
}
@media (min-width: 1024px) {
  .section-products-shop {
    padding: 96px 170px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/single-product-prodotto.css */
.single-product-section .single-product-title h1 {
  font-size: 25px;
  color: var(--light-blue);
}
.single-product-section .product-description {
  border-bottom: 1px solid var(--light-grey);
  padding-bottom: 64px;
}
.product-description .woocommerce-product-details__short-description ul li {
  font-size: 16px;
  line-height: 32px;
  color: grey;
  font-weight: 300;
  list-style: none;
  position: relative;
}
.product-description .woocommerce-product-details__short-description ul li::before {
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 48px;
  position: absolute;
  left: -22px;
  top: -3px;
}
.product-description .woocommerce-product-details__short-description p {
  font-size: 16px;
  line-height: 24px;
  color: grey;
  font-weight: 300;
  margin-bottom: 20px;
}
.product-description .woocommerce-product-details__short-description p strong {
  font-weight: 700;
}
.section-cart-woocommerce {
  background-color: var(--light-blue);
  max-width: 1024px;
  width: 100%;
  margin: 96px auto;
}
.section-cart-woocommerce * {
  color: white;
}
.section-cart-woocommerce > div {
  padding: 25px;
}
.section-cart-woocommerce .custom-add-cart .cart * {
  color: var(--black);
}
.section-cart-woocommerce .custom-add-cart .variations_form {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.section-cart-woocommerce .custom-add-cart .variations_form .variations #teleport-price .price::before,
.section-cart-woocommerce .custom-add-cart .cart .price::before {
  content: "Prezzo:";
  color: var(--black);
  font-size: 16px;
}
.section-cart-woocommerce .custom-add-cart .variations_form .variations #teleport-price .price,
.section-cart-woocommerce .custom-add-cart .cart .price {
  display: flex;
  flex-direction: column;
}
.section-cart-woocommerce .custom-add-cart .cart .price > span {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}
.section-cart-woocommerce .custom-add-cart .variations_form .variations tbody tr {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.section-cart-woocommerce .custom-add-cart .variations_form .single_variation_wrap .woocommerce-variation .woocommerce-price-description-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section-cart-woocommerce .custom-add-cart .cart .qib-button-wrapper {
  float: none;
  border: 1px solid var(--black);
  border-radius: 48px;
  padding: 0 12px;
  width: fit-content;
}
.section-cart-woocommerce .custom-add-cart .variations_form .variations .minus-plus-wrapper.show-before-label::before,
.section-cart-woocommerce .custom-add-cart .cart.simple .minus-plus-wrapper.show-before-label::before {
  content: "Quantit\e0:";
  font-size: 16px;
}
.section-cart-woocommerce .custom-add-cart .variations_form .variations .minus-plus-wrapper {
  display: flex;
  flex-direction: column;
}
.section-cart-woocommerce .custom-add-cart .variations_form .variations .value::before {
  content: "Modalit\e0  del corso:";
  font-size: 16px;
}
.section-cart-woocommerce .custom-add-cart div.elementor-widget-container p.price > span * {
  color: var(--black);
}
.section-cart-woocommerce .custom-add-cart form.cart .qib-button-wrapper .quantity {
  max-height: 38px;
}
.section-cart-woocommerce .custom-add-cart .variations_form .woocommerce-variation-description > p {
  font-size: 14px;
}
.section-cart-woocommerce .custom-add-cart div.elementor-widget-container .cart {
  background-color: white;
  padding: 24px 32px;
  border-radius: 36px;
}
.section-cart-woocommerce .custom-add-cart div.elementor-widget-container .cart.simple {
  display: flex;
  flex-direction: column;
}
.section-cart-woocommerce .custom-add-cart div.elementor-widget-container .cart.simple .quantity-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
.section-cart-woocommerce .custom-add-cart div.elementor-widget-container .cart.simple .qib-button-wrapper {
  margin-right: 64px;
  margin-bottom: 24px;
}
.woocommerce div.product form.cart {
  margin-bottom: 0;
}
.custom-add-cart form.cart .variations tr label {
  color: var(--black);
}
.single-product-addcart .variations_form.cart .variations tr {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.custom-add-cart form.cart .variations tr #pa_pagamento,
.single-product-addcart .variations_form.cart .variations tr #pa_pagamento {
  min-width: 100%;
  margin-right: 0;
  border: 1px solid var(--black);
  border-radius: 48px;
  padding: 12px;
  margin-top: 2px;
}
.custom-add-cart form.cart .variations tr #pa_pagamento option,
.single-product-addcart .variations_form.cart .variations tr #pa_pagamento option {
  color: var(--black);
}
.custom-add-cart form.cart .variations td.value .reset_variations,
.single-product-addcart .variations_form.cart .variations td.value .reset_variations {
  color: var(--light-blue);
}
.custom-add-cart form.cart .single_variation_wrap .single_variation .woocommerce-variation-price,
.single-product-addcart .variations_form.cart .single_variation_wrap .single_variation .woocommerce-variation-price {
  text-align: center;
  margin-bottom: 20px;
}
.custom-add-cart form.cart .single_variation_wrap .single_variation .woocommerce-variation-price .price,
.single-product-addcart .variations_form.cart .single_variation_wrap .single_variation .woocommerce-variation-price .price {
  color: var(--light-blue);
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
}
.custom-add-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .qib-button-wrapper {
  margin-right: 15px;
}
.custom-add-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .qib-button-wrapper button,
.custom-add-cart form.cart .qib-button-wrapper button {
  margin: 0;
}
.custom-add-cart form.cart .minus.qib-button,
.custom-add-cart form.cart .qib-button-wrapper .plus.qib-button {
  border-radius: 99999px;
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  transition: all 300ms ease;
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  font-size: 22px;
  line-height: 22px;
  padding: 0;
}
.custom-add-cart form.cart .qib-button-wrapper .minus.qib-button:hover,
.custom-add-cart form.cart .qib-button-wrapper .plus.qib-button:hover {
  background-color: var(--black);
  color: white;
}
.custom-add-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .qib-button-wrapper .quantity input.input-text.qty.text,
.custom-add-cart form.cart .qib-button-wrapper .quantity input.input-text.qty.text {
  background: transparent;
  padding: 8px 16px;
  border: none;
  font-size: 30px;
  max-width: 60px;
}
.custom-add-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button,
.custom-add-cart form.cart .single_add_to_cart_button,
.single-product-addcart .variations_form.cart .single_add_to_cart_button {
  background-color: transparent !important;
  border: 2px solid var(--black);
  border-radius: 44px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: var(--black) !important;
  width: fit-content;
}
.custom-add-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover,
.custom-add-cart form.cart .single_add_to_cart_button:hover,
.single-product-addcart .variations_form.cart .single_add_to_cart_button:hover {
  background-color: var(--black) !important;
  color: white !important;
}
.custom-add-cart .buy-external {
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}
.custom-add-cart .wrapper-external-links {
  display: flex;
  flex-wrap: wrap;
}
.custom-add-cart .wrapper-external-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  margin-bottom: 20px;
  width: fit-content;
  border: 2px solid white;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.5s;
}
.custom-add-cart .wrapper-external-links a:hover {
  opacity: 1;
}
.section-related-products {
  background-color: var(--light-grey);
}
.section-related-products .elementor-heading-title {
  padding-top: 40px;
  padding-bottom: 40px;
  color: var(--light-blue);
  text-transform: uppercase;
}
.section-related-products .section-card-related {
  border-radius: 16px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-cart-woocommerce .custom-add-cart div.elementor-widget-container .cart.simple .qib-button-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .section-cart-woocommerce .custom-add-cart .variations_form .variations tbody tr {
    display: flex;
    flex-direction: row;
    column-gap: 64px;
  }
  .section-cart-woocommerce > div {
    padding: 48px;
  }
}
@media (min-width: 1280px) {
  .section-cart-woocommerce {
    border-radius: 48px;
  }
}
@media (min-width: 1536px) {
}
#hidden-variant-price {
  display: none;
}
.woocommerce div.product form.cart .variations td {
  line-height: unset;
}

/* src/css/single-product-corso.css */
.section-single-product-corso {
  margin-top: 50px;
  margin-bottom: 50px;
}
.single-product-titolo .elementor-heading-title {
  font-size: 25px;
  text-align: center;
  color: var(--light-blue);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.alert-warning.event-info {
  text-align: center;
  margin-bottom: 0 !important;
  padding-top: 10px;
}
.alert-warning.event-info i {
  color: red;
}
.section-single-product-corso .single-product-content .elementor-heading-title {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  text-align: center;
  color: grey;
  font-size: 16px;
  line-height: 24px !important;
  border-bottom: 1px solid var(--light-grey);
}
.section-single-product-corso .single-product-content .elementor-heading-title * {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  text-align: center;
  color: grey;
  font-size: 16px;
  line-height: 24px !important;
}
.section-single-product-corso .single-product-content .elementor-heading-title h3 {
  color: var(--light-blue);
  margin-bottom: 20px;
}
.section-single-product-corso .single-product-content .elementor-heading-title h2 {
  font-size: 30px;
  line-height: 40px;
  color: var(--light-blue);
}
.data-evento-single {
  padding: 50px 0 30px 0;
}
.data-evento-single p {
  color: var(--light-blue);
  font-weight: 700;
}
.wrapper-date-evento .elementor-shortcode p {
  color: grey;
  margin-bottom: 10px;
}
.section-single-info {
  background-color: var(--dark-blue);
}
.section-single-info .single-info-box {
  justify-content: center;
}
.section-single-info .single-info-box .elementor-widget-wrap {
  display: flex;
  width: auto;
  align-items: center;
}
.section-single-info .single-info-box .elementor-widget-wrap .btns_iscriz {
  display: flex;
  column-gap: 30px;
}
.section-title-formatori {
  padding: 10px 0 30px;
}
.section-title-formatori .elementor-column .elementor-heading-title {
  text-align: center;
  color: var(--light-blue);
  text-transform: uppercase;
  font-size: 40px;
}
.section-speakers-cards .box-speakers-formatori .elementor-widget-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: center;
}
.section-speakers-cards .box-speakers-formatori .card-speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  width: 250px;
}
.section-speakers-cards .box-speakers-formatori .card-speaker:hover img {
  border: 4px solid var(--light-blue);
}
.section-speakers-cards .box-speakers-formatori .card-speaker img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 2px solid var(--light-blue);
  transition: all 300ms ease;
}
.section-speakers-cards .box-speakers-formatori .card-speaker span {
  font-size: 22px;
  color: var(--light-blue);
}
.section-speakers-cards .box-speakers-formatori .card-speaker p {
  font-size: 14px;
  color: grey;
  line-height: 22px;
  text-align: center;
}
.section-clausole-corso {
  background-color: #f5f5f5;
  padding: 64px 0;
}
.section-clausole-corso .clausole-title {
  padding-bottom: 30px;
}
.section-clausole-corso .clausole-title h5 {
  color: var(--light-blue);
  font-size: 16px;
  text-align: center;
}
.section-clausole-corso .clausole-box {
  overflow-y: scroll;
  width: 100%;
  max-height: 200px;
  border: 1px solid var(--light-grey);
  background-color: white;
  border-radius: 16px;
  padding: 25px;
}
.section-clausole-corso .clausole-box h5 {
  font-size: 16px;
  color: #717171;
}
.section-clausole-corso .clausole-box ol li {
  font-size: 16px;
  line-height: 32px;
  color: #717171;
}
.section-clausole-corso .privacy-clausole {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.section-clausole-corso .privacy-clausole label {
  font-size: 12px;
  color: var(--black);
  margin-bottom: 5px;
}
.section-clausole-corso .privacy-clausole label input[type=checkbox] {
  display: inline-block;
  width: 18px !important;
  height: 18px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
  border: 1px solid #828282;
  border-radius: 3px;
  margin: 0 5px 0 0;
  cursor: pointer;
  display: inline-block;
  background-color: #fff;
  padding: 0 !important;
}
.section-clausole-corso .privacy-clausole label input[type=checkbox]:checked {
  background: #65b7db !important;
  border: 1px solid #65b7db !important;
  padding: 0 !important;
}
.section-clausole-corso .privacy-clausole label input[type=checkbox]:checked:before {
  width: 6px;
  height: 10px;
  display: block;
  position: absolute;
  content: "";
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  color: #fff;
  margin: 0 0 0 4px;
}
[ajax-product-filter] .calendar-filter .form-data-wrapper label {
  display: block;
  background-color: white;
  padding: 5px 5px 0 5px;
  border-radius: 5px;
}
.section-clausole-corso .single-product-addcart .variations_form.cart {
  max-width: 400px;
  margin: 0 auto !important;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-single-product-corso .single-product-content {
    padding: 0 100px;
  }
  .data-evento-single {
    padding: 50px 120px 30px 120px;
  }
  .wrapper-date-evento {
    padding: 0 120px;
  }
  .section-speakers-cards .box-speakers-formatori .elementor-widget-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .section-single-product-corso .single-product-content {
    padding: 0 200px;
  }
  .data-evento-single {
    padding: 50px 220px 30px 220px;
  }
  .wrapper-date-evento {
    padding: 0 220px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/carrello.css */
.woocommerce-cart table.shop_table {
  border: none;
}
.woocommerce-cart table.shop_table td {
  border-top: 1px solid var(--dark-grey);
}
.woocommerce-cart table.cart .product-thumbnail {
  display: none;
}
.woocommerce-cart table.cart thead tr {
  background-color: var(--light-blue);
}
.woocommerce-cart table.cart tbody tr:nth-child(2n-1) {
  background-color: var(--grey-white);
}
.woocommerce-cart table.cart thead tr th {
  color: white;
}
.woocommerce-cart table.cart .product-remove a {
  color: var(--light-blue) !important;
}
.woocommerce-cart table.cart .product-remove a.remove:hover {
  background: var(--light-blue) !important;
  color: white !important;
}
.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  align-items: center;
}
.woocommerce-cart table.cart td.actions .coupon label {
  all: unset;
  position: unset !important;
  margin-right: 15px;
  color: grey;
  font-size: 16px;
  font-weight: 300;
}
.woocommerce-cart table.cart td.actions .coupon input.input-text {
  all: unset;
  width: auto;
  margin-right: 10px;
  border: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--black);
  padding: 0 10px;
}
.woocommerce-cart table.cart td.actions .coupon button[type=submit] {
  background: var(--dark-grey);
  color: white;
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 0;
  letter-spacing: 2px;
  transition: all 300ms ease;
}
.woocommerce-cart table.cart td.actions .coupon button[type=submit]:hover {
  background: #929292;
}
.woocommerce-cart table.cart td.actions button[type=submit] {
  background: transparent;
  border: 2px solid var(--light-blue);
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 50px;
  color: var(--light-blue);
  transition: all 300ms ease;
}
.woocommerce-cart table.cart td.actions button[type=submit]:hover {
  background: var(--light-blue);
  color: white;
}
.woocommerce-cart table.cart tbody tr td.product-name h4 a {
  font-size: 16px;
  color: var(--light-blue);
}
.woocommerce-cart table.cart tbody tr td.product-name span {
  font-size: 16px;
  color: grey;
}
.woocommerce-cart table.cart tbody tr td.product-name span.meta-stdate {
  margin-right: 10px;
}
.woocommerce-cart table.cart tbody tr td.product-name .clausole_cart a {
  color: var(--light-blue);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
[clausole_cart] .popup {
  position: relative;
  opacity: 0;
  transition: opacity 300ms ease;
}
[clausole_cart] .popup.show {
  opacity: 1;
  z-index: 99;
  transition: opacity 500ms 0.5s ease;
}
[clausole_cart] .popup::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
[clausole_cart] .popup.show::before {
  display: block;
  z-index: 99999;
}
[clausole_cart] .popup > div {
  position: fixed;
  z-index: 99999;
  max-width: 600px;
  max-height: 600px;
  top: 55%;
  left: 50%;
  background: #fff;
  padding: 40px;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
[clausole_cart] .popup .cont_popup {
  overflow-y: scroll;
  height: 100%;
}
[clausole_cart] .popup .cont_popup li {
  list-style: none;
  position: relative;
  line-height: 32px;
  color: grey;
  font-size: 14px;
}
[clausole_cart] .popup .cont_popup li::before {
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 50px;
  position: absolute;
  left: -22px;
  top: -3px;
}
[clausole_cart] .popup .cont_popup h2 {
  font-size: 28px;
  line-height: 38px;
  color: var(--light-blue);
  margin-bottom: 30px;
}
[clausole_cart] .popup .close_popup {
  background: var(--light-blue);
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
[clausole_cart] .popup .close_popup:before {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: 0;
  position: absolute;
  top: 8px;
  left: 10px;
}
[clausole_cart] .popup .close_popup:after {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  background: #fff;
  transform: rotate(-45deg);
  transform-origin: 100% 0;
  position: absolute;
  top: 8px;
  right: 10px;
}
.woocommerce-cart table.cart tbody tr td.product-price,
.woocommerce-cart table.cart tbody tr td.product-quantity,
.woocommerce-cart table.cart tbody tr td.product-subtotal {
  color: grey;
  font-size: 16px;
}
.woocommerce-cart table.cart tbody tr td.product-subtotal {
  font-weight: 700;
}
.woocommerce .cart-collaterals {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  background: var(--grey-white);
}
.woocommerce .cart-collaterals .cart_totals {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  padding: 40px;
  width: auto;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 30px;
  line-height: 40px;
  color: var(--light-blue);
  margin-bottom: 10px;
}
.woocommerce .cart-collaterals table.shop_table tbody tr th,
.woocommerce .cart-collaterals table.shop_table tbody tr td {
  border: none;
}
.woocommerce .cart-collaterals table.shop_table tbody tr.cart-subtotal {
  font-size: 20px;
  color: grey;
}
.woocommerce .cart-collaterals table.shop_table tbody tr.order-total {
  font-size: 35px;
  color: grey;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout a {
  background: transparent;
  border: 2px solid var(--light-blue);
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 50px;
  color: var(--light-blue);
  width: fit-content;
  transition: all 300ms ease;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout a:hover {
  color: white;
  background: var(--light-blue);
}
.section-secure-payment .elementor-widget-container img {
  margin: 40px 0;
}

/* src/css/blog-formazione.css */
.section-categories-dropdown {
  padding-top: 50px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
.section-categories-dropdown .categories-wrap {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 45px;
  transition: height 300ms;
}
.section-categories-dropdown .categories-wrap.show {
  height: 290px;
  max-height: 450px;
}
.section-categories-dropdown .categories-wrap > .elementor-widget-wrap {
  display: flex;
  flex-wrap: nowrap;
  background: var(--light-blue);
  padding: 10px;
}
.section-categories-dropdown .categories-wrap .icon-categories {
  width: auto;
}
.section-categories-dropdown .categories-dropdown .elementor-widget-container h5 {
  color: white;
  font-size: 20px;
  padding-bottom: 15px;
}
.section-categories-dropdown .categories-dropdown .elementor-widget-container ul {
  padding-left: 0;
}
.section-categories-dropdown .categories-dropdown .elementor-widget-container ul li {
  list-style: none;
  line-height: 32px;
}
.section-categories-dropdown .categories-dropdown .elementor-widget-container ul li a {
  color: white;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.card-corsi:hover .button-light-blue a {
  background-color: var(--light-blue) !important;
  color: white !important;
}
.card-corsi .excerpt-blog-card p {
  color: grey;
  margin-bottom: 15px;
}
.section-blog-cards {
  padding-left: 25px;
  padding-right: 25px;
}

/* src/css/single-article.css */
.breadcrumbs-section-single-article #breadcrumbs > span {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}
.section-hero-single-article {
  padding-left: 20px;
  padding-right: 20px;
}
.section-hero-single-article .elementor-widget-container img {
  border-radius: 25px;
}
.section-intro-single-article {
  padding-top: 50px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.section-intro-single-article .intro-single-category {
  color: var(--dark-grey);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 8px;
  transition: all 300ms ease;
}
.section-intro-single-article .intro-single-category:hover {
  color: var(--black);
}
.section-intro-single-article .intro-single-title h1 {
  font-size: 30px;
  padding-top: 20px;
  padding-bottom: 10px;
}
.section-intro-single-article .intro-single-author p {
  font-size: 18px;
}
.section-single-article-content,
.section-single-article-comments,
.section-intro-single-article {
  max-width: 700px;
  margin: 0 auto;
}
.section-single-article-content {
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.section-single-article-comments {
  padding-left: 20px;
  padding-right: 20px;
}
.section-single-article-content .box-single-article-content .elementor-widget-wrap .elementor-widget-container {
  display: grid;
  row-gap: 40px;
}
.section-single-article-content .box-single-article-content p {
  line-height: 24px;
}
.section-single-article-content .box-single-article-content * {
  color: grey;
}
.section-single-article-content .box-single-article-content h2,
.section-single-article-content .box-single-article-content h2 strong {
  color: var(--light-blue);
  font-size: 30px;
}
.section-single-article-content .box-single-article-content h3,
.section-single-article-content .box-single-article-content h3 strong {
  color: var(--light-blue);
  font-size: 16px;
}
.section-single-article-content .box-single-article-content ol li,
.section-single-article-content .box-single-article-content ul li {
  line-height: 32px;
}
.section-single-article-content .box-single-article-content .elementor-widget-wrap .elementor-widget-container strong {
  font-weight: 600;
}
.section-single-article-content .box-single-article-content a strong,
.section-single-article-content .box-single-article-content p a {
  color: var(--light-blue);
}
.section-single-article-content .box-single-article-content h2 a img {
  margin-bottom: 40px;
}
.section-single-article-comments {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--dark-grey);
}
.single-article-comment-form .comment-form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.single-article-comment-form .comment-form textarea,
.single-article-comment-form .comment-form input {
  font-size: 17px;
  width: 100%;
  padding: 8px 12px 20px 8px;
}
.single-article-comment-form .comment-form textarea::placeholder,
.single-article-comment-form .comment-form input::placeholder {
  font-size: 17px;
  color: var(--dark-grey);
  font-family: "Montserrat", sans-serif !important;
}
.single-article-comment-form .comment-form input[type=submit] {
  width: auto;
}
.single-article-comment-form .comments-title {
  font-size: 30px;
  color: var(--light-blue);
}
.single-article-comment-form .comment-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-article-comment-form .comment-list > .comment {
  margin-bottom: 15px;
}
.single-article-comment-form .comment-list .comment-body {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 15px;
}
.single-article-comment-form .comment-list .comment-body .comment-author {
  padding-bottom: 20px;
}
.single-article-comment-form .comment-list .comment-body .comment-meta {
  padding-bottom: 10px;
  font-size: 14px;
  font-style: italic;
}
.single-article-comment-form .comment-list .comment-body a {
  color: var(--light-blue);
}
.single-article-comment-form .comment-list .comment-body p {
  padding-bottom: 20px;
}
.single-article-comment-form .comment-list .comment-body span,
.single-article-comment-form .comment-list .comment-body p {
  color: grey;
}
.single-article-comment-form .comment-list .comment-body .comment-author cite {
  color: grey;
  font-style: normal;
  font-weight: 500;
}
.single-article-comment-form .comment-list .comment-body .comment-author img.avatar {
  border-radius: 100%;
}
.single-article-comment-form .comment-list .comment-body .reply {
  justify-self: flex-end;
}
.single-article-comment-form #respond {
  background: var(--grey-white);
  margin-top: 50px;
  padding: 40px;
  text-align: center;
}
.single-article-comment-form #respond h3 {
  font-size: 16px;
  color: var(--light-blue);
  padding-bottom: 30px;
}
.single-article-comment-form #respond #commentform p {
  color: grey;
}
.single-article-comment-form #respond #commentform .form-submit {
  align-self: flex-start;
}
.single-article-comment-form #respond #commentform .logged-in-as a {
  color: var(--light-blue);
}
.single-article-comment-form #respond #commentform .form-submit input {
  border: 1px solid;
  border-radius: 5px;
  background-color: #fff;
  font-weight: 300;
  padding: 20px 10px;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 12px;
  max-height: 100%;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #adadad;
  cursor: pointer;
  transition: all 300ms ease;
}
.single-article-comment-form #respond #commentform .form-submit input:hover {
  border: 1px solid var(--black);
  color: var(--black);
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-single-article-content {
    padding-left: 0;
    padding-right: 0;
  }
  .section-single-article-comments {
    padding-left: 0;
    padding-right: 0;
  }
  .section-intro-single-article {
    padding-left: 0;
    padding-right: 0;
  }
  .section-intro-single-article .intro-single-title h1 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/account.css */
.section-wc-account .wc-account {
  max-width: 1000px;
  margin: 50px auto;
}
.section-wc-account .wc-account .woocommerce {
  font-family: "Montserrat", sans-serif !important;
  display: flex;
  flex-wrap: wrap;
}
.section-wc-account .wc-account .woocommerce .u-columns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.section-wc-account .wc-account .woocommerce .u-columns div {
  width: 100%;
}
.section-wc-account .wc-account .woocommerce .u-columns div h2 {
  text-align: center;
  font-size: 30px;
  color: var(--light-blue);
  font-weight: 700;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login,
.section-wc-account .wc-account .woocommerce .u-columns div form.register {
  text-align: center;
  height: 100% !important;
  border: none;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login label,
.section-wc-account .wc-account .woocommerce .u-columns div form.login label span,
.section-wc-account .wc-account .woocommerce .u-columns div form.register label,
.testim_login .woocommerce .u-columns div form.register label,
.testim_login .woocommerce .u-columns div form.login label {
  color: var(--dark-grey);
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login .input-text,
.section-wc-account .wc-account .woocommerce .u-columns div form.register .input-text,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.woocommerce-checkout .woocommerce-address-fields__field-wrapper p .input-text,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.edit-account p .input-text {
  color: var(--black);
  background-color: var(--grey-white);
  border: 1px solid #d0d0d0;
  border-bottom: 1px solid var(--black);
  height: 35px;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login p.form-row,
.section-wc-account .wc-account .woocommerce .u-columns div form.register p.form-row,
.testim_login .woocommerce .u-columns div form.register p.form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login .form-row button,
.section-wc-account .wc-account .woocommerce .u-columns div form.register .form-row button {
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login .form-row button.show-password-input,
.section-wc-account .wc-account .woocommerce .u-columns div form.register .form-row button.show-password-input {
  display: none;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login p.form-row:nth-child(3),
.section-wc-account .wc-account .woocommerce .u-columns div form.register p:last-of-type {
  align-items: center;
}
.section-wc-account .wc-account .woocommerce .woocommerce-form .form-row button.woocommerce-button {
  border: 2px solid var(--light-blue);
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
  color: var(--light-blue);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
}
.section-wc-account .wc-account .woocommerce .woocommerce-form .form-row button.woocommerce-button:hover {
  color: white;
  background: var(--light-blue);
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login a {
  font-size: 16px;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login input[type=checkbox],
.section-wc-account .wc-account .woocommerce .u-columns div form.register input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 8px;
  font: inherit;
  color: var(--light-blue);
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--light-blue);
  border-radius: 999px;
  display: inline-grid;
  place-content: center;
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login input[type=checkbox]::before,
.section-wc-account .wc-account .woocommerce .u-columns div form.register input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--light-blue);
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login input[type=checkbox]:checked::before,
.section-wc-account .wc-account .woocommerce .u-columns div form.register input[type=checkbox]:checked::before {
  transform: scale(1);
}
.section-wc-account .wc-account .woocommerce .u-columns div form.login .woocommerce-form-login__rememberme,
.section-wc-account .wc-account .woocommerce .u-columns div form.register .woocommerce-form__label-for-checkbox {
  text-align: left;
}
.section-wc-account .wc-account .woocommerce .u-columns .btn_registrati {
  display: flex;
  flex-direction: column;
}
.section-wc-account .wc-account .woocommerce div.btn_blu {
  border: 3px solid var(--light-blue);
  padding: 5px 25px;
  font-size: 25px;
  border-radius: 50px;
  color: var(--light-blue);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
  width: fit-content;
  align-self: center;
}
.section-wc-account .wc-account .woocommerce div.btn_blu:hover {
  color: white;
  background: var(--light-blue);
}
.section-wc-account .wc-account .woocommerce .u-columns .btn_registrati {
  display: flex;
}
.section-wc-account .wc-account .woocommerce .u-columns .btn_registrati.hide {
  display: none;
}
.section-wc-account .wc-account .woocommerce .u-columns [register-form].u-column2 {
  display: none;
  opacity: 0;
  transition-duration: 400ms;
}
.section-wc-account .wc-account .woocommerce .u-columns [register-form].u-column2.show {
  display: block;
}
.woocommerce form .form-row .required {
  color: var(--dark-grey);
}
#billing_state,
#billing_country {
  appearance: none;
  background-image: url(../img/chevron-down.png);
  background-size: 34px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  margin: 0 0 10px;
  border: 1px solid #bababa;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
  padding: 4px 30px 4px 10px;
  color: var(--black);
  background-color: white;
  height: 35px;
}
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword {
  width: 100% !important;
  border: none !important;
  padding: 60px 30px !important;
}
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword .woocommerce-form-row button.button {
  background: transparent;
  border: 2px solid var(--light-blue);
  border-radius: 44px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 500;
  color: var(--light-blue);
}
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword .woocommerce-form-row button.button:hover {
  color: white;
  background: var(--light-blue);
}
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword .woocommerce-form-row input.input-text {
  border-bottom: 1px solid var(--black);
  background: #f5f5f5;
}
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword p,
.section-wc-account .wc-account .woocommerce form.woocommerce-ResetPassword label {
  color: grey !important;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content {
  padding: 0 20px;
  flex: 1;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper {
  border: none;
  padding: 0;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper fieldset {
  border: 1px solid grey;
  padding: 20px 15px;
  margin: 10px 0;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper fieldset legend {
  font-weight: 400;
  color: grey;
  padding: 0 3px;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.woocommerce-checkout .woocommerce-address-fields__field-wrapper {
  display: flex;
  flex-direction: column;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper h3 {
  color: var(--light-blue);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.woocommerce-checkout .woocommerce-address-fields__field-wrapper p {
  width: 100%;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.woocommerce-checkout .woocommerce-address-fields__field-wrapper .button,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table tbody tr td a.woocommerce-button {
  width: fit-content;
  margin-top: 15px;
  border: 2px solid var(--light-blue);
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
  color: var(--light-blue);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.5s;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.woocommerce-checkout .woocommerce-address-fields__field-wrapper .button:hover,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table tbody tr td a.woocommerce-button:hover {
  color: white;
  background: var(--light-blue);
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper-no-data .woocommerce-info {
  display: flex;
  justify-content: left;
  align-items: center;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper-no-data .wc-forward,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper-no-data .button {
  margin-right: 10px;
  margin-left: 0;
  order: -1;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.edit-account {
  display: flex;
  flex-direction: column;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.edit-account p {
  width: 100%;
}
.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  display: none;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
  max-width: 100%;
  width: 100%;
  margin: 0 10px 20px;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
  line-height: 32px;
  margin: 0;
  width: 50%;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--light-blue);
  background: #fafafa;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
  display: block;
  border-bottom: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  padding: 8px 15px;
  text-transform: uppercase;
  color: var(--black);
  background: #f5f5f5;
  transition: all 500ms ease;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a:hover {
  color: var(--light-blue);
  background: #fafafa;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:nth-child(1) a {
  border-top: 1px solid #dcdcdc;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:nth-child(2) a {
  border-top: 1px solid #dcdcdc;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:nth-child(2n-1) a {
  border-left: 1px solid #dcdcdc;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table tbody tr td {
  border: none;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table thead tr th {
  color: grey;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table thead tr th span {
  color: grey;
  font-weight: 500;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table tbody tr td a.woocommerce-button {
  margin-top: 0;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper table tfoot tr * {
  color: grey;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper p mark {
  color: var(--light-blue);
  font-weight: 500;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-order-details h2,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-customer-details h2 {
  font-size: 30px;
  color: var(--light-blue);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-order-details .woocommerce-table--order-details *,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-order-details .woocommerce-table--custom-fields *,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-customer-details table tbody tr *,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-customer-details address {
  border: none;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-order-details .woocommerce-table--order-details,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-order-details .woocommerce-table--custom-fields,
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-customer-details table {
  padding: 0;
  border: none;
}
.section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper .woocommerce-error::before {
  display: none;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit #wpua-preview-existing,
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit #wpua-thumbnail-existing > span {
  display: none;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit #wpua-thumbnail-existing {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit {
  background: #f5f5f5;
  display: none;
  margin: 10px 0;
  text-align: center;
  padding: 20px;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit h3 {
  font-size: 16px;
  color: var(--light-blue);
  font-weight: 600;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit .button {
  background: transparent;
  border: 2px solid var(--light-blue);
  border-radius: 50px;
  padding: 5px 15px;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 500;
  color: var(--light-blue);
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit .button:hover {
  color: white;
  background: var(--light-blue);
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit #wpua-remove-existing {
  margin-bottom: 10px;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit #wpua-undo-existing {
  margin-bottom: 10px;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation #submit {
  background: var(--light-blue);
  color: white;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation #submit:hover {
  color: var(--light-blue);
  background: transparent;
}
body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .updated p strong {
  color: var(--light-blue);
  font-size: 14px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-wc-account .wc-account .woocommerce .woocommerce-MyAccount-content {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
    max-width: 250px;
  }
  body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
    margin-bottom: 20px;
  }
  body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
    line-height: 32px;
    margin: 0;
    width: 100%;
  }
  body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
    font-size: 16px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #dcdcdc;
  }
  body.woocommerce-page.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation .wpua-edit {
    display: block;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/contatti.css */
.contacts-intro-section {
  padding-top: 48px;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}
.contacts-intro-section .elementor-widget-wrap span {
  border-bottom: 2px solid var(--light-blue);
  color: var(--light-blue);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.contacts-intro-section .elementor-widget-wrap h1 {
  color: var(--light-blue);
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 15px;
}
.contacts-intro-section .elementor-widget-wrap p {
  color: grey;
}
body #gform_17 #field_17_9 input[type=checkbox] {
  margin-top: 0;
}
.contactPageForm .gform_title {
  display: none;
}
.contactPageForm .gform-body label {
  color: white;
}
.contactPageForm .gform-body li > label {
  font-weight: 400;
}
.contactPageForm .gform_body input:not([type=checkbox]):not([type=submit]):not([type=radio]) {
  background-color: white;
  font-size: 18px !important;
  padding: 15px 0 !important;
  text-align: center;
  width: 100% !important;
  max-width: 958px !important;
  border-radius: 7px !important;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #333 !important;
}
.gform_wrapper .gform_footer {
  display: flex;
  justify-content: center;
}
.gform_wrapper .gform_footer input.gform_button {
  display: inline-block;
  text-align: center;
  border: 3px solid white;
  font-size: 20px !important;
  color: white;
  padding: 8px 25px;
  border-radius: 40px;
  margin: 0 !important;
  text-transform: capitalize;
  background: var(--light-blue);
  font-weight: 800;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all 300ms ease;
}
.gform_wrapper .gform_footer input.gform_button:hover {
  color: var(--light-blue);
  background: white;
}
.box-maps .elementor-widget-container .elementor-widget-google_maps {
  position: relative;
}
.box-maps .elementor-widget-container .btn_blu_full {
  color: white;
  background-color: var(--light-blue);
  font-size: 25px;
  border: 3px solid var(--light-blue);
  border-radius: 50px;
  padding: 5px 25px;
  margin: 10px 20px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  transition: 0.5s;
  display: flex;
  justify-self: center;
  margin-top: -20px;
}
.box-maps .elementor-widget-container .btn_blu_full:hover {
  color: var(--light-blue);
  background-color: white;
  font-size: 25px;
  border: 3px solid var(--light-blue);
  transition: all 300ms ease;
}
.box-maps .elementor-widget-wrap .maps-text p {
  color: grey;
  line-height: 24px;
  padding-top: 20px;
}
.box-maps .elementor-widget-wrap .maps-text p a {
  color: var(--light-blue);
}
.section-info-contact {
  background-color: var(--light-blue);
}
.section-info-contact .txt_center .box-info-contact .elementor-widget-wrap {
  text-align: center;
  row-gap: 20px;
}
.section-info-contact .txt_center .box-info-contact .elementor-widget-wrap div p a {
  color: white;
}
.section-professional {
  text-align: center;
}
.section-professional .cont_small {
  max-width: 450px;
  margin: 0 auto;
}
.section-professional .txt_center {
  padding-bottom: 40px;
}
.section-professional h2 {
  color: var(--light-blue);
  font-size: 30px;
}
.inside-section-professional .elementor-widget-container p {
  color: grey;
  line-height: 26px;
}
.inside-section-professional .elementor-widget-container a {
  color: var(--light-blue);
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-professional h2 {
    font-size: 45px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/privacy.css */
.section-privacy-content {
  padding-top: 70px;
}
.section-privacy-content .elementor-widget-container p,
.section-privacy-content .elementor-widget-container ul li {
  color: grey;
  line-height: 26px;
  margin: 10px 0;
}
.section-privacy-cookies {
  padding-bottom: 80px;
}
.section-privacy-cookies .elementor-widget-container p {
  color: grey;
}
.section-privacy-cookies .elementor-widget-container p a {
  color: var(--light-blue);
}
.section-privacy-newsletter {
  text-align: center;
  background-color: var(--light-blue);
  padding: 100px 0 50px 0;
}
.section-privacy-newsletter span {
  border-bottom: 2px solid white;
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}
.section-privacy-newsletter h2 {
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-size: 45px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.newsletter-privacy-form .gform_body input:not([type=checkbox]):not([type=submit]):not([type=radio]) {
  background-color: white;
  font-size: 18px !important;
  padding: 15px 0 !important;
  text-align: center;
  width: 100% !important;
  max-width: 958px !important;
  border-radius: 7px !important;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-bottom: 2px solid #333 !important;
}

/* src/css/chi-siamo.css */
.section-intro-chisiamo .chisiamo-intro-text p {
  color: grey;
}
.section-chisiamo-links .elementor-button-wrapper a.elementor-button {
  background-color: transparent;
}
.section-chisiamo-founders,
.section-chisiamo-network {
  background-color: var(--grey-white);
  text-align: center;
}
.section-chisiamo-founders h2,
.section-chisiamo-team h2,
.section-chisiamo-network h2 {
  color: var(--light-blue);
  text-transform: uppercase;
}
.section-chisiamo-founders p,
.section-chisiamo-team p,
.section-chisiamo-network p {
  color: grey;
}
.section-chisiamo-team {
  text-align: center;
}
.section-chisiamo-founders .sc_formatori,
.section-chisiamo-team .sc_formatori {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section-chisiamo-founders .sc_formatori .sing_formatore,
.section-chisiamo-team .sc_formatori .sing_formatore {
  width: 250px;
  display: inline-block;
  margin: 20px;
  max-width: 100%;
  text-align: center;
}
.section-chisiamo-founders .sc_formatori .sing_formatore h3,
.section-chisiamo-team .sc_formatori .sing_formatore h3 {
  font-weight: 400;
  font-size: 22px;
  color: var(--light-blue);
}
.section-chisiamo-founders .sc_formatori .sing_formatore p,
.section-chisiamo-team .sc_formatori .sing_formatore p {
  font-size: 14px;
  line-height: 20px;
  margin: 10px;
}
.section-chisiamo-founders .sc_formatori .sing_formatore .bg_formatore,
.section-chisiamo-team .sc_formatori .sing_formatore .bg_formatore {
  background-size: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  border: 2px solid;
  background-size: cover;
  background-position: center;
  color: var(--light-blue);
  transition: 300ms;
  box-sizing: border-box;
}
.section-chisiamo-founders .sc_formatori .sing_formatore:hover .bg_formatore,
.section-chisiamo-team .sc_formatori .sing_formatore:hover .bg_formatore {
  border: 4px solid;
}
body #gform_12 #field_12_2 input[type=checkbox] {
  margin-top: 0;
}

/* src/css/storia.css */
.section-storia-intro {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-storia-intro h2 {
  font-size: 30px;
  line-height: 34px;
  color: var(--light-blue);
  margin: 20px 0;
}
.section-storia-intro p {
  color: grey;
  line-height: 24px;
}
.section-info-request-storia {
  text-align: center;
  background-color: var(--light-blue);
  padding: 100px 20px 50px 20px;
}
.section-info-request-storia span {
  border-bottom: 2px solid white;
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}
.section-info-request-storia h2 {
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 50px;
}
form .ginput_container:not(.ginput_container_consent) {
  display: flex;
  flex-direction: column;
}
.section-info-request-storia .info-request-storia .gform_body input:not([type=checkbox]):not([type=submit]):not([type=radio]),
.section-info-request-storia .info-request-storia .gform_body textarea {
  background-color: white;
  font-size: 18px !important;
  padding: 15px 0 !important;
  text-align: center;
  width: 100% !important;
  max-width: 958px !important;
  border-radius: 7px !important;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-bottom: 2px solid #333 !important;
}
.section-info-request-storia .info-request-storia .gform_body label {
  color: white;
  font-weight: 300;
}
.section-info-request-storia .info-request-storia .gform_body li > label {
  padding-left: 20px;
}
.section-info-request-storia .info-request-storia .gform_body label a {
  font-weight: 700;
}
.section-info-request-storia .info-request-storia .gform_body label .gfield_required {
  color: white;
  font-weight: 300;
  border: none;
}
.section-info-request-storia .info-request-storia .gform_legacy_markup_wrapper ul.gfield_radio {
  display: grid;
  gap: 10px;
}
.section-info-request-storia .info-request-storia .gform_legacy_markup_wrapper .ginput_container ul.gfield_radio li input[type=radio] {
  margin-left: 20px;
}
.section-info-request-storia .info-request-storia .gform_legacy_markup_wrapper .ginput_container ul.gfield_radio li label {
  padding-left: 0;
}
.section-slide-storia {
  margin-top: 70px;
  margin-bottom: 40px;
}
.swiper-storia {
  max-width: 800px;
  height: 100%;
  padding: 10px !important;
}
.swiper-storia .swiper-slide {
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.07);
  border-radius: 20px 20px 0 0;
}
.swiper-storia .swiper-slide .content-storia {
  padding: 40px 100px;
}
.swiper-storia .swiper-slide .content-storia p {
  color: grey;
  font-size: 14px;
  line-height: 20px;
}
.swiper-storia .swiper-slide .title-storia {
  padding: 10px;
  text-align: center;
  background: var(--light-blue);
  border-radius: 20px 20px 0 0;
}
.swiper-storia .swiper-slide .title-storia span {
  color: white;
  font-size: 30px;
  font-weight: 700;
}
.swiper-storia .swiper-slide .title-storia {
  padding: 10px;
  text-align: center;
  background: var(--light-blue);
  border-radius: 20px 20px 0 0;
}
.swiper-storia .swiper-button-prev,
.swiper-storia .swiper-button-next {
  color: #adadad;
  width: 44px;
  height: 44px;
  border: 2px solid #adadad;
  border-radius: 100%;
}
.swiper-storia .swiper-button-prev {
  margin-left: 10px;
}
.swiper-storia .swiper-button-next {
  margin-right: 10px;
}
.swiper-storia .swiper-button-prev::after,
.swiper-storia .swiper-button-next::after {
  font-size: 24px;
}
.swiper-storia .swiper-button-next::after {
  margin-left: 5px;
}
.swiper-storia .swiper-button-prev::after {
  margin-right: 5px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-info-request-storia .info-request-storia .gform_legacy_markup_wrapper ul.gfield_radio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .section-info-request-storia h2 {
    font-size: 45px;
  }
  .swiper-storia .swiper-slide .content-storia p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/idea-ispiratrice.css */
.section-idea-intro {
  text-align: center;
}
.section-idea-intro h1 {
  color: var(--light-blue);
  text-transform: uppercase;
  font-size: 35px;
}
.section-idea-intro p {
  color: grey;
  line-height: 24px;
}
.section-idea-content h2 {
  display: inline-block;
  color: var(--light-blue);
  border-bottom: 2px solid var(--light-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
}
.section-idea-content p {
  color: grey;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-idea-content h2 {
    font-size: 20px;
  }
  .section-idea-intro h1 {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/filosofia.css */
.section-filosofia .filosofia-title h2 {
  color: var(--light-blue);
  font-size: 30px;
  text-align: center;
}
.section-filosofia .filosofia-accordion .elementor-toggle-item:not(:last-child) {
  margin-bottom: 5px;
}
.section-filosofia .filosofia-accordion .elementor-toggle-item h3 {
  color: white;
  background-color: var(--light-blue);
}
.section-filosofia .filosofia-accordion .elementor-widget-container .elementor-toggle {
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  overflow: hidden;
}
.section-filosofia .filosofia-accordion .elementor-widget-container .elementor-toggle .elementor-tab-content {
  border-bottom: none;
}
.section-filosofia .filosofia-accordion .elementor-widget-container .elementor-toggle .elementor-tab-content p {
  color: grey;
}
.section-filosofia-etica {
  background-color: var(--grey-white);
}
.section-filosofia-etica h2 {
  color: var(--light-blue);
  font-size: 30px;
}
.section-filosofia-etica p {
  color: grey;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/qualita.css */
.section-qualita-intro {
  text-align: center;
}
.section-qualita-intro h1 {
  font-size: 30px;
  color: var(--light-blue);
  text-transform: uppercase;
}
.section-qualita-intro p {
  color: grey;
}
.section-qualita-links {
  text-align: center;
  background-color: var(--grey-white);
}
.section-qualita-links p {
  color: grey;
}
.section-reclami-qualita {
  text-align: center;
}
.section-reclami-qualita h2 {
  color: var(--light-blue);
  text-transform: uppercase;
  font-size: 30px;
}
.section-reclami-qualita blockquote p {
  color: var(--light-blue);
}
.section-reclami-qualita p {
  margin-top: 20px;
  margin-bottom: 20px;
  color: grey;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-qualita-intro h1 {
    font-size: 45px;
  }
  .section-reclami-qualita h2 {
    font-size: 45px;
  }
  .section-qualita-buttons .elementor-column.elementor-col-20 {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .section-qualita-buttons .elementor-column.elementor-col-20 {
    width: 20%;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/solidarieta.css */
.section-solidarieta-intro h2 {
  font-size: 20px;
  display: inline-block;
  border-bottom: 2px solid var(--light-blue);
  color: var(--light-blue);
  margin: 30px 0 30px 0;
}
.section-solidarieta-intro p {
  color: grey;
  margin-bottom: 40px;
}
.section-solidarieta-title h2 {
  color: var(--light-blue);
  font-size: 30px;
  margin-bottom: 30px;
}
.section-solidarieta-title p {
  color: grey;
}
.section-solidarieta-title p a {
  color: var(--light-blue);
}
.section-sostenibilita-libro h2 {
  font-size: 22px;
  color: var(--light-blue);
  font-weight: 400;
  margin-bottom: 20px;
}
.section-sostenibilita-libro p {
  color: grey;
}
.section-solidarieta-opera h2 {
  color: var(--light-blue);
  font-size: 30px;
  margin-bottom: 30px;
}
.section-solidarieta-opera p {
  color: grey;
}
.section-solidarieta-opera p a {
  color: var(--light-blue);
}
.section-solidarieta-image-text h2 {
  font-size: 20px;
  color: var(--light-blue);
  font-weight: 400;
  margin-bottom: 20px;
}
.section-solidarieta-opera .elementor-widget-container:first-child p {
  margin-bottom: 20px;
}
.section-solidarieta-image-text p {
  color: grey;
}
.section-solidarieta-image-text img,
.section-sostenibilita-libro img {
  border-radius: 15px;
}

/* src/css/faq.css */
.head_metodologie {
  text-align: center;
  text-transform: uppercase;
  margin: 40px 20px;
}
.head_metodologie h1 {
  font-weight: 700;
  font-size: 30px;
  color: #65b7db;
}
.page_metodologie {
  margin-bottom: 100px;
}
.page_metodologie .container,
.testimonianze_corso .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.page_metodologie .container .list_metodologie,
.testimonianze_corso .container .list_testim {
  flex: 1;
}
.page_metodologie .container > div,
.testimonianze_corso .container > div {
  width: 100%;
  margin: 0 10px;
}
.page_metodologie .sidebar_base,
.testimonianze_corso .sidebar_base {
  max-width: 300px;
  width: 100%;
}
.sidebar_base .sidebar_base_cont {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}
.sidebar_base .sidebar_base_cont > div:nth-child(1) {
  background: var(--light-blue);
}
.sidebar_base .sidebar_base_cont > div {
  background: var(--grey-white);
  padding: 10px 20px;
}
.sidebar_base .sidebar_base_cont > div h3 {
  font-size: 20px;
  color: white;
  font-weight: 600;
}
.sidebar_base .sidebar_base_cont > div a {
  display: block;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 400;
  color: #646464;
  transition: 0.5s;
  text-decoration: none;
}
.sidebar_base .sidebar_base_cont > div a:hover {
  color: var(--light-blue);
}
.page_metodologie .container > div.list_metodologie h2:nth-child(1) {
  margin-top: 0;
}
.page_metodologie .container > div.list_metodologie h2 {
  margin-top: 40px;
  color: var(--light-blue);
  font-size: 30px;
}
.page_metodologie .container > div.list_metodologie .sez_metod {
  padding: 90px 0 0;
  margin-top: -60px;
}
.page_metodologie .container > div.list_metodologie .sez_metod h3 {
  font-size: 18px;
  color: var(--light-blue);
  margin-bottom: 20px;
}
.txt_cat_metod {
  margin: 10px 0 25px;
  font-weight: 600;
  color: grey;
  font-size: 16px;
  line-height: 24px;
}
.page_metodologie .btn_metod,
.faq-wrapper .btn_metod {
  background: var(--grey-white);
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #646464;
  position: relative;
  cursor: pointer;
}
.toggle_metod {
  margin: 0 0 10px;
}
.toggle_metod .btn_metod:before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: 0.5s;
}
.toggle_metod.show .btn_metod:before {
  transform: rotate(225deg);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.toggle_metod > div.cont_toggle {
  margin: 0 15px;
  display: none;
}
.toggle_metod.show > div.cont_toggle {
  display: block;
}
.toggle_metod .cont_toggle > div {
  padding: 15px 0;
  color: grey;
}
.toggle_metod .cont_toggle > div p {
  color: grey;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .head_metodologie {
    margin: 80px 20px;
  }
  .head_metodologie h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .head_metodologie {
    margin: 100px 20px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/single-speaker.css */
.we-info-sp .row_formatori {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.we-info-sp .row_formatori .sing_formatore {
  width: 250px;
  display: inline-block;
  margin: 20px;
  max-width: 100%;
  text-align: center;
}
.we-info-sp .row_formatori .sing_formatore .bg_formatore {
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  border: 2px solid;
  background-size: cover;
  background-position: center;
  color: var(--light-blue);
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.we-info-sp .row_formatori .sing_formatore .bg_formatore:hover {
  border: 4px solid;
}
.we-info-sp .row_formatori .sing_formatore h1 {
  font-size: 40px;
  line-height: 45px;
  color: var(--light-blue);
}
.we-info-sp .row_formatori .sing_formatore p {
  font-size: 14px;
  line-height: 20px;
  margin: 10px;
  color: grey;
}
.we-info-sp .we-social-share {
  width: 100%;
}
.we-info-sp .we-social-share ul {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.we-info-sp .we-social-share ul li {
  padding: 0;
  border: 0;
  background: 0 0;
  box-shadow: none;
}
.we-info-sp .we-social-share ul li a {
  display: block;
  background-color: var(--grey-white);
  border-radius: 50px;
  width: 100%;
  height: 100%;
}
.we-info-sp .speak-sito {
  clear: both;
  text-align: center;
  margin: 0 0 60px;
}
.we-info-sp .cont_speaker {
  font-family: "Montserrat", sans-serif;
}
.we-info-sp .cont_speaker ul {
  color: grey;
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.we-info-sp .cont_speaker ul li {
  padding: 0 0 0 20px;
  list-style: none;
  position: relative;
  font-weight: 400;
}
.we-info-sp .cont_speaker ul li strong {
  font-weight: 700;
}
.we-info-sp .cont_speaker ul li::before {
  display: block;
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 50px;
  position: absolute;
  left: 0px;
  top: -2px;
}
.we-info-sp .cont_speaker p {
  color: grey;
  font-size: 16px;
  line-height: 24px;
}
.we-info-sp .speaker-event-list * {
  font-family: "Montserrat", sans-serif !important;
}
.we-info-sp .speaker-event-list h3.speaker-title {
  font-size: 30px;
  line-height: 34px;
  margin: 30px 0;
  text-align: center;
  color: var(--light-blue);
}
.we-info-sp .speaker-event-list .we-table {
  width: 100%;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  border-collapse: collapse;
}
.we-info-sp .speaker-event-list .we-table thead th {
  background-color: var(--light-blue);
  text-align: left;
  text-transform: capitalize;
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 0;
  padding: 10px 20px;
}
.we-info-sp .speaker-event-list table.we-table tbody tr {
  background-color: white;
  border-bottom: 1px solid #e8e8e8;
  transition: all 300ms ease;
}
.we-info-sp .speaker-event-list table.we-table tbody tr:hover {
  background-color: var(--grey-white);
  border-bottom: 1px solid #e8e8e8;
  transition: all 300ms ease;
}
.we-info-sp .speaker-event-list table.we-table tbody tr > td {
  border-bottom: none;
}
.we-info-sp .speaker-event-list table.we-table tbody tr td span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  color: grey;
}
.we-info-sp .speaker-event-list .we-table tbody td h3 a {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 400;
  text-transform: capitalize;
}
.ex-loadmore {
  display: block;
  width: 100%;
  text-align: center;
  margin: 30px 0;
}
#body .ex-loadmore .loadmore-grid {
  height: 20px;
  box-shadow: none;
  display: inline-block;
  text-align: center;
  border: 3px solid var(--light-blue);
  font-size: 20px;
  color: var(--light-blue);
  padding: 8px 25px;
  border-radius: 40px;
  margin: 0;
  text-transform: capitalize;
  background: 0 0;
  font-weight: 800;
  cursor: pointer;
}

/* src/css/metodologie.css */
.sez_metod .cont_toggle ul {
  color: grey;
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.sez_metod .cont_toggle ul li {
  padding: 0 0 0 20px;
  list-style: none;
  position: relative;
  font-weight: 400;
}
.sez_metod .cont_toggle ul li strong {
  font-weight: 700;
}
.sez_metod .cont_toggle ul li::before {
  display: block;
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 50px;
  position: absolute;
  left: 0px;
  top: -2px;
}
.sez_metod .txt_cat_metod p {
  color: grey;
  font-weight: 400;
}

/* src/css/testimonianze.css */
.media_1 i:nth-child(-n+1) {
  color: #ffc800;
}
.media_2 i:nth-child(-n+2) {
  color: #ffc800;
}
.media_3 i:nth-child(-n+3) {
  color: #ffc800;
}
.media_4 i:nth-child(-n+4) {
  color: #ffc800;
}
.media_5 i:nth-child(-n+5) {
  color: #ffc800;
}
.gf-rating-stars-plz i {
  color: grey;
}
.gf-rating-stars-plz i:before {
  content: "\2605";
}
.main_testimonianze .container-gallery {
  margin: 40px 0;
}
.head_testimonianze {
  text-align: center;
  margin: 100px 20px;
  text-transform: uppercase;
}
.head_testimonianze h1 {
  color: var(--light-blue);
  font-size: 30px;
}
.list_testim .sing_testim {
  border-top: 1px solid var(--black);
  padding: 25px 0;
}
.list_testim .sing_testim .gf-rating-stars-plz {
  padding-bottom: 15px;
}
.list_testim .sing_testim span {
  font-size: 14px;
  color: grey;
  font-weight: 700;
  font-style: italic;
}
.sing_testim.show .txt_testim p {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.sing_testim .txt_testim p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 15px;
  font-size: 14px;
  color: grey;
}
.sing_testim .txt_testim span {
  cursor: pointer;
  color: var(--light-blue);
  font-size: 14px;
  font-weight: 600;
}
.sing_testim.show .txt_testim span {
  display: none;
}
.main_testimonianze .navigation {
  text-align: center;
}
.main_testimonianze .navigation .wp-paginate .current {
  background: var(--light-blue);
  border: 1px solid var(--light-blue);
}
.main_testimonianze .navigation .wp-paginate a {
  background: var(--grey-white);
  border: 1px solid var(--grey-white);
}
.main_testimonianze .container {
  max-width: 1000px;
  margin: 0 auto;
}
.form_testim {
  background-color: var(--grey-white);
  margin: 60px 0;
}
.form_testim .btn_testim {
  background-color: #e7e6e6;
  text-align: center;
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: all 300ms ease;
}
.form_testim .btn_testim:hover {
  filter: brightness(0.9);
}
.form_testim .btn_testim::after {
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  display: block;
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--black);
  transform: rotate(45deg);
  transition: 0.5s;
}
.form_testim.show .btn_testim::after {
  transform: rotate(225deg);
  top: 25px;
}
.form_testim .btn_testim h3 {
  border-bottom: 2px solid var(--black);
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
}
#gform_4 {
  text-align: center;
  color: grey;
}
.form_testim .cont_form_testim {
  padding: 20px 40px;
  display: none;
}
.form_testim .cont_form_testim.show {
  padding: 20px 40px;
  display: block;
}
#gform_4 .gform-body li.gfield--type-radio .ginput_container_radio ul {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
#gform_4 .gform-body li.gfield--type-radio .ginput_container_radio ul li input[type=radio] {
  margin-top: 0;
}
#gform_4 .gform_body input:not([type=checkbox]):not([type=submit]):not([type=radio]),
#gform_4 .gform_body textarea {
  background-color: white;
  font-size: 18px !important;
  padding: 15px 0 !important;
  text-align: center;
  width: 100% !important;
  max-width: 958px !important;
  border-radius: 7px !important;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-bottom: 2px solid #333 !important;
}
#gform_4 .gform_body input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 8px;
  font: inherit;
  color: var(--light-blue);
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--light-blue);
  border-radius: 999px;
  display: inline-grid;
  place-content: center;
  margin-top: 0;
}
#gform_4 .gform_body input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--light-blue);
}
#gform_4 .gform_body input[type=checkbox]:checked::before {
  transform: scale(1);
}
#gform_4 .accetta-testim .ginput_container_checkbox ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
#gform_4 .accetta-testim .ginput_container_checkbox ul li a {
  color: var(--light-blue);
  text-decoration: none;
}
#gform_4 .gform_body .testim-intro-form > label {
  margin-bottom: 20px;
}
#gform_4 .gl-star-rating {
  align-items: center;
  justify-content: center;
}
.form_testim .cont_form_testim .testim_login .gform_description {
  display: none;
}
.form_testim .cont_form_testim .testim_login {
  text-align: center;
}
.testim_login > p {
  color: grey;
  font-size: 16px;
  margin: 25px 0;
}
#input_4_13 {
  appearance: none;
  background-image: url(../img/chevron-down.png);
  background-size: 34px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  margin: 0 0 10px;
  border: 1px solid #bababa;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
  padding: 4px 30px 4px 10px;
  color: var(--black);
  background-color: white;
  height: 35px;
}
.testim_login .woocommerce .u-columns div form.register .input-text,
.testim_login .woocommerce .u-columns div form.login .input-text {
  background: #fff;
  width: 100%;
  color: var(--black);
  border: 1px solid #dadada;
  border-radius: 5px;
  max-height: 100%;
  font-size: 14px;
  padding: 10px;
  line-height: 22px;
  margin: 0 0 20px;
  box-sizing: border-box;
}
.testim_login .woocommerce .u-columns div form.login,
.testim_login .woocommerce .u-columns div form.register {
  text-align: center;
  height: 100% !important;
  border: none;
}
.testim_login .woocommerce .u-columns div form.login p.form-row:nth-child(3),
.testim_login .woocommerce .u-columns div form.register p:last-of-type {
  align-items: center;
}
.testim_login .woocommerce .u-columns div form.login p.form-row,
.section-wc-account .testim_login .u-columns div form.register p.form-row,
.testim_login .woocommerce .u-columns div form.register p.form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.testim_login .woocommerce .woocommerce-form .form-row button.woocommerce-button {
  border: 1px solid;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
  color: var(--light-blue);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
}
.testim_login .woocommerce .woocommerce-form .form-row button.woocommerce-button:hover {
  color: white;
  background: var(--light-blue);
}
.testim_login .woocommerce .u-columns div form.login input[type=checkbox],
.testim_login .woocommerce .u-columns div form.register input[type=checkbox] {
  width: 18px;
  height: 18px;
}
.testim_login .woocommerce .u-columns div form.login .form-row button,
.testim_login .woocommerce .u-columns div form.register .form-row button {
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 10px;
}
.testim_login .woocommerce .u-columns div form.register .form-row label a {
  color: var(--light-blue);
  text-decoration: none;
}
.testim_login .woocommerce .u-columns div form.login .show-password-input,
.testim_login .woocommerce .u-columns div form.register .show-password-input {
  display: none;
}
.testim_login .woocommerce .u-columns div form.login a {
  font-size: 16px;
  color: var(--light-blue);
  text-decoration: none;
}
.testim_login .woocommerce .u-columns div form.register .form-row .woocommerce-form-register__submit {
  border: 3px solid;
  padding: 5px 25px;
  font-size: 25px;
  border-radius: 50px;
  color: var(--light-blue);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
  width: fit-content;
  align-self: center;
}
.testim_login .woocommerce .u-columns div form.register .form-row .woocommerce-form-register__submit:hover {
  color: white;
  background: var(--light-blue);
}
.testim_login .woocommerce .u-columns .btn_registrati {
  display: none;
}
.testim_login .woocommerce .u-columns div h2 {
  text-align: center;
  font-size: 30px;
  color: var(--light-blue);
  font-weight: 700;
  margin-bottom: 40px;
}
.testim_login .woocommerce div.btn_blu {
  border: 3px solid;
  padding: 5px 25px;
  font-size: 25px;
  border-radius: 50px;
  color: var(--light-blue);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
  width: fit-content;
  align-self: center;
}
.testim_login .woocommerce div.btn_blu:hover {
  color: white;
  background: var(--light-blue);
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .head_testimonianze h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/incontri-in-forma.css */
.eventi_in-corso .row_corsi > div {
  display: flex;
  flex-wrap: wrap;
}
.eventi_in-corso .row_corsi > div > div {
  padding: 20px;
  flex: 1;
}
.eventi_in-corso .row_corsi > div > div > a {
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 7%);
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.eventi_in-corso .cont_med .singolo_articolo-informa .txt_articolo {
  padding: 30px;
}
.eventi_in-corso .cont_med .singolo_articolo-informa .txt_articolo h3 {
  font-size: 30px;
  color: var(--black);
  line-height: 31px;
}
.eventi_in-corso .cont_med .singolo_articolo-informa .txt_articolo p {
  color: grey;
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
}
.eventi_in-corso .cont_med .singolo_articolo-informa .txt_articolo .cat_articolo {
  color: var(--light-blue);
  font-weight: 600;
}
.eventi_in-corso .btn_readmore span {
  font-size: 24px;
  font-weight: 600;
  color: var(--light-blue);
  border: 2px solid;
  text-align: center;
  display: inline-block;
  padding: 2px 20px;
  border-radius: 50px;
  background-color: transparent;
  transition: all 300ms ease;
}
.eventi_in-corso .btn_readmore span:hover {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background-color: var(--light-blue);
}
.section-intro-in-forma {
  text-align: center;
}
.section-intro-in-forma p {
  color: grey;
  line-height: 24px;
}
.section-content-in-forma {
  background-color: var(--grey-white);
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container {
  text-align: center;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  overflow: hidden;
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container ul.elementor-icon-list-items {
  background-color: #fff;
  padding-bottom: 20px;
  width: 100%;
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container ul.elementor-icon-list-items li.elementor-icon-list-item:nth-child(1) {
  background-color: var(--light-blue);
  min-height: 35px;
  margin: 0 0 20px;
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container ul.elementor-icon-list-items li.elementor-icon-list-item:nth-child(1) span {
  color: white;
  padding: 8px 20px;
  font-size: 22px;
  font-weight: 300;
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container ul.elementor-icon-list-items li.elementor-icon-list-item {
  margin: 5px 30px 5px 40px;
  color: grey;
  font-weight: 300;
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container ul.elementor-icon-list-items li.elementor-icon-list-item:not(:nth-child(1)) {
  line-height: 32px;
  font-size: 14px;
}
.section-content-in-forma .box-in-forma-list .elementor-widget-container ul.elementor-icon-list-items li.elementor-icon-list-item span::before {
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 50px;
  position: absolute;
  left: -22px;
  top: -3px;
}
.section-eventi-in-forma h3 {
  color: var(--light-blue);
  font-size: 30px;
  line-height: 34px;
}
.section-eventi-in-forma .button-light-blue {
  text-align: center;
}
.section-eventi-in-forma .button-light-blue .elementor-button {
  border-radius: 44px;
  padding: 12px 24px;
  font-weight: 600;
}

/* src/css/archive-events.css */
.archive_eventi .row_title,
.archive_corsi .row_title,
.archive_questionari .row_title {
  text-align: center;
  margin: 60px 0;
}
.archive_eventi .row_title h1,
.archive_corsi .row_title h1,
.archive_questionari .row_title h1 {
  font-size: 20px;
  color: var(--light-blue);
  line-height: 20px;
  border-bottom: 3px solid var(--light-blue);
  text-transform: uppercase;
  display: inline-block;
}
#courses-events-archive .sidebar_content_events {
  display: none;
}
#courses-events-archive .sidebar_content_events.show {
  display: block;
}
#courses-events-archive.container,
#questionari-archives.container {
  max-width: 1000px;
  margin: 0 auto;
}
#courses-events-archive .sidebar_base {
  max-width: 400px;
  margin: 0 auto;
}
#courses-events-archive .sidebar_base .sidebar_base_cont .sidebar_head_title {
  cursor: pointer;
}
#courses-events-archive .sidebar_base .sidebar_base_cont > div:nth-child(1) {
  position: relative;
}
#courses-events-archive .sidebar_base .sidebar_base_cont > div:nth-child(1)::after {
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  display: block;
  position: absolute;
  right: 22px;
  top: 10px;
  color: white;
  transform: rotate(45deg);
  transition: 0.5s;
}
#courses-events-archive.container .content_blog .cont_med,
#questionari-archives.container .content_blog .cont_med {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#courses-events-archive.container .content_blog .cont_med .singolo_articolo,
#questionari-archives.container .content_blog .cont_med .singolo_articolo {
  padding: 20px;
}
#courses-events-archive.container .content_blog .cont_med .singolo_articolo a,
#questionari-archives.container .content_blog .cont_med .singolo_articolo a {
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 7%);
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 300ms ease;
}
#courses-events-archive.container .content_blog .cont_med .singolo_articolo a:hover,
#questionari-archives.container .content_blog .cont_med .singolo_articolo a:hover {
  box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.07);
}
#courses-events-archive.container .cont_med .singolo_articolo .txt_articolo,
#questionari-archives.container .content_blog .cont_med .singolo_articolo .txt_articolo {
  padding: 30px;
}
#courses-events-archive.container .cont_med .singolo_articolo .txt_articolo h3,
#questionari-archives.container .content_blog .cont_med .singolo_articolo .txt_articolo h3 {
  font-size: 30px;
  text-decoration: none;
}
#courses-events-archive.container .cont_med .singolo_articolo .img_articolo img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  width: 100%;
  max-width: 100%;
}
.content_blog .txt_articolo p {
  color: grey;
  margin: 20px 0;
  line-height: 24px;
}
.content_blog .txt_articolo .btn_readmore {
  text-align: center;
}
.content_blog .txt_articolo .btn_readmore span {
  font-size: 24px;
  font-weight: 600;
  color: var(--light-blue);
  border: 2px solid;
  text-align: center;
  display: inline-block;
  padding: 2px 20px;
  border-radius: 50px;
  background-color: transparent;
  transition: all 300ms ease;
}
.content_blog .singolo_articolo:hover .txt_articolo .btn_readmore span {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background-color: var(--light-blue);
}
#questionari-archives.container .content_blog .cont_med .singolo_articolo .txt_articolo p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive_questionari .row_title > div p {
  margin-top: 1em;
  margin-bottom: 1em;
  color: grey;
}
.archive_questionari .row_title h1 {
  padding-bottom: 5px;
}

/* src/css/checkout.css */
.argmc-wrapper {
  max-width: unset;
}
.argmc-wrapper .argmc-form-steps-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login {
  border: none;
  position: relative;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login > p {
  text-align: center;
  color: grey;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row {
  text-align: left;
  margin: 5px 0;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row label,
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row label span,
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-billing-fields .form-row label,
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-billing-fields .form-row label abbr,
.argmc-wrapper .woocommerce-account-fields .form-row label,
.argmc-wrapper .woocommerce-account-fields .form-row label abbr {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 5px;
  line-height: 12px;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row .password-input {
  display: block;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row .password-input .show-password-input {
  display: none;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row input:not([type=checkbox]):not([type=submit]):not([type=radio]) {
  border-radius: 5px;
  height: auto;
  padding: 10px;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row:nth-last-child(-n+3) {
  display: flex;
  align-items: center;
  position: relative;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row:nth-last-child(-n+3) label {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row input[type=checkbox],
.woocommerce-checkout .woocommerce-checkout-payment ul li input[type=checkbox],
.woocommerce-checkout #payment .form-row input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 8px;
  font: inherit;
  color: var(--light-blue);
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--light-blue);
  border-radius: 999px;
  display: inline-grid;
  place-content: center;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row input[type=checkbox]::before,
.woocommerce-checkout .woocommerce-checkout-payment ul li input[type=checkbox]::before,
.woocommerce-checkout #payment .form-row input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--light-blue);
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row input[type=checkbox]::before {
  margin-left: 1px;
  margin-top: 1px;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row input[type=checkbox]:checked::before,
.woocommerce-checkout .woocommerce-checkout-payment ul li input[type=checkbox]:checked::before,
.woocommerce-checkout #payment .form-row input[type=checkbox]:checked::before {
  transform: scale(1);
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row:nth-last-child(-n+3) button {
  color: var(--light-blue);
  background-color: transparent;
  border: 2px solid var(--light-blue);
  border-radius: 44px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 14px;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .form-row:nth-last-child(-n+3) button:hover {
  background-color: var(--light-blue) !important;
  color: white !important;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .lost_password {
  position: absolute;
  right: 22px;
  bottom: -15px;
  font-size: 14px;
}
.argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .lost_password a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 600;
}
.argmc-wrapper.login-step .argmc-nav {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.argmc-wrapper .argmc-nav {
  max-width: 800px;
  margin: 0 auto;
}
.argmc-wrapper.login-step .argmc-nav .argmc-nav-text,
.argmc-wrapper.login-step .argmc-nav .argmc-nav-buttons {
  border: none;
  width: 100%;
  text-align: center;
  padding: 20px;
}
.argmc-wrapper.login-step .argmc-nav .argmc-nav-buttons button {
  color: white;
  background-color: var(--light-blue);
  border: 2px solid var(--light-blue);
  border-radius: 44px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 16px;
}
.argmc-wrapper.login-step .argmc-nav .argmc-nav-buttons button:hover {
  color: var(--light-blue);
  background-color: white;
  border: 2px solid var(--light-blue);
}
.argmc-wrapper form.checkout .woocommerce-billing-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.argmc-wrapper form.checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.argmc-wrapper form.checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row {
  width: 50%;
}
.argmc-wrapper form.checkout .form-row select {
  border: 1px solid #bababa;
}
.argmc-wrapper form.checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row-wide,
.argmc-wrapper form.checkout .woocommerce-billing-fields .form-row-wide {
  width: 100%;
}
.argmc-wrapper form.checkout .woocommerce-billing-fields .form-row input:not([type=checkbox]):not([type=submit]):not([type=radio]),
.argmc-wrapper form.checkout .woocommerce-billing-fields .form-row input:not([type=checkbox]):not([type=submit]):not([type=radio]),
.argmc-wrapper .woocommerce-account-fields input:not([type=checkbox]):not([type=submit]):not([type=radio]) {
  border-radius: 5px;
  height: auto;
  padding: 10px;
}
.argmc-wrapper form.checkout .woocommerce-billing-fields h3 {
  color: var(--light-blue);
  padding: 60px 0 30px;
  font-size: 30px;
}
.argmc-wrapper form.checkout .woocommerce-billing-fields .form-row-wide#orario_contatto_field,
.argmc-wrapper form.checkout .woocommerce-billing-fields .form-row-wide#fatt_privato_azienda_field {
  display: flex;
}
.argmc-wrapper .argmc-nav .argmc-nav-buttons button {
  color: var(--light-blue);
  background-color: transparent;
  border: 2px solid var(--light-blue);
  border-radius: 44px;
  padding: 5px 15px;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 14px;
}
.argmc-wrapper .argmc-nav .argmc-nav-buttons button:hover {
  color: white;
  background-color: var(--light-blue);
}
#order_review .shop_table,
#order_review .shop_table td,
#order_review .shop_table tfoot th {
  border: none;
}
#order_review .shop_table thead tr .product-name,
#order_review .shop_table thead tr .product-total {
  color: var(--light-blue);
  font-size: 24px;
  line-height: 40px;
}
#order_review .shop_table tbody tr .product-name h4 {
  font-size: 16px;
  color: var(--light-blue);
}
#order_review .shop_table tbody tr .product-name span,
#order_review .shop_table tbody tr .product-name strong {
  color: grey;
  line-height: 24px;
  font-size: 16px;
}
#order_review .shop_table tbody tr .product-total span {
  color: grey;
  line-height: 24px;
  font-size: 16px;
}
#order_review .shop_table tfoot tr th {
  color: grey;
  font-size: 16px;
  line-height: 24px;
}
#order_review .shop_table tfoot tr td span {
  color: grey;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.woocommerce-checkout #payment {
  background-color: transparent;
}
.woocommerce-checkout #payment ul {
  padding: 0;
  margin: 1em 0;
  border-bottom: none;
  list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 32px;
  margin: 0;
  border-radius: 20px;
  background-color: #f5f5f5;
  width: 100%;
  overflow: hidden;
  list-style: none;
  margin-bottom: 10px;
}
.woocommerce-checkout #payment ul li input[type=radio] {
  display: none;
}
.woocommerce-checkout #payment ul li > label {
  background: #e8e8e8;
  padding: 0 20px;
  margin: 0;
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 16px;
  color: var(--dark-blue);
  font-weight: 600;
}
.woocommerce-checkout #payment ul li > label:hover {
  background: var(--light-blue);
  color: white;
}
.woocommerce-checkout #payment ul li div.payment_box {
  background-color: #f5f5f5;
  padding: 10px 20px;
}
.woocommerce-checkout #payment ul li div.payment_box::before {
  display: none;
}
.woocommerce-checkout #payment ul li div.payment_box p {
  color: grey;
}
.woocommerce-checkout #payment .payment_method_paypal a.about_paypal {
  color: var(--light-blue);
  text-decoration: none;
  margin-left: 15px;
}
.woocommerce-checkout #payment ul.payment_methods {
  border: none;
}
.woocommerce-checkout #payment ul li div.payment_box fieldset {
  border: none;
}
.woocommerce-checkout #payment ul li div.payment_box fieldset label,
.woocommerce-checkout #payment ul li div.payment_box fieldset label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 5px;
  line-height: 12px;
}
.woocommerce-checkout #payment .form-row span {
  color: grey;
}
.woocommerce-checkout #payment .form-row span a {
  text-decoration: none;
  color: var(--light-blue);
}
#pagasicuro {
  margin-bottom: 40px;
}
#payment .place-order .form-row label {
  color: grey;
}
#payment .place-order .form-row label a {
  color: var(--light-blue);
  text-decoration: none;
}
body.woocommerce-page.woocommerce-order-received .woocommerce {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-thankyou-order-received {
  color: var(--light-blue);
  font-weight: 700;
  margin: 40px 0;
  line-height: 40px;
  font-size: 35px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  padding: 20px 40px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li {
  border: none;
  list-style: none;
  position: relative;
  line-height: 32px;
  color: grey;
  font-size: 14px;
  display: flex;
  column-gap: 10px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li::before {
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 50px;
  position: absolute;
  left: -22px;
  top: -3px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-bacs-bank-details h2,
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details h2,
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-customer-details h2 {
  font-size: 30px;
  line-height: 40px;
  color: var(--light-blue);
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-bacs-bank-details h3 {
  font-size: 16px;
  color: var(--light-blue);
  margin: 10px 0;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details * {
  border: none;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details table.order_details thead tr th {
  color: var(--light-blue);
  font-size: 24px;
  line-height: 40px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details table.order_details tbody *,
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details table.order_details tfoot *,
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details table.custom-fields tbody * {
  color: grey;
  font-size: 16px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-order-details table.order_details tbody tr td a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 700;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-customer-details address {
  border: none;
  color: grey;
  line-height: 26px;
}
body.woocommerce-page.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-customer-details address p {
  color: grey;
  display: flex;
  align-items: center;
}
body.woocommerce-page .woocommerce .woocommerce-message {
  display: flex;
  align-items: center;
  border-top: none;
  border-bottom: 1px solid var(--light-blue);
  background-color: white;
  padding: 10px 5px;
}
body.woocommerce-page .woocommerce .wc-forward,
body.woocommerce-page .woocommerce .woocommerce-message .restore-item {
  margin-left: 10px;
}
body.woocommerce-page .woocommerce .woocommerce-message a,
body.woocommerce-page .woocommerce .return-to-shop a,
body.woocommerce-page .woocommerce .wc-forward,
body.woocommerce-page .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.edit-account p .button {
  border: 2px solid var(--light-blue);
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 50px;
  color: var(--light-blue);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms ease;
}
body.woocommerce-page .woocommerce .woocommerce-message a:hover,
body.woocommerce-page .woocommerce .return-to-shop a:hover,
body.woocommerce-page .woocommerce .wc-forward:hover,
body.woocommerce-page .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper form.edit-account p .button:hover {
  color: white !important;
  background: var(--light-blue) !important;
}
body.woocommerce-page .woocommerce .woocommerce-message::before {
  display: none;
}
body.woocommerce-page .woocommerce .woocommerce-info {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #65b7db;
  text-align: center;
  border-top: none;
  color: grey;
  background: #f5f5f5;
}
body.woocommerce-page .woocommerce .woocommerce-info::before {
  display: none;
}
body.woocommerce-page .woocommerce .return-to-shop {
  text-align: center;
}
.woocommerce-cart table.cart tbody tr td.product-quantity {
  display: flex;
  justify-content: center;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .argmc-wrapper .argmc-form-steps-wrapper .woocommerce-form-login .lost_password {
    position: absolute;
    right: 22px;
    bottom: 35px;
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/divulgazione.css */
.section-divulgazione-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-divulgazione-intro .divulgazione-intro-text p {
  color: grey;
  line-height: 24px;
}
.section-divulgazione-etica h2 {
  font-size: 25px;
  line-height: 30px;
  color: var(--light-blue);
  margin-bottom: 20px;
}
.section-divulgazione-etica p {
  color: grey;
  line-height: 24px;
}
.section-divulgazione-etica .elementor-widget-image img,
.section-percorso-formazione .percorso-formazione-img .elementor-video {
  border-radius: 15px;
}
.section-come-divulgare {
  background-color: #f5f5f5;
  text-align: center;
}
.section-come-divulgare .box-come-divulgare {
  max-width: 800px;
  margin: 0 auto;
}
.section-come-divulgare .box-come-divulgare h2 {
  font-size: 30px;
  color: var(--light-blue);
}
.section-come-divulgare .box-come-divulgare h3 {
  font-size: 16px;
  color: var(--light-blue);
  margin-bottom: 10px;
}
.section-come-divulgare .box-come-divulgare h4 {
  font-size: 18px;
  color: white;
  padding: 10px 20px;
  background-color: var(--light-blue);
}
.section-come-divulgare .box-come-divulgare .span-valorizziamo {
  margin-bottom: 20px;
}
.section-come-divulgare .box-come-divulgare .span-valorizziamo span {
  font-size: 20px;
  color: var(--light-blue);
  border-bottom: 3px solid var(--light-blue);
  font-weight: 700;
}
.section-come-divulgare .box-come-divulgare p {
  color: grey;
}
.section-come-divulgare .box-come-divulgare .box-valorizziamo .elementor-widget-container {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.section-come-divulgare .box-come-divulgare .box-valorizziamo .elementor-widget-container blockquote p {
  color: var(--light-blue);
  font-weight: 600;
}
.section-come-divulgare .box-come-divulgare .divulgazione-accordion .elementor-widget-container {
  border-radius: 15px;
  overflow: hidden;
  margin: 0 0 20px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.section-come-divulgare .box-come-divulgare .divulgazione-accordion .elementor-widget-container .elementor-toggle .elementor-tab-content {
  border: none;
  background-color: white;
}
.section-come-divulgare .box-come-divulgare .divulgazione-accordion .elementor-toggle-item .elementor-tab-content ul {
  margin-top: 1em;
  margin-bottom: 1em;
}
.section-come-divulgare .box-come-divulgare .divulgazione-accordion .elementor-toggle-item .elementor-tab-content ul li {
  color: grey;
  margin: 0px 20px;
  list-style: none;
  position: relative;
  line-height: 32px;
}
.section-come-divulgare .box-come-divulgare .divulgazione-accordion .elementor-toggle-item .elementor-tab-content ul li::before {
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 48px;
  position: absolute;
  left: -22px;
  top: -3px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-come-divulgare .box-come-divulgare h2 {
    font-size: 45px;
    color: var(--light-blue);
  }
  .section-come-divulgare .box-come-divulgare h4 {
    font-size: 22px;
    color: white;
  }
  .section-divulgazione-etica h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/voucher-regalo.css */
.section-voucher-intro h1 {
  font-size: 35px;
  line-height: 40px;
  color: var(--light-blue);
}
.section-voucher-intro h2,
.section-voucher-cards h2 {
  font-size: 28px;
  line-height: 30px;
  color: var(--light-blue);
}
.section-voucher-intro h3 {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-blue);
}
.section-voucher-intro p,
.section-voucher-cards p {
  line-height: 24px;
  color: grey;
  margin: 15px 0;
}
.section-voucher-cards h3 {
  font-size: 14px;
  color: var(--light-blue);
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-voucher-intro h1 {
    font-size: 40px;
    line-height: 45px;
  }
  .section-voucher-intro h2,
  .section-voucher-cards h2 {
    font-size: 30px;
    line-height: 32px;
    color: var(--light-blue);
  }
  .section-voucher-cards > div {
    align-items: center;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/coaching.css */
.section-inner-coaching:not(:last-child) {
  margin-bottom: 48px;
}

/* src/css/reclami.css */
#reclami-intro {
  text-align: center;
  padding-bottom: 50px;
}
#reclami-intro .elementor-widget-wrap {
  display: block;
}
#reclami-intro .title-reclami,
#reclami-intro .subtitle-reclami {
  max-width: 550px;
  margin: 0 auto;
}
#reclami-intro .title-reclami h1 {
  font-size: 35px;
}
#reclami-intro .subtitle-reclami p {
  margin-top: 40px;
  color: grey;
  line-height: 24px !important;
}
.section-form-reclami {
  background-color: var(--light-blue);
}
.section-form-reclami .form-reclami {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-form-reclami .form-reclami > * {
  color: white;
}
.section-form-reclami .form-reclami .gform_body input:not([type=checkbox]):not([type=submit]):not([type=radio]),
.section-form-reclami .form-reclami .gform_body textarea {
  background-color: white;
  font-size: 18px !important;
  padding: 15px 0 !important;
  text-align: center;
  width: 100% !important;
  max-width: 958px !important;
  border-radius: 7px !important;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-bottom: 2px solid #333 !important;
}
body #gform_6 #field_6_14 input[type=checkbox] {
  margin-top: 0;
}
body #gform_6 .gform-body ul li > label {
  font-weight: 500;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  #reclami-intro .title-reclami h1 {
    font-size: 45px;
  }
}
@media (min-width: 1024px) {
  #reclami-intro .title-reclami h1 {
    font-size: 64px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/caso-aziendale.css */
.section-caso-aziendale {
  padding-bottom: 30px;
}
.section-caso-aziendale h1 {
  font-size: 25px;
  color: var(--light-blue);
}
.section-caso-aziendale h2 {
  border-bottom: 2px solid var(--light-blue);
  display: inline-block;
  color: var(--light-blue);
  font-size: 20px;
  margin-bottom: 15px;
}
.section-caso-aziendale .caso-aziendale-text * {
  color: grey;
}
.section-caso-aziendale .caso-aziendale-text > div {
  margin-bottom: 30px;
}
.section-caso-aziendale .caso-aziendale-text ul {
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.section-caso-aziendale .caso-aziendale-text ul li {
  list-style: none;
  position: relative;
  font-weight: 400;
}
.section-caso-aziendale .caso-aziendale-text ul li::before {
  display: block;
  color: var(--light-blue);
  content: "\2022  ";
  font-size: 50px;
  position: absolute;
  left: -20px;
  top: -2px;
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-caso-aziendale h1 {
    font-size: 35px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* src/css/emergenetics.css */
.section-intro-emergenetics {
  padding-top: 30px;
}
.section-intro-emergenetics h2,
.section-content-emergenetics h2 {
  font-size: 20px;
  color: var(--light-blue);
  display: inline-block;
  border-bottom: 3px solid var(--light-blue);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.section-intro-emergenetics h1 {
  font-size: 30px;
  color: var(--light-blue);
  text-transform: uppercase;
}
.section-intro-emergenetics p,
.section-content-emergenetics p {
  color: grey;
  line-height: 24px;
  margin-top: 1em;
  margin-bottom: 1em;
}
.section-content-emergenetics .btn-emergenetics a {
  background-color: var(--light-blue);
  border: 3px solid var(--light-blue);
  border-radius: 44px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 500;
  color: white;
}
.section-content-emergenetics .btn-emergenetics a:hover {
  background-color: white;
  color: var(--light-blue);
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .section-intro-emergenetics h1 {
    font-size: 45px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* node_modules/swiper/swiper.css */
@font-face {
  font-family: "swiper-icons";
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* node_modules/swiper/modules/navigation.css */
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* node_modules/swiper/modules/pagination.css */
:root {
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}

/* src/css/main.css */
:root {
  --light-blue: #65b7db;
  --dark-blue: #2e6983;
  --black: #3c3c3c;
  --yellow: #e2c63a;
  --light-yellow: #fff7ac;
  --light-green: #abd17f;
  --light-pink: #fececb;
  --light-grey: #e6e6e6;
  --dark-pink: #e76486;
  --dark-grey: #adadad;
  --grey-white: #f7f7f7;
  --list-margin: 51px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.woocommerce-form-register .privacy {
  display: none !important;
}
body {
  font-family: "Montserrat", sans-serif !important;
  line-height: 1.3;
}
.elementor-widget-container ul,
.text-image__content ol {
  padding-left: 1.25em;
}
.elementor-heading-title {
  line-height: 1.25 !important;
}
.section-btn-evidenza {
  padding-bottom: 60px;
}
.inline-flex {
  display: inline-flex;
}
body #gform_6 #field_6_14 .ginput_container_consent,
body #gform_3 #field_3_9 .ginput_container_consent,
body #gform_12 #field_12_2 .ginput_container_consent,
body #gform_17 #field_17_9 .ginput_container_consent,
body #gform_18 #field_18_6 .ginput_container_consent,
body #gform_19 #field_19_11 .ginput_container_consent {
  display: flex;
}
body #gform_18 #field_18_6 input[type=checkbox],
body #gform_19 #field_19_11 input[type=checkbox] {
  appearance: none;
  margin-right: 8px;
  font: inherit;
  color: var(--black);
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--black);
  border-radius: 999px;
  display: grid;
  place-content: center;
}
body #gform_18 #field_18_6 input[type=checkbox]::before,
body #gform_19 #field_19_11 input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--black);
}
body #gform_18 #field_18_6 input[type=checkbox]:checked::before,
body #gform_19 #field_19_11 input[type=checkbox]:checked::before {
  transform: scale(1);
}
body #gform_18 #field_18_6 label,
body #gform_19 #field_19_11 label {
  font-size: 16px;
  color: var(--black);
  vertical-align: top;
}
body #gform_18 #field_18_6 label a,
body #gform_19 #field_19_11 label a {
  font-weight: 700;
  color: var(--black);
  transition: all 300ms ease;
}
body #gform_18 #field_18_6 label a:hover,
body #gform_19 #field_19_11 label a:hover {
  color: var(--light-blue);
}
body #gform_6 #field_6_14 input[type=checkbox],
body #gform_3 #field_3_9 input[type=checkbox],
body #gform_12 #field_12_2 input[type=checkbox],
body #gform_17 #field_17_9 input[type=checkbox] {
  appearance: none;
  margin-right: 8px;
  font: inherit;
  color: white;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid white;
  border-radius: 999px;
  display: grid;
  place-content: center;
}
body #gform_6 #field_6_14 input[type=checkbox]::before,
body #gform_3 #field_3_9 input[type=checkbox]::before,
body #gform_12 #field_12_2 input[type=checkbox]::before,
body #gform_17 #field_17_9 input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em white;
}
body #gform_6 #field_6_14 input[type=checkbox]:checked::before,
body #gform_3 #field_3_9 input[type=checkbox]:checked::before,
body #gform_12 #field_12_2 input[type=checkbox]:checked::before,
body #gform_17 #field_17_9 input[type=checkbox]:checked::before {
  transform: scale(1);
}
body #gform_6 #field_6_14 label,
body #gform_3 #field_3_9 label,
body #gform_12 #field_12_2 label,
body #gform_17 #field_17_9 label {
  color: white;
  font-size: 16px;
  vertical-align: top;
}
body #gform_6 #field_6_14 label a,
body #gform_3 #field_3_9 label a,
body #gform_12 #field_12_2 label a,
body #gform_17 #field_17_9 label a {
  font-weight: 700;
  color: white;
  transition: all 300ms ease;
}
body #gform_6 #field_6_14 label a:hover,
body #gform_3 #field_3_9 label a:hover,
body #gform_12 #field_12_2 label a:hover,
body #gform_17 #field_17_9 label a:hover {
  color: var(--black);
}
.no-scroll {
  overflow: hidden;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.title-xl {
  font-weight: 700;
  font-size: 32px !important;
}
.title-l {
  font-weight: 700;
  font-size: 24px !important;
}
.bold {
  font-weight: 700;
}
h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
}
h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}
h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
h4 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}
h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
h6 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
span > a {
  font-size: 14px !important;
}
p {
  font-size: 16px;
  color: var(--black);
}
.elementor-widget-text-editor {
  color: var(--black);
}
.arrow-button a,
a.arrow-button {
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  color: var(--black) !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}
.arrow-button:hover a,
a.arrow-button:hover {
  border-color: var(--black);
  color: white !important;
  background-color: var(--black);
  cursor: pointer;
}
.arrow-button a svg {
  width: auto;
  height: auto;
}
.button-white a,
.button-light-blue a,
.button-black a,
a.button-white,
a.button-light-blue,
a.button-black,
button.button-white,
button.button-light-blue,
button.button-black,
.button-disabled a,
a.button-disabled,
button.button-disabled,
button.button-disabled-variant,
a.button-disabled-variant,
.button-disabled-variant a {
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 44px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
}
.button-disabled a,
a.button-disabled,
button.button-disabled {
  border-color: white;
  color: white !important;
}
.button-disabled:hover a,
a.button-disabled:hover,
button.button-disabled:hover {
  background-color: white;
  color: var(--black) !important;
}
button.button-disabled-variant,
.button-disabled-variant a,
a.button-disabled-variant {
  border-color: grey;
  color: grey;
}
button.button-disabled-variant:hover,
.button-disabled-variant:hover a,
a.button-disabled-variant:hover {
  background-color: grey;
  color: white;
}
.button-white a,
a.button-white,
button.button-white {
  border-color: white;
  color: white !important;
}
.button-white:hover a,
a.button-white:hover,
button.button-white:hover {
  background-color: white;
  color: var(--black) !important;
}
.button-light-blue a,
a.button-light-blue,
button.button-light-blue {
  border-color: var(--light-blue);
  color: var(--light-blue) !important;
}
.button-light-blue:hover a,
a.button-light-blue:hover,
button.button-light-blue:hover {
  background-color: var(--light-blue) !important;
  color: white !important;
}
.button-black a,
a.button-black,
button.button-black {
  border-color: var(--black);
  color: var(--black) !important;
}
.button-black:hover a,
a.button-black:hover,
button.button-black:hover {
  background-color: var(--black);
  color: white !important;
}
.blue-bg {
  background-color: var(--dark-blue);
}
.light-blue-bg {
  background-color: var(--light-blue);
}
.black-bg {
  background-color: var(--black);
}
.breadcrumbs-section,
.breadcrumbs-section-single-article {
  display: none;
}
.breadcrumbs-section span a,
.breadcrumbs-section-single-article span a {
  color: var(--black);
  transition: all 300ms ease;
}
.breadcrumbs-section span a:hover,
.breadcrumbs-section-single-article span a:hover {
  color: var(--light-blue);
}
.breadcrumbs-section #breadcrumbs > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 5px;
}
#page_404 {
  background-color: white;
  padding: 150px 20px;
  text-align: center;
}
#page_404 h1 {
  color: var(--light-blue);
  font-weight: 700;
  font-size: 150px;
  line-height: 150px;
  margin: 0 0 50px;
  text-align: center;
}
#page_404 h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--black);
  line-height: 27px;
  text-align: center;
  margin: 0;
}
#page_404 p {
  color: var(--black);
  padding-top: 30px;
}
#page_404 .torna_home a {
  background: var(--light-blue);
  padding: 15px 20px;
  display: inline-block;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms ease;
}
#page_404 .torna_home a:hover {
  filter: brightness(0.8);
}
.px-gutter {
  padding-left: 16px;
  padding-right: 16px;
}
.gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 0 !important;
}
.gform_legacy_markup_wrapper .gfield_required {
  border-bottom: none;
}
.section-accordion {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 32px;
  }
  h5 {
    font-size: 20px;
  }
  .px-gutter {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
  }
  h5 {
    font-size: 24px;
  }
  .px-gutter {
    padding-left: 43px;
    padding-right: 43px;
  }
  .title-xxl {
    font-size: 64px !important;
    line-height: 64px !important;
    font-weight: 700;
  }
  .title-xl {
    font-weight: 700;
    font-size: 48px !important;
  }
  .title-l {
    font-weight: 700;
    font-size: 32px !important;
  }
  .subtitle-l {
    font-weight: 700;
    font-size: 24px !important;
  }
  .breadcrumbs-section,
  .breadcrumbs-section-single-article {
    display: block;
    padding: 24px 43px 36px 43px;
  }
  .section-accordion {
    padding-left: 170px;
    padding-right: 170px;
    margin-bottom: 96px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
