@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap");
*, *::after, *::before {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  scroll-behavior: smooth;
  z-index: 0;
}

html, body {
  position: relative;
  background-color: var(--main-color);
  color: var(--main-color-contrast);
  padding: 0;
  margin: 0;
  font-family: var(--text-font), sans-serif;
}

ul {
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: var(--main-font);
  line-height: 1.1em;
}

h1 {
  -webkit-margin-before: unset;
          margin-block-start: unset;
  -webkit-margin-after: unset;
          margin-block-end: unset;
  -webkit-margin-start: unset;
          margin-inline-start: unset;
  -webkit-margin-end: unset;
          margin-inline-end: unset;
}

:root {
  --main-color: #fff;
  --main-color--rgb: 255, 255, 255;
  --main-color-contrast: #111;
  --main-color-contrast--rgb: 17, 17, 17;
  --main-font: Poppins;
  --text-font: Roboto;
  --padding: .3em .7em;
  --br-tiny: 5px;
  --br-large: 40px;
  --app-height: 100%;
  --app-width: 100%;
;
}

/*@media (prefers-color-scheme: dark) {
  :root {
    --main-color: #111;
    --main-color--rgb: 17, 17, 17;
    --main-color-contrast: #fff;
    --main-color-contrast--rgb: 255, 255, 255;
  }
  .header__logo {
    -webkit-filter: invert(100);
            filter: invert(100);
  }
  #footer svg {
    -webkit-filter: invert(100);
            filter: invert(100);
  }
}*/

#dark_notice {
  padding: 20px 30px;
  bottom: 15px;
  width: 60ch;
  left: 15px;
  position: fixed;
  display: none;
  z-index: 12;
  border-radius: var(--br-large);
  background: var(--main-color);
  -webkit-box-shadow: 0 0 16px rgba(var(--main-color-contrast--rgb), 0.1);
          box-shadow: 0 0 16px rgba(var(--main-color-contrast--rgb), 0.1);
}

#dark_notice > h3 {
  margin: 0;
  margin-bottom: .5em;
  font-family: var(--main-font);
}

#dark_notice .button {
  margin-bottom: .5em;
}

#dark_notice .button__span {
  font-size: 14px;
}

.header__menu{
    max-height: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    margin-top: 50px;
    direction: rtl;
}

.header__menu ul{
    margin-top: 10px;
}

.header__menu::-webkit-scrollbar{
    width:5px;
}

.header__menu::-webkit-scrollbar-track{
    background: #d6d6d6;
}

.header__menu::-webkit-scrollbar-thumb{
    background: rgb(0, 0, 0);

}

.icon_dashboard{
    padding-bottom: 8px;
}

#nav_li_expose_3 p {
    cursor: pointer;
    padding: 5px 6px 2px 6px;
    margin-top: 12px;
    margin-bottom: 8px;
}

@media(max-width:767px){
    
    .header__menu{
        margin-top: 0px;
        overflow-x: scroll;
        direction: ltr;
        height: 75px;
        margin-bottom: -15px;
    }
    
    .header__menu ul{
        width: 110%;
    }
    
    #non_logged_navbar_ul {
        width: 100%;
        margin: 0px 0px !important;
    }
    
    .header__menu::-webkit-scrollbar{
        display: block !important;
        width:1px !important;
        height: 1px;
    }

    .header__menu::-webkit-scrollbar-track{
        background: #d6d6d6 !important;
    }

    .header__menu::-webkit-scrollbar-thumb{
        background: rgb(0, 0, 0) !important;
    }
    
    .dashboard_label{
        display: none;
    }
    
    #nav_li_expose_3 {
        padding: 0px 13px;
    }
    
    #nav_li_account{
        margin-right: 20px;
    }
    
    .icon_dashboard{
        padding-bottom: 0px;
    }
    
    #nav_li_expose_3 p {
        padding: 5px 0px 2px 0px;
        margin-top: 14px;
        margin-bottom: 10px;
    }

}

.header {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 11;
  width: 100px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
}

.header a {
  opacity: 1;
  text-decoration: none;
}

.header .logo__container {
  position: absolute;
  top: 20px;
}

.header .logo__container .header__logo {
  width: 50px;
}

.header nav > ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 20px;
}

.header nav > ul svg {
  height: 25px;
  width: 25px;
}

.header nav > ul li {
  position: relative;
}

.header nav > ul li > .button {
  padding: .2rem .5rem;
}

.header nav > ul li > .lang_modal {
  display: none;
  top: 0;
  position: fixed;
  left: 105px;
  -webkit-transform: translate3d(0,0,0);
}

.header nav > ul li > .lang_modal > ul {
  position: relative;
  -webkit-box-shadow: 0 0 16px #0002;
          box-shadow: 0 0 16px #0002;
  background: rgba(var(--main-color--rgb), 1);
  border-radius: var(--br-large);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.header nav > ul li > .lang_modal > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: var(--br-large);
  width: 80px;
  height: 80px;
}

.header nav > ul li > .lang_modal > ul > li > a:hover, .header nav > ul li > .lang_modal > ul > li > a:focus {
  background: rgba(var(--main-color-contrast--rgb), 0.08);
}

.header nav > ul li > .lang_modal > ul > li > a[aria-selected=true] {
  background: rgba(var(--main-color-contrast--rgb), 0.05);
}

/*Account modal start*/
.header nav > ul li > .account_modal {
  display: none;
  top: 0;
  position: fixed;
  left: 105px;
  -webkit-transform: translate3d(0,0,0);
}

.header nav > ul li > .account_modal > ul {
  position: relative;
  -webkit-box-shadow: 0 0 16px #0002;
          box-shadow: 0 0 16px #0002;
  background: rgba(var(--main-color--rgb), 1);
  border-radius: var(--br-large);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.header nav > ul li > .account_modal > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: var(--br-large);
  width: 80px;
  height: 80px;
}

.header nav > ul li > .account_modal > ul > li > a:hover, .header nav > ul li > .account_modal > ul > li > a:focus {
  background: rgba(var(--main-color-contrast--rgb), 0.08);
}

.header nav > ul li > .account_modal > ul > li > a[aria-selected=true] {
  background: rgba(var(--main-color-contrast--rgb), 0.05);
}


/*Account modal end*/

#footer {
  border-top: 1px solid rgba(var(--main-color-contrast--rgb), 0.2);
  background-color: rgba(var(--main-color-contrast--rgb), 0.1);
  color: var(--main-color-contrast);
  position: relative;
  padding: 40px;
  margin-top: 1em;
  padding-right: 0;
  line-height: 1.2em;
  padding-left: 140px;
}

#footer .footer_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-align: unset !important;
      -ms-flex-align: unset !important;
          align-items: unset !important;
  margin: 0 auto;
  width: 70%;
  max-width: 1000px;
}

#footer .footer_container > div {
  min-width: 25%;
  max-width: 33%;
}

#footer .footer_container > div:not(:first-child) {
  padding-left: 20px;
}

#footer .footer_container .first_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-align: left;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

#footer .footer_container .first_column a {
  opacity: 1;
  color: var(--main-color-contrast);
}

#footer .footer_container .first_column a > svg {
  width: 50px;
}

#footer .footer_container .first_column .footer__logo {
  margin: 0 0 20px 0;
}

#footer .footer_container .menu ul {
  margin: 0;
}

#footer .footer_container .menu ul li {
  text-align: left;
}

#footer .footer_container .menu ul li:not(:last-child) {
  margin-bottom: 1.5em;
}

#footer .footer_container .menu ul li a {
  text-decoration: unset;
  opacity: 1;
}

#footer .footer_container .menu ul li a:hover, #footer .footer_container .menu ul li a:focus {
  text-decoration: underline;
}

.icon__renderer {
  outline: none;
}

.icon__renderer:focus a.icon__renderer:before, .icon__renderer:focus div.icon__renderer:before {
  border: 4px solid var(--main-color-contrast);
}

a {
  color: var(--main-color-contrast);
  opacity: .6;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
}

a:focus {
  opacity: 1;
  text-decoration: underline;
  outline: none;
}

a:focus > span {
  text-decoration: underline;
}

a > .button__icon {
  margin-bottom: 8px;/*15px;*/
}

a.icon__renderer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  opacity: 1;
  width: 40px;
  padding: 16px 0 14px;
}

a.icon__renderer > .button__icon {
  z-index: 2;
}

a.icon__renderer > .button__label {
  font-size: 13.5px;
  width:max-content;
}

a.icon__renderer:before {
  background: var(--main-color);
  height: 50px;
  width: 50px;
  position: absolute;
  content: "";
  top: 5px;
}

a.icon__renderer:after {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  content: "";
  transform-origin: center;
  z-index: 0;
  top: 4px;
  left: 5px;
  width: 30px;
  height: 52px;
  position: absolute;
  background: var(--main-color);
}

a.icon__renderer:hover:before, a.icon__renderer:focus:before {
  border: 4px solid rgba(var(--main-color-contrast--rgb), 0.5);
}

a.icon__renderer:active > .button__icon {
  -webkit-filter: invert(100);
          filter: invert(100);
}

a.icon__renderer:active:after {
  top: 5px;
  left: -5px;
  color: var(--main-color);
  background: var(--main-color-contrast);
  width: 50px;
  height: 50px;
}

a:hover {
  opacity: 1;
}

/*@media (prefers-color-scheme: dark) {
  .button__icon {
    -webkit-filter: invert(100);
            filter: invert(100);
  }
  a.icon__renderer:active .button__icon {
    -webkit-filter: invert(0);
            filter: invert(0);
  }
}*/

[aria-selected='true'] a.icon__renderer:before, [aria-selected='true'].button:before {
  border: 4px solid var(--main-color-contrast);
}

[aria-selected='true'] a.icon__renderer > .button__icon, [aria-selected='true'].button > .button__icon {
  margin-bottom: 15px;
}

