li.woocommerce-MyAccount-navigation-link--videocorsi a:before{
    background: #111;
    -webkit-mask-image: url(../assets/videocorsi.svg);
    mask-image: url(../assets/videocorsi.svg);

}
li.woocommerce-MyAccount-navigation-link--attestati a:before{
    background: #111;
    -webkit-mask-image: url(../assets/certificati.svg);
    mask-image: url(../assets/certificati.svg);


}

#videoModal .modal-content {
	width:85vh!important;
    max-width: 450px !important;
    margin-top: 100px;
}
video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

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