/**
* @function: -bbq-mq
* @description: generates a media query string.
* @param {List|Number|String} $options: possible media query properties
*    Case: List
*      - landscape|portrait : orientation
*      - m1|m2|m3|d1|d2|d3 : named breakpoint
*      - px value : pixel breakpoint
*      - dpi value : resolution value
*      - unitless value : retina value
*    Case: Number
*      - px value : pixel breakpoint
*    Case: String
*      - m1|m2|m3|d1|d2|d3 : named breakpoint
* @returns {String}: media query string
*/
/**
* @mixin: mq
* @description: generates a media query string. Refer to the '-bbq-bp()' function for the possible inputs.
* @param {List|Number|String} $options [$zero-breakpoint]: possible media query properties
**/
:root {
  --cassiopeia-color-primary: #f39c12;
  --cassiopeia-color-link: #f7ba5b;
  --cassiopeia-color-hover: #b06f09;
}

@font-face {
  font-family: "Montserrat";
  src: url("/media/templates/site/cassiopeia/scss/custom/variables/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/media/templates/site/cassiopeia/scss/custom/variables/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/media/templates/site/cassiopeia/scss/custom/variables/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/media/templates/site/cassiopeia/scss/custom/variables/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/media/templates/site/cassiopeia/scss/custom/variables/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/media/templates/site/cassiopeia/scss/custom/variables/fonts/Montserrat-VariableFont_wght.ttf");
  font-weight: 900;
  font-style: normal;
}
body {
  background-color: var(--gray-100);
}
body div#menubar {
  border-bottom: 1px solid var(--gray-300);
  position: sticky;
  overflow: hidden;
  top: 0;
  transition: all 0.5s ease-out 0s;
  width: 100%;
  z-index: 10000000000;
}
body div#menubar.menuopen {
  position: absolute !important;
  height: 100vh !important;
}
@media only screen and (min-width: 992px) {
  body div#menubar {
    border-bottom: 0;
  }
}
/*
@media screen and (max-width: 992px) {
  body div#menubar div.offcanvas.offcanvas-end.show {
    height: 100vh;
  }
}
  */