.modal {
  z-index: 1500 !important;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  left: 0;
  -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1);
          backdrop-filter: blur(30px) saturate(180%) brightness(1);
  background: rgba(var(--main-color--rgb), 0.9);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  background-color: #0006;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.modal-content {
  top: 50vh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: relative;
  background-color: var(--main-color);
  background-clip: padding-box;
  text-align: left;
  border-radius: var(--br-large);
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
}

.modal-content .button {
  margin: 0 auto;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-left: 20px;
  padding-top: 2px;
  height: 80px;
  border-bottom: 1px solid rgba(var(--main-color-contrast--rgb), 0.1);
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
  font-size: 1.250rem;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-body p {
  margin: 0 0 10px;
}

.modal-footer {
  padding: 20px;
  text-align: right;
  border-top: 1px solid rgba(var(--main-color-contrast--rgb), 0.1);
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  outline: none;
  height: 80px;
  width: 80px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: var(--br-large) !important;
}

button.close:hover, button.close:focus {
  background-color: rgba(var(--main-color-contrast--rgb), 0.2);
}

button.close:active {
  background-color: rgba(var(--main-color-contrast--rgb), 0.5);
}

.close {
  float: right;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--main-color-contrast);
  filter: alpha(opacity=20);
  opacity: .5;
}

.button {
  display: table;
  outline: none;
  color: var(--main-color-contrast);
  position: relative;
  border: 4px solid var(--main-color-contrast);
  font-size: 1.1rem;
  font-family: var(--main-font);
  font-weight: 700;
  padding: var(--padding);
  background: transparent;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 1.5rem 0;
  background: var(--main-color);
}

.button:hover, .button:focus {
  border: 4px solid rgba(var(--main-color-contrast--rgb), 0.5);
}

.button:focus {
  text-decoration: underline;
}

.button a {
  opacity: 1;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.button__span {
  width: auto;
  z-index: 2;
  display: block;
}

.button__span:before {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  content: "";
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: -1;
  top: calc(-.7rem);
  left: -.3em;
  width: calc(100% + .6em);
  height: calc(100% + 1.35rem);
  position: absolute;
  background: var(--main-color);
}

.button:active {
  background: var(--main-color-contrast);
}

.button:active > a > .button__span {
  color: var(--main-color);
}

.button:active > a > .button__span:before {
  background: var(--main-color-contrast);
  width: calc(100% + 2rem);
  height: calc(100% + 1.2rem);
  top: -.6rem;
  left: -1rem;
}

#corpo {
  margin: 0;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  /*
  position: fixed;
  max-height: 100vh;
  overflow-y: scroll;*/
  top: 0;
  left: 0;
  z-index: -5;
  width: 100%;
}

#corpo h1 {
  font-family: var(--main-font);
  line-height: 1.2em;
  font-size: 5rem;
  margin-bottom: 1rem;
}

#corpo p {
  font-size: 18px;
  line-height: 1.5rem;
}

.hero {
  z-index: -1;
  margin-bottom: -10em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 10em 40px 15em 160px;
}

.hero > .container {
  z-index: 0 !important;
  width: 50%;
  padding: 20px;
}

.hero:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  opacity: 1;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(55%, rgba(var(--main-color--rgb), 1)), color-stop(90%, rgba(var(--main-color--rgb), 0)));
  background: linear-gradient(to right, rgba(var(--main-color--rgb), 1) 55%, rgba(var(--main-color--rgb), 0) 90%);
}

.hero > #bg_img {
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  z-index: -2;
  background-position: right top;
  background-attachment: fixed;
  background-size: auto 700px;
  background-repeat: no-repeat;
}

.category {
  border-top: 10px solid var(--main-color);
  -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1);
          backdrop-filter: blur(30px) saturate(180%) brightness(1);
  background: rgba(var(--main-color--rgb), 0.9);
  background: rgba(var(--main-color--rgb), 0.5);
  z-index: 2;
  width: 100%;
  padding: 0 0 60px 160px;
}

.category h2 {
  padding: 0 20px;
  font-family: var(--main-font);
  font-size: 1.4rem;
}

.carousel {
  font-family: var(--main-font);
  font-weight: 700;
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow-y: hidden;
}

.carousel ul {
  width: 100%;
  padding: 0;
}

.carousel__element {
  max-width: 500px;
  width: 100%;
  border-radius: var(--br-large);
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.carousel__element__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: bottom;
      -ms-flex-align: bottom;
          align-items: bottom;
  min-height: 350px;
  position: relative;
}

.carousel__element__card a {
  opacity: 1;
  text-decoration: none;
}

.carousel__element__card a > div {
  position: absolute;
  width: 100%;
}

.carousel__element__card a > div > picture > img {
  min-height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.carousel__element__card:hover .carousel__element__card__desc {
  margin-bottom: 0px;
}

.carousel__element__card__desc {
  position: absolute;
  bottom: 0;
  padding: 0 20px 20px 20px;
  border-radius: 40px 40px 0 0;
  -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1);
          backdrop-filter: blur(30px) saturate(180%) brightness(1);
  background: rgba(var(--main-color--rgb), 0.9);
  margin-bottom: -70px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 100%;
}

.carousel__element__card__desc__title {
  text-decoration: none;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 !important;
  font-size: 24px;
}

.carousel__element__card__desc__title:hover {
  text-decoration: underline;
}

.carousel__element__card__desc > div.button {
  margin: 0 auto;
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
  background: var(--main-color-contrast);
  color: var(--main-color) !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 24px !important;
}

.faq ul {
  font-size: 24px;
  list-style: none;
  width: 75%;
  max-width: 815px;
  margin: 2em auto;
  padding: 0;
}

.faq ul .faq__list__item {
  text-align: left;
  list-style-type: none;
  margin: 0 0 8px 0;
}

.faq ul .faq__question {
  background: rgba(var(--main-color-contrast--rgb), 0.1);
  color: var(--main-color-contrast);
  padding: .8em 2.2em .8em 1.2em;
  text-align: left;
  margin-bottom: 1px;
  font-size: 1.625rem;
  font-weight: 400;
  position: relative;
  width: 100%;
  border: 0;
}

.faq ul .faq__question .svg__icon {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1em;
  width: 1em;
  fill: var(--main-color-contrast);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.faq ul .faq__question .svg__icon.open {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.faq ul .faq__answer span {
  display: inline-block;
  padding: 1.2em;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 0 !important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 0 !important;
}

@media (max-width: 1024px) {
  .hero {
    padding-left: 100px !important;
  }
  .hero > #bg_img {
    background-position: unset !important;
  }
  .category {
    padding-left: 100px !important;
  }
  .footer_container {
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 767px) {
  .modal-dialog {
    max-width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  ::-webkit-scrollbar {
    display: none;
  }
  :root {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .hero {
    padding: 20em 20px 20px 20px !important;
    margin-bottom: 0em !important;
  }
  .hero > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 100% !important;
  }
  .hero > .container h1 {
    font-size: 52px !important;
  }
  .hero:before {
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(var(--main-color--rgb), 1)), color-stop(90%, rgba(var(--main-color--rgb), 0)));
    background: linear-gradient(to top, rgba(var(--main-color--rgb), 1) 45%, rgba(var(--main-color--rgb), 0) 90%);
  }
  .hero > #bg_img {
    top: 0;
    background-size: auto 60%;
    background-position: top !important;
  }
  .faq ul {
    width: 100% !important;
    font-size: 1.125rem;
  }
  .faq ul li > * {
    font-size: 1.125rem;
  }
  .faq ul .faq__question {
    font-size: 1.125rem !important;
  }
  .category {
    padding: 0 !important;
    padding-bottom: 50px;
  }
  .category h2 {
    text-align: left;
    margin: 0;
  }
  #dark_notice {
    width: calc(100% - 30px);
  }
  #dark_notice .button {
    margin-left: auto;
    margin-right: auto;
  }
  #dark_notice > h3 {
    font-size: 18px;
  }
  #dark_notice > div > span {
    font-size: 12px;
  }
  .button__span {
    font-size: 18px;
  }
  
  #header {
    /*Nuovo */
    top:auto;
    bottom:0;
    z-index: 18;
    /*Nuovo */
    background: var(--main-color);
    /*top: calc(100vh - 100px);*/
    width: 100vw;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: row;
        flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    box-shadow: 0 0rem 0.5rem rgb(0 0 0 / 10%)!important;
  }
  #header a {
    padding-bottom: 0;
  }
  #header nav {
    width: 100%;
  }
  
  #header nav > ul {
    margin: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: row;
        flex-flow: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  #header nav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: center;
  }
  #header nav > ul > li > .lang_modal {
    /*Position fixed mette il modale al centro in mobile*/  
    /*position: fixed;*/ 
    top: unset;
    bottom: 110px;
    left: calc(50%);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #header nav > ul > li > .lang_modal > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    /*
    display: flex;
    -webkit-box-orient: horizontal;*/
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: row;
        flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  
  /*account modal media query start */
  #header nav > ul > li > .account_modal {
    /*Position fixed mette il modale al centro in mobile*/  
    /*position: fixed;*/ 
    top: unset;
    bottom: 110px;
    left: calc(50%);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #header nav > ul > li > .account_modal > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    /*
    display: flex;
    -webkit-box-orient: horizontal;*/
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: row;
        flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  /*account modal media query end */
  
  
  
  #header .logo__container {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(var(--main-color--rgb), 1)), color-stop(90%, rgba(var(--main-color--rgb), 0)));
    background: linear-gradient(to bottom, rgba(var(--main-color--rgb), 1) 20%, rgba(var(--main-color--rgb), 0) 90%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 15px;
  }
  #header .logo__container .header__logo {
    position: relative;
    left: unset;
    top: unset;
  }

  #footer .footer_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  #footer .footer_container .first_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer_container > div {
    min-width: 100%;
  }
  #footer .footer_container > div:not(:first-child) {
    padding-left: 0;
    padding-top: 30px;
  }
  #footer .footer_container .menu {
    border-top: 1px solid rgba(var(--main-color-contrast--rgb), 0.1) !important;
    padding: 20px !important;
  }
  #footer .footer_container .menu ul li {
    text-align: center !important;
  }
}

