@charset "UTF-8";

/* START FONT */

@font-face {
  font-family: "CaviarDreams";
  src: url(../font/CaviarDreams.ttf);
}

@font-face {
  font-family: "Inter";
  src: url(../font/Inter.ttf);
}

/* END FONT */

/* START VARIABILI */

:root {
  --white: #fff;
  --grey: #3d3d3d;
  --whiteOpaque: rgba(255, 255, 255, 0.7);
  --green: rgba(35, 132, 142, 1);
  --pinkOpaque: rgba(230, 53, 158, 0.87);
  --greenOpaque: rgba(35, 132, 142, 0.73);
  --pink: #e6359e;
}

/* END VARIABILI */

/* START GLOBAL CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--white);
  font-family: "Inter", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--green);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: fit-content;
  padding: 12px 32px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s linear;
  font-size: 12px;
  background-color: var(--pink);
  border: 3px solid var(--pink);
  margin: 0 0 0 auto;
  text-align: center;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
    font-weight: 700;
}

p,
a {
  font-weight: 200;
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
}

a {
  text-decoration: none !important;
  cursor: pointer !important;
}

ul,
li {
  margin: 0;
  padding: 0;
}

li {
    /*list-style: disc !important;
    list-style-position: outside !important;*/
    margin-left: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
    padding: 0 !important;
}

.container {
  padding: 0 60px;
}

/* END GLOBAL CSS */

/* START PULSANTI */

.s-button,
:root :where(.wp-element-button, .wp-block-button__link) {
  display: block;
  background-color: var(--pink);
  width: fit-content;
  padding: 12px 32px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s linear;
  font-size: 12px;
}

.s-button:hover {
  background-color: var(--pinkOpaque);
}

.s-snd-btn {
  background-color: transparent;
  border: 3px solid var(--pink);
}

/* END PULSANTI */

/* START FRECCIA BASSO */

.s-arrow {
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 10px;
  animation: jumpInfinite 1.5s infinite;
}

@keyframes jumpInfinite {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}

/* END FRECCIA BASSO */

/* START GALLERIA */

.s-gallery {
  padding: 80px 0;
}

.s-gallery .col {
  padding: 1%;
}

.s-gallery .col img {
  border-radius: 25px;
}

/* END GALLERIA */

/* START PAGINA */

.site-main {
  padding-top: 140px;
}

.col {
  padding: 0;
}

/* END PAGINA */

/* START HEADER */

.s-header {
  background-color: var(--pinkOpaque);
  margin: 15px;
  border-radius: 25px;
  position: fixed;
  width: calc(100% - 30px);
  z-index: 9999999;
}

.s-header .row {
  padding: 0 45px;
}

.s-nav-col {
  display: flex;
  align-items: center;
  padding: 0;
}

.s-nav-col:nth-child(2) {
  justify-content: center;
}

.s-nav-col:nth-child(3) {
  justify-content: end;
}

.s-shop-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50px;
}

.s-navbar {
  overflow: hidden;
  width: fit-content;
}

.s-navbar a {
  float: left;
  font-size: 16px;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;
}

.s-dropdown {
  float: left;
  overflow: hidden;
}

.s-dropdown .s-dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  padding: 20px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.s-navbar a:hover,
.s-dropdown:hover .s-dropbtn,
.s-shop-icons a:hover i {
  color: var(--whiteOpaque);
  transition: all 0.3s linear;
}

.s-dropdown .s-dropdown-content {
  max-height: 0;
  position: absolute;
  background-color: var(--pinkOpaque);
  width: calc(100% - 30px);
  left: 0;
  z-index: 1;
  margin-left: 15px;
  border-radius: 25px;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  top: 64px;
}

.s-dropdown:hover .s-dropdown-content {
  max-height: 500px;
}

.s-column {
  float: left;
  padding: 10px;
  width: 100%;
}