body header.container-header {
  background-color: var(--white);
  background-image: var(--white);
}
body header.container-header .mod-menu {
  color: var(--gray-900);
}
@media only screen and (min-width: 992px) {
  body header.container-header .mod-menu {
    color: var(--white);
  }
}
body header.container-header .container-topbar {
  background: #01478c;
  color: var(--white);
}
body header.container-header .container-topbar .custom .moduletable.network {
  display: none;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-topbar .custom .moduletable.network {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  body header.container-header .container-topbar .custom .moduletable.network {
    float: left;
  }
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list {
  list-style-type: none;
  margin: 0;
  padding-left: 100px;
  position: relative;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li {
  display: inline-block;
  font-size: 0.8em;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 20%;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a {
  display: block;
  height: 100%;
  padding: 0.5em;
  transition: all 0.7s ease, background-color 0.2s ease;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.italiateam:hover {
  background: #0075ff;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.scuoladellosport:hover {
  background: #F10020;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.istitutomedicina:hover {
  background: #2A8069;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.istitutoscienza:hover {
  background: #1abc9c;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.territorio:hover {
  background: #f39c12;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.impianti:hover {
  background: #d35400;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.societa:hover {
  background: #2980b9;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li a.cpo:hover {
  background: #9ea7b3;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li::before {
  background: var(--gray-400);
  content: "";
  position: absolute;
  height: 16px;
  right: 0;
  top: 6px;
  width: 1px;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li::after {
  display: none;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(1) {
  height: 100%;
  left: 0;
  line-height: 50px;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100px;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(1) a {
  background-color: #eb1c24;
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(1) a span.fa {
  color: var(--white) !important;
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(1) a:hover {
  background-color: #ab0f15;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(1)::before {
  display: none;
}
body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(2), body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(3), body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(4), body header.container-header .container-topbar .custom .moduletable.network ul.mod-list li:nth-child(5) {
  width: 25%;
}
body header.container-header .container-topbar .custom .moduletable.cerca {
  float: right;
  vertical-align: top;
}
body header.container-header .container-topbar .custom .moduletable.cerca form {
  width: 30px;
}
body header.container-header .container-topbar .custom .moduletable.cerca input,
body header.container-header .container-topbar .custom .moduletable.cerca button {
  background: transparent;
  border: 1px solid rgba(var(--white), 0.5);
  box-shadow: none !important;
  color: var(--white) !important;
  height: 30px !important;
}
@media only screen and (min-width: 768px) {
  body header.container-header .container-topbar .custom .moduletable.cerca input,
body header.container-header .container-topbar .custom .moduletable.cerca button {
    height: 25px !important;
  }
}
body header.container-header .container-topbar .custom .moduletable.cerca input {
  width: 80px;
}
@media only screen and (min-width: 768px) {
  body header.container-header .container-topbar .custom .moduletable.cerca input {
    display: none;
  }
}
body header.container-header .container-topbar .custom .moduletable.cerca button {
  padding: 0;
  width: 25px;
}
body header.container-header .container-topbar .custom .moduletable.cerca button #text {
  display: none;
}
body header.container-header .container-nav {
  background-color: #f39c12;
  display: none;
  max-width: 100%;
  padding-bottom: 0.5em !important;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-nav {
    display: block;
  }
}
body header.container-header .container-nav .menu_comitato {
  margin: 0 auto;
  max-width: 1320px;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-nav .mod-list {
    justify-content: center;
  }
}
body header.container-header .container-nav .mod-list li {
  margin-left: 0;
  padding: 0.25em;
}
@media only screen and (min-width: 1200px) {
  body header.container-header .container-nav .mod-list li {
    padding: 0.25em 0.5em;
  }
}
body header.container-header .container-nav .mod-list li.active::after {
  opacity: 1;
}
body header.container-header .container-nav .mod-list li:hover::after {
  background: var(--white);
  opacity: 1;
}
body header.container-header .container-nav .mod-list li a {
  font-size: 12px;
}
@media only screen and (min-width: 1200px) {
  body header.container-header .container-nav .mod-list li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1400px) {
  body header.container-header .container-nav .mod-list li a {
    font-size: 16px;
  }
}
body header.container-header .container-below-top {
  height: 103px;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-below-top {
    height: auto;
  }
}
body header.container-header .container-below-top .middle-header {
  width: 100%;
}
body header.container-header .container-below-top .middle-header .logo img {
  width: 150px;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-below-top .middle-header .logo img {
    width: 170px;
  }
}
body header.container-header .container-below-top .middle-header .nome_comitato {
  font-weight: 600;
  max-width: 75%;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  body header.container-header .container-below-top .middle-header .nome_comitato {
    padding-left: 60px;
  }
}
body header.container-header .container-below-top .middle-header .nome_comitato span {
  color: #f39c12;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  body header.container-header .container-below-top .middle-header .nome_comitato span {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-below-top .middle-header .nome_comitato span {
    font-size: 32px;
  }
}
body header.container-header .container-below-top .middle-header .nome_comitato::before {
  background-color: var(--gray-400);
  content: "";
  height: 100%;
  left: 10px;
  position: absolute;
  width: 2px;
}
@media only screen and (min-width: 768px) {
  body header.container-header .container-below-top .middle-header .nome_comitato::before {
    max-width: unset;
    left: 30px;
  }
}
body header.container-header .container-below-top .middle-header .social {
  display: none;
  padding-top: 1em;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-below-top .middle-header .social {
    display: block;
    margin-left: auto;
  }
}
body header.container-header .container-below-top .middle-header .social a {
  margin-right: 1em;
}
body header.container-header .container-below-top .middle-header .social a:last-child {
  margin-right: 0;
}
body header.container-header .container-below-top .middle-header .hamburger {
  display: block;
  height: 30px;
  margin-left: auto;
  position: relative;
  width: 30px;
}
body header.container-header .container-below-top .middle-header .hamburger span {
  transition: all 0.2s ease-out 0s;
  border-top: 2px solid #000;
  left: 0;
  position: absolute;
  width: 100%;
}
body header.container-header .container-below-top .middle-header .hamburger span.line1 {
  top: 5px;
}
body header.container-header .container-below-top .middle-header .hamburger span.line2 {
  top: 15px;
}
body header.container-header .container-below-top .middle-header .hamburger span.line3 {
  top: 25px;
}
@media only screen and (min-width: 992px) {
  body header.container-header .container-below-top .middle-header .hamburger {
    display: none;
  }
}
body header.container-header .container-below-top .middle-header:nth-child(2) {
  align-items: center;
  display: flex;
}
body header.container-header .container-below-top .middle-header:nth-child(2) div.custom {
  width: 100%;
}
body header.container-header .container-below-top .middle-header.logo {
  align-items: center;
  display: flex;
  width: auto;
}
body header.container-header .container-below-top .middle-header.logo .sppb-row {
  margin: 0 !important;
}
body header.container-header .container-below-top .middle-header.logo .sppb-row .sppb-col-md-12 {
  padding: 0 !important;
}
body .speasyimagegallery-album {
  background-color: #01478c;
  height: 100%;
}
body .speasyimagegallery-album > div > a::after {
  display: none;
}
body .speasyimagegallery-album .speasyimagegallery-album-info {
  position: static;
}
body .speasyimagegallery-album .speasyimagegallery-album-info .speasyimagegallery-album-meta {
  display: none;
}
body .speasyimagegallery-album .speasyimagegallery-album-info .title {
  margin: 0;
}
body .speasyimagegallery-gallery-item {
  cursor: pointer;
  margin: 10px;
  padding: 0 !important;
}
body .speasyimagegallery-gallery-item .speasyimagegallery-gallery-item-content {
  display: none;
}
body .moduletable.intro-srds > h3 {
  background-color: transparent;
  padding: 0;
  text-align: center;
}
body .footer {
  background-color: #012d59;
  background-image: unset;
}
body .footer .moduletable.footer_network {
  width: 100%;
}
body .footer .moduletable.footer_network .logo img {
  width: 150px;
}
@media only screen and (min-width: 992px) {
  body .footer .moduletable.footer_network .logo img {
    width: 170px;
  }
}
body .footer .moduletable.footer_network .info-footer {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  body .footer .moduletable.footer_network .info-footer {
    text-align: left;
  }
}
body .footer .moduletable.footer_network .sppb-column {
  align-items: center;
}
body .footer .moduletable.footer_network .sppb-row {
  margin: 0;
}
body .footer .moduletable.footer_network a {
  color: var(--white);
  font-weight: 600;
}
body .footer .moduletable.footer_network a:hover {
  color: #f39c12;
}
body .footer .moduletable.footer_network .menu_comitato_footer ul.nav {
  display: flex;
  flex: 1 1 0%;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  body .footer .moduletable.footer_network .menu_comitato_footer ul.nav {
    justify-content: unset;
  }
}
body .footer .moduletable.footer_network .menu_comitato_footer ul.nav li {
  margin-left: 1em;
}

body.areariservata main {
  padding: 1em;
}
@media only screen and (min-width: 992px) {
  body.areariservata main {
    padding: 2em;
  }
}
body.areariservata .btn-primary {
  background-color: #d50000 !important;
  border-color: #d50000 !important;
}
body.areariservata .btn-primary:hover {
  background-color: #890000 !important;
  border-color: #890000 !important;
}
body.areariservata strong {
  color: #890000 !important;
}
body.areariservata button:hover,
body.areariservata :not(.btn-check) + .btn:hover {
  background-color: #890000 !important;
}
body.areariservata header.container-header .container-wrap {
  background-color: #01478c;
}
body.areariservata header.container-header .container-nav {
  background-color: transparent;
  max-width: 1320px;
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .container-nav {
    display: flex;
    padding: 1em !important;
  }
}
body.areariservata header.container-header .container-nav .mod-list {
  justify-content: flex-end;
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .container-nav .menu_comitato {
    align-items: center;
    display: flex;
    margin: 0;
  }
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .middle-header .moduletable.login form div.userdata,
body.areariservata header.container-header .container-nav .moduletable.login form div.userdata {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .middle-header .moduletable.login form div.userdata .form-group,
body.areariservata header.container-header .container-nav .moduletable.login form div.userdata .form-group {
    margin-bottom: 0 !important;
    margin-right: 1em;
    max-width: 35%;
  }
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .middle-header .moduletable.login form.mod-login-logout,
body.areariservata header.container-header .container-nav .moduletable.login form.mod-login-logout {
    align-items: center;
    display: flex;
  }
}
body.areariservata header.container-header .middle-header .moduletable.login form.mod-login-logout div.login-greeting,
body.areariservata header.container-header .container-nav .moduletable.login form.mod-login-logout div.login-greeting {
  color: var(--gray-900);
  font-weight: bold;
  margin-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .middle-header .moduletable.login form.mod-login-logout div.login-greeting,
body.areariservata header.container-header .container-nav .moduletable.login form.mod-login-logout div.login-greeting {
    color: var(--white);
    margin-bottom: 0;
    margin-right: 3em;
  }
}
body.areariservata header.container-header .middle-header .moduletable.login form.mod-login-logout div.logout-button,
body.areariservata header.container-header .container-nav .moduletable.login form.mod-login-logout div.logout-button {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .middle-header .moduletable.login form.mod-login-logout div.logout-button,
body.areariservata header.container-header .container-nav .moduletable.login form.mod-login-logout div.logout-button {
    text-align: left;
  }
}
body.areariservata header.container-header .middle-header .moduletable.login div.mod-login__remember,
body.areariservata header.container-header .container-nav .moduletable.login div.mod-login__remember {
  color: var(--gray-900);
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .middle-header .moduletable.login div.mod-login__remember,
body.areariservata header.container-header .container-nav .moduletable.login div.mod-login__remember {
    display: none;
  }
}
body.areariservata header.container-header .middle-header .moduletable.login ul.mod-login__options,
body.areariservata header.container-header .container-nav .moduletable.login ul.mod-login__options {
  display: none;
}
body.areariservata header.container-header .container-below-top .middle-header .logo img {
  width: 120px;
}
@media only screen and (min-width: 992px) {
  body.areariservata header.container-header .container-below-top .middle-header .logo img {
    width: 150px;
  }
}
@media only screen and (min-width: 768px) {
  body.areariservata header.container-header .container-below-top .middle-header .nome_comitato {
    padding-left: 120px;
  }
}
body.areariservata header.container-header .container-below-top .middle-header .nome_comitato span {
  color: #d50000;
}
@media only screen and (min-width: 768px) {
  body.areariservata header.container-header .container-below-top .middle-header .nome_comitato::before {
    left: 60px;
  }
}
body .moduletable.corsi-ar > h3,
body .moduletable.my-corsi-ar > h3 {
  background-color: #d50000;
}
body .moduletable.corsi-ar .filtri,
body .moduletable.my-corsi-ar .filtri {
  background-color: #e9eaeb;
  margin-bottom: 23px;
  padding: 1em;
}
@media only screen and (min-width: 992px) {
  body .moduletable.corsi-ar .filtri,
body .moduletable.my-corsi-ar .filtri {
    margin-bottom: 28px;
  }
}
body .moduletable.corsi-ar .filtri .control-group,
body .moduletable.my-corsi-ar .filtri .control-group {
  margin: 0 !important;
  text-align: center;
}
body .moduletable.corsi-ar .filtri .control-group label,
body .moduletable.my-corsi-ar .filtri .control-group label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  body .moduletable.corsi-ar .filtri .control-group label,
body .moduletable.my-corsi-ar .filtri .control-group label {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  body .moduletable.corsi-ar .filtri .control-group .controls,
body .moduletable.my-corsi-ar .filtri .control-group .controls {
    min-width: 25%;
  }
}
body .moduletable.corsi-ar .filtri .control-group .controls select,
body .moduletable.my-corsi-ar .filtri .control-group .controls select {
  text-transform: capitalize;
}
body .moduletable.corsi-ar .AR-corsi .corso,
body .moduletable.my-corsi-ar .AR-corsi .corso {
  margin-bottom: 2em;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body .moduletable.corsi-ar .AR-corsi .corso .date,
body .moduletable.my-corsi-ar .AR-corsi .corso .date {
  background-color: #e9eaeb;
  padding: 0 !important;
}
@media only screen and (min-width: 992px) {
  body .moduletable.corsi-ar .AR-corsi .corso .date .date_int,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .date_int {
    height: 100%;
  }
}
body .moduletable.corsi-ar .AR-corsi .corso .date .data,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .data {
  border: 1px solid #dbdddf;
  border-width: 0 1px 1px 0;
  padding: 0.5em;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  body .moduletable.corsi-ar .AR-corsi .corso .date .data,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .data {
    border-bottom: 0;
  }
}
body .moduletable.corsi-ar .AR-corsi .corso .date .data p,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .data p {
  font-style: italic;
  margin-bottom: 0.5em;
}
body .moduletable.corsi-ar .AR-corsi .corso .date .data span,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .data span {
  color: #01478c;
  font-size: 18px;
  font-weight: bold;
}
body .moduletable.corsi-ar .AR-corsi .corso .date .data span.anno,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .data span.anno {
  display: block;
}
body .moduletable.corsi-ar .AR-corsi .corso .date .data:last-child,
body .moduletable.my-corsi-ar .AR-corsi .corso .date .data:last-child {
  border-right: 0;
}
body .moduletable.corsi-ar .AR-corsi .corso .info,
body .moduletable.my-corsi-ar .AR-corsi .corso .info {
  padding: 1em !important;
}
body .moduletable.corsi-ar .AR-corsi .corso .info a,
body .moduletable.my-corsi-ar .AR-corsi .corso .info a {
  color: #d50000;
}
body .moduletable.corsi-ar .AR-corsi .corso .info a:hover,
body .moduletable.my-corsi-ar .AR-corsi .corso .info a:hover {
  color: #890000;
}
body .moduletable.corsi-ar .AR-corsi .corso .info .regione,
body .moduletable.my-corsi-ar .AR-corsi .corso .info .regione {
  color: #01478c;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
body .moduletable.corsi-ar .AR-corsi .corso div.concluso,
body .moduletable.my-corsi-ar .AR-corsi .corso div.concluso {
  margin: 1em 0;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  body .moduletable.corsi-ar .AR-corsi .corso div.concluso,
body .moduletable.my-corsi-ar .AR-corsi .corso div.concluso {
    margin: 0;
  }
}
body .moduletable.corsi-ar .AR-corsi .corso div.concluso > span,
body .moduletable.my-corsi-ar .AR-corsi .corso div.concluso > span {
  background-color: #d50000;
  color: #FFF;
  font-weight: 600;
  padding: 0.5em;
  text-transform: uppercase;
}

body a {
  transition: all 0.4s;
}
body a:not([class]) {
  text-decoration: none;
}
body .site-grid .container-component main {
  background-color: var(--white);
}
body main {
  padding: 2em;
}
body main div.page-header > h1,
body main div.page-header > h2,
body main div.page-header > h3 {
  border-bottom: 5px solid #01478c;
  color: #01478c;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1em;
  text-align: left;
  text-transform: uppercase;
}
body .fa {
  color: #01478c;
  font-size: 1.5em;
  font-weight: 900;
  transition: all 0.7s ease, background-color 0.2s ease;
}
body .fa.fa-instagram, body .fa.fa-facebook, body .fa.fa-youtube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}
body .fa.fa-facebook::before {
  content: "\f09a" !important;
}
body .fa:hover {
  color: #f39c12;
}
body div.archivio {
  padding: 2.5em;
  text-align: center;
}
body #offcanvas-right {
  max-width: 70vw;
}
body #offcanvas-right .hamburger span.line1 {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 15px;
}
body #offcanvas-right .hamburger span.line2 {
  display: none;
}
body #offcanvas-right .hamburger span.line3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px;
}
body #offcanvas-right .offcanvas-header {
  height: 103px;
}
body #offcanvas-right .offcanvas-body {
  padding-top: 0;
}
body #offcanvas-right .offcanvas-body .moduletable {
  border-top: 2px solid #f39c12;
  margin-top: 1em;
  padding-top: 1em;
}
body #offcanvas-right .offcanvas-body .moduletable.network li span.fa {
  display: inline-block;
  font-size: 16px;
  padding-left: 0 !important;
  vertical-align: middle;
}
body #offcanvas-right .offcanvas-body .moduletable:first-child {
  margin: 0;
}
body #offcanvas-right .social {
  display: block;
  padding: 0;
  text-align: left;
}
body .sidebar-right.card,
body .accordion-item {
  border-radius: 0;
  margin-top: 2.5em !important;
}
@media only screen and (min-width: 992px) {
  body .sidebar-right.card,
body .accordion-item {
    margin-top: 1em !important;
  }
}
body .sidebar-right.card .card-header,
body .sidebar-right.card .accordion-button,
body .accordion-item .card-header,
body .accordion-item .accordion-button {
  background-color: var(--gray-300);
  border-radius: 0;
  color: #01478c;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}
body .sidebar-right.card .accordion-button,
body .accordion-item .accordion-button {
  position: relative;
}
body .sidebar-right.card .accordion-button::after,
body .accordion-item .accordion-button::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/images/icone/chevron_bottom_blu.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  display: block;
  height: 30px;
  right: 10px;
  width: 30px;
}
@media only screen and (min-width: 992px) {
  body .sidebar-right.card .accordion-button::after,
body .accordion-item .accordion-button::after {
    display: none;
  }
}
body .sidebar-right.card .card-body,
body .sidebar-right.card .accordion-collapse,
body .accordion-item .card-body,
body .accordion-item .accordion-collapse {
  padding: 0;
}
@media only screen and (min-width: 992px) {
  body .sidebar-right.card .card-body,
body .sidebar-right.card .accordion-collapse,
body .accordion-item .card-body,
body .accordion-item .accordion-collapse {
    height: auto !important;
    display: block !important;
  }
}
body .sidebar-right.card .card-body ul,
body .sidebar-right.card .accordion-collapse ul,
body .accordion-item .card-body ul,
body .accordion-item .accordion-collapse ul {
  padding: 0 !important;
}
body .sidebar-right.card .card-body ul li,
body .sidebar-right.card .accordion-collapse ul li,
body .accordion-item .card-body ul li,
body .accordion-item .accordion-collapse ul li {
  background-color: #01478c;
  border-bottom: 1px solid var(--gray-600);
  padding: 0.7em;
}
body .sidebar-right.card .card-body ul li a,
body .sidebar-right.card .accordion-collapse ul li a,
body .accordion-item .card-body ul li a,
body .accordion-item .accordion-collapse ul li a {
  color: var(--white);
}
body .sidebar-right.card .card-body ul li:last-child,
body .sidebar-right.card .accordion-collapse ul li:last-child,
body .accordion-item .card-body ul li:last-child,
body .accordion-item .accordion-collapse ul li:last-child {
  border-bottom: 0;
}
body .sidebar-right.card .card-body ul li.current,
body .sidebar-right.card .accordion-collapse ul li.current,
body .accordion-item .card-body ul li.current,
body .accordion-item .accordion-collapse ul li.current {
  /* &::before {
      background: $primary;
      border-radius: 10px;
      content: '';
      display: inline-block;
      height: 10px;
      vertical-align: middle;
      width: 10px;
  } */
}
body .sidebar-right.card .card-body ul li.current a,
body .sidebar-right.card .accordion-collapse ul li.current a,
body .accordion-item .card-body ul li.current a,
body .accordion-item .accordion-collapse ul li.current a {
  color: #f39c12;
  display: inline-block;
  font-weight: bold;
  text-decoration: none !important;
  vertical-align: middle;
}
body .mod-breadcrumbs__wrapper {
  background-color: var(--white);
  display: none;
  margin-bottom: -1em;
  padding: 0.5em 2em !important;
}
@media only screen and (min-width: 992px) {
  body .mod-breadcrumbs__wrapper {
    display: block;
  }
}
body .mod-breadcrumbs__wrapper ol {
  background-color: var(--white);
  border-bottom: 1px solid #e9eaeb;
  padding: 0 0 0.5em 0 !important;
}
body .mod-breadcrumbs__wrapper ol li > span {
  color: #01478c;
}
body .mod-breadcrumbs__wrapper ol li > a {
  text-decoration: none;
}
body .mod-breadcrumbs__wrapper ol li > a span {
  color: #a6abae !important;
}
body .mod-breadcrumbs__wrapper ol li span,
body .mod-breadcrumbs__wrapper ol li a {
  font-size: 14px;
}
body .mod-breadcrumbs__wrapper ol li.float-start {
  display: none;
}
body .mod-breadcrumbs__wrapper ol .breadcrumb-item + .breadcrumb-item::before {
  background-image: url(/images/icone/chevron_right_grey.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  display: inline-block;
  float: unset;
  height: 13px;
  vertical-align: middle;
  width: 13px;
}
body .pagination__wrapper {
  overflow-x: scroll;
  width: 100%;
}
@media only screen and (min-width: 640px) {
  body .pagination__wrapper {
    overflow-x: unset;
  }
}
@media only screen and (min-width: 640px) {
  body .pagination__wrapper .pagination {
    justify-content: center;
  }
}
body strong {
  color: #b06f09;
}
body table {
  width: 100%;
}
body table th,
body table td {
  border: 1px solid #dbdddf;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 5px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  body table th,
body table td {
    padding: 15px 10px;
  }
}
body table th a,
body table td a {
  color: #a6abae;
  font-weight: 600;
}
body table th p,
body table td p {
  margin: 0;
}
body table th.th_sec,
body table td.th_sec {
  background: #e9eaeb;
  border-bottom: 3px solid #01478c;
  color: #01478c;
}
body table th {
  background: #01478c;
  border-bottom: 1px solid rgba(var(--white), 0.2);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
}
body .scroll-table {
  overflow-x: scroll;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  body .scroll-table {
    overflow-x: auto;
  }
}
body .moduletable > h1,
body .moduletable > h2,
body .moduletable > h3 {
  background-color: #f39c12;
  padding: 0.5em;
  color: var(--white);
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1em;
  text-align: left;
  text-transform: uppercase;
}
body div.no-item-found,
body .alert {
  background-color: #01478c;
  border: 0;
  border-radius: 0;
  color: var(--white);
  font-weight: 600;
  margin: 0;
  padding: 2em;
}
body div.no-item-found > *,
body .alert > * {
  margin: 0;
}
body .swiper-wrapper {
  margin-top: 2.5em;
}
body .thumb-slider-nav {
  color: #b06f09;
  top: 1em !important;
}
body .thumb-slider-nav.swiper-button-next {
  right: 0;
}
body .thumb-slider-nav.swiper-button-prev {
  left: 0;
}
@media only screen and (min-width: 992px) {
  body .thumb-slider-nav.swiper-button-prev {
    left: unset;
    right: 3em;
  }
}
body .thumb-slider-nav::after {
  font-size: 30px !important;
  font-weight: 900;
}
@media only screen and (min-width: 992px) {
  body .thumb-slider-nav::after {
    font-size: 20px !important;
  }
}
body #speasyimagegallery-modal {
  cursor: pointer;
  z-index: 10000000000;
}
body #speasyimagegallery-modal .speasyimagegallery-modal-body {
  cursor: default;
}
body #speasyimagegallery-modal .speasyimagegallery-modal-body .speasyimagegallery-image-content {
  cursor: default;
}
body .foto .image,
body .speasyimagegallery-album .image {
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
body .foto .image::after,
body .speasyimagegallery-album .image::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
body .foto .image > *,
body .speasyimagegallery-album .image > * {
  height: 100%;
  position: absolute;
  width: 100%;
}
body .foto .image img,
body .speasyimagegallery-album .image img {
  transition: all, 0.5s;
}
body .foto .image img:hover,
body .speasyimagegallery-album .image img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
body .foto .title,
body .speasyimagegallery-album .title {
  margin-top: 1em;
}
body .foto .title span,
body .speasyimagegallery-album .title span {
  color: var(--white);
  transition: all 0.4s;
}
body .foto .title span::before,
body .speasyimagegallery-album .title span::before {
  background-image: url(/images/icone/camera_white.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  display: inline-block;
  height: 25px;
  margin-right: 0.5em;
  vertical-align: middle;
  width: 25px;
}
body .foto .title span:hover,
body .speasyimagegallery-album .title span:hover {
  color: #f39c12;
}

.btn:first-child:hover,
:not(.btn-check) + .btn:hover {
  background-color: var(--cassiopeia-color-hover) !important;
  border-color: var(--cassiopeia-color-hover) !important;
}

body.com_contact main,
body.com_users main {
  padding: 2em 1em;
}

.com-contact__form,
.com-users-registration,
.com-users-login,
.com_registrazione_corsi.form,
.com-users-profile__edit {
  background-color: #f6f7f7;
  padding: 1em;
}
.com-contact__form form,
.com-users-registration form,
.com-users-login form,
.com_registrazione_corsi.form form,
.com-users-profile__edit form {
  color: #01478c;
  margin: 0 auto;
  max-width: 680px;
}
.com-contact__form form legend,
.com-users-registration form legend,
.com-users-login form legend,
.com_registrazione_corsi.form form legend,
.com-users-profile__edit form legend {
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
}
.com-contact__form form input,
.com-users-registration form input,
.com-users-login form input,
.com_registrazione_corsi.form form input,
.com-users-profile__edit form input {
  max-width: 100% !important;
}
.com-contact__form form fieldset .alert,
.com-users-registration form fieldset .alert,
.com-users-login form fieldset .alert,
.com_registrazione_corsi.form form fieldset .alert,
.com-users-profile__edit form fieldset .alert {
  text-align: center;
}
.com-contact__form form fieldset div.control-group:last-child,
.com-users-registration form fieldset div.control-group:last-child,
.com-users-login form fieldset div.control-group:last-child,
.com_registrazione_corsi.form form fieldset div.control-group:last-child,
.com-users-profile__edit form fieldset div.control-group:last-child {
  text-align: left;
}
.com-contact__form form div.control-group:last-child,
.com-users-registration form div.control-group:last-child,
.com-users-login form div.control-group:last-child,
.com_registrazione_corsi.form form div.control-group:last-child,
.com-users-profile__edit form div.control-group:last-child {
  text-align: center;
}
.com-contact__form form div.control-group.com-users-registration__submit, .com-contact__form form div.control-group.com-users-login__submit, .com-contact__form form div.control-group.com-users-profile__edit-submit,
.com-users-registration form div.control-group.com-users-registration__submit,
.com-users-registration form div.control-group.com-users-login__submit,
.com-users-registration form div.control-group.com-users-profile__edit-submit,
.com-users-login form div.control-group.com-users-registration__submit,
.com-users-login form div.control-group.com-users-login__submit,
.com-users-login form div.control-group.com-users-profile__edit-submit,
.com_registrazione_corsi.form form div.control-group.com-users-registration__submit,
.com_registrazione_corsi.form form div.control-group.com-users-login__submit,
.com_registrazione_corsi.form form div.control-group.com-users-profile__edit-submit,
.com-users-profile__edit form div.control-group.com-users-registration__submit,
.com-users-profile__edit form div.control-group.com-users-login__submit,
.com-users-profile__edit form div.control-group.com-users-profile__edit-submit {
  text-align: center;
}

.com-users-login__options {
  max-width: 680px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .com-users-login__options {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .com-users-login__options .list-group-item {
    border: 1px solid #a6abae !important;
    max-width: 32%;
  }
}

.com-contact h3 {
  background-color: #f39c12;
  padding: 0.5em;
  color: var(--white);
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1em;
  text-align: left;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  .com-contact .com-contact__container h3 {
    margin-bottom: 0;
  }
}
.com-contact .com-contact__container .com-contact__info {
  margin-bottom: 2em;
}
@media only screen and (min-width: 992px) {
  .com-contact .com-contact__container .com-contact__info {
    margin-bottom: 0;
  }
}
.com-contact .com-contact__container .com-contact__info dl {
  color: #01478c;
}
.com-contact .com-contact__container .com-contact__info dl dt {
  font-size: 18px;
}

.error {
  color: #d50000;
  padding: 2em 0;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .error {
    padding: 3em 2em 2em;
  }
}
.error > h4 {
  text-transform: uppercase;
}

.thankyou {
  padding: 2em;
  text-align: center;
}
.thankyou > h4 {
  color: #01478c;
  margin-bottom: 1em;
  text-transform: uppercase;
}

body .pp-news div.module-pp div.row {
  --gutter-x: unset !important;
}
body .pp-news div.module-pp .pp-picture-wrapper {
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
}
body .pp-news div.module-pp .pp-picture-wrapper img {
  transition: all, 0.5s;
}
body .pp-news div.module-pp .pp-picture-wrapper img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
body .pp-news div.module-pp .pp-picture-wrapper img {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}
body .pp-news div.module-pp .pp-picture-wrapper.no-image {
  display: none;
}
body .pp-news div.module-pp article {
  margin-bottom: 1.25em;
}
@media only screen and (min-width: 768px) {
  body .pp-news div.module-pp article {
    padding: 0 10px;
  }
}
body .pp-news div.module-pp article header a,
body .pp-news div.module-pp article p a {
  color: #000;
}
body .pp-news div.module-pp article header a:hover,
body .pp-news div.module-pp article p a:hover {
  color: var(--cassiopeia-color-hover);
}
body .pp-news div.module-pp article .pp-main-maincat,
body .pp-news div.module-pp article .pp-secondary-maincat {
  margin-top: 0.25em;
}
body .pp-news div.module-pp article .pp-main-maincat .nome-cat,
body .pp-news div.module-pp article .pp-secondary-maincat .nome-cat {
  border-bottom: 1px solid #b06f09;
  color: #b06f09;
  font-size: 12px;
  font-weight: bold;
  padding-top: 0.25em;
  text-transform: uppercase;
}
body .pp-news div.module-pp article .pp-main-date,
body .pp-news div.module-pp article .pp-secondary-date {
  padding-bottom: 1em;
}
body .pp-news div.module-pp div.primary {
  margin-bottom: 2em;
}
@media only screen and (min-width: 992px) {
  body .pp-news div.module-pp div.primary {
    margin-bottom: 0;
  }
}
body .pp-news div.module-pp div.primary article {
  border-bottom: 1px solid var(--gray-200);
  height: 100%;
}
body .pp-news div.module-pp div.secondary {
  --gutter-x: 0;
}
@media only screen and (min-width: 768px) {
  body .pp-news div.module-pp div.secondary {
    --gutter-x: 1em;
  }
}
body .pp-news div.module-pp div.secondary article div.pp-article-wrapper {
  border-bottom: 1px solid var(--gray-200);
}
@media only screen and (min-width: 768px) {
  body .pp-news div.module-pp div.secondary article div.pp-article-wrapper {
    height: 100%;
  }
}
body .pp-news div.module-pp div.secondary article .pp-secondary-title {
  padding-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  body .pp-news div.module-pp div.secondary article:nth-child(3), body .pp-news div.module-pp div.secondary article:nth-child(4) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  body .pp-news div.module-pp div.secondary article:nth-child(3) .pp-secondary-title, body .pp-news div.module-pp div.secondary article:nth-child(4) .pp-secondary-title {
    margin-bottom: 0;
  }
}
body .gallery > h3 {
  background-color: transparent;
  padding-top: 1.5em;
}
body .moduletable.banner {
  margin-top: 2.5em;
}
body .moduletable.banner .sppb-addon-single-image-container {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  body .moduletable.banner .sppb-addon-single-image-container {
    width: auto;
  }
}
body .moduletable.banner .sppb-addon-single-image-container img {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  body .moduletable.banner.areariservata {
    margin-top: 1em;
  }
}
body .moduletable.banner.areariservata .sppb-addon-single-image {
  position: relative;
}
body .moduletable.banner.areariservata .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container a {
  display: block;
  position: relative;
}
body .moduletable.banner.areariservata .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container a::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
body .moduletable.banner.areariservata .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container a::after {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body .corsi.eventi .titolo-corso,
body .corsi.eventi .titolo-evento {
  margin-bottom: 0;
}
body .corsi.eventi p.type {
  color: #01478c;
  font-size: 14px;
  font-weight: bold;
}
body section.gallery .sppb-row-container {
  background: url(/images/bg-foto.jpg) no-repeat scroll center center/cover;
}
body.home main {
  padding: 0;
}
@media only screen and (min-width: 1240px) {
  body.home .sidebar-right {
    margin: 1em auto 0;
    width: 300px;
  }
}

body .blog .blog-items .blog-item,
body .blog .blog-items .tag-item,
body .blog .com-tags__items .blog-item,
body .blog .com-tags__items .tag-item,
body .tag-category .blog-items .blog-item,
body .tag-category .blog-items .tag-item,
body .tag-category .com-tags__items .blog-item,
body .tag-category .com-tags__items .tag-item {
  border-bottom: 1px solid #e9eaeb;
  padding: 1em 0;
}
@media only screen and (min-width: 768px) {
  body .blog .blog-items .blog-item,
body .blog .blog-items .tag-item,
body .blog .com-tags__items .blog-item,
body .blog .com-tags__items .tag-item,
body .tag-category .blog-items .blog-item,
body .tag-category .blog-items .tag-item,
body .tag-category .com-tags__items .blog-item,
body .tag-category .com-tags__items .tag-item {
    flex-direction: row;
  }
}
body .blog .blog-items .blog-item figure,
body .blog .blog-items .tag-item figure,
body .blog .com-tags__items .blog-item figure,
body .blog .com-tags__items .tag-item figure,
body .tag-category .blog-items .blog-item figure,
body .tag-category .blog-items .tag-item figure,
body .tag-category .com-tags__items .blog-item figure,
body .tag-category .com-tags__items .tag-item figure {
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-top: 0;
}
body .blog .blog-items .blog-item figure img,
body .blog .blog-items .tag-item figure img,
body .blog .com-tags__items .blog-item figure img,
body .blog .com-tags__items .tag-item figure img,
body .tag-category .blog-items .blog-item figure img,
body .tag-category .blog-items .tag-item figure img,
body .tag-category .com-tags__items .blog-item figure img,
body .tag-category .com-tags__items .tag-item figure img {
  transition: all, 0.5s;
}
body .blog .blog-items .blog-item figure img:hover,
body .blog .blog-items .tag-item figure img:hover,
body .blog .com-tags__items .blog-item figure img:hover,
body .blog .com-tags__items .tag-item figure img:hover,
body .tag-category .blog-items .blog-item figure img:hover,
body .tag-category .blog-items .tag-item figure img:hover,
body .tag-category .com-tags__items .blog-item figure img:hover,
body .tag-category .com-tags__items .tag-item figure img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
body .blog .blog-items .blog-item figure img,
body .blog .blog-items .tag-item figure img,
body .blog .com-tags__items .blog-item figure img,
body .blog .com-tags__items .tag-item figure img,
body .tag-category .blog-items .blog-item figure img,
body .tag-category .blog-items .tag-item figure img,
body .tag-category .com-tags__items .blog-item figure img,
body .tag-category .com-tags__items .tag-item figure img {
  aspect-ratio: 16/9;
}
@media only screen and (min-width: 768px) {
  body .blog .blog-items .blog-item .item-content,
body .blog .blog-items .tag-item .item-content,
body .blog .com-tags__items .blog-item .item-content,
body .blog .com-tags__items .tag-item .item-content,
body .tag-category .blog-items .blog-item .item-content,
body .tag-category .blog-items .tag-item .item-content,
body .tag-category .com-tags__items .blog-item .item-content,
body .tag-category .com-tags__items .tag-item .item-content {
    padding: 0 0.75em;
  }
}
body .blog .blog-items .blog-item .item-content .page-header a,
body .blog .blog-items .blog-item .item-content h4 a,
body .blog .blog-items .tag-item .item-content .page-header a,
body .blog .blog-items .tag-item .item-content h4 a,
body .blog .com-tags__items .blog-item .item-content .page-header a,
body .blog .com-tags__items .blog-item .item-content h4 a,
body .blog .com-tags__items .tag-item .item-content .page-header a,
body .blog .com-tags__items .tag-item .item-content h4 a,
body .tag-category .blog-items .blog-item .item-content .page-header a,
body .tag-category .blog-items .blog-item .item-content h4 a,
body .tag-category .blog-items .tag-item .item-content .page-header a,
body .tag-category .blog-items .tag-item .item-content h4 a,
body .tag-category .com-tags__items .blog-item .item-content .page-header a,
body .tag-category .com-tags__items .blog-item .item-content h4 a,
body .tag-category .com-tags__items .tag-item .item-content .page-header a,
body .tag-category .com-tags__items .tag-item .item-content h4 a {
  color: #000;
}
body .blog .blog-items .blog-item .item-content .page-header a:hover,
body .blog .blog-items .blog-item .item-content h4 a:hover,
body .blog .blog-items .tag-item .item-content .page-header a:hover,
body .blog .blog-items .tag-item .item-content h4 a:hover,
body .blog .com-tags__items .blog-item .item-content .page-header a:hover,
body .blog .com-tags__items .blog-item .item-content h4 a:hover,
body .blog .com-tags__items .tag-item .item-content .page-header a:hover,
body .blog .com-tags__items .tag-item .item-content h4 a:hover,
body .tag-category .blog-items .blog-item .item-content .page-header a:hover,
body .tag-category .blog-items .blog-item .item-content h4 a:hover,
body .tag-category .blog-items .tag-item .item-content .page-header a:hover,
body .tag-category .blog-items .tag-item .item-content h4 a:hover,
body .tag-category .com-tags__items .blog-item .item-content .page-header a:hover,
body .tag-category .com-tags__items .blog-item .item-content h4 a:hover,
body .tag-category .com-tags__items .tag-item .item-content .page-header a:hover,
body .tag-category .com-tags__items .tag-item .item-content h4 a:hover {
  color: #b06f09;
}
body .blog .blog-items .blog-item .item-content .intro-text,
body .blog .blog-items .tag-item .item-content .intro-text,
body .blog .com-tags__items .blog-item .item-content .intro-text,
body .blog .com-tags__items .tag-item .item-content .intro-text,
body .tag-category .blog-items .blog-item .item-content .intro-text,
body .tag-category .blog-items .tag-item .item-content .intro-text,
body .tag-category .com-tags__items .blog-item .item-content .intro-text,
body .tag-category .com-tags__items .tag-item .item-content .intro-text {
  display: none;
}
body .blog .cat-children,
body .tag-category .cat-children {
  display: none;
}
body .blog dd,
body .item-page dd,
body .com-tags__items dd {
  margin-bottom: 0;
}
body .blog dd.category-name,
body .item-page dd.category-name,
body .com-tags__items dd.category-name {
  border-bottom: 1px solid #b06f09;
  color: #b06f09 !important;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0.5em;
  padding-top: 0.25em;
  text-transform: uppercase;
}
body .blog dd.category-name > a,
body .item-page dd.category-name > a,
body .com-tags__items dd.category-name > a {
  color: #b06f09 !important;
}
body .blog dd.published,
body .item-page dd.published,
body .com-tags__items dd.published {
  font-size: 0.8rem;
}
body .blog time,
body .item-page time,
body .com-tags__items time {
  font-weight: 600;
}
body .item-page figure {
  display: none;
}
@media only screen and (min-width: 768px) {
  body .item-page .com-content-article__body img {
    display: block;
    margin: 0 auto 1em;
    max-width: 85%;
  }
}
@media only screen and (min-width: 992px) {
  body .item-page .com-content-article__body img {
    max-width: 65%;
  }
}
body .item-page .com-content-article__body a img.noload {
  float: left;
  margin-right: 0.5em;
  width: 24px;
}
body .item-page .com-content-article__body div.mod-speasyimagegallery .speasyimagegallery-row {
  margin: 0 -10px;
}
body .item-page .com-content-article__body div.mod-speasyimagegallery .speasyimagegallery-col-xs-2 {
  width: 100% !important;
}
@media only screen and (min-width: 640px) {
  body .item-page .com-content-article__body div.mod-speasyimagegallery .speasyimagegallery-col-xs-2 {
    width: 50% !important;
  }
}
@media only screen and (min-width: 768px) {
  body .item-page .com-content-article__body div.mod-speasyimagegallery .speasyimagegallery-col-sm-3 {
    width: 33.3333333% !important;
  }
}
@media only screen and (min-width: 992px) {
  body .item-page .com-content-article__body div.mod-speasyimagegallery .speasyimagegallery-col-md-4 {
    width: 25% !important;
  }
}
body .item-page .com-content-article__body div.mod-speasyimagegallery .speasyimagegallery-gallery-item img {
  max-width: 100% !important;
  width: 100% !important;
}
@media only screen and (min-width: 992px) {
  body.layout-blog .item-page {
    margin: 0 auto;
    max-width: 66%;
  }
}
body.layout-blog .item-page figure {
  display: block;
}
body.layout-blog .item-page figure.img_interna img {
  width: 100%;
}
body.layout-blog .item-page dd {
  margin-bottom: 2em !important;
}
body.layout-blog .item-page dd.published {
  border: solid #e9eaeb;
  border-width: 1px 0 1px 0;
  padding: 1em 0;
}
body.com_tags main {
  padding: 2em;
}
body.com_tags main p.counter {
  display: none;
}
body .com-content-category-blog__navigation {
  text-align: center;
}

div#federazione {
  width: 100%;
}
div#federazione div.minihead {
  border-bottom: 5px solid #01478c;
  margin: 0 0 20px;
}
div#federazione div.minihead div.minihead_int {
  padding: 10px;
}
div#federazione div.minihead div.minihead_int div.logo {
  margin: 0 auto 2em;
  max-width: 60%;
}
@media only screen and (min-width: 768px) {
  div#federazione div.minihead div.minihead_int div.logo {
    margin: auto auto 0;
    max-width: 15%;
  }
}
@media only screen and (min-width: 992px) {
  div#federazione div.minihead div.minihead_int div.logo {
    max-width: 10%;
  }
}
div#federazione div.minihead div.minihead_int div.logo img {
  height: auto;
  width: 100%;
}
div#federazione div.minihead div.minihead_int div.nome {
  color: #01478c;
}
@media only screen and (min-width: 768px) {
  div#federazione div.minihead div.minihead_int div.nome {
    padding: 0 0 0 40px;
  }
}
div#federazione div.minihead div.minihead_int div.nome div.sigla {
  font-size: 25px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  div#federazione div.minihead div.minihead_int div.nome div.sigla {
    font-size: 32px;
  }
}
div#federazione div.minihead div.minihead_int div.nome div.esteso {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  div#federazione div.minihead div.minihead_int div.nome div.esteso {
    font-size: 28px;
    padding: 10px 0;
  }
}
div#federazione div.contatti div.contatti_int {
  margin: 20px 0;
}
div#federazione div.contatti div.contatti_int div.info div.rappr_container {
  background: #e9eaeb;
  display: inline-block;
  padding: 20px;
  vertical-align: top;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  div#federazione div.contatti div.contatti_int div.info div.rappr_container {
    width: 32%;
  }
}
div#federazione div.contatti div.contatti_int div.info div.rappr_container p.rappresentanti {
  border-left: 3px solid #01478c;
  margin: 0 0 15px;
  padding: 0 0 0 10px;
}
div#federazione div.contatti div.contatti_int div.info div.rappr_container p.rappresentanti span {
  display: block;
}
div#federazione div.contatti div.contatti_int div.info div.infobase_container {
  display: inline-block;
  padding: 40px 0;
  vertical-align: top;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  div#federazione div.contatti div.contatti_int div.info div.infobase_container {
    padding: 0 20px;
    width: 67%;
  }
}
div#federazione div.contatti div.contatti_int div.info p.info,
div#federazione div.contatti div.contatti_int div.info p.rappresentanti {
  margin: 0 0 5px;
}
div#federazione div.contatti div.contatti_int div.info p.info a,
div#federazione div.contatti div.contatti_int div.info p.info span,
div#federazione div.contatti div.contatti_int div.info p.rappresentanti a,
div#federazione div.contatti div.contatti_int div.info p.rappresentanti span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
div#federazione div.contatti div.contatti_int div.info p.info a.label,
div#federazione div.contatti div.contatti_int div.info p.info span.label,
div#federazione div.contatti div.contatti_int div.info p.rappresentanti a.label,
div#federazione div.contatti div.contatti_int div.info p.rappresentanti span.label {
  color: #01478c;
  font-weight: 400;
  margin-right: 10px;
}
div#federazione div.content div.storia h2 {
  color: #0161bf;
  margin: 15px 0;
}
div#federazione div.content div.storia h3 {
  color: #c31118;
  margin: 10px 0;
}
div#federazione div.content div.storia h4 {
  color: #01478c;
}
div#federazione div.corpo_federazione div.main_federazione {
  width: 100%;
  /* @include mq(992px) {
      float: left;
      width: 70%;
  } */
}
@media only screen and (min-width: 992px) {
  div#federazione div.corpo_federazione div.right_federazione {
    float: left;
    padding: 20px;
    width: 30%;
  }
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li {
  background-color: var(--white);
}
@media only screen and (min-width: 992px) {
  div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li {
    background-color: #01478c;
  }
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li > a {
  color: #01478c;
}
@media only screen and (min-width: 992px) {
  div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li > a {
    color: var(--white);
  }
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li > a span {
  display: block;
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li > a span.sigla {
  font-size: 18px;
  font-weight: 700;
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li > a span.esteso {
  font-size: 14px;
  font-weight: 300;
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li.active {
  background: #012d59;
}
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li.active a,
div#federazione div.corpo_federazione div.right_federazione div.sidebar-right li.active span {
  color: var(--white);
}

.organo {
  padding-bottom: 1em;
}
.organo .organo_int {
  border-bottom: 1px solid #e9eaeb;
  padding-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .organo .organo_int {
    height: 100%;
    margin: 0;
  }
}
.organo .organo_int .info {
  color: #01478c;
  font-style: italic;
  padding-top: 0.5em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .organo .organo_int .info {
    text-align: left;
  }
}
.organo .organo_int .info strong {
  color: #f39c12;
}
.organo .organo_int .info a {
  color: #01478c;
}
.organo .organo_int .info a:hover {
  color: #b06f09;
}
.organo.conipoint .organo_int h4 {
  background-color: #01478c;
  color: var(--white);
  font-style: normal;
  padding: 0.5em;
}

.evento,
.corso {
  border: 1px solid #dbdddf;
}
.evento .evento_int,
.evento .corso_int,
.corso .evento_int,
.corso .corso_int {
  padding: 1em;
}
.evento .evento_int .titolo-evento,
.evento .evento_int .titolo-corso,
.evento .corso_int .titolo-evento,
.evento .corso_int .titolo-corso,
.corso .evento_int .titolo-evento,
.corso .evento_int .titolo-corso,
.corso .corso_int .titolo-evento,
.corso .corso_int .titolo-corso {
  margin-bottom: 1em;
}
.evento .evento_int .titolo-corso h5 a,
.evento .evento_int .titolo-corso .titolo a,
.evento .corso_int .titolo-corso h5 a,
.evento .corso_int .titolo-corso .titolo a,
.corso .evento_int .titolo-corso h5 a,
.corso .evento_int .titolo-corso .titolo a,
.corso .corso_int .titolo-corso h5 a,
.corso .corso_int .titolo-corso .titolo a {
  color: #f39c12;
}
.evento .evento_int .titolo-corso h5 a:hover,
.evento .evento_int .titolo-corso .titolo a:hover,
.evento .corso_int .titolo-corso h5 a:hover,
.evento .corso_int .titolo-corso .titolo a:hover,
.corso .evento_int .titolo-corso h5 a:hover,
.corso .evento_int .titolo-corso .titolo a:hover,
.corso .corso_int .titolo-corso h5 a:hover,
.corso .corso_int .titolo-corso .titolo a:hover {
  color: var(--cassiopeia-color-hover);
}
.evento .evento_int .periodo-evento,
.evento .corso_int .periodo-evento,
.corso .evento_int .periodo-evento,
.corso .corso_int .periodo-evento {
  padding-bottom: 1px;
}
.evento .evento_int .luogo-evento,
.evento .corso_int .luogo-evento,
.corso .evento_int .luogo-evento,
.corso .corso_int .luogo-evento {
  border-top: 1px solid #dbdddf;
  font-size: 0.8rem;
  padding-left: 25px;
  padding-top: 1em;
  position: relative;
}
.evento .evento_int .luogo-evento p::before,
.evento .corso_int .luogo-evento p::before,
.corso .evento_int .luogo-evento p::before,
.corso .corso_int .luogo-evento p::before {
  background-image: url(/images/icone/pointer_primary_dark.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  width: 20px;
}
.evento .evento_int strong,
.evento .corso_int strong,
.corso .evento_int strong,
.corso .corso_int strong {
  color: #b06f09;
}

.eve_container {
  margin-bottom: 1em;
}
.eve_container .evento {
  height: 100%;
}

@media only screen and (min-width: 1200px) {
  .splms-view-event {
    margin: 0 auto;
    max-width: 85%;
  }
}
.splms-view-event .splms-event-title,
.splms-view-event .container_info {
  margin-bottom: 50px;
}
.splms-view-event .splms-event-title {
  color: #000;
}
.splms-view-event .container_info {
  background-color: #f6f7f7;
  margin-left: 0 !important;
  margin-right: 0 !important;
  --gutter-x: 2em !important;
}
.splms-view-event .container_info .splms-event-image {
  padding: 0 !important;
}
.splms-view-event .container_info ul {
  list-style-type: none;
  margin-bottom: 0;
  padding: 1em !important;
}
.splms-view-event .container_info ul li {
  display: block !important;
  margin-bottom: 0.5em;
  padding: 0 0 10px !important;
}
.splms-view-event .container_info ul li::after {
  display: none;
}
.splms-view-event .container_info.no-img {
  min-height: 150px;
}
.splms-view-event .splms-event-location-title {
  border-bottom: 5px solid #01478c;
  color: #01478c;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1em;
  text-align: left;
  text-transform: uppercase;
}

body .moduletable.categorie-corsi #lista-corsi {
  padding: 0 3em;
}
@media only screen and (min-width: 992px) {
  body .moduletable.categorie-corsi #lista-corsi {
    padding: 0;
  }
}
body .moduletable.categorie-corsi .categoria {
  margin-bottom: calc(var(--gutter-x) * 0.5 * 2);
  min-height: 70px;
}
body .moduletable.categorie-corsi .categoria .categoria_int {
  background-color: #e9eaeb;
  height: 100%;
  margin: 0;
}
body .moduletable.categorie-corsi .categoria .categoria_int a {
  color: #01478c;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  text-decoration: none;
}
@media only screen and (min-width: 992px) {
  body .moduletable.categorie-corsi .categoria .categoria_int a:hover {
    background-color: #dbdddf;
    color: #f39c12;
  }
}
body .moduletable.categorie-corsi .categoria .categoria_int div.titolo {
  padding: 0.7em;
}
body .moduletable.categorie-corsi .categoria .categoria_int div.logo {
  background-color: #01478c;
  background-position: center;
  background-repeat: no-repeat;
  height: 70px;
}
@media only screen and (min-width: 992px) {
  body .moduletable.categorie-corsi .categoria .categoria_int div.logo {
    height: 100%;
  }
}
body .corsi .corso {
  background-color: #f4f4f4;
  height: 100%;
}
body .corsi .corso .cat {
  color: #01478c;
  font-size: 14px;
  font-weight: 600;
}
body .corsi .corso .time p.data {
  background-color: #01478c;
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.5em 1em;
  text-align: center;
  text-transform: uppercase;
}
body .corsi .corso .time p.data span {
  color: var(--white);
  display: block;
}
body .corsi .corso .time p.data span.giorno {
  font-size: 16px;
  font-weight: bold;
}
body .corsi .corso .time p.data span.mese {
  font-size: 12px;
}
body .corsi .corso .titolo-corso h5 a,
body .corsi .corso .titolo-corso .titolo a {
  color: #f39c12;
}
body .corsi .corso .titolo-corso h5 a:hover,
body .corsi .corso .titolo-corso .titolo a:hover {
  color: var(--cassiopeia-color-hover);
}
body .corsi .container-corso {
  margin-bottom: calc(var(--gutter-x));
}
body .corsi .container-corso .descrizione {
  font-size: 14px;
}
body .corsi.evidenza .corso .time {
  margin-top: 1em;
}
@media only screen and (min-width: 992px) {
  body .corsi.evidenza .corso .time {
    margin-top: 0;
  }
}
body .vista-corso h2.course-title {
  margin-bottom: 50px !important;
}
@media only screen and (min-width: 1200px) {
  body .vista-corso h2.course-title {
    font-size: 2rem !important;
  }
}
body .vista-corso .container-info {
  background-color: #f6f7f7;
  margin-bottom: 3em;
  padding: 1em;
}
@media only screen and (min-width: 768px) {
  body .vista-corso .container-info {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
body .vista-corso .container-info .info {
  padding-top: var(--gutter-x);
  padding-bottom: var(--gutter-x);
}
@media only screen and (min-width: 992px) {
  body .vista-corso .container-info .info {
    padding-top: 0;
    padding-bottom: 0;
  }
}
body .vista-corso .container-info .info .category p a {
  color: #f39c12;
}
body .vista-corso .container-info .info .category p a:hover {
  color: var(--cassiopeia-color-hover);
}
body .vista-corso .course-description {
  word-break: break-word;
}
body .vista-corso .course-description > h3 {
  border-bottom: 5px solid #01478c;
  color: #01478c;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1em;
  text-align: left;
  text-transform: uppercase;
}
body .vista-corso .desc-breve {
  font-size: 18px;
  margin-bottom: 2em;
}
@media only screen and (min-width: 992px) {
  body .vista-corso .desc-breve {
    font-size: 22px;
  }
}
body.scuola-regionale main {
  padding: 2em 0;
}
@media only screen and (min-width: 992px) {
  body.scuola-regionale main {
    padding: 2em;
  }
}
body.categorie_corsi .mod-breadcrumbs__wrapper ol li.active {
  display: none;
}

:root {
  --cassiopeia-font-family-body: "Montserrat", sans-serif;
  --cassiopeia-font-family-headings: "Montserrat", sans-serif;
  --cassiopeia-font-weight-headings: 700;
  --cassiopeia-font-weight-normal: 400;
}

:root {
  --cassiopeia-font-family-body: "Montserrat", sans-serif;
  --cassiopeia-font-family-headings: "Montserrat", sans-serif;
  --cassiopeia-font-weight-headings: 700;
  --cassiopeia-font-weight-normal: 400;
}