.introduzione {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  top: 0;
}

.introduzione ul {
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.introduzione ul li {
  height: 100% !important;
}

.first {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-box-shadow: 0 0 16px transparent;
          box-shadow: 0 0 16px transparent;
  border-radius: 0;
  position: relative;
  z-index: 10 !important;
  background-color: var(--main-color);
  color: var(--main-color-contrast);
  font-family: var(--main-font);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100vw;
  height: 100vh;
}

.first__container {
  margin-top: -10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100vw;
  height: 100vh;
}

.first__container__img__logo {
  width: 200px;
}

.first__container h1 {
  margin: 1em 0 3em 0;
}

.first__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: column;
      flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: fixed;
  top: calc(100vh - 110px);
  height: auto;
  width: 100%;
}

.first__footer__p {
  margin-top: 0;
  color: var(--main-color);
  background-color: var(--main-color-contrast);
  padding: var(--padding);
  font-size: 14px;
  border-radius: var(--br-tiny);
}

.hero > #bg_img {
  background-image: url("../media/shepard.jpg");
}

/*@media (prefers-color-scheme: dark) {
  lottie-player, svg.first__container__img__logo {
    -webkit-filter: invert(100);
            filter: invert(100);
  }
}*/

#intro {
  position: fixed;
  top: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  height: 100vh;
}

#lieu_intro {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 9;
}

#lieu_features {
  padding-left: 100px;
}

#lieu_features .ourstory {
  text-align: center;
  min-height: 150px;
  margin-top: 70px;
  font-size: 3.125rem;
  line-height: 1.1;
  margin-bottom: .5rem;
}

#lieu_features .ourstory .button {
  margin: 0 auto;
}

#lieu_features .ourstory__title {
  font-size: 50px;
}

@media (max-width: 1024px) {
  .ourstory {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .first {
    padding: 20px;
  }
  .first__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .first__container__img__logo {
    width: 100px;
  }
  .first__container h1 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .first__container a {
    font-size: 14px;
  }
  #corpo {
    padding-bottom: 0;
  }
  #corpo p {
    font-size: 18px !important;
  }
  #lieu_features {
    padding-left: 0;
  }

  .ourstory {
    padding: 20px !important;
    font-size: 1.125rem;
  }
  .ourstory h1 {
    font-size: 32px !important;
  }
  .ourstory .button {
    margin: 0 auto;
  }
  .ourstory .button__span {
    font-size: 1.125rem;
  }
  
  .page_container{
        padding: 30px 0 10px 0;
    }
  .hide-element{
      display:none!important;
  }
  .vr-iframe-style{
      height: calc(var(--app-height))!important;
      width: var(--app-width)!important;
      margin-left:0px!important;
  }
}
/*# sourceMappingURL=home_style.css.map */
 



/*Aggiunte style*/



.header nav > ul img {
    height: 25px;
    width: 25px;
}
@media (max-width:480px){
  /*Toglie la label in mobile*/
  a.icon__renderer > .button__label {
      display: none;
  }
  a.icon__renderer > .button__icon {
      filter: invert(0);
  }
}

#nav_li_language{
    cursor:pointer;
}
#nav_li_account{
    cursor:pointer;
}


/*ARTWORK CARD START*/

.ra__cards {
  display: flex;
  flex-wrap: wrap;
  list-style:none;
  justify-content: center;
}

/*.ra__cards li{
  padding: 1.25rem;
}*/

.ra__card {
  max-width: 22rem;
  height: 22rem;
  overflow: hidden;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);  
}
.ra__card__image{
  width: 100%;
}


.ra__card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  background-color: white; 
  border-radius: 25px;
}

.ra__card__header{
  position: relative;
  display: flex;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color:white;
  -webkit-box-shadow: 0px -20px 20px -5px rgba(0,0,0,0.2); 
  box-shadow: 0px -20px 20px -5px rgba(0,0,0,0.2);
  border:1px solid white;
}

/**Opzionale**/
.no__opacity{
  opacity: 1;
}

.ra__card__title { 
  margin: 0px auto;
  color: #111111;
  font-size: 16px;
  padding:0.6em;
  text-align: center;
}

.ra__title, .ra__title:hover, .ra__title:active, .ra__title:visited, .ra__title:focus {
  text-decoration:none;
}

.ra__card__description {
  display: flex;
  padding: 0 0.8em 0.8em;
  margin: 0;
  overflow: hidden;
} 

.ra__card__show__more{
  flex: 0 1 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ra__top__card__buttons{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 0%;
  position: absolute;
  top:5%;
}


.ra__card__buttons{
  flex: 0 1 auto;
  margin-left: auto; 
  display:flex;
  flex-direction:column;
  justify-content:space-around;
}

.ra__card__vr{
  padding: 10px;
  background-color: white;
  border-radius: 40px;
  margin-right:20px ;
  opacity: 1;
  box-shadow: 5px 5px 20px #000000;
}

.ra__card__vr:hover{
  background-color: black;
  color:white;
}



@media(hover){
  .ra__card__overlay {
    transform: translateY(100%);
    transition: transform 0.5s ease;
  }

  .ra__card:hover .ra__card__overlay{
    transform: translateY(0);
  }
  .ra__card__header{
    transform: translateY(-100%);
     transition: transform 0.5s ease;
  }
  
  .ra__card:hover .ra__card__header{
      transform: translateY(0);
  }
}

/*ARTWORK CARD END */


/**EVENTS CARD**/

.e__cards {
  display: flex;
  flex-wrap: wrap;
  list-style:none;
  justify-content: center;
}

.e__cards li{
  padding: 0 rem;
}

.e__card {
  max-width: 22rem;
  height: 22rem;
  overflow: hidden;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);  
  
}
.e__card__image{
  width: 100%;
}


.e__card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  background-color: white; 
  border-radius: 25px;
}

.e__card__header{
  position: relative;
  display: flex;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color:white;
  -webkit-box-shadow: 0px -20px 20px -5px rgba(0,0,0,0.2); 
  box-shadow: 0px -20px 20px -5px rgba(0,0,0,0.2);
  border:1px solid white;
}
/**Opzionale**/
.no__opacity{
  opacity: 1;
}

.e__card__title { 
  margin: 0px auto;
  color: #111111;
  font-size: 16px;
  padding:0.6em;
  text-align: center;
}

.e__title,.e__title:hover, .e__title:active, .e__title:visited, .e__title:focus {
  text-decoration:none;
}

.e__card__description {
  display: flex;
  padding: 0 0.8em 0.8em;
  margin: 0;
  overflow: hidden;
} 