.s-column a {
  float: none;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.s-row:after {
  content: "";
  display: table;
  clear: both;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hamburger i {
  color: var(--white);
  transition: transform 0.3s ease;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: var(--pinkOpaque);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
  z-index: -9999;
}

.fullscreen-menu.active {
  visibility: visible;
  opacity: 1;
}

.fullscreen-links {
  width: 100%;
  text-align: center;
}

.fullscreen-links a {
  display: block;
  font-size: 1.3rem;
  margin: 12px 0;
  color: var(--white);
  text-decoration: none;
}

/* END HEADER */

/* START HOME */

.s-about,
.s-paths,
footer {
  padding-top: 80px;
  position: relative;
}

/* END HOME */

/* START HERO */

.s-hero {
  overflow: hidden;
  position: relative;
  height: 100svh;
  width: 100vw;
}

.s-hero-video {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -999;
}

#s-hero-home-mobile {
  display: none;
}

.s-video-shadow {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: -99;
  background: #000;
  background: -webkit-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  opacity: 0.87;
}

.s-hero-row {
  height: 100vh;
}

.s-hero-col p {
  text-align: center;
  max-width: 800px;
  padding: 0 30px;
}

.s-hero-title h1 {
  font-family: "CaviarDreams", sans-serif;
  text-transform: uppercase;
  margin-bottom: -15px;
  text-align: center;
}

.s-hero-home .s-hero-title h1 {
  font-size: 30px;
  text-wrap: nowrap;
  text-align: left;

}

.s-hero-home .s-hero-title h2 {
  font-size: 8vw;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.s-hero-home .s-hero-title {
  width: fit-content;
  margin: 0 auto;
}

.s-hero-description {
  margin: 40px 0;
}

.s-hero .s-button {
  background-color: var(--greenOpaque);
  transition: all 0.3s linear;
}

.s-hero .s-button:hover {
  background-color: var(--green);
}

.s-product-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.s-btn-hero {
    margin: 45px auto 0;
}

/* END HERO */

/* START CHI SONO */

.s-about {
  padding: 80px 30px 0;
}

.s-about h2 {
  font-family: "CaviarDreams", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 5px var(--pink), 0 0 10px var(--pink), 0 0 20px var(--pink),
    0 0 40px var(--pink), 0 0 80px var(--pink), 0 0 100px var(--pink);
    font-weight: 700;
}

.s-about p {
  margin-top: 40px;
}

.s-about .s-button {
  margin: 60px 0 0;
}

.s-about-hero h1 {
  text-align: center;
  font-size: 8vw;
}

.s-about-hero h2 {
  font-size: 30px;
  position: absolute;
  bottom: 50px;
  text-align: center;
  left: 0;
  width: 100%;
}

.s-about-about h2 {
  text-align: center;
}

.text-about .col-lg {
    padding: 0 25px;
}

/* END CHI SONO */

/* START CORSI */

.s-courses {
  background: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    var(--pinkOpaque) 35%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    var(--pinkOpaque) 35%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    var(--pinkOpaque) 35%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
  background-color: var(--green);
  padding-top: 80px;
  position: relative;
}

.pagina-corsi {
  padding-top: 60px;
}

.corsi-home {
  padding-top: 140px ;
}

.s-courses .s-button {
  justify-content: end;
}

.s-row-title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--white);
  padding: 20px;
  margin: 0 30px;
}

.s-row-title h2 {
  font-weight: 200;
  text-transform: uppercase;
}

.s-courses-carousel-description {
  padding: 40px 60px 0;
}

.s-carousel-element {
  padding: 15px;
}

.s-carousel-element img {
  border-radius: 25px;
}

.s-carousel-element h4,
.woocommerce-loop-product__title {
  padding: 15px 0;
  font-size: 1.2rem !important;
  max-width: 200px;
}

.show-overflow {
  overflow: visible;
}

.s-courses-courses {
  background-image: none;
}