.e__card__show__more{
  flex: 0 1 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.e__card__buttons{
  flex: 0 1 auto;
  margin-left: auto; 
  display:flex;
  flex-direction:column;
  justify-content:space-around;
}

.e__top__card__buttons{
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 0%;
  position: absolute;
  top:5%;
}


.e__card__status{
  padding: 4px 8px;
  border-radius: 40px;
  margin-left:20px ;
  opacity: 1;
  font-weight: bold;
  font-size: 0.8em;
  box-shadow: 5px 5px 20px #000000;
}

/*EVENTS STATUS COLORS*/
.e__card_status__active{
  background-color: #28A745;
  color: white;
}

.e__card_status__info{
  background-color:#17A2B8;
  color: white;
}

.e__card_status__over{
  background-color:#DC3545;
  color: white;
}

.e__card_status__warning{
  background-color:#FFC107;
  color: white;
}

/*EVENT STATUS END*/


.e__card__vr{
  padding: 10px;
  background-color: white;
  border-radius: 40px;
  margin-right:20px ;
  opacity: 1;
  box-shadow: 5px 5px 20px #000000;
}

.e__card__vr:hover{
  background-color: black;
  color:white;
}

@media(hover){
  .e__card__overlay {
    transform: translateY(100%);
    transition: transform 0.5s ease;
  }

  .e__card:hover .e__card__overlay{
    transform: translateY(0);
  }
  .e__card__header{
    transform: translateY(-100%);
     transition: transform 0.5s ease;
  }
  
  .e__card:hover .e__card__header{
      transform: translateY(0);
  }
}

/**EXHIBITION CARDS END*/

/*CSS CARD NOTIFICATIONS*/
.notify-section {
  padding: 0px 0px !important;
  margin: 0px !important;
}

.notification__card__container{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
  align-items:center;
}

.notification__card{
  border-radius: 40px;
  margin-bottom: 20px;
  background-color: #fff !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  width: 500px;
}


/*Card header start*/
.notification__card__header {
  margin: 0;
  padding: 0.5rem;
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0px;
}
.primary__image__profile{
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  padding: 2px;
  border: 2px solid #f4f4f4;
  object-fit:cover;
}
.profile__name{
  margin: 0;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
  padding: .4rem !important;
}
.profile__name{
  font-size: 14px;
  color: #111111;
}

.media-body small span{
  font-size: 12px;
  color: #111111;
  margin-right: 10px;
}
.share__type{
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
/*Card header end*/


/*Card body*/


.middle-image-info {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}


.notification__overlay__title {
  color: white;
  font-size: 30px;
  padding: 0px 15px;
}

.notification-image-link{
  opacity: 1;
  width: 100%;
}


.notification__card__body {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-height: 400px;
  background-color: black;
  backface-visibility: hidden;
}
.primary__notification__image{
  opacity: 1;
  display: flex;
  width: 100%;
  object-fit:cover;
  max-height: 400px;
  transition: .5s ease;
}

/*Those classes allows card to be full height(put these classes in place of those actives)

.notification__card__body {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: black;
}
.primary__notification__image{
  opacity: 1;
  display: flex;
  width: 100%;
  height: auto;
  transition: .5s ease;
}

*/


/*Card body end*/


/*Card footer start*/
.notification__card__footer{
  margin: 0;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
}	
.profile__like__image {
  border-radius: 50% !important;
  width: 25px;
  height: 25px;
  margin: 0px !important;
  border: 2px solid #fff;
}

.notification__card__like__container{
  display: flex;
  margin: 0;
}

.notification__card__footer li:first-child {
  list-style: none;
  margin: 0px 0px 0px 8px !important;
  padding: 0px 0px 0px 0px !important;
  }
  
.notification__card__like__container li {
list-style: none;
margin: 0px 0px 0px -8px !important;
padding: 0px 0px 0px 0px !important;
}

.notification__card__like__container li a{
margin: 0px !important;
padding: 0px !important;
}

.footer__users__likes{
  display:flex;
}

.notification__text__footer{
  display: flex;
  align-items: center;
  font-size: 19px;
  margin-left: 5px;
}
.notification__text__footer a{
  text-decoration: none;
  opacity: 1;
  font-weight: bold;
}
/*Card footer end*/



@media (min-width: 576px) {
  .notification__card__container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .notification__card__container {
    max-width: 720px;
  }
  .notification__card {
   max-width: 90%;
  }
}

@media (min-width: 992px) {
  .notification__card__container {
    max-width: 960px;
  }
  .notification__card {
   max-width: 80%;
  }

}

@media (min-width: 1200px) {
  .notification__card__container {
    max-width: 1140px;
  }
  .notification__card {
   max-width: 70%;
  }
}

@media (max-width: 650px) {
  .notification__card {
    width: 100%;
  }
}



@media(hover){
  .notification__card__body:hover .primary__notification__image {
    opacity: 0.3;
  }
  
  .notification__card__body:hover .middle-image-info {
    opacity: 1;
  }
}


/*CARD NOTIFICATION END*/

/**CSS COMUNE TRA LE CARD OPERE E EVENTI*/

/*Like icon one*/
.like-icon {
  -webkit-appearance: none;
  cursor: pointer;  border-radius:40px;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  border:none;
  appearance:none;
  width: 0;
}

.like-icon:before {
  font-family: "Font Awesome 5 Free";
  content: "\f004";
  font-size: 2.5em;
  color:#C31F01;
  transition: .3s all;
  font-weight: 400;
}
.like-icon:checked:before {
  font-family: "Font Awesome 5 Free";
  color: #C31F01;
  font-weight: 900;
}
.like-icon:checked {
  outline: none;
  animation: bounce;
  animation-duration: .5s;
  animation-timing-function: linear;
}
/*Like icon one end*/


/*Like icon two start*/
.like-icon-2 {
  -webkit-appearance: none;
  cursor: pointer;  border-radius:40px;
  margin: 0;
  padding-right:25px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  border:none;
  appearance:none;
  width: 0;
}

.like-icon-2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f164";
  font-size: 1.5em;
  color:#111111;
  transition: .3s all;
  font-weight: 400;
}
.like-icon-2:checked:before {
  font-family: "Font Awesome 5 Free";
  color:#111111;
  font-weight: 900;
}
.like-icon-2:checked {
  outline: none;
  animation: bounce;
  animation-duration: .5s;
  animation-timing-function: linear;
}
/*Like icon 2 end*/


/*PAGINA SEARCH_USERS.PHP*/

.search_section {
    display: flex;
    width: 100%;
    height: 80px;
    margin: auto;
    align-items: center;
}

.button_follow_unfollow {
    outline: none;
    background: #fcfcfc;
    display: inline-block;
    margin: 0px 10px;
}

.button_follow_unfollow:active {
    background: white;
}

.button_follow_unfollow:active > a > .button_follow_unfollow__span {
    color: white;
}

.button_follow_unfollow:active > a > .button_follow_unfollow__span:before {
    background: #fcfcfc;
}

.button_follow_unfollow__span:before {
    background: #fcfcfc;
}

.page_container {
    padding: 70px 20px 50px 130px;
    width: 100%;
    min-height: 710px;
}

.category_user h2 {
    padding: 0 20px;
}

.div_busta {
    cursor: pointer;
    display: inline-block;
    margin: 0px 10px;
    opacity: 1;
}

.div_go_back_title {
    display: inline-block;
}

#div_lista_utenti {
    text-align: center;
}

.input_search_div {
    display: inline-block;
    width: 70%;
}

.link_no_decoration {
    text-decoration: none;
    color: black;
    opacity: 1;
}

.non_active_envelope {
    pointer-events: none;
    opacity: 0.7;
    color: lightgray;
}

.remove_search_filter {
    font-size: 16px;
    vertical-align: middle;
    cursor: pointer;
    padding-left: 5px;
}

#searched_term_container {
    border: 1px solid black;
    padding: 10px;
}

.search_header {
    margin-top: 0px;
    padding-bottom: 10px;
}

.search_header_icons {
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
    cursor: pointer;
}

.search_input {
    max-height: 50px;
    width: 100%;
    border-radius: 20px;
    outline: none;
    padding: 10px;
    padding-left: 15px;
    font-size: 24px;
    border: 1px solid black;
}

.span_unfollow {
    color: #c31f01;
}

.unfollow {
    border-color: #c31f01 !important;
}

.unfollow:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

#users_list {
    min-height: 300px;
}

.utente__element {
    width: 100%;
    border-radius: var(--br-large);
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    display: inline-block;
    width: 300px;
    margin: 15px;
    text-align: center;
}

.utente__element__card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: bottom;
    -ms-flex-align: bottom;
    align-items: bottom;
    height: 300px;
    position: relative;
}

.utente__element__card a {
    opacity: 1;
    text-decoration: none;
}

.utente__element__card a > div {
    position: absolute;
    width: 100%;
}

.utente__element__card a > div > picture > img {
    min-height: 300px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 40px;
}

.utente__element__card:hover .utente__element__card__desc {
    margin-bottom: 0px;
}

.utente__element__card__desc {
    position: absolute;
    bottom: 0;
    padding: 0 20px 20px 20px;
    border-radius: 40px 40px 0 0;
    -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1);
    backdrop-filter: blur(30px) saturate(180%) brightness(1);
    background: rgba(var(--main-color--rgb), 0.9);
    margin-bottom: -70px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    width: 100%;
    background: #fcfcfc;
}

.utente__element__card__desc__title {
    text-decoration: none;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 !important;
    font-size: 24px;
}

.utente__element__card__desc__title:hover {
    text-decoration: underline;
}

.utente__element__card__desc > div.button_follow_unfollow {
    margin: 0 auto;
}

.you_searched {
    margin-top: 20px;
    background-color: rgba(222, 222, 222, 0.6);
}

@media (max-width: 1024px) {
    .busta_mb {
        font-size: 1.5em;
    }

    .button_follow_unfollow {
        padding: 0 10px;
        border: 3px solid;
    }

    .utente__element__card__desc {
        margin-top: 66%;
        bottom: auto;
        position: static !important;
        border-radius: 40px;
    }

    .utente__element__card__desc__title {
        font-size: 22px !important;
        height: 50px !important;
        padding-left: 15px;
        padding-top: 9px;
        padding-bottom: 9px;
    }
}

@media (max-width: 900px) {
    .div_go_back_title {
        display: none;
    }
     
    .input_search_div {
        width: 80% !important;
    }
}

@media (max-width: 767px) {
    .page_container {
        padding: 100px 0 10px 0;
        min-height: 500px;
    }
}



/*FINE PAGINA SEARCH_USERS.PHP*/

/*PAGINA USER_PUBLIC_PROFILE.PHP*/

button {
    outline: none;
}

.button_follow_user_profile {
    outline: none;
    display: inline-block;
    margin: 0 10px;
    background: white;
}

.button_follow_user_profile:active > a > .button_follow_user__span {
    color: white;
}

.button_follow_user_profile:active > a > .button_follow_user__span:before {
    background: white;
}

.button_follow_user__span:before {
    background: white;
}

.column {
    float: left;
    width: 50%;
}

.div-follow {
    width: 90%;
    display: inline-block;
    border: 2px solid rgba(173, 173, 173, 0.4);
    border-radius: 30px;
    padding: 5px 20px;
}



.numero-follow {
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 45px;
    margin-bottom: -20px;
}

.profile_div_envelope {
    display: inline-block;
    vertical-align: sub;
    cursor: pointer;
    display: inline-block;
    margin: 0px 10px;
    opacity: 1;
}

.profile_pic {
    width: 300px;
}

.row-follow {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.section-wishlist {
    padding-left: 40px;
}

.titolo-follow {
    line-height: 0.8em;
}

.username_title {
    margin-top: 20px;
    font-size: 2.5rem;
}

@media (max-width: 800px) {
    .column {
        float: left;
        width: 100% !important;
        margin-bottom: 15px;
    }

    .div-follow {
        width: 90% !important;
        padding: 5px 15px !important;
    }

    .numero-follow {
        font-size: 32px;
    }

    .profile_pic {
        width: 250px;
    }

    .row-follow {
        width: 100% !important;
        margin-right: auto;
        margin-left: auto;
    }

    .section-wishlist {
        padding-left: 10px;
    }

    .titolo-follow {
        font-size: 28px;
    }

    .username_title {
        font-size: 1.7rem;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .row-follow {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
}

/*FINE PAGINA USER_PUBLIC_PROFILE.PHP*/


.event__content {
    min-height: 200px;
    border-top: 10px solid var(--main-color);
    -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1);
    backdrop-filter: blur(30px) saturate(180%) brightness(1);
    background: rgba(var(--main-color--rgb), 0.9);
    background: rgba(var(--main-color--rgb), 0.9);
    z-index: 2;
    z-index: 4;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60% 40%;
    grid-template-columns: 60% 40%;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    padding: 40px 40px 140px 160px;
}
.event__content h2 {
    font-family: var(--main-font);
    font-size: 1.4rem;
}

.event__content__body {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    padding: 0 20px;
}

.event__content__info {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    padding: 0 20px;
}

.event__content__info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-align: left;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    row-gap: 10px;
}

.event__content__info ul li > div > span:first-child {
    opacity: 0.4;
}

.event__content__trailer {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
}

.event__content__trailer h2 {
    padding: 0 20px;
}

.event__content__trailer > video {
    border-radius: var(--br-large);
    width: 100%;
}

.event__content__gallery {
    margin-top: 2.5em;
    width: 100%;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}

.event__content__gallery ul {
    width: 100%;
}

.event__content__gallery ul li img {
    border-radius: var(--br-large);
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.event__content__gallery h2 {
    padding: 0 20px;
}

.hero .button {
    display: inline-table;
}

.hero .button svg {
    height: 18px;
}

.hero .button:active svg {
    -webkit-filter: invert(100);
    filter: invert(100);
}

.hero ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.hero ul li:not(:first-child) {
    margin-left: 20px;
}

@media (max-width: 1024px) {
    #hero {
        padding-left: 100px;
    }
    .event__content {
        padding-left: 100px;
    }
    .event__content__trailer {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
    }
}

@media (max-width: 767px) {
    #condividi span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 4.5px;
    }
    #corpo {
        padding-bottom: 0px;
    }
    #corpo .event__content {
        padding: 0 0 20px 0 !important;
    }
    #corpo .event__content__body {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3;
    }
    #corpo .event__content__body,
    #corpo .event__content__info {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
    }
    #corpo .event__content__trailer video {
        border-radius: 0;
    }
}
/*# sourceMappingURL=event_style.css.map */

/*PAGINA EVENT.php*/
.button_event_page {
    outline: none;
    background: white;
    border-color: black;
    text-decoration: none;
}

.button_event_page:active > a > .button_event_page_span {
    color: white;
    border-color: black;
}

.button_event_page:active > a > .button_event_page_span:before {
    background: white;
    border-color: black;
}

.button_event_page_span:before {
    background: white;
    border-color: black;
}

#condividi span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5.3px;
}

.desktop-span {
    margin-top: 2px;
    margin-bottom: 2px;
}

#event_page {
    z-index: 0;
}

.event_page_galleries {
    margin-left: 15px;
}

.font-awesome-icon-span {
    padding-bottom: 1px;
    padding-top: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.mobile-span {
    display: none;
}

/*@media (prefers-color-scheme: dark) {
    #condividi span svg {
        -webkit-filter: invert(100);
        filter: invert(100);
    }
    #condividi:active span svg {
        -webkit-filter: invert(0) !important;
        filter: invert(0) !important;
    }
}*/

@media (max-width: 766px) {

    .event_page_galleries {
        margin-left: 0px;
    }
    
    .event_page_galleries > video {
        margin-left: 15px;
    }

    .trailer_event_page{
        max-width: 90%;
        margin-left: 15px;
    }
   
}

@media (max-width: 1050px) {
    .desktop-span {
        display: none;
    }
    
    .mobile-span {
        display: block;
    }
}

/*FINE PAGINA EVENT.PHP*/


/*PAGINA OVERVIEW*/

.artwork_event_element {
    width: 100%;
    height: 350px;
    border-radius: 40px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block; 
    text-align: center; 
    position: relative;
}

.artwork_event_element__card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: bottom;
    -ms-flex-align: bottom;
    align-items: bottom;
    height: 357px;
    position: relative;
}

.artwork_event_element__card a {
    opacity: 1;
    text-decoration: none;
}

.artwork_event_element__card a > div {
    position: absolute;
    width: 100%;
}

.artwork_event_element__card a > div > picture > img {
    height: 350px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 40px;
}

.artwork_event_element__card:hover .artwork_event_element__card__desc {
    margin-bottom: 0px;
}

.artwork_event_element__card__desc {
    position: absolute;
    bottom: 0;
    padding: 0 20px 20px 20px;
    border-radius: 40px 40px 0 0;
    -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1);
    backdrop-filter: blur(30px) saturate(180%) brightness(1);
    background: rgba(var(--main-color--rgb), 0.9);
    margin-bottom: -70px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    width: 100%;
    background: #fcfcfc;
}

.artwork_event_element__card__desc__title {
    text-decoration: none;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0;
    font-size: 24px;
}

.artwork_event_element__card__desc__title:hover {
    text-decoration: underline;
}

.artwork_event_element__card__desc > div.button {
    margin: 0 auto;
}

.overview_section_title {
    font-size: 32px;
    margin-bottom: 15px;
}

@media (max-width: 766px) {
    .overview_section_title {
        margin-left: 10px;
    }
}

@media (max-width: 1024px) {
    .artwork_event_element__card__desc {
        margin-top: 246px;
        bottom: auto;
        position: static !important;
        border-radius: 40px;
        padding-bottom: 0px;
        height: fit-content;
    }

    .artwork_event_element__card__desc__title {
        height: 50px !important;
        padding-left: 15px;
        padding-top: 9px;
        padding-bottom: 9px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
}


.init_navbar_button {
    text-decoration: none;
    display: inline-block;
    margin: 20px 60px;
}

.init_navbar_button_span {
    font-size: 25px;
}

 .non_selected_navbar_button {
    border-color: white;
}

.non_selected_navbar_button:hover {
    border-color: black;
    cursor: pointer;
}


@media (max-width: 950px) {
    .init_navbar_button {
        margin: 20px 30px;
    }
}

@media (max-width: 766px) {
    .init_navbar_button {
        margin: 15px;
    }

    .init_navbar_button_span {
        font-size: 20px;
    }
}

@media (max-width: 600px) {

    .init_navbar_button_span {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .init_navbar_button {
        margin: 15px 4px;
    }

    .init_navbar_button_span {
        font-size: 14px;
    }
}

.button__span__icon{
    text-decoration: none; 
    font-size: 26px;
}

.button__span__icon:before {
    background: none;
}

.overview-card-box {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    flex-basis: 49%;
    height: auto;
    margin-bottom: 30px;
    /*transition: transform .3s;*/
    cursor: pointer;
}

/*.box:hover {
        -ms-transform: scale(0.99);
        -webkit-transform: scale(0.99); 
        transform: scale(0.99); 
    }*/

.overview-card-box-2 {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    height: auto;
    /*max-width: 800px;*/
    display: none;
    width: 100%;
    height: auto;
    /*transition: transform .3s;*/
}

/*.box-2:hover {
        -ms-transform: scale(0.99); 
        -webkit-transform: scale(0.99); 
        transform: scale(0.99); 
    }*/

.overview-container {
    display: flex;
    height: 100%;
    max-height: 210px;
    min-height: 210px;
}

.overview-container-flex-search {
    display: flex;
    flex-wrap: wrap;
}

.overview-container-grande {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    min-height: 210px;
}

.overview-card-inner-box-1 {
    flex: 1;
    cursor: pointer;
}

.overview-card-inner-box-2 {
    flex: 3;
    position: relative;
    padding-right: 10px;
    margin-left: 10px;
}

.overview-card-inner-boxe-2 {
    flex: 2;
    position: relative;
    padding-right: 10px;
    margin-left: 10px;
    cursor: pointer;
}

.overview-card-inner-box-3 {
    flex: 4;
}

.overview-image-sx {
    background-repeat: no-repeat;
    -moz-border-radius-bottomleft: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -webkit-border-top-left-radius: 30px;
}

.overview-card-paragraph {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.overview-card-span {
    font-size: 50px;
    display: inline-block;
    font-weight: bold;
}

.overview_card_title {
    margin-top: 28px;
    opacity: 0.6;
    text-transform: uppercase;
}

.overview_search_header {
    margin: 50px 0px;
}

.splide-width {
    width: 500px;
    margin-top: 20px;
    margin-bottom: auto;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1100px) {
    .overview-card-box-left {
        margin-right: 2%;
    }

    /*.overview-card-box-2 {
        display: block;
    }*/

    .overview-container-flex {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    /*#wishlist-opere {
        display: none;
    }*/
}

@media (max-width: 1100px) {
    .overview-card-box {
        margin-right: 10px;
        margin-left: 10px;
    }

    .overview_search_header {
        margin: 10px;
    }

    .search_input_overview {
        font-size: 18px;
        margin-right: 10px;
    }
}

@media (max-width: 600px) {
    .overview-container {
        min-height: 170px;
    }

    .overview-image-sx {
        background-size: cover;
    }

    .overview-card-link {
        font-size: 18px;
        margin-top: 0px;
        bottom: 4px;
    }

    .overview-card-paragraph {
        font-size: 18px;
        margin-top: 10px;
    }

    .overview-card-span {
        font-size: 30px;
    }

    .overview_card_title {
        margin-top: 20px;
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .overview-image-sx {
        background-size: cover;
    }

    .overview-card-inner-box-1 {
        flex: 2 !important;
    }

    .overview-card-inner-box-2 {
        flex: 3 !important;
        margin-left: -5px;
    }

    .overview_card_title {
        margin-top: 20px;
    }
}

@media (max-width: 320px) {
    #nome-evento {
        display: none;
    }
}

/*FINE PAGINA OVERVIEW*/


@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(.7);
  }
  100% {
    transform: scale(1);
  }
}
.iframe-container{
    display: flex;
    justify-content: end;
}
.vr-iframe-style{
    height: var(--app-height);
    width: var(--app-width);
    margin-left: 100px;
    /*margin-bottom: -5px;*/
}
  .hide-element{
      display:none!important;
  }
/*Pagina search artworks*/


/*Custom select*/

.custom-select {
    display: inline-block;
    width: 120px;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #767676;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23333333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    appearance: none;
}
.custom-select:focus {
    border-color: #404040;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.custom-select:focus::-ms-value {
    color: #767676;
    background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}
.custom-select:disabled {
    color: #888;
    background-color: #e9ecef;
}
.custom-select::-ms-expand {
    display: none;
}
.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #767676;
}
.custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
}
.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
}