.s-courses-courses h1 {
  font-family: "CaviarDreams", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 5px var(--pink), 0 0 10px var(--pink), 0 0 20px var(--pink),
    0 0 40px var(--pink), 0 0 80px var(--pink), 0 0 100px var(--pink);
  padding: 0 0 80px 45px;
}

.s-product-btn-col {
    display: flex;
    justify-content: center;
    padding: 25px 0;
}

.s-product-add-btn,
.s-path-button {
  margin: 0 auto;
  border: 3px solid var(--pink);
  padding: 16px 52px;
  border-radius: 15px;
  font-size: 1rem;
}

.s-btn-container {
    padding-top: 100px;
}

.s-courses-courses {
    background: none;
}

.s-accent-bg {
    background: #E6359E;
    background: -webkit-linear-gradient(90deg, rgba(230, 53, 158, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(230, 53, 158, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, rgba(230, 53, 158, 1) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6359E", endColorstr="#FFFFFF", GradientType=0);
    width: fit-content;
    border-radius: 15px;
    padding: 15px 30px 5px;
    margin-bottom: 15px;
}

.s-hero-title-container {
    padding: 0 25px;
}

.s-hero-course .s-hero-col p {
    margin: 60px auto 0;
}
    
.s-hero-title h1 {
    text-wrap: unset;
    font-size: 70px;
    line-height: initial;
    text-align: center;
}

/* END CORSI */

/* START PERCORSI FORMATIVI */

.pagina-percorsi-formativi {
  padding-top: 60px;
}

.s-paths {
  background-image: url(../img/shadow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: relative;
}

.s-path {
  margin-top: 50px;
  padding-right: 30px;
  z-index: 99;
  position: relative;
}

.s-path-name {
  background-color: var(--pinkOpaque);
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 15px 15px 0;
}

.s-path-name h3 {
  transform: rotate(-90deg);
  font-size: 20px;
  text-transform: uppercase;
}

.s-path-img {
  border-radius: 15px;
  height: 200px;
  width: 100%;
}

.s-path-img-1 {
  background-image: url(../img/percorso-base-mini.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.s-path-img-2 {
  background-image: url(../img/percorso-avanzato-mini.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.s-path-img-3 {
  background-image: url(../img/percorso-extreme-mini.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.accordion,
.accordion-item,
.accordion-button:not(.collapsed) {
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: transparent;
  border: none;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  margin-left: 15px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(8%)
    hue-rotate(196deg) brightness(113%) contrast(100%);
}

.accordion * {
  --bs-accordion-border-color: transparent;
}

.s-paths-paths {
    background-image: none;
}

.s-paths-paths h1 {
    background-color: var(--green);
    font-family: "CaviarDreams", sans-serif;
    text-transform: uppercase;
    text-shadow:
        0 0 5px var(--pink),
        0 0 10px var(--pink),
        0 0 20px var(--pink),
        0 0 40px var(--pink),
        0 0 80px var(--pink),
        0 0 100px var(--pink);
    color: var(--white);
}

.s-paths-paths h3,
.s-paths-paths h1,
.s-paths-paths h4 {
    margin-bottom: 40px}

.s-paths-paths .s-courses-carousel-description:first-child {
    padding-top: 0;
}

.s-paths-paths .s-courses-description {
    padding-bottom: 80px;
}

.s-paths-paths .s-corsi h3 {
    padding-top: 20px;
}

.s-paths-paths .s-corsi .col-md {
    padding-bottom: 60px;
}

.s-paths-paths .s-corsi img {
    border-radius: 25px;
    width: 100%;
}

.s-paths-paths h4 {
    padding-top: 60px;
}

.s-path-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.s-path-hero .s-hero-col p {
    margin: 60px auto 0;
}

.s-path-hero .s-button {
    margin: 40px auto 0px;
}

.s-path-description p,
.s-path-description ul {
    padding-top: 40px;
}

.s-path-button {
    margin: 100px auto;
}

/* END PERCORSI FORMATIVI */

/* START ACCADEMIA */

.s-academy {
  padding: 80px 30px 0;
}

.s-academy .col-lg {
  padding: 30px;
}

.s-academy img {
  border-radius: 25px;
}

.s-map-title {
    text-align: center;
  color: var(--white);
  padding: 45px;
}

/* END ACCADEMIA */

/* START RECENSIONI */

.s-reviews {
  padding: 80px 0;
}

.s-review {
  max-width: 60vw;
  margin: 80px auto;
}

.s-review-bg {
  background-color: var(--pinkOpaque);
  position: relative;
  overflow: visible;
}

.s-review-img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

/* END RECENSIONI */

/* START CONTATTI */

.s-contacts {
  padding: 0 30px;
}

.s-contacts h3 {
  padding-top: 80px;
}

.s-contacts .container {
  background-color: var(--whiteOpaque);
  padding: 80px 50px 50px;
  border-radius: 25px;
  position: relative;
}

.s-contacts * {
  color: var(--grey);
}

input.form-control,
textarea.form-control {
  border: none;
  border-bottom: 1px solid var(--grey);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  color: var(--grey);
  background-color: transparent;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: var(--grey);
}

input.form-control:focus,
textarea.form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid var(--pink);
  background-color: transparent;
}

textarea {
  height: 143px;
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid var(--grey);
  background-color: transparent;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
}

.form-check-input:focus {
  box-shadow: none;
}

.s-submit-btn {
  padding: 14px 100px;
  background-color: var(--pink);
  color: var(--white);
  text-transform: uppercase;
  border: none;
  border-radius: 15px;
  position: absolute;
  bottom: -24px;
  transition: all 0.3s linear;
}

.s-submit-btn:hover {
  background-color: var(--pinkOpaque);
}

.s-contacts .container h2 {
  position: absolute;
  top: -50px;
  color: var(--white);
  font-size: 70px;
  font-family: "CaviarDreams", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 5px var(--pink), 0 0 10px var(--pink), 0 0 20px var(--pink),
    0 0 40px var(--pink), 0 0 80px var(--pink), 0 0 100px var(--pink);
}

.s-contact-arg {
  margin-top: 50px;
}

.s-contacts-contacts {
  padding-top: 140px;
}

.s-contacts-text {
    text-align: center;
    padding: 0 0 100px;
}

.s-contacts-text h1, 
.s-contacts-text h3 {
    color: var(--white);
}

/* END CONTATTI */

/* START FOOTER */

#s-footer {
  background-color: var(--green);
}

footer .col-md-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 0;
}

footer a {
  font-weight: 400;
}

.s-social i {
  font-size: 24px;
  transition: all 0.3s linear;
}

.s-social a:not(:last-child) {
    margin-right: 10px;
}

.s-social i:hover {
  color: var(--whiteOpaque);
}

.s-footer-info {
  padding-top: 80px;
  text-align: center;
}

/* END FOOTER */

/* START WOOCOMMERCE */

.wc-block-grid__product-onsale {
  display: none !important;
}

.wc-block-components-product-price__regular {
    display: none;
}

.s-product-list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 30%;
  justify-content: center;
}

.woocommerce ul.products[class*="columns-"] li.product, .woocommerce-page ul.products[class*="columns-"] li.product {
    padding: 0 10px;
}

.s-product-list .product {
  padding: 15px 30px;
}

.s-product-list .product a img {
  border-radius: 25px;
}

.s-product-list .product a h2 {
  font-size: 1.2rem;
  padding: 15px 0;
}

.up-sells h2 {
  padding: 60px 0 0;
  font-size: 1.5rem;
}

.related {
    display: none;
}
up-sells h2 {
  padding: 60px 0 0;
  font-size: 1.5rem;
}

.onsale {
  display: none;
}

.woocommerce-products-header__title {
  font-family: "CaviarDreams", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 5px var(--pink), 0 0 10px var(--pink), 0 0 20px var(--pink), 0 0 40px var(--pink), 0 0 80px var(--pink), 0 0 100px var(--pink);
  padding: 0 0 80px 45px;
}

li.product {
    list-style: none !important;
}

.s-page-description {
  padding: 40px 60px 0;
}

.woocommerce-ordering {
  justify-content: end;
  display: flex;
  padding: 60px;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    background-color: var(--pink) !important;
    color: var(--white) !important;
    border-top-color: transparent !important;
    border-radius: 15px !important;
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--white) !important;
}

.wc-forward {
    background: none !important;
    color: var(--white) !important;
    padding: 3px 0 0 !important;
}

.woocommerce-message,
.woocommerce-info { 
    margin: 25px 0 !important;
}

.woocommerce-variation-price,
.woocommerce-variation-description {
    display: none;
}

.wc-block-components-sale-badge {
    display: none !important;
}

.out-of-stock {
    display:none;
}

.payment_box {
  color: var(--grey);
}

/* END WOOCOMMERCE */

/* START WAITLIST PLUGIN */

.cwginstock-subscribe-form .panel-primary > .panel-heading, .cwginstock-subscribe-form .panel-primary, .cwginstock-subscribe-form .panel {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}

.cwginstock-panel-body .row .col-md-12 .col-md-12 .form-group input {
    color: #3d3d3d;
    background-color: var(--whiteOpaque);
    border-radius: 15px;
    border: none;
    padding: 10px 0;
}

.cwginstock-panel-body .row .col-md-12 .col-md-12 .form-group input[type="submit"] {
    font-size: 24px;
    font-weight: 700;
    background-color: var(--pinkOpaque);
    color: var(--white);
    border-radius: 20px;
}

.cwginstockerror {
    color: var(--white) !important;
}

.cwg_iagree_checkbox {
    margin-bottom: 15px;
}

/* END WAITLIST PLUGIN */

/* START TUTOR */

.tutor-dashboard-header,
.tutor-course-details-title {
    padding-top: 140px !important;
}

.tutor-course-details-instructors {
  display: none !important;
}

#tutor-course-details-tab-info {
  padding-bottom: 140px !important;
}

.tutor-dashboard-menu-item,
.tutor-nav-item {
    list-style: none !important;
}

.tutor-wrap *,
.tutor-course-single-content-wrapper * {
  color: var(--grey);
}

.tutor-login-wrap, #tutor-registration-wrap {
  margin: 140px auto !important;
}

.sfondo-bianco {
  background-color: var(--white);
}

/* END TUTOR */

/* START INSTAGRAM */

#sb_instagram #sbi_images .sbi_item {
  border-radius: 25px;
}

/* END INSTAGRAM */

/**/

.ti-name,
.ti-widget.ti-goog .ti-read-more span,
.ti-widget.ti-goog .ti-read-more span:hover,
.ti-date,
.ti-widget.ti-goog .ti-rating-text, .ti-widget.ti-goog .ti-rating-text strong:not(.ti-rating-large), .ti-widget.ti-goog .ti-rating-text strong a, .ti-widget.ti-goog .ti-rating-text strong span, .ti-widget.ti-goog .ti-rating-text span strong, .ti-widget.ti-goog .ti-rating-text span, .ti-widget.ti-goog .ti-footer, .ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large), .ti-widget.ti-goog .ti-footer span, .ti-widget.ti-goog .ti-footer strong a {
  color: var(--white) !important;
}

/**/



/* fix radio carrello */ 
.radio, .required_field {
  display: inline!important;
  margin-left: 5px;
}


input[type=radio] {
  margin-left: 15px;
}


.cwginstock-subscribe-form .panel-heading {
  padding: 0;
}

.cwginstock-panel-heading h4 {
  text-align: left !important;
}

.carosello-img {
  padding-top: 80px;
}

#iubenda-cs-banner * {
  color: var(--grey);
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