.disable-overflow{
    overflow: hidden;
}


/*Spinner*/

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: auto;
  margin-bottom:auto;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #111;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/*Overlay modal*/
.overlay__loader {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #111;
    z-index: 9999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    opacity: 0.1;
    display: none;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.aw-not-found-image{
    width: 50%;
    height: auto;
    object-fit: contain;
}


    .title-filter{
        text-align:center;
        margin:0;
        padding:0;
    }
    .title-filter-2{
        text-align:center;
        margin:0;
        padding:0;
        margin-top: 40px;
    }
    .m-top{
        margin-top:50px;
    }
    .remove-filter-icon{
        width: 22px;
        height: 22px;
    }
    .btn-remove-artist-filter{
         margin-top: auto;
        margin-bottom: auto;
    }
    .btn-remove-size-filter{
        margin-top: auto;
        margin-bottom: auto;
    }
    .section-title-filter{
        display: flex;
        justify-content: space-between;
    }
    .filter-icon{
        width: 30px;
        height: 30px;
        margin: auto;
    }
    
    @media (max-width: 767px){
        .filter-icon{
            display: block;
        }
    }
    
    #filters-section{
        flex:20;
    }
    #pagination-data-container{
        min-height: 50vh;
        flex:80;
    }
    
    .btn-trigger-modal{
        margin-top: auto;
        margin-bottom: auto;
    }

    @media(max-width:1554px){
        #filters-section{
            flex:20;
        }
        #pagination-data-container{
            flex:70;
        }
    }
    
    @media(max-width:1215px){
        #filters-section{
            flex:20;
        }
        #pagination-data-container{
            flex:60;
        }
    }
    


    .select2-container--open{
        z-index: 99999;
    }
    
    /*Style modal filters*/

    @media(min-width:767px){
        .details-modal{
          margin-left:110px;
          width: calc(100% - 120px)!important;  
          top: 100%!important;
        } 
    }

    .details-modal {
        position: fixed;
        left: 0;
        top:  calc(100%);
        background: #fff;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        width: 100%;
        height: 85vh;
        pointer-events: none;
        animation: modal-open .5s forwards;
        text-align: left;
        display: flex;
        flex-direction: column;
        z-index: 15;
    }

    @keyframes modal-open {
        100% {
            transform:translateY(-100%);
        }
    }
    .details-modal .details-modal-close {
        align-items: center;
        color: #111;
        font-weight: bold;
        display: flex;
        justify-content: center;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 4.5em;
        padding:0.5em;

    }

    .details-modal .details-modal-title {
        color: #111827;
        padding: 1.5em 2em;
        pointer-events: all;
        position: relative;
        width: calc(100% - 4.5em);
        box-sizing: border-box;
    }

    .details-modal .details-modal-content {
        border-top: 1px solid #e0e0e0;
        padding: 2em;
        pointer-events: all;
        overflow: auto;
        height: 100%;;
    }
    .details-modal-overlay {
        transition: opacity 0.2s ease-out;
        pointer-events: all;
        background-color: #000;
        position: fixed;
        opacity: 0;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        cursor: pointer;
        display: none;
        z-index: 10;
    }
    details[open].modal-filters .details-modal-overlay {
        pointer-events: all;
        opacity: 0.15;
        display: block;
    }
    details.modal-filters summary {
        list-style: none;
    }
    details.modal-filters summary:focus {
        outline: none;
    }
    details.modal-filters summary::-webkit-details-marker {
        display: none;
    }
    
    /*Style modal filters*/
    

    /*Style check box*/

    .custom_radio_group_container {
        width: 100%;
        margin-top: 0px;
        background: white;
        border: 1px solid white;
        border-radius: 3px;
        text-align: left;
    }


    .custom_radio_group_container input[type=radio] {
        display: none;
    }
    .custom_radio_group_container span{
        font-size:12.5px;
        color: #adadad;
        display: block;
        margin-top:5px
    }
    .custom_radio_group_container input:checked + label span{
        color: #111;
    }

    .custom_radio_group_container
    label:focus, .custom_radio_group_container label:hover, .custom_radio_group_container label:active, .custom_radio_group_container input:checked + label {
        color: #e0758e;
    }
    .custom_radio_group_container
    label:focus:before, .custom_radio_group_container label:hover:before, .custom_radio_group_container label:active:before, .custom_radio_group_container input:checked + label:before {
        background: white;
        border-color: #e0758e;
    }

    .custom_radio_group_container
    label {
        font-size: 1rem;
        font-weight: bold;
        line-height: 1;
        cursor: pointer;
        display: block;
        padding: 1rem 1rem 1rem 3rem;
        position: relative;
        background: white;
        whitespace: no-wrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.15s ease;
        border-radius: 0.2rem !important;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
        margin-top: 8px;
    }
    
    .custom_radio_group_container
    label:before {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 0.2rem solid #ccc;
        margin: auto;
        top: 0; 
        left: 1rem; 
        bottom: 0;;
    }
    
    .custom_radio_group_container
    input:checked + label:before {
        border-color: white;
        border: none;
        background: #e0758e;
    }
    .custom_radio_group_container
    input:disabled + label {
        background: #efefef;
        color: rgba(0, 0, 0, .5);
        cursor: not-allowed;
    }
    .custom_radio_group_container
    input:disabled + label:hover {
        border-color: rgba(0, 0, 0, .1);
    }
    .custom_radio_group_container
    input:disabled + label:before {
        border-color: white;
        background: white;
    }

    /*Custom radio buttons*/
 
.bottom-pagination{
    display: flex;
    justify-content: center;
}
.pagination-container{
  margin-top: 20px;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.flex-item {
  display: flex;
}
#limit_aw{
    position:absolute;
    top: 0;
    right: 0;
    margin-right:20px;
}

@media(max-width:767px){
    .pagination-container{
        position:static;
        flex-direction: column;
    }
    
    #limit_aw{
        position:static;
        margin-right: 0px;
        margin-left: auto;
        margin-top: auto;
        margin-bottom: auto;
    }
    
    .aw_btn_container {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 20px;
    }
}


/*PAGINA ARTWORK INFO*/

.artwork_page_picture{
     padding: 10px;
     border: 1px solid black;
     cursor: pointer;
     width: 500px;
     display: inline-flex;
}
 .artwork_page_picture:hover{
     opacity: 0.2;
}
 .container_top_artwork_info{
     display: flex;
     align-items: center;
}
 .container_middle_artwork_info{
     display: flex;
}
 #parla_con_espositore_desktop{
     display: block;
}
 #parla_con_espositore_mobile{
     display: none;
}
 .image_container_artwork_info{
     flex: 2;
}
 .container_artwork_info{
     padding-left: 20px;
}
 @media (max-width: 1200px){
     .artwork_page_picture{
         width: 330px;
    }
     .image_container_artwork_info{
         flex: 1;
    }
     .container_artwork_info{
         padding-left: 0px;
    }
     #informazioni_artwork{
         padding-left: 0px;
    }
}
 @media (min-width: 766px){
     .container_artwork_info{
        /*display: inline-block;
        */
         vertical-align: middle;
    }
}
 @media (max-width: 766px){
     .container_top_artwork_info{
         display: block;
         text-align: center;
    }
     .container_middle_artwork_info{
         display: block;
    }
     .artwork_page_picture {
         max-width: 95%;
    }
     .action-list{
         display: inline-flex !important;
    }
     #parla_con_espositore_desktop{
         display: none;
    }
     #parla_con_espositore_mobile{
         display: block;
    }
     #informazioni_artwork{
         padding-left: 20px;
    }
}

.month-div{
        
        margin-top: 40px;
        border-bottom: 2px solid #c9c6c6;
    }

    


/*FINE PAGINA ARTWORK INFO*/

/*Custom checkbox group*/
    .c__checkbox__group {
        background-color: #fff;
        display: block;
        margin: 10px 0;
        position: relative;
    }
    .c__checkbox__group label {
        width: 100%;
        display: block;
        text-align: left;
        color: #111;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: color 200ms ease-in;
        overflow: hidden;
        box-shadow: 0 0.125rem 0.5rem rgb(0 0 0 / 8%) !important;
        font-size: 15px;
        font-weight: bold;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 10px;
        padding-right: 70px;
    }
    .c__checkbox__group label:before {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        content: '';
        background-color: #fff!important;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale3d(1, 1, 1);
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        z-index: -1;
    }
    .c__checkbox__group label:after {
        width: 32px;
        height: 32px;
        content: '';
        border: 2px solid #d1d7dc;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
        background-repeat: no-repeat;
        background-position: 2px 3px;
        border-radius: 50%;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        transition: all 200ms ease-in;
    }
    .c__checkbox__group input:checked ~ label {
        color: #e0758e;
    }
    .c__checkbox__group input:checked ~ label:before {
        transform: translate(-50%, -50%) scale3d(56, 56, 1);
        opacity: 1;
    }
    .c__checkbox__group input:checked ~ label:after {
        background-color: #e0758e;
        border-color: #e0758e;
    }
    .c__checkbox__group input {
        width: 32px;
        height: 32px;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        visibility: hidden;
    }


 /*Custom form*/
.account-edit-container{
   width: 100%;
   display: flex;
   justify-content: center;
}
.custom-form{
  width: 900px;   
}
.custom-form-row{
   display: flex;
   flex-flow: row;
} 
.custom-form-row .custom-form-group{
   flex: 1;
   padding: 0px 20px 0px 20px;
   margin-top: 10px;

}
.custom-form-label{
   color: #777;
   font-size: 12px;
   text-transform: uppercase;
}
.custom-form-input{
   width: 100%;
   padding: 10px 15px;
   border-radius: 4px;
   border: none;
   outline:none;
   color:#495057;
   font-weight: 400;
   font-size: 14.5px;
   box-shadow: 0px 0px 2px rgb(0,0,0,0.2);
   border: 1px solid #dedede;
}
.custom-form-input:focus {
   box-shadow: 0px 0px 4px rgb(0,0,0,0.3);
   border: 1px solid #ccc;
}
.c-margin-top-1{
   margin-top: 0.25rem;
}

@media(max-width:576px){
   .custom-form-row{
       flex-flow: column;
   } 
   .custom-form-row .custom-form-section{
       padding: 0px 20px 0px 20px;
   }
}




/*Chat*/

 .m-borderedCard {
    border-radius: 34px;
    box-shadow: 0 0 8px #888;
    overflow: hidden;
}
.m-borderedCard__imageContainer {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-weight: 700;
    min-height: 153px;
    padding: 10px 30px;
    position: relative;
    text-shadow: 1px 1px rgba(0, 0, 0, .4);
    width: 100%}
@media screen and (min-width:768px) {
    .m-borderedCard__imageContainer {
    min-height: 196px;
}
}.m-borderedCard__overlayTitle {
    font-size: 1.2rem;
    font-weight: 900;
    max-width: 320px;
    text-transform: uppercase;
}
@media screen and (min-width:480px) {
    .m-borderedCard__overlayTitle {
    font-size: 1.75rem;
}
}.m-borderedCard__overlaySubtitle {
    margin-bottom: 30px;
    max-width: 320px;
}
.m-borderedCard__overlayLink {
    bottom: 10px;
    color: #fff;
    position: absolute;
    right: 30px;
}
.m-borderedCard__contentContainer {
    background-color: #fff;
    color: #000;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 16px 30px 10px;
}
.m-borderedCard__title {
    font-size: 1.375rem;
    font-weight: 700;
}
.m-borderedCard__content {
    margin-bottom: 0;
}
.m-borderedCard__footerContainer {
    padding: 0 24px;
}
.m-borderedCard__footer {
    border-top: 2px solid #dedede;
    text-align: right;
}
.m-borderedCard__footerButton {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: 2px solid #000;
    border-radius: 50%;
    box-shadow: none;
    display: inline-block;
    height: 42px;
    margin-bottom: 10px;
    margin-left: 8px;
    margin-top: 6px;
    outline: 0;
    width: 42px;
}
.m-borderedCard__footerButton:hover {
    opacity: .6;
}
.m-borderedCard__footerButton:active, .m-borderedCard__footerButton:focus {
    box-shadow: none;
    outline: 0;
}
.m-borderedCard__footerButton.-white {
    background-color: #fff;
    background-image: url(../../frontend_only_assets/images/icon-x-black.svg);
}
.m-borderedCard__footerButton.-black {
    background-color: #000;
    background-image: url(../../frontend_only_assets/images/icon-check.svg);
}
.m-chat__messagesList {
    background-color: #f8f9fa;
    border-radius: 34.5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    padding: 40px 10px 40px 10px;
}

.m-chat__talkingBoard {
    border-radius: 34.5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    padding: 40px;
}
.m-chat__messagesListTitle {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: .75px;
    line-height: .93;
}
.m-chat__messagesGroup {
    padding-top: 20px;
}
.m-chat__messagesGroupTitle {
    color: #767676;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.87;
    margin: 20px 0 20px 6px;
}
.m-chat__messagePreview {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #adadad;
    display: block;
    font-size: .6875rem;
    margin-bottom: 40px;
    outline: 0;
    position: relative;
    width: 100%;
    cursor:pointer;
}
.m-chat__messagePreview:hover {
    color: #767676;
    text-decoration: none;
}
.m-chat__messagePreview:active, .m-chat__messagePreview:focus {
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: 0;
}
.m-chat__messagePreview.-isActive:before {
    border: 3px solid #000;
    border-bottom-color: transparent;
    content: '';
    height: 20px;
    left: 0;
    position: absolute;
    top: -12px;
    width: 100%
}
.m-chat__messagePreview.-isActive:after {
    border: 3px solid #000;
    border-top-color: transparent;
    bottom: -16px;
    content: '';
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%
}
.m-chat__profileImage {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 15px 14.7px .3px rgba(0, 0, 0, .15);
    display: inline-block;
    height: 42px;
    vertical-align: middle;
    width: 42px;
}
.m-chat__profileName {
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.75;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-chat__messageExcerpt {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1.5px;
    overflow: hidden;
    padding: 0 20px;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
    width: calc(100% - 120px);
}
.m-chat__messageTime {
    display: inline-block;
    font-weight: 500;
    line-height: 3.88;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
    width: 65px;
}
.m-chat .m-borderedCard {
    border: 0;
    box-shadow: none;
}
.m-chat__talkingBoard {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 14px;
    position: relative;
}
.m-chat__talkingBoard:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 70%);
    bottom: 103px;
    content: '';
    height: 40px;
    left: 0;
    position: absolute;
    width: calc(100% - 24px);
    z-index: 10;
}
.m-chat__singleMessageContainer {
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 10;
    margin-bottom:15px;
}
.m-chat__singleMessageContainer:after {
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: #212529;
    border-radius: 6px;
    bottom: -5px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    content: '';
    height: 91px;
    left: 78px;
    position: absolute;
    transform: rotate(90deg);
    width: 60px;
    z-index: -20;
}
.m-chat__profileImageMessage {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    width: 40px;
    position: relative;
    vertical-align: bottom;
    margin-right: 3px;
}

.m-chat__singleMessageText {
    background-color: #212529;
    border-radius: 34px;
    color: #e9ecef;
    display: inline-block;
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.54;
    margin-left: -5px;
    max-width: 220px;
    padding: 20px 10px 20px 20px;
    position: relative;
    font-size: 13.5px;
    word-break: break-word;
}
.m-chat__timeBreak {
    color: #aaa;
    display: block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 3.88;
    margin: 10px 0 0;
    text-align: center;
    width: 100%
}
.m-chat__singleMessageFooter {
    border-top: 2px solid #767676;
    margin-top: 10px;
    padding-top: 10px;
}
.m-chat__singleMessageFooter a {
    color: #e9ecef;
    text-decoration: none;
}
.m-chat__singleMessageFooter a:hover {
    color: #fff;
    text-decoration: none;
}
.m-chat__downloadIcon {
    background-image: url(../../frontend_only_assets/images/icon-download.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    height: 20px;
    margin-right: 6px;
    opacity: .8;
    position: relative;
    width: 20px;
}
.m-chat__downloadFilename {
    display: inline-block;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m-chat__singleMessageContainer.-ownerMessage:after {
    display: none;
}
.m-chat__singleMessageContainer.-ownerMessage .m-chat__profileImageMessage {
    display: none;
}
.m-chat__singleMessageContainer.-ownerMessage .m-chat__singleMessageText {
    background-color: #dedede;
    color: #888;
    float: right;
}
.m-chat__singleMessageContainer.-ownerMessage .m-chat__singleMessageFooter {
    border-color: #ccc;
}
.m-chat__singleMessageContainer.-ownerMessage .m-chat__singleMessageFooter a {
    color: #888;
}
.m-chat__singleMessageContainer.-ownerMessage .m-chat__singleMessageFooter a:hover {
    color: #333;
}
.m-chat__singleMessageContainer.-ownerMessage .m-chat__downloadIcon {
    background-image: url(../../frontend_only_assets/images/icon-download-dark.svg);
}
.m-chat__singleMessageContainer.-writingMessage {
    padding-left: 10px;
}
@media screen and (min-width:768px) {
    .m-chat__singleMessageContainer.-writingMessage {
    padding-left: 80px;
}
}.m-chat__singleMessageContainer.-writingMessage:after {
    display: none;
}
.m-chat__singleMessageContainer.-writingMessage .m-chat__singleMessageText {
    padding: 8px 20px 16px;
}
.m-chat__singleMessageContainer.-writingMessage .spinner-grow {
    height: 6px;
    width: 6px;
}
.m-chat__singleMessageContainer.-writingMessage.-ownerWriting .m-chat__singleMessageText {
    background-color: #dedede;
    color: #888;
    float: right;
}
.m-chat__chatContainer {
    max-height: 50vh;
    overflow-y: scroll;
    padding-bottom: 20px;
    padding-right: 10px;
    scroll-behavior: auto!important;
}
.m-chat__chatContainer::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 4px;
}
.m-chat__chatContainer::-webkit-scrollbar {
    background-color: #f5f5f5;
    border-radius: 4px;
    width: 6px;
}
.m-chat__chatContainer::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.m-chat__newMessageForm {
    display: flex;
    flex-basis: 100%;
    height: 90px;
    padding-top: 28px;
}
.m-chat__newMessageContainer {
    border-radius: 34px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 52px;
    justify-content: center;
    padding: 7px 11px 6px 21px;
}
.m-chat__newMessageInput {
    align-self: center;
    border: none;
    box-shadow: none;
    color: #888;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    outline: 0;
}
.m-chat__newMessageInput:active, .m-chat__newMessageInput:focus {
    border: none;
    box-shadow: none;
    outline: 0;
}
.m-chat__newMessageAppendFile {
    align-self: center;
    background-color: transparent;
    background-image: url(../../frontend_only_assets/images/icon-attached.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: none;
    box-shadow: none;
    display: flex;
    flex: 0 0 40px;
    flex-direction: column;
    height: 40px;
    outline: 0;
    padding: 10px;
}
.m-chat__newMessageAppendFile:hover {
    background-image: url(../../frontend_only_assets/images/icon-attached-dark.svg);
}
.m-chat__newMessageAppendFile:active, .m-chat__newMessageAppendFile:focus {
    border: none;
    box-shadow: none;
    outline: 0;
}
.m-chat__newMessageSend {
    align-self: center;
    background-color: #000;
    background-image: url(../../frontend_only_assets/images/icon-sendChatMessage.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    flex: 0 0 40px;
    flex-direction: column;
    height: 40px;
    outline: 0;
}
.m-chat__newMessageSend:hover {
    opacity: .8;
}
.m-chat__newMessageSend:active, .m-chat__newMessageSend:focus {
    border: none;
    box-shadow: none;
    outline: 0;
}

/**Old lieu style*/
.m-chat__messagesGroup::-webkit-scrollbar {
    background-color: #f5f5f5;
    border-radius: 4px;
    width: 6px;
}
.m-chat__messagesGroup::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.m-chat__messagesGroup::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 4px;
}

.unread {
    color:blue;
}
  
/*New style*/
.chat-hr{
  border: 0;
  border-top: 1px solid rgba(0,0,0, 0.1);
  margin-bottom: 1rem;
  margin-top: 0;
}



  .m-chat{
    margin-top:3rem;
    display: -ms-flexbox;
    display: flex;
    padding:0 100px;
    justify-content: center;
  }  

  .chat-list-container{
    width:30%;
    margin-right:5%;
  }
  
  .chat-messages-container{
    width:70%;
  }

  .chat-placeholder{
      text-align:center;
      margin-top:3rem;
      font-size:22px;
      font-weight: bolder;
  }
  @media(max-width:1700px){
      .m-chat{
            padding:0 25px;
      }  
  }

  @media(max-width:1500px){
      .m-chat{
            padding:0px;
      }
      .chat-list-container{
        width:35%;
        margin-right:5%;
      }
      .chat-messages-container{
        width:65%;
      }  
  }

   @media(max-width:1200px){
      .chat-list-container{
        width:40%;
        margin-right:5%;
      }
      .chat-messages-container{
        width:60%;
      }  
  }

   @media(max-width:992px){
      .chat-list-container{
        width:50%;
        margin-right:1%;
      }
      .chat-messages-container{
        width:54%;
      }  
  }

     @media(max-width:767px){
      .chat-list-container{
        width:70%;
        margin-left:auto;
        margin-right: auto;

      }
      .chat-messages-container{
        width:100%;
        margin-top: 3rem;
      }  
      .m-chat{
       flex-direction:column; 
       padding:10px;
      }
  }
  
       @media(max-width:576px){
      .chat-list-container{
        width:100%;
      }
  }
  .notification-alert{
    background-color: #e41e3f;
    position: absolute;
    top: 4px;
    left: 20px;
    padding: 0;
    border-radius: 50%;
    height: 24px;
    min-width: 24px;
    line-height: 24px;
  }
  .notification-alert span{
      color: #fff;
      font-weight: bold;
      font-size: 14px;
  }
  /*Chat*/

.new-notification-alert{
    background-color: #e41e3f;
    position: absolute;
    top: 11px;
    left: 22px;
    padding: 0;
    border-radius: 50%;
    height: 14px;
    min-width: 14px;
  }
  .new-notification-alert span{
      color: #fff;
      font-weight: bold;
      font-size: 14px;
  }
  
.follow-card-div{
      margin-bottom: 15px; 
  }

  @media (max-width: 500px){

      .follow-card-div{
          align-items: center; 
          text-align: center;
      }

      #share__type_like_card{
              display:block;
      }

      #contenuto_condiviso_like_card{
              display:block;
      }

      #tempo_passato_like_card{
              float: right;
              margin-top: 5px;
      }

  }
  
  .coming_soon_label{
      background-color: #17A2B8; 
      color: white; 
      border-radius: 20px; 
      width: max-content;
  }

   @media (max-width: 500px){

    .coming_soon_label{
      width: fit-content;
    }

  }
  
  #logo_mobile {
    display: none;
    position: fixed;
    padding-top: 15px;
    text-align: center;
    width:  100%;
    background-color: white;
    opacity: 1;
    z-index: 100;
    padding-bottom: 25px;
    background: linear-gradient(to bottom, rgba(var(--main-color--rgb), 1) 20%, rgba(var(--main-color--rgb), 0) 90%);
  }
  
  #toggle_menu_div {
    position: fixed;
    text-align: center;
    width: 15%;
    background-color: #d9d9d9;
    z-index: 100;
    bottom: -26px;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    border-radius: 5px 5px 0px 0px;
    transition: bottom 0.3s;
    padding: 3px 0px;
  }
  
  .expose-packages-ul{
      text-align: center; 
      font-size: 19px; 
      line-height: 1.2em; 
      min-height: 330px;
  }
  
  .expose-packages-price-div{
      min-height: 120px;
  }
  
  @media (max-width: 1024px){
      .expose-packages-ul{
        min-height: fit-content;
    }
    
    .expose-packages-price-div{
        min-height: 65px;
    }
  
  }
  
 .form-fattura{
    display: none;
    text-align: left;
}

.like_button_a{
    color: #C31F01;
}

/*event-slide*/
.event-date-div {
    position: absolute;
    z-index: 10;
    width: fit-content;
    border-radius: 20px;
    top:  20px;
    left: 20px;
    box-shadow: 5px 5px 20px #000000;

}

.event-tooltip-top {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.top-tooltiptext {
  font-family: var(--main-font);
  font-weight: 700;
  visibility: hidden;
  width: 100px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 55px;
  left: 50%;
  margin-left: -50px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
  
  font-size: 14px;
}

/* Tooltip arrow */
.top-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.left-tooltiptext {
   font-family: var(--main-font);
   font-weight: 700;
  visibility: hidden;
  width: 100px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  top: 0;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  right: 125%;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
  
   font-size: 14px;
}

/* Tooltip arrow */
.left-tooltiptext::after {
  content: "";
  position: absolute;
  left: 105%;
  top: 40%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #555;
  
}

/* Show the tooltip text when you mouse over the tooltip container */
.event-tooltip-top:hover .top-tooltiptext {
  visibility: visible;
  opacity: 1;
}

.event-tooltip-left:hover .left-tooltiptext {
  visibility: visible;
  opacity: 1;
}

.title_event_card {
    display:block; 
    font-size: 18px;
    margin: auto; 
    text-align: center; 
    position: absolute; 
    width: 100%; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    left: 0; 
    height: fit-content;
}

.title_event_card_div {
    height: 70px; 
    position: relative;
}

.vr_icon_event_card {
    padding: 5px 8px;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 10;
    background-color: #fcfcfc;
    border-radius: 50%;
    box-shadow: 0px 0px 16px;
}

.vr_icon_event_card:hover {
     background-color: rgba(0,0,0,0.8);
     transition-duration: 0s;
}

.vr_icon_event_card:hover a{
     color: white;
     transition-duration: 0s;
}

.artwork-card-li,
.event-card-li {
    width: 370px  !important;
}

@media(max-width: 1024px){
    
    .title_event_card {
        font-size: 16px;
    }
    
    .title_event_card_div {
        height: 60px;
    }
    
    .artwork-card-li,
    .event-card-li {
        width: 288px  !important;
    }


}

@media (max-width: 767px){
    
    .artwork-card-li,
    .event-card-li {
        width: 310px !important;
    }
    
}


    .search_button:hover {

        border: 1px solid black;
        color: white;
        background-color: black;
      
    }
    
    #toggle-filters:hover  {
        /*filter: invert(1);*/
        box-shadow: 1px 1px 5px rgba(0,0,0,0.8);    
    }
    
    .search_button {
        cursor: pointer; 
        position: absolute; 
        right: 0px; 
        height: 50px; 
        width: 50px; 
        background-color: rgba(0,0,0,0.7); 
        color: white; 
        text-align: center; 
        border-radius: 0px 10px 10px 0px;
        border: 1px solid black;
    }
    
    .search_div{
        width: 100%; 
        position: relative;
        box-shadow: 1px 1px 2px grey;
        border-radius: 10px;
    }
    
    .become_operator{
        position: absolute; 
        right: 0px; 
        top: 0; 
        bottom: 0; 
        margin: auto 0px; 
        height: fit-content; 
        font-size: 20px; 
        font-style: italic; 
        opacity: 0.6;
        cursor: pointer;
    }
    
    .become_operator:hover{
        opacity: 1;
    }
    
    .search_input{
        height: 50px;
        padding-left: 10px;
    }
    
    .div-filters{
        position: relative; 
        display: block; 
        margin: 0px;
    }
    
    .btn-trigger-modal{
        background: white;
        padding: 5px 5px; 
        border-radius: 5px; 
        color: black; 
        font-size: 20px;
        border: 1px solid black;
        box-shadow: 1px 1px 5px grey;     
        width: 100%;
    }
   
    
    @media(max-width: 767px){
        
        .search_div{
            margin-right: 10px;
            margin-left: 10px;
        }
        
        .search_input{
            font-size: 14px;
        }
        
        .become_operator{
            display: none;
        }
        
        .div-filters{
            margin: 20px 10px 20px 10px;
        }
        
        .btn-trigger-modal{
          text-align: center;
          width: fit-content;
        }
       
        
    }
    
    .event-date-div{
        font-weight: 700;
    }
    
    .img_modal_content {
        border-radius: 20px; 
        max-height: 90vh; 
    }
    
    .img_modal_body {
        max-height: 82vh; 
        overflow-y: auto;
    }
   
    @media (min-width: 768px){
        .lang_modal .account_modal{
            bottom: auto;
            right: auto;
        }
    }
    
    .confirm-sent-email-div{
        transition-property: opacity;
        transition-duration: 0.5s;
    }